SlideShare a Scribd company logo
1 of 36
FHIR 快速掃描
以臨床資料為例,簡介如何使用 FHIR 並進行資料存取
Lorex L. Yang(楊宇凡)<ceo@sita.tech>
May 23, 2019 / 花蓮慈濟大學/FHIR 生理監測及醫學影像跨院互通研討會
About myself
• Backend developer / node.js
• Linux server administration
• Proxmox VE / Docker
• Web hosting service
• Open source lover
• 矽塔資訊服務有限公司 | 執行長
• 雪歐有限公司 | 技術長
• 高嘉國際餐飲股份有限公司 | 系統工程師
• 宇宙新幹線科技有限公司 | 系統工程師
• Lionfree 獅子的免費虛擬主機 | 共同創辦人
FHIR 簡介
Fast 快速
Healthcare 健康照護
Interoperability 互通
Resources 資源
FHIR 概觀
• 是一種新興的醫療資訊交換標準
• 由 HL7 International(國際健康資訊第七層協會)制定
• 奠基於 HL7 v2 & HL7 v3 標準
• 主要目標為
1. 促進醫療單位有效溝通醫療相關資訊
2. 廣泛應用於多種設備,包含但不限於電腦、手機、平板等裝置
重點在快速
傳統資料互通方式
資料格式不一致,無法互通
導入 FHIR 後的資料互通方式
格式一致,可以無痛互通!
So what is FHIR?
• 基本上就是一個資料模型
• 把整個醫療流程/體系中會接觸到的資料全部標準化為單一資料結構
• 支援多種不同資料格式
• 採用主流資訊實作標準
 沒醫學基礎的工程師也可以理解,很好上手
 要跟其他系統對接也很方便
• 可讀性高
 醫療人員不用懂程式設計,也能看得懂資料
• 格式嚴謹,Document 齊全且明確
• Developer Friendly ❤
Example 1
Example 2
FHIR 結構
• 對醫療人員/醫學系學生來說,
FHIR 是一種描述醫療資源/行為/數據/流程…etc 的方法
• 對開發人員/醫資or醫工系學生員來說,
我們熟悉的 FHIR 事實上是一堆 Data Structure
• 每一個醫療資源/行為/數據/流程…etc 都是一個 Resource
• 依照不同的分類,FHIR 將幾個 Resource 組成一支 Module 方便檢視
如何快速讀懂 FHIR
Document ?
隨便抓一個 Resource 看一下
欄位名稱
對應數量 資料型態(Data
Type)
欄位定義
Data Structure? Data Format? Data
Type?
• 所謂的 Data Structure(資料結構),是對一組資料組成的定義
• 而 Data Format(資料格式),則是表達這組資料的方法(例如 XML、JSON 等)
• 一個 Data Structure 可以用許多不同的 Data Format 所表示
• 一個 Resource 只有一種 Structure,但是支援多種 Data Format
• 在開發實務上,並不需要認識所有的 Data Format,僅需挑一種來用即可
• 至於 Data Type(資料型態),則是定義一項資料值的類型(例如 Number、
String、Time…etc)
Data Type
Primitive Type Complex Type
Primitive Type vs. Complex Type
• Primitive Types 大多是常見且格式定義明確的資料型態。
 例如 integer 就是 “整數”date 是 “日期”,兩者都有既定的格式
• Complex Types 比較複雜,大多由數個 Primitive Type 組成
 一個 Complex Type 內,甚至可以由其他 Complex Type 構成
