Skip to content

Commit 6b7d634

Browse files
committed
Merge branch 'master' into update-fetal-records
2 parents 0658ead + 66abd84 commit 6b7d634

90 files changed

Lines changed: 6345 additions & 2880 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

OTHER-piqi-framework.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ballotUrl="http://hl7.org/xprod/uv/piqi/2025Sep" ciUrl="https://build.fhir.org/ig/HL7/piqi" defaultVersion="1.0.0-ballot" defaultWorkgroup="cgp" url="http://hl7.org/xprod/uv/piqi">
3+
<version code="current" url="https://build.fhir.org/ig/HL7/piqi"/>
4+
<version code="1.0.0-ballot" url="http://hl7.org/xprod/uv/piqi/2025Sep"/>
5+
<artifactPageExtension value="-definitions"/>
6+
<artifactPageExtension value="-examples"/>
7+
<artifactPageExtension value="-mappings"/>
8+
<page key="NA" name="(NA)"/>
9+
<page key="many" name="(many)"/>
10+
<page key="artifacts" name="Artifacts Summary"/>
11+
<page key="changes" name="Change History"/>
12+
<page key="requirements_and_use_case" name="Data Quality Use Cases"/>
13+
<page key="evaluation" name="Evaluation"/>
14+
<page key="index" name="Home"/>
15+
<page key="background" name="PIQI Background"/>
16+
<page key="piqi_framework" name="PIQI Framework"/>
17+
<page key="sams" name="Simple Assessment Modules (SAMS)"/>
18+
<page key="toc" name="Table of Contents"/>
19+
</specification>

OTHER-rccmh.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<specification defaultWorkgroup="mh" defaultVersion="1.0-ballot" url="http://www.hl7.org/documentcenter/public/ballots/2025MAY/downloads/HL7_RCC-MH_E1_S1_2025MAY.pdf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../schemas/specification.xsd">
3+
<version code="1.0-ballot" deprecated="false"/>
4+
<page name="Foreward" key="foreword"/>
5+
<page name="Introduction" key="introduction"/>
6+
<page name="Scope" key="scope"/>
7+
<page name="Normative references" key="normref"/>
8+
<page name="Terms and definitions" key="termsdef"/>
9+
<page name="Abbreviations" key="abbrev"/>
10+
<page name="RCC-MH care locations and evolution" key="careloc"/>
11+
<page name="RCC-MH relevant care delivery modes and use cases" key="caredelivery"/>
12+
<page name="RCC-MH challenges and gaps" key="gaps"/>
13+
<page name="RCC-MH recommendations" key="recommendations"/>
14+
<page name="Conclusions and path forward" key="conclusions"/>
15+
<page name="Annex A" key="annexa"/>
16+
<page name="Annex B" key="annexb"/>
17+
<page name="Annex C" key="annexc"/>
18+
<page name="Annex D" key="annexd"/>
19+
<page name="Annex E" key="annexe"/>
20+
<page name="Annex F" key="annexf"/>
21+
<page name="Annex G" key="annexg"/>
22+
<page name="Annex H" key="annexh"/>
23+
<page name="Annex I" key="annexi"/>
24+
<page name="Annex J" key="annexj"/>
25+
<page name="Annex K" key="annexk"/>
26+
<page name="Annex L" key="annexl"/>
27+
<page name="Bibliography" key="bibliography"/>
28+
</specification>

build.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
<xslt in="xml/_families.xml" out="json/SPECS.json" style="tools/buildSpecJSON.xslt" classpathref="saxon.path">
5959
<factory name="net.sf.saxon.TransformerFactoryImpl"/>
6060
</xslt>
61+
<copy file="json/SPECS.json" tofile="json/SPECS-copy.json"/>
6162
<echo file="tools/temp/actualcount.txt" message="CDA-${count.cda}&#x0a;"/>
6263
<echo file="tools/temp/actualcount.txt" message="FHIR-${count.fhir}&#x0a;" append="true"/>
6364
<echo file="tools/temp/actualcount.txt" message="OTHER-${count.other}&#x0a;" append="true"/>

