From 142ac841ff7c75c1c61cf1e10b50fbc12f7e3034 Mon Sep 17 00:00:00 2001 From: AnggerRevo5 Date: Thu, 5 Feb 2026 11:05:11 +0700 Subject: [PATCH] docker db dan include file sql --- SQL/careit_pgdata.sql | 33097 +++++++++++++++++++++++++++++++++ backendcareit_v4/.env | 17 - backendcareit_v4/.gitignore | 3 +- docker-compose.yml | 23 +- frontendcareit_v4/.gitignore | 2 +- 5 files changed, 33122 insertions(+), 20 deletions(-) create mode 100644 SQL/careit_pgdata.sql delete mode 100644 backendcareit_v4/.env diff --git a/SQL/careit_pgdata.sql b/SQL/careit_pgdata.sql new file mode 100644 index 0000000..cffde4a --- /dev/null +++ b/SQL/careit_pgdata.sql @@ -0,0 +1,33097 @@ +-- +-- PostgreSQL database dump +-- + +\restrict NIYAIXl9641cPM6XamBgGBnEkiNiZxXPSdvwIJdadJqsydVBvYsVqHU5FVjVQ5x + +-- Dumped from database version 18.1 +-- Dumped by pg_dump version 18.1 + +-- Started on 2026-02-05 10:03:35 + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET transaction_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- TOC entry 219 (class 1259 OID 17594) +-- Name: admin_ruangan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.admin_ruangan ( + "ID_Admin" integer NOT NULL, + "Nama_Admin" text NOT NULL, + "Password" text NOT NULL, + "ID_Ruangan" integer +); + + +ALTER TABLE public.admin_ruangan OWNER TO postgres; + +-- +-- TOC entry 235 (class 1259 OID 17730) +-- Name: admin_ruangan_ID_Admin_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.admin_ruangan ALTER COLUMN "ID_Admin" ADD GENERATED ALWAYS AS IDENTITY ( + SEQUENCE NAME public."admin_ruangan_ID_Admin_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- TOC entry 220 (class 1259 OID 17602) +-- Name: billing_dokter; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_dokter ( + "ID_Dokter" integer NOT NULL, + "ID_Billing" integer NOT NULL, + tanggal date +); + + +ALTER TABLE public.billing_dokter OWNER TO postgres; + +-- +-- TOC entry 240 (class 1259 OID 17800) +-- Name: billing_dpjp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_dpjp ( + "ID_Billing" integer NOT NULL, + "ID_DPJP" integer NOT NULL +); + + +ALTER TABLE public.billing_dpjp OWNER TO postgres; + +-- +-- TOC entry 222 (class 1259 OID 17612) +-- Name: billing_icd10; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_icd10 ( + "ID_Billing" integer NOT NULL, + "ID_ICD10" character varying(20) NOT NULL +); + + +ALTER TABLE public.billing_icd10 OWNER TO postgres; + +-- +-- TOC entry 221 (class 1259 OID 17607) +-- Name: billing_icd9; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_icd9 ( + "ID_Billing" integer NOT NULL, + "ID_ICD9" character varying(20) NOT NULL +); + + +ALTER TABLE public.billing_icd9 OWNER TO postgres; + +-- +-- TOC entry 223 (class 1259 OID 17617) +-- Name: billing_inacbg_ri; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_inacbg_ri ( + "ID_Billing" integer NOT NULL, + "ID_INACBG_RI" character varying(20) NOT NULL +); + + +ALTER TABLE public.billing_inacbg_ri OWNER TO postgres; + +-- +-- TOC entry 224 (class 1259 OID 17622) +-- Name: billing_inacbg_rj; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_inacbg_rj ( + "ID_Billing" integer NOT NULL, + "ID_INACBG_RJ" character varying(20) NOT NULL +); + + +ALTER TABLE public.billing_inacbg_rj OWNER TO postgres; + +-- +-- TOC entry 225 (class 1259 OID 17627) +-- Name: billing_pasien; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_pasien ( + "ID_Billing" integer NOT NULL, + "ID_Pasien" integer NOT NULL, + "Cara_Bayar" character varying(50) DEFAULT NULL::character varying, + "Tanggal_Masuk" date, + "Tanggal_Keluar" date, + "Total_Tarif_RS" numeric(15,2) DEFAULT NULL::numeric, + "Total_Klaim" numeric(15,2) DEFAULT NULL::numeric, + "Billing_Sign" character varying(50) DEFAULT 'Hijau'::character varying +); + + +ALTER TABLE public.billing_pasien OWNER TO postgres; + +-- +-- TOC entry 236 (class 1259 OID 17731) +-- Name: billing_pasien_ID_Billing_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.billing_pasien ALTER COLUMN "ID_Billing" ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."billing_pasien_ID_Billing_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- TOC entry 226 (class 1259 OID 17636) +-- Name: billing_tindakan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.billing_tindakan ( + "ID_Billing" integer NOT NULL, + "ID_Tarif_RS" character varying(20) NOT NULL, + tanggal_tindakan date +); + + +ALTER TABLE public.billing_tindakan OWNER TO postgres; + +-- +-- TOC entry 227 (class 1259 OID 17641) +-- Name: dokter; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.dokter ( + "ID_Dokter" integer NOT NULL, + "Nama_Dokter" text NOT NULL, + "Status" character varying(50) NOT NULL, + "KSM" text, + "Email_UB" text, + "Email_Pribadi" text +); + + +ALTER TABLE public.dokter OWNER TO postgres; + +-- +-- TOC entry 237 (class 1259 OID 17732) +-- Name: dokter_ID_Dokter_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.dokter ALTER COLUMN "ID_Dokter" ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."dokter_ID_Dokter_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- TOC entry 229 (class 1259 OID 17655) +-- Name: icd10; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.icd10 ( + "ID_ICD10" character varying(20) NOT NULL, + "Diagnosa" character varying(150) DEFAULT NULL::character varying, + "Versi_ICD10" character varying(20) DEFAULT NULL::character varying +); + + +ALTER TABLE public.icd10 OWNER TO postgres; + +-- +-- TOC entry 228 (class 1259 OID 17649) +-- Name: icd9; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.icd9 ( + "ID_ICD9" character varying(20) NOT NULL, + "Prosedur" character varying(150) DEFAULT NULL::character varying, + "Versi_ICD9" character varying(20) DEFAULT NULL::character varying +); + + +ALTER TABLE public.icd9 OWNER TO postgres; + +-- +-- TOC entry 230 (class 1259 OID 17661) +-- Name: ina_cbg_rawatinap; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.ina_cbg_rawatinap ( + "ID_INACBG_RI" character varying(20) NOT NULL, + "Tindakan_RI" character varying(150) DEFAULT NULL::character varying, + "Tarif_Kelas_3" numeric(15,2) DEFAULT NULL::numeric, + "Tarif_Kelas_2" numeric(15,2) DEFAULT NULL::numeric, + "Tarif_Kelas_1" numeric(15,2) DEFAULT NULL::numeric +); + + +ALTER TABLE public.ina_cbg_rawatinap OWNER TO postgres; + +-- +-- TOC entry 231 (class 1259 OID 17669) +-- Name: ina_cbg_rawatjalan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.ina_cbg_rawatjalan ( + "ID_INACBG_RJ" character varying(20) NOT NULL, + "Tindakan_RJ" character varying(150) DEFAULT NULL::character varying, + "Tarif_RJ" numeric(15,2) DEFAULT NULL::numeric +); + + +ALTER TABLE public.ina_cbg_rawatjalan OWNER TO postgres; + +-- +-- TOC entry 232 (class 1259 OID 17675) +-- Name: pasien; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.pasien ( + "ID_Pasien" integer NOT NULL, + "Nama_Pasien" text NOT NULL, + "Jenis_Kelamin" character varying(50) NOT NULL, + "Usia" integer, + "Ruangan" text, + "Kelas" character varying(50) DEFAULT NULL::character varying +); + + +ALTER TABLE public.pasien OWNER TO postgres; + +-- +-- TOC entry 238 (class 1259 OID 17733) +-- Name: pasien_ID_Pasien_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.pasien ALTER COLUMN "ID_Pasien" ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."pasien_ID_Pasien_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- TOC entry 233 (class 1259 OID 17684) +-- Name: ruangan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.ruangan ( + "ID_Ruangan" integer NOT NULL, + "Jenis_Ruangan" text, + "Nama_Ruangan" text, + keterangan text, + kategori_ruangan text +); + + +ALTER TABLE public.ruangan OWNER TO postgres; + +-- +-- TOC entry 239 (class 1259 OID 17734) +-- Name: ruangan_ID_Ruangan_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.ruangan ALTER COLUMN "ID_Ruangan" ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ruangan_ID_Ruangan_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- TOC entry 234 (class 1259 OID 17690) +-- Name: tarif_rs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.tarif_rs ( + "ID_Tarif_RS" character varying(20) NOT NULL, + "Tindakan_RS" text, + "Tarif_RS" integer, + "Kategori_RS" text +); + + +ALTER TABLE public.tarif_rs OWNER TO postgres; + +-- +-- TOC entry 5122 (class 0 OID 17594) +-- Dependencies: 219 +-- Data for Name: admin_ruangan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.admin_ruangan ("ID_Admin", "Nama_Admin", "Password", "ID_Ruangan") FROM stdin; +1 admin admin123 1 +\. + + +-- +-- TOC entry 5123 (class 0 OID 17602) +-- Dependencies: 220 +-- Data for Name: billing_dokter; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_dokter ("ID_Dokter", "ID_Billing", tanggal) FROM stdin; +\. + + +-- +-- TOC entry 5143 (class 0 OID 17800) +-- Dependencies: 240 +-- Data for Name: billing_dpjp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_dpjp ("ID_Billing", "ID_DPJP") FROM stdin; +\. + + +-- +-- TOC entry 5125 (class 0 OID 17612) +-- Dependencies: 222 +-- Data for Name: billing_icd10; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_icd10 ("ID_Billing", "ID_ICD10") FROM stdin; +\. + + +-- +-- TOC entry 5124 (class 0 OID 17607) +-- Dependencies: 221 +-- Data for Name: billing_icd9; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_icd9 ("ID_Billing", "ID_ICD9") FROM stdin; +\. + + +-- +-- TOC entry 5126 (class 0 OID 17617) +-- Dependencies: 223 +-- Data for Name: billing_inacbg_ri; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_inacbg_ri ("ID_Billing", "ID_INACBG_RI") FROM stdin; +\. + + +-- +-- TOC entry 5127 (class 0 OID 17622) +-- Dependencies: 224 +-- Data for Name: billing_inacbg_rj; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_inacbg_rj ("ID_Billing", "ID_INACBG_RJ") FROM stdin; +\. + + +-- +-- TOC entry 5128 (class 0 OID 17627) +-- Dependencies: 225 +-- Data for Name: billing_pasien; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_pasien ("ID_Billing", "ID_Pasien", "Cara_Bayar", "Tanggal_Masuk", "Tanggal_Keluar", "Total_Tarif_RS", "Total_Klaim", "Billing_Sign") FROM stdin; +\. + + +-- +-- TOC entry 5129 (class 0 OID 17636) +-- Dependencies: 226 +-- Data for Name: billing_tindakan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.billing_tindakan ("ID_Billing", "ID_Tarif_RS", tanggal_tindakan) FROM stdin; +\. + + +-- +-- TOC entry 5130 (class 0 OID 17641) +-- Dependencies: 227 +-- Data for Name: dokter; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.dokter ("ID_Dokter", "Nama_Dokter", "Status", "KSM", "Email_UB", "Email_Pribadi") FROM stdin; +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 BalAfif, 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 Rizq 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 BalAfif, 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 +645 Alfi Kamalia PPDS IPD alfikamalia@student.ub.ac.id - +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 +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 - +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 Aifatin 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 Asad 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 - +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 - +1 Dr. dr. Angger Revo Habib Banar, S.Kom., S.H., M.Kn., M.Sc., M.M.R.S. DPJP Penyakit Dalam angger@ub.ac.id stylohype685@gmail.com +\. + + +-- +-- TOC entry 5132 (class 0 OID 17655) +-- Dependencies: 229 +-- Data for Name: icd10; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.icd10 ("ID_ICD10", "Diagnosa", "Versi_ICD10") FROM stdin; +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 bacthisty ICD10_2010 +A15.6 Tuberculous pleurisy, conf bacteriologicallyhisy 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 & histology 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 vincents 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 [brills 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 kaposis sarcoma ICD10_2010 +B21.1 HIV disease resulting in burkitts lymphoma ICD10_2010 +B21.2 HIV dis resulting oth types of non-hodgkins 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 +B75 Trichinellosis 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 +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 +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, meckels 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 Kaposis sarcoma of skin ICD10_2010 +C46.1 Kaposis sarcoma of soft tissue ICD10_2010 +C46.2 Kaposis sarcoma of palate ICD10_2010 +C46.3 Kaposis sarcoma of lymph nodes ICD10_2010 +C46.7 Kaposis sarcoma of other sites ICD10_2010 +C46.8 Kaposis sarcoma of multiple organs ICD10_2010 +C46.9 Kaposis 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 +E25 Adrenogenital disorders 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 Hodgkins disease, Lymphocytic predominance ICD10_2010 +C81.1 Hodgkins disease, Nodular sclerosis ICD10_2010 +C81.2 Hodgkins disease, Mixed cellularity ICD10_2010 +C81.3 Hodgkins disease, Lymphocytic depletion ICD10_2010 +C81.4 Lymphocyte-rich classical Hodgkin lymphoma ICD10_2010 +C81.7 Other hodgkins disease ICD10_2010 +C81.9 Hodgkins disease, unspecified ICD10_2010 +C82 Follicular lymphoma ICD10_2010 +C82.0 Follicular non-hodgkins lymphoma, Small cleaved cell, follicular ICD10_2010 +C82.1 Follicular non-hodgkins lymphoma, Mixed small cleaved and large cell, follicular ICD10_2010 +C82.2 Follicular non-hodgkins 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-hodgkins lymphoma ICD10_2010 +C82.9 Follicular non-hodgkins lymphoma, unspecified ICD10_2010 +C83 Non-follicular lymphoma ICD10_2010 +C83.0 Diffuse non-hodgkins lymphoma, Small cell (diffuse) ICD10_2010 +C83.1 Diffuse non-hodgkins lymphoma, Small cleaved cell (diffuse) ICD10_2010 +C83.2 Diffuse non-hodgkins lymphoma, Mixed small and large cell (diffuse) ICD10_2010 +C83.3 Diffuse non-hodgkins lymphoma, Large cell (diffuse) ICD10_2010 +C83.4 Diffuse non-hodgkins lymphoma, Immunoblastic (diffuse) ICD10_2010 +C83.5 Diffuse non-hodgkins lymphoma, Lymphoblastic (diffuse) ICD10_2010 +C83.6 Diffuse non-hodgkins lymphoma, Undifferentiated (diffuse) ICD10_2010 +C83.7 Diffuse non-hodgkins lymphoma, Burkitts tumour ICD10_2010 +C83.8 Other types of diffuse non-hodgkins lymphoma ICD10_2010 +C83.9 Diffuse non-hodgkins 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, Sezarys 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-hodgkins lymphoma ICD10_2010 +C85.9 Non-hodgkins 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 Waldenstrams 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 +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 willebrands 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 Nezelofs 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 georges 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 +E60 Dietary zinc deficiency 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 cushings disease ICD10_2010 +E24.1 Nelsons syndrome ICD10_2010 +E24.2 Drug-induced cushings syndrome ICD10_2010 +E24.3 Ectopic acth syndrome ICD10_2010 +E24.4 Alcohol-induced pseudo-cushings syndrome ICD10_2010 +E24.8 Other cushings syndrome ICD10_2010 +E24.9 Cushings syndrome, unspecified 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 bitots 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 Wernickes 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 +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 +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 modifn 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 Gilberts 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 alzheimers disease with early onset ICD10_2010 +F00.1 Dementia in alzheimers disease with late onset ICD10_2010 +F00.2 Dementia in alzheimers disease, atypical or mixed type ICD10_2010 +F00.9 Dementia in alzheimers 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 Picks disease ICD10_2010 +F02.1 Dementia in Creutzfeldt-Jakob disease ICD10_2010 +F02.2 Dementia in Huntingtons disease ICD10_2010 +F02.3 Dementia in Parkinsons 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 Retts 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 Aspergers 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 +I42 Cardiomyopathy 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 Huntingtons 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 Parkinsons 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 Alzheimers disease with early onset ICD10_2010 +G30.1 Alzheimers disease with late onset ICD10_2010 +G30.8 Other alzheimers disease ICD10_2010 +G30.9 Alzheimers 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 +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 Bells palsy ICD10_2010 +G51.1 Geniculate ganglionitis ICD10_2010 +G51.2 Melkerssons 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 Refsums 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 Horners 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 Reyes 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 +I42.0 Dilated cardiomyopathy 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 +K00.3 Mottled teeth 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 +K31.4 Gastric diverticulum 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 Menieres 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 Dresslers 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 +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.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 Raynauds 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 +J21.8 Acute bronchiolitis due to other specified organisms 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.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 Macleods 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 Coalworkers 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-dressers 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 Farmers lung ICD10_2010 +J67.1 Bagassosis ICD10_2010 +J67.2 Bird fanciers lung ICD10_2010 +J67.3 Suberosis ICD10_2010 +J67.4 Maltworkers lung ICD10_2010 +J67.5 Mushroom-workers lung ICD10_2010 +J67.6 Maple-bark-strippers 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 pulmony 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 Mendelsons 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.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 Barretts 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 +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.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 Crohns disease of small intestine ICD10_2010 +K50.1 Crohns disease of large intestine ICD10_2010 +K50.8 Other crohns disease ICD10_2010 +K50.9 Crohns 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 +L81.1 Chloasma 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 Besniers 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 +L81.2 Freckles 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 Beaus 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.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 Gottrons 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 +N76.6 Ulceration of vulva 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 +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 +Q54.3 Hypospadias, perineal 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 +Q54.4 Congenital chordee 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 Reiters disease ICD10_2010 +M02.30 Reiters disease, multiple sites ICD10_2010 +M02.31 Reiters disease, shoulder region ICD10_2010 +M02.32 Reiters disease, upper arm ICD10_2010 +M02.33 Reiters disease, forearm ICD10_2010 +M02.34 Reiters disease, hand ICD10_2010 +M02.35 Reiters disease, pelvic and thigh ICD10_2010 +M02.36 Reiters disease, lower leg ICD10_2010 +M02.37 Reiters disease, ankle and foot ICD10_2010 +M02.38 Reiters disease, other sites ICD10_2010 +M02.39 Reiters 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 Feltys syndrome ICD10_2010 +M05.00 Seropositive Feltys syndrome, multiple sites ICD10_2010 +M05.01 Seropositive Feltys syndrome, shoulder region ICD10_2010 +M05.02 Seropositive Feltys syndrome, upper arm ICD10_2010 +M05.03 Seropositive Feltys syndrome, forearm ICD10_2010 +M05.04 Seropositive Feltys syndrome, hand ICD10_2010 +M05.05 Seropositive Feltys syndrome, pelvic and thigh ICD10_2010 +M05.06 Seropositive Feltys syndrome, lower leg ICD10_2010 +M05.07 Seropositive Feltys syndrome, ankle and foot ICD10_2010 +M05.08 Seropositive Feltys syndrome, other sites ICD10_2010 +M05.09 Seropositive Feltys 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 stills disease ICD10_2010 +M06.10 Adult-onset stills disease, multiple sites ICD10_2010 +M06.11 Adult-onset stills disease, shoulder region ICD10_2010 +M06.12 Adult-onset stills disease, upper arm ICD10_2010 +M06.13 Adult-onset stills disease, forearm ICD10_2010 +M06.14 Adult-onset stills disease, hand ICD10_2010 +M06.15 Adult-onset stills disease, pelvic and thigh ICD10_2010 +M06.16 Adult-onset stills disease, lower leg ICD10_2010 +M06.17 Adult-onset stills disease, ankle and foot ICD10_2010 +M06.18 Adult-onset stills disease, other sites ICD10_2010 +M06.19 Adult-onset stills 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 crohns disease [regional enteritis] ICD10_2010 +M07.40 Arthropathy in crohns disease [regional enteritis], multiple sites ICD10_2010 +M07.41 Arthropathy in crohns disease [regional enteritis], shoulder region ICD10_2010 +M07.42 Arthropathy in crohns disease [regional enteritis], upper arm ICD10_2010 +M07.43 Arthropathy in crohns disease [regional enteritis], forearm ICD10_2010 +M07.44 Arthropathy in crohns disease [regional enteritis], hand ICD10_2010 +M07.45 Arthropathy in crohns disease [regional enteritis], pelvic and thigh ICD10_2010 +M07.46 Arthropathy in crohns disease [regional enteritis], lower leg ICD10_2010 +M07.47 Arthropathy in crohns disease [regional enteritis], ankle and foot ICD10_2010 +M07.48 Arthropathy in crohns disease [regional enteritis], other sites ICD10_2010 +M07.49 Arthropathy in crohns 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 +M11.20 Other chondrocalcinosis, multiple sites 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 crohns disease [regional enteritis] ICD10_2010 +M09.10 Juvenile arthritis in crohns disease [regional enteritis], multiple sites ICD10_2010 +M09.11 Juvenile arthritis in crohns disease [regional enteritis], shoulder region ICD10_2010 +M09.12 Juvenile arthritis in crohns disease [regional enteritis], upper arm ICD10_2010 +M09.13 Juvenile arthritis in crohns disease [regional enteritis], forearm ICD10_2010 +M09.14 Juvenile arthritis in crohns disease [regional enteritis], hand ICD10_2010 +M09.15 Juvenile arthritis in crohns disease [regional enteritis], pelvic and thigh ICD10_2010 +M09.16 Juvenile arthritis in crohns disease [regional enteritis], lower leg ICD10_2010 +M09.17 Juvenile arthritis in crohns disease [regional enteritis], ankle and foot ICD10_2010 +M09.18 Juvenile arthritis in crohns disease [regional enteritis], other sites ICD10_2010 +M09.19 Juvenile arthritis in crohns 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 +Q54.8 Other hypospadias 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.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 +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 +S27.0 Traumatic pneumothorax 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 Heberdens nodes (with arthropathy) ICD10_2010 +M15.2 Bouchards 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 +M25.38 Other instability of joint, other sites 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 +M25.39 Other instability of joint, unspecified site 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 +M25.4 Effusion of joint 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.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 Wegeners 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 Behcets 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 +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 +M48.21 Kissing spine, occipito-atlanto-axial region 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.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 Schmorls 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 +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 +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 +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 +M86.53 Other chronic haematogenous osteomyelitis, forearm 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.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 Pagets disease of skull ICD10_2010 +M88.09 Pagets disease of skull, site unspecified ICD10_2010 +M88.8 Pagets disease of other bones ICD10_2010 +M88.80 Pagets disease of other bones, multiple sites ICD10_2010 +M88.81 Pagets disease of other bones, shoulder region ICD10_2010 +M88.82 Pagets disease of other bones, upper arm ICD10_2010 +M88.83 Pagets disease of other bones, forearm ICD10_2010 +M88.84 Pagets disease of other bones, hand ICD10_2010 +M88.85 Pagets disease of other bones, pelvic and thigh ICD10_2010 +M88.86 Pagets disease of other bones, lower leg ICD10_2010 +M88.87 Pagets disease of other bones, ankle and foot ICD10_2010 +M88.88 Pagets disease of other bones, other site ICD10_2010 +M88.89 Pagets disease of other bones, site unspecified ICD10_2010 +M88.9 Pagets disease of bone, unspecified ICD10_2010 +M88.90 Pagets disease of bone, unspecified, multiple sites ICD10_2010 +M88.91 Pagets disease of bone, unspecified, shoulder region ICD10_2010 +M88.92 Pagets disease of bone, unspecified, upper arm ICD10_2010 +M88.93 Pagets disease of bone, unspecified, forearm ICD10_2010 +M88.94 Pagets disease of bone, unspecified, hand ICD10_2010 +M88.95 Pagets disease of bone, unspecified, pelvic and thigh ICD10_2010 +M88.96 Pagets disease of bone, unspecified, lower leg ICD10_2010 +M88.97 Pagets disease of bone, unspecified, ankle and foot ICD10_2010 +M88.98 Pagets disease of bone, unspecified, other site ICD10_2010 +M88.99 Pagets 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 +M91.1 Juv osteochondrosis head of femur [legg-calv 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.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 +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 +N42.2 Atrophy of prostate 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 +N42.3 Dysplasia of prostate 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 +N76.5 Ulceration of vagina 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.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 Bartholins gland ICD10_2010 +N75.1 Abscess of Bartholins gland ICD10_2010 +N75.8 Other diseases of Bartholins gland ICD10_2010 +N75.9 Disease of Bartholins 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.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 +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 +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 Erbs paralysis due to birth injury ICD10_2010 +P14.1 Klumpkes 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-twins 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 Cows 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 Ebsteins 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 Meckels diverticulum ICD10_2010 +Q43.1 Hirschsprungs 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.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 Potters 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 +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 Marfans 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 Downs 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 Pataus 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 turners syndrome ICD10_2010 +Q96.9 Turners 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 Klinefelters 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 +R94.5 Abnormal results of liver function studies 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.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 +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.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 +S49 Other and unspecified injuries of shoulder and upper arm 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 +S92.1 Fracture of talus 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 +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.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 Disln 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 +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 +V90 Accident to watercraft causing drowning and submersion 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 +V29.8 Motorcycle rider [any] injured in other specified transport accidents 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.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 +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 +V49 Car occupant injured in other and unspecified transport accidents 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.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 +V63 Occupant of heavy transport vehicle injured in collision with car, pick-up truck or van 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.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 +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 +V72.4 Bus occupant injured in collision with two- or three-wheeled motor vehicle: Person injured while boarding or alighting 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.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 victims 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 victims 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.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 +W12.4 Fall on and from scaffolding, Street and Highway 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 +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.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 +W78.5 Inhalation of gastric contents, Trade and Service Area 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 +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.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 +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 +X51.7 Travel and motion, Farm 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 +X51.8 Travel and motion, Other Specified Area ICD10_2010 +X51.9 Travel and motion, Unspecified Place 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 +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 +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 +Y01.7 Assault by pushing from high place, 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 +Y49.5 Other antipsychotics and neuroleptics 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 +Y58.4 Tetanus vaccine 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.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 +Y58.5 Diphtheria vaccine 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 +Y18.5 Poisoning by and exposure to pesticides, undetermined intent, Trade and Service 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 +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.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 +Y49.4 Butyrophenone and thioxanthene neuroleptics 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.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.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 +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 +Z00.2 Examination for period of rapid growth in childhood 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.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 patients decision for reason of belief or group pressure ICD10_2010 +Z28.2 Immunization not carried out because patients 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 patients decision reasons belief and group pressure ICD10_2010 +Z53.2 Procedure not carried out because patients 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 patients sexual behavior and orientation ICD10_2010 +Z70.2 Counselling related to patients 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 +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 +\. + + +-- +-- TOC entry 5131 (class 0 OID 17649) +-- Dependencies: 228 +-- Data for Name: icd9; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.icd9 ("ID_ICD9", "Prosedur", "Versi_ICD9") FROM stdin; +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 +03.31 Spinal tap 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.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 +20.92 Revision of mastoidectomy 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 +45.01 Incision of duodenum 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 tenons 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 +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.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 +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.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 +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 Bartholins gland ICD9CM_2010 +71.21 Percutaneous aspiration of Bartholins gland (cyst) ICD9CM_2010 +71.22 Incision of Bartholins gland (cyst) ICD9CM_2010 +71.23 Marsupialization of Bartholins gland (cyst) ICD9CM_2010 +71.24 Excision or other destruction of Bartholins gland (cyst) ICD9CM_2010 +71.29 Other operations on Bartholins 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 +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 +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 +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 +\. + + +-- +-- TOC entry 5133 (class 0 OID 17661) +-- Dependencies: 230 +-- Data for Name: ina_cbg_rawatinap; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.ina_cbg_rawatinap ("ID_INACBG_RI", "Tindakan_RI", "Tarif_Kelas_3", "Tarif_Kelas_2", "Tarif_Kelas_1") FROM stdin; +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 +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 +\. + + +-- +-- TOC entry 5134 (class 0 OID 17669) +-- Dependencies: 231 +-- Data for Name: ina_cbg_rawatjalan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.ina_cbg_rawatjalan ("ID_INACBG_RJ", "Tindakan_RJ", "Tarif_RJ") FROM stdin; +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 +\. + + +-- +-- TOC entry 5135 (class 0 OID 17675) +-- Dependencies: 232 +-- Data for Name: pasien; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.pasien ("ID_Pasien", "Nama_Pasien", "Jenis_Kelamin", "Usia", "Ruangan", "Kelas") FROM stdin; +\. + + +-- +-- TOC entry 5136 (class 0 OID 17684) +-- Dependencies: 233 +-- Data for Name: ruangan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.ruangan ("ID_Ruangan", "Jenis_Ruangan", "Nama_Ruangan", keterangan, kategori_ruangan) FROM stdin; +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 +\. + + +-- +-- TOC entry 5137 (class 0 OID 17690) +-- Dependencies: 234 +-- Data for Name: tarif_rs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.tarif_rs ("ID_Tarif_RS", "Tindakan_RS", "Tarif_RS", "Kategori_RS") FROM stdin; +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.LPK.049 CA 125 413000 TINDAKAN/PEMERIKSAAN PATOLOGI 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.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 +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 +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 BIERS 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 +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 +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 POTAL ) 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.1585 PEMASANGAN CVC - 38.97 2210000 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.1796 AKUPRESSURE BERAT 60000 TINDAKAN KOMPLEMENTER +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.1797 MEDICAL CHECK UP BEBAS KETUNAAN 200000 MEDICAL CHECK UP +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.TO.0406 CAPSULE ENDOSCOPY 7764000 TINDAKAN 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 +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.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.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.1321 NECK, BRANCHIAL FISTULA, REMOVAL 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 +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.0346 BREAST, DIFFUSE HYPERTROPHY, REDUCTION MAMMOPLASTY\\n>500G (BILATERAL) 24989000 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.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.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, HIRSCHSPRUNGS 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.0533 EAR, TYMPANIC MEMBRANE, UNILATERAL MYRINGOTOMY\\nWITH TUBE 4493000 TINDAKAN OPERATIF +R.TO.1322 NECK, TORTICOLLIS, CORRECTION 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, DESCEMETS 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.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 +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.1383 NOSE, RHINOPHYMA, EXCISION 8929000 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, DUPUYTRENS CONTRACTURE, FASCIECTOMY\\n(MULTIPLE) 22717000 TINDAKAN OPERATIF +R.TO.0680 FASCIA PALMAR, DUPUYTRENS 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, HAGLUNDS 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.0896 HUMERUS, CUBITUS VARUS, CORRECTIVE OSTEOTOMY WITH\\nPLATING 17958000 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.1137 LUMBAR PLEXUS, BLOCK, CATHETER 3744000 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, MECKELS 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.1138 LUMBAR PLEXUS, BLOCK, NO CATHETER 3120000 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.1139 LUNG, BRONCHOSCOPY, INSERTION OF PROSTHESIS 8929000 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 +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.1140 LUNG, MASSIVE HEMOPTYSIS, BRONCHIAL ARTERY\\nEMBOLISATION 13579000 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.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, THOMSONS 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.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), GUYONS TUNNEL SYNDROME, RELEASE\\n(BILATERAL WITH ENDONEUROLYSIS) 11808000 TINDAKAN OPERATIF +R.TO.1339 NERVE (UPPER LIMB), GUYONS 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.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.2454 BIOPSY OF PERICARDIUM - 37.24 33261000 TINDAKAN OPERATIF +R.TO.1446 PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING PANCREATIC HEAD RESECTION WITH LONGITUDINAL\\nPANCREATICO-ENTERIC ANASTOMOSIS (FREYS OPERATION) 33261000 TINDAKAN OPERATIF +R.TO.1447 PANCREAS, VARIOUS LESIONS, DUODENUM PRESERVING\\nPANCREATIC HEAD RESECTION (BEGERS 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, PEYRONIES DISEASE, INCISION AND GRAFTING 10268000 TINDAKAN OPERATIF +R.TO.1495 PENIS, PEYRONIES 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 +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, HIRSCHSPRUNGS DISEASE, ANAL SPHINCTEROTOMY 6470000 TINDAKAN OPERATIF +R.TO.1552 RECTUM, HIRSCHSPRUNGS DISEASE, RECTAL MYECTOMY 8929000 TINDAKAN OPERATIF +R.TO.1553 RECTUM, HIRSCHSPRUNGS 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, HARTMANNS 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.1920 THORAX, CATHETER BLOCKAGE, IMAGING GUIDED CATHETER\\nCHANGE/CATHETER ADJUSTMENT/CHECK TUBE 2600000 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 QUERVAINS (BILATERAL),\\nRELEASE 10268000 TINDAKAN OPERATIF +R.TO.1885 TENDON SHEATH (UPPER LIMB), DE QUERVAINS (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.2235 VULVA, IMPERFORATE HYMEN, HYMENECTOMY 3120000 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 +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 ASHERMANS (COMPLICATED),\\nHYSTEROSCOPIC 7764000 TINDAKAN OPERATIF +R.TO.2098 UTERUS, LYSIS OF ASHERMANS (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, WERTHEIMS 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/KELLYS 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.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 +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.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 +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.3189 PAROTIDEKTOMI PARSIAL - 26.31 11808000 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.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.3330 REMOVAL OF INTERNAL BIVENTRICULAR HEART REPLACEMENT\\nSYSTEM - 37.55 33261000 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.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 +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 +\. + + +-- +-- TOC entry 5149 (class 0 OID 0) +-- Dependencies: 235 +-- Name: admin_ruangan_ID_Admin_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public."admin_ruangan_ID_Admin_seq"', 1, false); + + +-- +-- TOC entry 5150 (class 0 OID 0) +-- Dependencies: 236 +-- Name: billing_pasien_ID_Billing_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public."billing_pasien_ID_Billing_seq"', 37, true); + + +-- +-- TOC entry 5151 (class 0 OID 0) +-- Dependencies: 237 +-- Name: dokter_ID_Dokter_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public."dokter_ID_Dokter_seq"', 1155, true); + + +-- +-- TOC entry 5152 (class 0 OID 0) +-- Dependencies: 238 +-- Name: pasien_ID_Pasien_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public."pasien_ID_Pasien_seq"', 34, true); + + +-- +-- TOC entry 5153 (class 0 OID 0) +-- Dependencies: 239 +-- Name: ruangan_ID_Ruangan_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public."ruangan_ID_Ruangan_seq"', 1, false); + + +-- +-- TOC entry 4940 (class 2606 OID 17697) +-- Name: admin_ruangan admin_ruangan_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.admin_ruangan + ADD CONSTRAINT admin_ruangan_pk PRIMARY KEY ("ID_Admin"); + + +-- +-- TOC entry 4953 (class 2606 OID 17710) +-- Name: billing_pasien billing_pasien_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.billing_pasien + ADD CONSTRAINT billing_pasien_pk PRIMARY KEY ("ID_Billing"); + + +-- +-- TOC entry 4958 (class 2606 OID 17715) +-- Name: dokter dokter_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.dokter + ADD CONSTRAINT dokter_pk PRIMARY KEY ("ID_Dokter"); + + +-- +-- TOC entry 4962 (class 2606 OID 17719) +-- Name: icd10 icd10_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.icd10 + ADD CONSTRAINT icd10_pk PRIMARY KEY ("ID_ICD10"); + + +-- +-- TOC entry 4960 (class 2606 OID 17717) +-- Name: icd9 icd9_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.icd9 + ADD CONSTRAINT icd9_pk PRIMARY KEY ("ID_ICD9"); + + +-- +-- TOC entry 4964 (class 2606 OID 17721) +-- Name: ina_cbg_rawatinap ina_cbg_rawatinap_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.ina_cbg_rawatinap + ADD CONSTRAINT ina_cbg_rawatinap_pk PRIMARY KEY ("ID_INACBG_RI"); + + +-- +-- TOC entry 4966 (class 2606 OID 17723) +-- Name: ina_cbg_rawatjalan ina_cbg_rawatjalan_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.ina_cbg_rawatjalan + ADD CONSTRAINT ina_cbg_rawatjalan_pk PRIMARY KEY ("ID_INACBG_RJ"); + + +-- +-- TOC entry 4968 (class 2606 OID 17725) +-- Name: pasien pasien_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.pasien + ADD CONSTRAINT pasien_pk PRIMARY KEY ("ID_Pasien"); + + +-- +-- TOC entry 4970 (class 2606 OID 17727) +-- Name: ruangan ruangan_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.ruangan + ADD CONSTRAINT ruangan_pk PRIMARY KEY ("ID_Ruangan"); + + +-- +-- TOC entry 4972 (class 2606 OID 17729) +-- Name: tarif_rs tarif_rs_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.tarif_rs + ADD CONSTRAINT tarif_rs_pk PRIMARY KEY ("ID_Tarif_RS"); + + +-- +-- TOC entry 4941 (class 1259 OID 17698) +-- Name: idx_admin_ruangan_id_ruangan; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_admin_ruangan_id_ruangan ON public.admin_ruangan USING btree ("ID_Ruangan"); + + +-- +-- TOC entry 4942 (class 1259 OID 17700) +-- Name: idx_billing_dokter_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_dokter_id_billing ON public.billing_dokter USING btree ("ID_Billing"); + + +-- +-- TOC entry 4943 (class 1259 OID 17699) +-- Name: idx_billing_dokter_id_dokter; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_dokter_id_dokter ON public.billing_dokter USING btree ("ID_Dokter"); + + +-- +-- TOC entry 4946 (class 1259 OID 17703) +-- Name: idx_billing_icd10_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_icd10_id_billing ON public.billing_icd10 USING btree ("ID_Billing"); + + +-- +-- TOC entry 4947 (class 1259 OID 17704) +-- Name: idx_billing_icd10_id_icd10; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_icd10_id_icd10 ON public.billing_icd10 USING btree ("ID_ICD10"); + + +-- +-- TOC entry 4944 (class 1259 OID 17701) +-- Name: idx_billing_icd9_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_icd9_id_billing ON public.billing_icd9 USING btree ("ID_Billing"); + + +-- +-- TOC entry 4945 (class 1259 OID 17702) +-- Name: idx_billing_icd9_id_icd9; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_icd9_id_icd9 ON public.billing_icd9 USING btree ("ID_ICD9"); + + +-- +-- TOC entry 4948 (class 1259 OID 17705) +-- Name: idx_billing_inacbg_ri_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_inacbg_ri_id_billing ON public.billing_inacbg_ri USING btree ("ID_Billing"); + + +-- +-- TOC entry 4949 (class 1259 OID 17706) +-- Name: idx_billing_inacbg_ri_id_inacbg_ri; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_inacbg_ri_id_inacbg_ri ON public.billing_inacbg_ri USING btree ("ID_INACBG_RI"); + + +-- +-- TOC entry 4950 (class 1259 OID 17707) +-- Name: idx_billing_inacbg_rj_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_inacbg_rj_id_billing ON public.billing_inacbg_rj USING btree ("ID_Billing"); + + +-- +-- TOC entry 4951 (class 1259 OID 17708) +-- Name: idx_billing_inacbg_rj_id_inacbg_rj; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_inacbg_rj_id_inacbg_rj ON public.billing_inacbg_rj USING btree ("ID_INACBG_RJ"); + + +-- +-- TOC entry 4954 (class 1259 OID 17711) +-- Name: idx_billing_pasien_id_pasien; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_pasien_id_pasien ON public.billing_pasien USING btree ("ID_Pasien"); + + +-- +-- TOC entry 4955 (class 1259 OID 17712) +-- Name: idx_billing_tindakan_id_billing; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_tindakan_id_billing ON public.billing_tindakan USING btree ("ID_Billing"); + + +-- +-- TOC entry 4956 (class 1259 OID 17713) +-- Name: idx_billing_tindakan_id_tarif_rs; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX idx_billing_tindakan_id_tarif_rs ON public.billing_tindakan USING btree ("ID_Tarif_RS"); + + +-- +-- TOC entry 4973 (class 2606 OID 17805) +-- Name: billing_dpjp billing_dpjp_ID_Billing_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.billing_dpjp + ADD CONSTRAINT "billing_dpjp_ID_Billing_fkey" FOREIGN KEY ("ID_Billing") REFERENCES public.billing_pasien("ID_Billing"); + + +-- +-- TOC entry 4974 (class 2606 OID 17810) +-- Name: billing_dpjp billing_dpjp_ID_DPJP_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.billing_dpjp + ADD CONSTRAINT "billing_dpjp_ID_DPJP_fkey" FOREIGN KEY ("ID_DPJP") REFERENCES public.dokter("ID_Dokter"); + + +-- Completed on 2026-02-05 10:03:35 + +-- +-- PostgreSQL database dump complete +-- + +\unrestrict NIYAIXl9641cPM6XamBgGBnEkiNiZxXPSdvwIJdadJqsydVBvYsVqHU5FVjVQ5x + diff --git a/backendcareit_v4/.env b/backendcareit_v4/.env deleted file mode 100644 index ee48186..0000000 --- a/backendcareit_v4/.env +++ /dev/null @@ -1,17 +0,0 @@ -# DB_USER=careit_user -DB_USER=postgres -DB_PASSWORD= gakbikinkembung25 -# DB_HOST=31.97.109.192 -DB_HOST=localhost -# DB_HOST=postgres -DB_PORT=5432 -DB_NAME=careit_db -HOST=0.0.0.0 -# PORT=8080 -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 index cd63856..9a60131 100644 --- a/backendcareit_v4/.gitignore +++ b/backendcareit_v4/.gitignore @@ -31,4 +31,5 @@ npm-debug.log* *.test *.out - +# env files (can opt-in for committing if needed) +.env diff --git a/docker-compose.yml b/docker-compose.yml index fea3f10..aa2870e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,7 @@ services: dockerfile: Dockerfile container_name: careit_backend environment: - DB_HOST: ${DB_HOST:-host.docker.internal} + DB_HOST: ${DB_HOST:-db} DB_PORT: ${DB_PORT:-5432} DB_USER: ${DB_USER} DB_PASSWORD: ${DB_PASSWORD} @@ -16,6 +16,8 @@ services: PORT: 8081 ports: - "8081:8081" + depends_on: + - db networks: - careit_network restart: unless-stopped @@ -35,6 +37,25 @@ services: - careit_network restart: unless-stopped + db: + image: postgres:18 + container_name: careit_db + restart: unless-stopped + environment: + POSTGRES_USER: ${DB_USER} + POSTGRES_PASSWORD: ${DB_PASSWORD} + POSTGRES_DB: ${DB_NAME} + ports: + - "5432:5432" + volumes: + - ./SQL:/docker-entrypoint-initdb.d + - careit_pgdata:/var/lib/postgresql + networks: + - careit_network + networks: careit_network: driver: bridge + +volumes: + careit_pgdata: \ No newline at end of file diff --git a/frontendcareit_v4/.gitignore b/frontendcareit_v4/.gitignore index 664683d..64d5d5e 100644 --- a/frontendcareit_v4/.gitignore +++ b/frontendcareit_v4/.gitignore @@ -31,7 +31,7 @@ yarn-error.log* .pnpm-debug.log* # env files (can opt-in for committing if needed) -.env* +.env.local # vercel .vercel