Primitive
Primitive
Primitive
Complex
Complex
另外還有一個 Reference
Reference 是對應到其他 Resource 的參
照
可以透過 ID 與其他 Resource 對應在一起
資料型態(Complex)
參照
資料型態(Primitive)
網站有提供範例,抓下來改即可
如何存取 FHIR 資料 ?
REST API
• 當代主流的資訊交換技術,廣泛應用於軟體開發
• 充分使用 HTTP 通訊協議
• 擁有簡潔直觀的 URI
• 透過 REST API 可以對 FHIR 資料庫進行各項操作(增/刪/改/查)
• 接受 FHIR 所支援的 Data Format(JSON and XML)
REST API 的應用情境
單一資源(例如 /user/1)
GET 列出該筆Resource
與其下的 Attributes
POST 在該筆Resource下
新增給定的
Attributes
PUT 使用給定的
Resource與
Attributes 取代原有
Resource(整筆替
換)
PATCH 只更新該筆
Resource下指定的
Attributes(部分更
新)
多重資源(例如 /users)
GET 列出該資源組裡面所
有Resources
POST 在該資源組中新增
Resource
PUT 若該資源組中無指定
Resource,則新增
(跟POST 一樣),
否則就整筆替代該
Resource
DELETE 刪除整個資源組下的
所有 Resources
REST API 使用方法
<Method> <baseURL>/<resource>/[id]{?options}
HTTP 方法 網址 目標 resource id 選
項
看不懂嗎?
GET
https://hapi.fhir.tw/baseDstu3/Observation/41123?_pretty=true
HTTP Method BaseURL Resourc
e
OptionsId
組織臨床資料,並寫入 FHIR Server
內
以 Patient 為例
範例病人資料
• 姓名:王大明
• 性別:男連絡電話:0912-345-678
• 聯絡地址:高雄市小港區大馬路999號
• 資料有效狀態:YES
• 生日:84/01/01
組織資料步驟
• 判定、或取得各欄位所屬的 Resource 與 Field Name,並建一張表對應
原始欄位 原始資料 對應欄位 資料格式
姓名 王大明 Patient.name HumanName
性別 男 Patient.gender code
(male | female | other |
unknown)
連絡電話 0912-345-678 Patient.contact.telecom ContactPoint
聯絡地址 高雄市小港區大馬路999號 Patient.contact.address Address
資料有效狀態 Yes Patient.active boolean
生日 84/01/01 Patient.birthDate date
組織資料步驟
• 以 JSON 為例,去組織資料,暫時先不要理 Complex Type 的欄位
(紅色字體為 Complex Type 欄位,因為還沒完成所以顯示 JSON 格式不正確)
組織資料步驟
• 確認 Complex Type 內的格式內容,然後依次展開後填入
寫入資料
• POST https://hapi.fhir.tw/baseDstu3/Patient
• Body 資料如右
• 執行結果如下
哪裡可以測試 FHIR?
• UHN 公開伺服器(目前最多人用)
http://fhirtest.uhn.ca
• 臺灣公開測試伺服器(較推薦/支援 SSL 加密連線)
https://hapi.fhir.tw
Q&A
感謝聆聽

More Related Content

What's hot

使用 laravel 的前與後
使用 laravel 的前與後使用 laravel 的前與後
使用 laravel 的前與後Shengyou Fan
 
Zabbixのパフォーマンスチューニング & インストール時の注意点
Zabbixのパフォーマンスチューニング & インストール時の注意点Zabbixのパフォーマンスチューニング & インストール時の注意点
Zabbixのパフォーマンスチューニング & インストール時の注意点Kodai Terashima
 
從緊急事件 談 SRE 應變能力的培養 - DevOpsDays Taipei 2018
從緊急事件  談 SRE 應變能力的培養 - DevOpsDays Taipei 2018從緊急事件  談 SRE 應變能力的培養 - DevOpsDays Taipei 2018
從緊急事件 談 SRE 應變能力的培養 - DevOpsDays Taipei 2018Rick Hwang
 
REST API のコツ
REST API のコツREST API のコツ
REST API のコツpospome
 
給開發人員的資料庫效能建議
給開發人員的資料庫效能建議給開發人員的資料庫效能建議
給開發人員的資料庫效能建議Rico Chen
 