tools/xmlToJson.xslt

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<xsl:template match="workgroups">
55
<xsl:call-template name="doArray">
66
<xsl:with-param name="name" select="'workgroup'"/>
7+
<xsl:with-param name="markDeprecated" select="true()"/>
78
</xsl:call-template>
89
</xsl:template>
910
<xsl:template match="accelerators">
@@ -83,11 +84,15 @@
8384
<xsl:value-of select="concat('&quot;', @value, '&quot;')"/>
8485
</xsl:template>
8586
<xsl:template match="*">
87+
<xsl:param name="markDeprecated"/>
8688
<xsl:text>{</xsl:text>
87-
<xsl:call-template name="doAttributes"/>
89+
<xsl:call-template name="doAttributes">
90+
<xsl:with-param name="markDeprecated" select="$markDeprecated"/>
91+
</xsl:call-template>
8892
<xsl:text>}</xsl:text>
8993
</xsl:template>
9094
<xsl:template name="doAttributes">
95+
<xsl:param name="markDeprecated"/>
9196
<xsl:for-each select="@*[not(contains(name(.), ':'))]">
9297
<xsl:choose>
9398
<xsl:when test="local-name(.)=('deprecated')">
@@ -101,6 +106,9 @@
101106
<xsl:call-template name="escapeText">
102107
<xsl:with-param name="text" select="."/>
103108
</xsl:call-template>
109+
<xsl:if test="local-name(.)='name' and $markDeprecated and parent::*/@deprecated='true'">
110+
<xsl:text> [deprecated]</xsl:text>
111+
</xsl:if>
104112
<xsl:text>"</xsl:text>
105113
</xsl:otherwise>
106114
</xsl:choose>
@@ -131,9 +139,12 @@
131139
</xsl:template>
132140
<xsl:template name="doArray">
133141
<xsl:param name="name"/>
142+
<xsl:param name="markDeprecated"/>
134143
<xsl:text>[</xsl:text>
135144
<xsl:for-each select="*[local-name(.)=$name]">
136-
<xsl:apply-templates select="."/>
145+
<xsl:apply-templates select=".">
146+
<xsl:with-param name="markDeprecated" select="$markDeprecated"/>
147+
</xsl:apply-templates>
137148
<xsl:if test="position()!=last()">,</xsl:if>
138149
</xsl:for-each>
139150
<xsl:text>]</xsl:text>

xml/CDA-ccda-two-one-companion.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
xsi:noNamespaceSchemaLocation="schemas/specification.xsd" defaultVersion="INF1"
77
defaultWorkgroup="sd">-->
88
<version code="4.1.1" deprecated="false"/>
9-
<version code="4.1.0" deprecated="false"/>
9+
<version code="4.1.0" deprecated="true"/>
1010
<version code="4.1.0-ballot" deprecated="true"/>
1111
<version code="3.1.0" deprecated="true"/>
1212
<version code="3.1.0-ballot" deprecated="true"/>