JSON:APIについてざっくり入門
JSON:APIについてざっくり入門JSON:APIについてざっくり入門
JSON:APIについてざっくり入門iPride Co., Ltd.
 
DockerコンテナでGitを使う
DockerコンテナでGitを使うDockerコンテナでGitを使う
DockerコンテナでGitを使うKazuhiro Suga
 
Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Emma Haruka Iwao
 
RestfulなAPIの設計のお話
RestfulなAPIの設計のお話RestfulなAPIの設計のお話
RestfulなAPIの設計のお話ftsan
 
gRPC と nginx による HTTP/2 サービスメッシュ構築
gRPC と nginx による HTTP/2 サービスメッシュ構築gRPC と nginx による HTTP/2 サービスメッシュ構築
gRPC と nginx による HTTP/2 サービスメッシュ構築Kazuki Ogiwara
 
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)Kazuya Sugimoto
 
KeycloakのDevice Flow、CIBAについて
KeycloakのDevice Flow、CIBAについてKeycloakのDevice Flow、CIBAについて
KeycloakのDevice Flow、CIBAについてHiroyuki Wada
 
全社情報共有サイトへの Alfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会
全社情報共有サイトへのAlfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会全社情報共有サイトへのAlfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会
全社情報共有サイトへの Alfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会Ryota Watabe
 
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...Akihiro Suda
 
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介IBM Analytics Japan
 
MySQLからPostgreSQLへのマイグレーションのハマリ所
MySQLからPostgreSQLへのマイグレーションのハマリ所MySQLからPostgreSQLへのマイグレーションのハマリ所
MySQLからPostgreSQLへのマイグレーションのハマリ所Makoto Kaga
 
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くした
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くしたNginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くした
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くしたtoshi_pp
 

What's hot (20)

RESTfulとは
RESTfulとはRESTfulとは
RESTfulとは
 
使用 laravel 的前與後
使用 laravel 的前與後使用 laravel 的前與後
使用 laravel 的前與後
 
Zabbixのパフォーマンスチューニング & インストール時の注意点
Zabbixのパフォーマンスチューニング & インストール時の注意点Zabbixのパフォーマンスチューニング & インストール時の注意点
Zabbixのパフォーマンスチューニング & インストール時の注意点
 
從緊急事件 談 SRE 應變能力的培養 - DevOpsDays Taipei 2018
從緊急事件  談 SRE 應變能力的培養 - DevOpsDays Taipei 2018從緊急事件  談 SRE 應變能力的培養 - DevOpsDays Taipei 2018
從緊急事件 談 SRE 應變能力的培養 - DevOpsDays Taipei 2018
 
REST API のコツ
REST API のコツREST API のコツ
REST API のコツ
 
今さら聞けない人のためのGitLabの始め方 Ubuntu編
今さら聞けない人のためのGitLabの始め方 Ubuntu編今さら聞けない人のためのGitLabの始め方 Ubuntu編
今さら聞けない人のためのGitLabの始め方 Ubuntu編
 
給開發人員的資料庫效能建議
給開發人員的資料庫效能建議給開發人員的資料庫效能建議
給開發人員的資料庫效能建議
 
JSON:APIについてざっくり入門
JSON:APIについてざっくり入門JSON:APIについてざっくり入門
JSON:APIについてざっくり入門
 
DockerコンテナでGitを使う
DockerコンテナでGitを使うDockerコンテナでGitを使う
DockerコンテナでGitを使う
 
Ceph アーキテクチャ概説
Ceph アーキテクチャ概説Ceph アーキテクチャ概説
Ceph アーキテクチャ概説
 
RestfulなAPIの設計のお話
RestfulなAPIの設計のお話RestfulなAPIの設計のお話
RestfulなAPIの設計のお話
 
gRPC と nginx による HTTP/2 サービスメッシュ構築
gRPC と nginx による HTTP/2 サービスメッシュ構築gRPC と nginx による HTTP/2 サービスメッシュ構築
gRPC と nginx による HTTP/2 サービスメッシュ構築
 
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)
Java クライント実装におけるAPIスタイル頂上決戦! 野良REST vs GraphQL vs OData vs OpenAPI (Swagger)
 
KeycloakのDevice Flow、CIBAについて
KeycloakのDevice Flow、CIBAについてKeycloakのDevice Flow、CIBAについて
KeycloakのDevice Flow、CIBAについて
 
全社情報共有サイトへの Alfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会
全社情報共有サイトへのAlfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会全社情報共有サイトへのAlfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会
全社情報共有サイトへの Alfresco Community 5 導入事例紹介 - 第27回Alfresco勉強会
 
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...
[DockerCon 2023] Reproducible builds with BuildKit for software supply chain ...
 
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介
Db2 v11.5.4 高可用性構成 & HADR 構成パターンご紹介
 
MySQLからPostgreSQLへのマイグレーションのハマリ所
MySQLからPostgreSQLへのマイグレーションのハマリ所MySQLからPostgreSQLへのマイグレーションのハマリ所
MySQLからPostgreSQLへのマイグレーションのハマリ所
 
HTML 語法教學
HTML 語法教學HTML 語法教學
HTML 語法教學
 
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くした
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くしたNginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くした
NginxとLuaを用いた動的なリバースプロキシでデプロイを 100 倍速くした
 

Similar to 慈濟大學/FHIR 快速掃描/DSTU3 版本

基於語意網的搜尋引擎
基於語意網的搜尋引擎基於語意網的搜尋引擎
基於語意網的搜尋引擎guestbb1b48
 
语义互操作与关联数据
语义互操作与关联数据语义互操作与关联数据
语义互操作与关联数据Shanghai Library
 
鏈結資料在圖書館的應用
鏈結資料在圖書館的應用鏈結資料在圖書館的應用
鏈結資料在圖書館的應用皓仁 柯
 
Rest与面向资源的web开发
Rest与面向资源的web开发Rest与面向资源的web开发
Rest与面向资源的web开发topgeek
 
Linked data: What for and How to
Linked data: What for and How toLinked data: What for and How to
Linked data: What for and How toShanghai Library
 
Restful
RestfulRestful
Restfulmedcl
 
資源探索服務之功能評估指標
資源探索服務之功能評估指標資源探索服務之功能評估指標
資源探索服務之功能評估指標皓仁 柯
 
关联数据Abc与近年进展
关联数据Abc与近年进展关联数据Abc与近年进展
关联数据Abc与近年进展Shanghai Library
 
南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議maolins
 
南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議maolins
 
Elastic stack day-1
Elastic stack day-1Elastic stack day-1
Elastic stack day-1YI-CHING WU
 
數位保存的趨勢與實務
數位保存的趨勢與實務數位保存的趨勢與實務
數位保存的趨勢與實務皓仁 柯
 
Ch01 簡介Web應用程式
Ch01 簡介Web應用程式Ch01 簡介Web應用程式
Ch01 簡介Web應用程式Justin Lin
 
N世代情報收集術
N世代情報收集術N世代情報收集術
N世代情報收集術基欽 劉
 
10702何崇先個人主題投影片製作
10702何崇先個人主題投影片製作10702何崇先個人主題投影片製作
10702何崇先個人主題投影片製作崇先 何
 
Introduction of libraries' big data in China
Introduction of libraries' big data in ChinaIntroduction of libraries' big data in China
Introduction of libraries' big data in Chinayuanxinz
 

Similar to 慈濟大學/FHIR 快速掃描/DSTU3 版本 (20)

基於語意網的搜尋引擎
基於語意網的搜尋引擎基於語意網的搜尋引擎
基於語意網的搜尋引擎
 
语义互操作与关联数据
语义互操作与关联数据语义互操作与关联数据
语义互操作与关联数据
 