xml/CDA-ccda.xml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ballotUrl="http://hl7.org/cda/us/ccda/2025Jan" ciUrl="http://build.fhir.org/ig/HL7/CDA-ccda" defaultVersion="3.0.0" defaultWorkgroup="sd" url="http://hl7.org/cda/us/ccda">
2+
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ballotUrl="http://hl7.org/cda/us/ccda/2025Jan" ciUrl="http://build.fhir.org/ig/HL7/CDA-ccda" defaultVersion="4.0.0" defaultWorkgroup="sd" url="http://hl7.org/cda/us/ccda">
33
<version code="current" url="http://build.fhir.org/ig/HL7/CDA-ccda"/>
4-
<version code="4.0.0-ballot" url="http://hl7.org/cda/us/ccda/2025Jan"/>
4+
<version code="4.0.0" url="http://hl7.org/cda/us/ccda/4.0.0"/>
5+
<version code="4.0.0-ballot" deprecated="true" url="http://hl7.org/cda/us/ccda/2025Jan"/>
56
<version code="3.0.0" url="http://hl7.org/cda/us/ccda/3.0.0"/>
67
<version code="3.0.0-ballot" deprecated="true" url="http://hl7.org/cda/us/ccda/2024Jan"/>
78
<version code="2.1.0-draft1" deprecated="true" url="http://hl7.org/cda/stds/ccda/draft1"/>
8-
<version code="2.1.0.8" deprecated="true"/>
9+
<version code="2.1.0.8" deprecated="false"/>
910
<version code="2.1.0.7" deprecated="true"/>
1011
<version code="2.1.0.6" deprecated="true"/>
1112
<version code="2.1.0.5" deprecated="true"/>
@@ -29,8 +30,8 @@
2930
<artifact id="StructureDefinition/AdmissionMedication" key="StructureDefinition-AdmissionMedication" name="Admission Medication"/>
3031
<artifact id="Binary/admission-medication-example" key="Binary-admission-medication-example" name="Admission Medication example"/>
3132
<artifact id="StructureDefinition/AdmissionMedicationsSectionEntriesOptional" key="StructureDefinition-AdmissionMedicationsSectionEntriesOptional" name="Admission Medications Section (entries optional)"/>
32-
<artifact id="Binary/advance-directive-existence-observation-example" key="Binary-advance-directive-existence-observation-example" name="Advance Directive Existance Observation Example"/>
3333
<artifact id="StructureDefinition/AdvanceDirectiveExistenceObservation" key="StructureDefinition-AdvanceDirectiveExistenceObservation" name="Advance Directive Existence Observation"/>
34+
<artifact id="Binary/advance-directive-existence-observation-example" key="Binary-advance-directive-existence-observation-example" name="Advance Directive Existence Observation Example"/>
3435
<artifact id="StructureDefinition/AdvanceDirectiveObservation" key="StructureDefinition-AdvanceDirectiveObservation" name="Advance Directive Observation"/>
3536
<artifact id="Binary/advance-directive-observation-example" key="Binary-advance-directive-observation-example" name="Advance Directive Observation Example"/>
3637
<artifact id="StructureDefinition/AdvanceDirectiveOrganizer" key="StructureDefinition-AdvanceDirectiveOrganizer" name="Advance Directive Organizer"/>
@@ -39,6 +40,7 @@
3940
<artifact id="Binary/advance-directives-section-example" key="Binary-advance-directives-section-example" name="Advance Directives Section Example"/>
4041
<artifact id="StructureDefinition/AgeObservation" key="StructureDefinition-AgeObservation" name="Age Observation"/>
4142
<artifact id="Binary/age-observation-example" key="Binary-age-observation-example" name="Age Observation Example"/>
43+
<artifact id="StructureDefinition/AgeRangeObservation" key="StructureDefinition-AgeRangeObservation" name="Age Range Observation"/>
4244
<artifact id="StructureDefinition/AllergiesAndIntolerancesSection" key="StructureDefinition-AllergiesAndIntolerancesSection" name="Allergies and Intolerances Section"/>
4345
<artifact id="Binary/allergies-and-intolerances-section-example" key="Binary-allergies-and-intolerances-section-example" name="Allergies and Intolerances Section Example"/>
4446
<artifact id="StructureDefinition/AllergyIntoleranceObservation" key="StructureDefinition-AllergyIntoleranceObservation" name="Allergy - Intolerance Observation"/>
@@ -193,8 +195,8 @@
193195
<artifact id="Binary/health-concern-act-example" key="Binary-health-concern-act-example" name="Health Concern Act Example"/>
194196
<artifact id="StructureDefinition/HealthConcernsSection" key="StructureDefinition-HealthConcernsSection" name="Health Concerns Section"/>
195197
<artifact id="Binary/health-concerns-section-example" key="Binary-health-concerns-section-example" name="Health Concerns Section Example"/>
196-
<artifact id="StructureDefinition/HealthStatusEvaluationsandOutcomesSection" key="StructureDefinition-HealthStatusEvaluationsandOutcomesSection" name="Health Status Evaluations and Outcomes Section"/>
197-
<artifact id="Binary/health-status-evaluations-and-outcomes-section-example" key="Binary-health-status-evaluations-and-outcomes-section-example" name="Health Status Evalutations and Outcomes Section Example"/>
198+
<artifact deprecated="true" id="StructureDefinition/HealthStatusEvaluationsandOutcomesSection" key="StructureDefinition-HealthStatusEvaluationsandOutcomesSection" name="Health Status Evaluations and Outcomes Section"/>
199+
<artifact deprecated="true" id="Binary/health-status-evaluations-and-outcomes-section-example" key="Binary-health-status-evaluations-and-outcomes-section-example" name="Health Status Evalutations and Outcomes Section Example"/>
198200
<artifact id="StructureDefinition/HealthStatusObservation" key="StructureDefinition-HealthStatusObservation" name="Health Status Observation"/>
199201
<artifact id="Binary/health-status-observation-example" key="Binary-health-status-observation-example" name="Health Status Observation Example"/>
200202
<artifact id="StructureDefinition/HighestPressureUlcerStage" key="StructureDefinition-HighestPressureUlcerStage" name="Highest Pressure Ulcer Stage"/>
@@ -282,7 +284,7 @@
282284
<artifact id="Binary/mental-status-section-example" key="Binary-mental-status-section-example" name="Mental Status Section Example"/>
283285
<artifact id="StructureDefinition/ModelNumberObservation" key="StructureDefinition-ModelNumberObservation" name="Model Number Observation"/>
284286
<artifact id="Binary/model-number-observation-example" key="Binary-model-number-observation-example" name="Model Number Observation Example"/>
285-
<artifact id="ValueSet/2.16.840.1.113883.3.88.12.80.33" key="ValueSet-2.16.840.1.113883.3.88.12.80.33" name="NUBC UB-04 FL17 Patient Status"/>
287+
<artifact deprecated="true" id="ValueSet/2.16.840.1.113883.3.88.12.80.33" key="ValueSet-2.16.840.1.113883.3.88.12.80.33" name="NUBC UB-04 FL17 Patient Status"/>
286288
<artifact id="Binary/no-known-medications-example" key="Binary-no-known-medications-example" name="No Known Medications Example"/>
287289
<artifact id="Binary/no-known-problems-section-example" key="Binary-no-known-problems-section-example" name="No Known Problem Section Example"/>
288290
<artifact id="StructureDefinition/NonMedicinalSupplyActivity" key="StructureDefinition-NonMedicinalSupplyActivity" name="Non-Medicinal Supply Activity"/>
@@ -313,6 +315,8 @@
313315
<artifact id="Binary/operative-note-serviceevent-example" key="Binary-operative-note-serviceevent-example" name="Operative Note serviceEvent Example"/>
314316
<artifact id="StructureDefinition/OutcomeObservation" key="StructureDefinition-OutcomeObservation" name="Outcome Observation"/>
315317
<artifact id="Binary/outcome-observation-example" key="Binary-outcome-observation-example" name="Outcome Observation Example"/>
318+
<artifact id="StructureDefinition/OutcomesSection" key="StructureDefinition-OutcomesSection" name="Outcomes Section"/>
319+
<artifact id="Binary/outcomes-section-example" key="Binary-outcomes-section-example" name="Outcomes Section Example"/>
316320
<artifact id="StructureDefinition/PastMedicalHistory" key="StructureDefinition-PastMedicalHistory" name="Past Medical History"/>
317321
<artifact id="Binary/past-medical-history-example" key="Binary-past-medical-history-example" name="Past Medical History Example"/>
318322
<artifact id="Binary/patient-generated-document-authenticator-example" key="Binary-patient-generated-document-authenticator-example" name="Patient Generated Document authenticator"/>
@@ -327,8 +331,8 @@
327331
<artifact id="Binary/patient-generated-document-legalauthenticator-example" key="Binary-patient-generated-document-legalauthenticator-example" name="Patient Generated Document legalAuthenticator Example"/>
328332
<artifact id="Binary/patient-generated-document-participant-example" key="Binary-patient-generated-document-participant-example" name="Patient Generated Document participant Example"/>
329333
<artifact id="Binary/patient-generated-document-recordtarget-example" key="Binary-patient-generated-document-recordtarget-example" name="Patient Generated Document recordTarget"/>
330-
<artifact id="StructureDefinition/PatientReferralAct" key="StructureDefinition-PatientReferralAct" name="Patient Referral Act"/>
331-
<artifact id="Binary/patient-referral-act-example" key="Binary-patient-referral-act-example" name="Patient Referral Act Example"/>
334+
<artifact deprecated="true" id="StructureDefinition/PatientReferralAct" key="StructureDefinition-PatientReferralAct" name="Patient Referral Act"/>
335+
<artifact deprecated="true" id="Binary/patient-referral-act-example" key="Binary-patient-referral-act-example" name="Patient Referral Act Example"/>
332336
<artifact id="StructureDefinition/PayersSection" key="StructureDefinition-PayersSection" name="Payers Section"/>
333337
<artifact id="Binary/payers-section-example" key="Binary-payers-section-example" name="Payers Section Example"/>
334338
<artifact id="StructureDefinition/PhysicalExamSection" key="StructureDefinition-PhysicalExamSection" name="Physical Exam Section"/>
@@ -430,6 +434,8 @@
430434
<artifact id="StructureDefinition/ReasonforReferralSection" key="StructureDefinition-ReasonforReferralSection" name="Reason for Referral Section"/>
431435
<artifact id="StructureDefinition/ReasonforVisitSection" key="StructureDefinition-ReasonforVisitSection" name="Reason for Visit Section"/>
432436
<artifact id="Binary/reason-for-visit-section-example" key="Binary-reason-for-visit-section-example" name="Reason for Visit Section Example"/>
437+
<artifact id="StructureDefinition/ReferralAct" key="StructureDefinition-ReferralAct" name="Referral Act"/>
438+
<artifact id="Binary/referral-act-example" key="Binary-referral-act-example" name="Referral Act Example"/>
433439
<artifact id="StructureDefinition/ReferralNote" key="StructureDefinition-ReferralNote" name="Referral Note"/>
434440
<artifact id="Binary/referral-note-callback-contact-example" key="Binary-referral-note-callback-contact-example" name="Referral Note Callback Contact Example"/>
435441
<artifact id="Binary/referral-note-caregiver-example" key="Binary-referral-note-caregiver-example" name="Referral Note Caregiver"/>
@@ -534,12 +540,14 @@
534540
<page key="howtoread" name="How To Read"/>
535541
<page key="index" name="IG Home Page"/>
536542
<page deprecated="true" key="narratives" name="Narrative Guidance"/>
543+
<page key="provenance" name="Provenance in C-CDA"/>
537544
<page deprecated="true" key="samplefiles" name="Sample Files"/>
538545
<page deprecated="true" key="schematron" name="Schematron Validation Files"/>
539546
<page key="screeningandassessments" name="Screening And Assessments"/>
540547
<page key="supportingguidance" name="Supporting Guidance"/>
541548
<page deprecated="true" key="TBD" name="TBD"/>
542549
<page key="toc" name="Table of Contents"/>
550+
<page key="templateids" name="Template IDs"/>
543551
<page deprecated="true" key="templates" name="Templates"/>
544552
<page key="terminology" name="Terminology"/>
545553
<page key="uscdi" name="USCDI"/>

xml/CDA-digsig.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.1" encoding="UTF-8"?>
22
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="schemas/specification.xsd" defaultVersion="1.1.0"
4-
defaultWorkgroup="pher" url="http://www.hl7.org/implement/standards/product_brief.cfm?product_id=375">
3+
xsi:noNamespaceSchemaLocation="schemas/specification.xsd" defaultVersion="1.1.1"
4+
defaultWorkgroup="sd" url="http://www.hl7.org/implement/standards/product_brief.cfm?product_id=375">
55
<!--<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
66
xsi:noNamespaceSchemaLocation="schemas/specification.xsd" defaultVersion="STU1"
77
defaultWorkgroup="ii">-->
8-
<version code="1.1.0" deprecated="false"/>
8+
<version code="1.1.0" deprecated="true"/>
9+
<version code="1.1.1" deprecated="false"/>
910
<page key="NA" name="(NA)"/>
1011
<page key="many" name="(many)"/>
1112
<page key="usecases" name="Use Cases"/>
@@ -16,4 +17,4 @@
1617
<page key="samplefiles" name="Sample Files"/>
1718
<page key="schematron" name="Schematron Validation Files"/>
1819
</specification>
19-
20+

xml/CDA-hai.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="../schemas/specification.xsd" defaultVersion="4.3.0"
44
defaultWorkgroup="sd" url="http://www.hl7.org/implement/standards/product_brief.cfm?product_id=570">
5+
<version code="4.4.0" deprecated="false"/>
56
<version code="4.3.0" deprecated="false"/>
67
<version code="4.2.2" deprecated="false"/>
78
<version code="4.2.1" deprecated="true"/>