鏈結資料在圖書館的應用
鏈結資料在圖書館的應用鏈結資料在圖書館的應用
鏈結資料在圖書館的應用
 
Rest与面向资源的web开发
Rest与面向资源的web开发Rest与面向资源的web开发
Rest与面向资源的web开发
 
理解和利用关联数据 --图情档博(LAM)作为关联数据的提供者和消费者
理解和利用关联数据 --图情档博(LAM)作为关联数据的提供者和消费者理解和利用关联数据 --图情档博(LAM)作为关联数据的提供者和消费者
理解和利用关联数据 --图情档博(LAM)作为关联数据的提供者和消费者
 
Linked data: What for and How to
Linked data: What for and How toLinked data: What for and How to
Linked data: What for and How to
 
Restful
RestfulRestful
Restful
 
資源探索服務之功能評估指標
資源探索服務之功能評估指標資源探索服務之功能評估指標
資源探索服務之功能評估指標
 
关联数据Abc与近年进展
关联数据Abc与近年进展关联数据Abc与近年进展
关联数据Abc与近年进展
 
南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議
 
南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議南投縣國民中小學圖書館聯盟管理建議
南投縣國民中小學圖書館聯盟管理建議
 
Elastic stack day-1
Elastic stack day-1Elastic stack day-1
Elastic stack day-1
 
數位保存的趨勢與實務
數位保存的趨勢與實務數位保存的趨勢與實務
數位保存的趨勢與實務
 
Ch01 簡介Web應用程式
Ch01 簡介Web應用程式Ch01 簡介Web應用程式
Ch01 簡介Web應用程式
 
N世代情報收集術
N世代情報收集術N世代情報收集術
N世代情報收集術
 
资源整合与Web2.0
资源整合与Web2.0资源整合与Web2.0
资源整合与Web2.0
 
Kevenjiaoda
KevenjiaodaKevenjiaoda
Kevenjiaoda
 
资源整合与Web2.0
资源整合与Web2.0资源整合与Web2.0
资源整合与Web2.0
 
10702何崇先個人主題投影片製作
10702何崇先個人主題投影片製作10702何崇先個人主題投影片製作
10702何崇先個人主題投影片製作
 
Introduction of libraries' big data in China
Introduction of libraries' big data in ChinaIntroduction of libraries' big data in China
Introduction of libraries' big data in China
 

More from Lorex L. Yang

長榮大學/資料庫系統初探
長榮大學/資料庫系統初探長榮大學/資料庫系統初探
長榮大學/資料庫系統初探Lorex L. Yang
 
鳳山高中/網頁應用程式開發入門 I
鳳山高中/網頁應用程式開發入門 I鳳山高中/網頁應用程式開發入門 I
鳳山高中/網頁應用程式開發入門 ILorex L. Yang
 
淺談資訊教育與學習
淺談資訊教育與學習淺談資訊教育與學習
淺談資訊教育與學習Lorex L. Yang
 
開源社群經營 x 網站空間服務
開源社群經營 x 網站空間服務開源社群經營 x 網站空間服務
開源社群經營 x 網站空間服務Lorex L. Yang
 
中輟生談資訊教育
中輟生談資訊教育中輟生談資訊教育
中輟生談資訊教育Lorex L. Yang
 
快速入坑 IoT 裝置開發 @ 107 十資無畏
快速入坑 IoT 裝置開發 @ 107 十資無畏快速入坑 IoT 裝置開發 @ 107 十資無畏
快速入坑 IoT 裝置開發 @ 107 十資無畏Lorex L. Yang
 
快速入坑 Node.js - 0613 SITCON 雲林定期聚
快速入坑 Node.js - 0613 SITCON 雲林定期聚快速入坑 Node.js - 0613 SITCON 雲林定期聚
快速入坑 Node.js - 0613 SITCON 雲林定期聚Lorex L. Yang
 

More from Lorex L. Yang (7)