xml/CDA-haiaultc.xml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="schemas/specification.xsd" defaultVersion="1.0.0" defaultWorkgroup="pher" url="https://www.hl7.org/documentcenter/public/ballots/2024JAN/downloads/CDAR2_IG_HAI_AU_LTCF_E1_D1_2024JAN.zip" >
3-
<version code="0.1.0" deprecated="false"/>
4-
<version code="1.0.0" deprecated="false"/>
5-
<page key="NA" name="(NA)"/>
6-
<page key="many" name="(many)"/>
7-
<page key="usecases" name="Use Cases"/>
8-
<page key="narratives" name="Narrative Guidance"/>
9-
<page key="templates" name="Templates"/>
10-
<page key="figures-examples" name="Figures and Examples"/>
11-
<page key="valuesets" name="Value sets"/>
12-
<page key="samplefiles" name="Sample Files"/>
13-
<page key="schematron" name="Schematron Validation Files"/>
2+
<specification xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="schemas/specification.xsd"
4+
defaultVersion="1.0.0"
5+
defaultWorkgroup="pher"
6+
url="http://www.hl7.org/implement/standards/product_brief.cfm?product_id=646" >
7+
<version code="0.1.0" deprecated="false"/>
8+
<version code="1.0.0" deprecated="false"/>
9+
<version code="1.1.1" deprecated="false"/>
10+
<page key="NA" name="(NA)"/>
11+
<page key="many" name="(many)"/>
12+
<page key="usecases" name="Use Cases"/>
13+
<page key="narratives" name="Narrative Guidance"/>
14+
<page key="templates" name="Templates"/>
15+
<page key="figures-examples" name="Figures and Examples"/>
16+
<page key="valuesets" name="Value sets"/>
17+
<page key="samplefiles" name="Sample Files"/>
18+
<page key="schematron" name="Schematron Validation Files"/>
1419
</specification>

0 commit comments

Comments
 (0)