長榮大學/資料庫系統初探
長榮大學/資料庫系統初探長榮大學/資料庫系統初探
長榮大學/資料庫系統初探
 
鳳山高中/網頁應用程式開發入門 I
鳳山高中/網頁應用程式開發入門 I鳳山高中/網頁應用程式開發入門 I
鳳山高中/網頁應用程式開發入門 I
 
淺談資訊教育與學習
淺談資訊教育與學習淺談資訊教育與學習
淺談資訊教育與學習
 
開源社群經營 x 網站空間服務
開源社群經營 x 網站空間服務開源社群經營 x 網站空間服務
開源社群經營 x 網站空間服務
 
中輟生談資訊教育
中輟生談資訊教育中輟生談資訊教育
中輟生談資訊教育
 
快速入坑 IoT 裝置開發 @ 107 十資無畏
快速入坑 IoT 裝置開發 @ 107 十資無畏快速入坑 IoT 裝置開發 @ 107 十資無畏
快速入坑 IoT 裝置開發 @ 107 十資無畏
 
快速入坑 Node.js - 0613 SITCON 雲林定期聚
快速入坑 Node.js - 0613 SITCON 雲林定期聚快速入坑 Node.js - 0613 SITCON 雲林定期聚
快速入坑 Node.js - 0613 SITCON 雲林定期聚
 

Recently uploaded

Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...ktanvi103
 
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx年威 陳
 
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...ktanvi103
 
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...ktanvi103
 
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...ktanvi103
 
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...ktanvi103
 
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...ktanvi103
 
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...ktanvi103
 
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...ktanvi103
 
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...ktanvi103
 
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...ktanvi103
 
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...ktanvi103
 
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...ktanvi103
 
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...ktanvi103
 
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...ktanvi103
 
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...ktanvi103
 
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...only4webmaster01
 

Recently uploaded (17)

Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 25 ☂ 9999965857 ☂ Independent Escorts M...
 
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx
家屬器官捐贈動機 與 器官捐贈態度之研究 量表編制與驗證 16.07.2022.pptx
 
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...
Escorts Service Near Rohini Sector 19 ☂ 9999965857 ☂ Independent Call Girls P...
 
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...
Call Girls Service Near Dwarka Sector 26 ☂ 9999965857 ☂ Independent Escorts G...
 
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...
Escorts Service Near Rohini Sector 24 ☂ 9999965857 ☂ Independent Call Girls H...
 
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...
Escorts Service Near Rohini Sector 28 ☂ 9999965857 ☂ Independent Call Girls D...
 
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 34 ☂ 9999965857 ☂ Independent Call Girls L...
 
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...
Escorts Service Near Rohini Sector 22 ☂ 9999965857 ☂ Independent Call Girls S...
 
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...
Escorts Service Near Rohini Sector 5 ☂ 9999965857 ☂ Independent Call Girls In...
 
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...
Escorts Service Near Rohini Sector 7 ☂ 9999965857 ☂ Independent Call Girls Ma...
 
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...
Escorts Service Near Rohini Sector 2 ☂ 9999965857 ☂ Independent Call Girls Pi...
 
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...
Escorts Service Near Rohini Sector 8 ☂ 9999965857 ☂ Independent Call Girls Mu...
 
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...
Escorts Service Near Rohini Sector 21 ☂ 9999965857 ☂ Independent Call Girls R...
 
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...
Call Girls Service Near Dwarka Sector 24 ☂ 9999965857 ☂ Independent Escorts M...
 
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...
Escorts Service Near Rohini Sector 13 ☂ 9999965857 ☂ Independent Call Girls G...
 
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...
Escorts Service Near Rohini Sector 16 ☂ 9999965857 ☂ Independent Call Girls L...
 
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...
Call Grls In Rohini Sector 21 ☂ 7065000506 ☂ Independent Call Girls Rohini Se...
 

慈濟大學/FHIR 快速掃描/DSTU3 版本