From b47944b8bdbff7c0fd7af65edbec3d5493d50fac Mon Sep 17 00:00:00 2001 From: Paresh-Snappy <43569032+Paresh-Snappy@users.noreply.github.com> Date: Tue, 22 Jan 2019 17:46:39 +0530 Subject: [PATCH 01/22] - Using "create" instead of "put" - solves unique alias name issue (#1247) Fix to enforce unique alias names to packages - deploy package command --- .../src/main/scala/io/snappydata/ToolsCallbackImpl.scala | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala b/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala index 845321df61..c772b1dd39 100644 --- a/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala +++ b/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala @@ -20,6 +20,7 @@ import java.io.File import java.lang.reflect.InvocationTargetException import java.net.URLClassLoader +import com.gemstone.gemfire.cache.EntryExistsException import com.pivotal.gemfirexd.internal.engine.Misc import com.pivotal.gemfirexd.internal.engine.distributed.utils.GemFireXDUtils import io.snappydata.cluster.ExecutorInitiator @@ -93,7 +94,12 @@ object ToolsCallbackImpl extends ToolsCallback with Logging { override def addURIs(alias: String, jars: Array[String], deploySql: String, isPackage: Boolean = true): Unit = { if (alias != null) { - Misc.getMemStore.getGlobalCmdRgn.put(alias, deploySql) + try { + Misc.getMemStore.getGlobalCmdRgn.create(alias, deploySql) + } catch { + case eee: EntryExistsException => throw StandardException.newException( + SQLState.LANG_DB2_DUPLICATE_NAMES, alias , "of deploying jars/packages") + } } val lead = ServiceManager.getLeadInstance.asInstanceOf[LeadImpl] val loader = lead.urlclassloader From 305b88ebd961f21fa69b2e3a56d4d05613fd6465 Mon Sep 17 00:00:00 2001 From: Paresh-Snappy Date: Wed, 23 Jan 2019 12:22:18 +0530 Subject: [PATCH 02/22] Revert "- Using "create" instead of "put" - solves unique alias name issue (#1247)" This reverts commit b47944b8bdbff7c0fd7af65edbec3d5493d50fac. --- .../src/main/scala/io/snappydata/ToolsCallbackImpl.scala | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala b/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala index c772b1dd39..845321df61 100644 --- a/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala +++ b/cluster/src/main/scala/io/snappydata/ToolsCallbackImpl.scala @@ -20,7 +20,6 @@ import java.io.File import java.lang.reflect.InvocationTargetException import java.net.URLClassLoader -import com.gemstone.gemfire.cache.EntryExistsException import com.pivotal.gemfirexd.internal.engine.Misc import com.pivotal.gemfirexd.internal.engine.distributed.utils.GemFireXDUtils import io.snappydata.cluster.ExecutorInitiator @@ -94,12 +93,7 @@ object ToolsCallbackImpl extends ToolsCallback with Logging { override def addURIs(alias: String, jars: Array[String], deploySql: String, isPackage: Boolean = true): Unit = { if (alias != null) { - try { - Misc.getMemStore.getGlobalCmdRgn.create(alias, deploySql) - } catch { - case eee: EntryExistsException => throw StandardException.newException( - SQLState.LANG_DB2_DUPLICATE_NAMES, alias , "of deploying jars/packages") - } + Misc.getMemStore.getGlobalCmdRgn.put(alias, deploySql) } val lead = ServiceManager.getLeadInstance.asInstanceOf[LeadImpl] val loader = lead.urlclassloader From 709cc6a77c6c9af831c47b9ea6c3d0d72eb4dd51 Mon Sep 17 00:00:00 2001 From: vatsal mevada Date: Thu, 24 Jan 2019 12:10:39 +0530 Subject: [PATCH 03/22] [SNAP-2869] handling conflation when _eventType column is not available in input (#1240) - skipping _eventType column handling from conflation logic when input dataframe doesn't contain _eventType column - throwing AnalysisException when target table doesn't contain key columns or primary key --- .../sql/streaming/SnappySinkCallback.scala | 30 +++++++------ .../SnappyStoreSinkProviderSuite.scala | 44 +++++++++++++++++-- 2 files changed, 58 insertions(+), 16 deletions(-) diff --git a/core/src/main/scala/org/apache/spark/sql/streaming/SnappySinkCallback.scala b/core/src/main/scala/org/apache/spark/sql/streaming/SnappySinkCallback.scala index 1e90abc930..bfdcb63c3d 100644 --- a/core/src/main/scala/org/apache/spark/sql/streaming/SnappySinkCallback.scala +++ b/core/src/main/scala/org/apache/spark/sql/streaming/SnappySinkCallback.scala @@ -155,13 +155,14 @@ class DefaultSnappySinkCallback extends SnappySinkCallback { batchId: Long, df: Dataset[Row], posDup: Boolean) { log.debug(s"Processing batchId $batchId with parameters $parameters ...") val tableName = snappySession.sessionCatalog.formatTableName(parameters(TABLE_NAME)) - val conflationEnabled = if (parameters.contains(CONFLATION)) { - parameters(CONFLATION).toBoolean - } else { - false - } val keyColumns = snappySession.sessionCatalog.getKeyColumnsAndPositions(tableName) val eventTypeColumnAvailable = df.schema.map(_.name).contains(EVENT_TYPE_COLUMN) + val conflationEnabled = parameters.getOrElse(CONFLATION, "false").toBoolean + if (conflationEnabled && keyColumns.isEmpty) { + val msg = "Key column(s) or primary key must be defined on table in order " + + "to perform conflation." + throw new IllegalStateException(msg) + } log.debug(s"keycolumns: '${keyColumns.map(p => s"${p._1.name}(${p._2})").mkString(",")}'" + s", eventTypeColumnAvailable:$eventTypeColumnAvailable,possible duplicate: $posDup") @@ -210,12 +211,15 @@ class DefaultSnappySinkCallback extends SnappySinkCallback { val exprs = otherCols.map(c => last(c).alias(c)) ++ Seq(count(lit(1)).alias(EVENT_COUNT_COLUMN)) - // if event type of the last event for a key is insert and there are more than one - // events for the same key, then convert inserts to put into - val columns = df.columns.filter(_ != EVENT_TYPE_COLUMN).map(col) ++ - Seq(when(col(EVENT_TYPE_COLUMN) === INSERT && col(EVENT_COUNT_COLUMN) > 1, - UPDATE).otherwise(col(EVENT_TYPE_COLUMN)).alias(EVENT_TYPE_COLUMN)) - + val columns = if (eventTypeColumnAvailable) { + // if event type of the last event for a key is insert and there are more than one + // events for the same key, then convert inserts to put into + df.columns.filter(_ != EVENT_TYPE_COLUMN).map(col) ++ + Seq(when(col(EVENT_TYPE_COLUMN) === INSERT && col(EVENT_COUNT_COLUMN) > 1, + UPDATE).otherwise(col(EVENT_TYPE_COLUMN)).alias(EVENT_TYPE_COLUMN)) + } else { + df.columns.map(col) + } df.groupBy(keyCols.head, keyCols.tail: _*) .agg(exprs.head, exprs.tail: _*) .select(columns: _*) @@ -223,11 +227,11 @@ class DefaultSnappySinkCallback extends SnappySinkCallback { conflatedDf.cache() } - def persist(df: DataFrame) = if (ServiceUtils.isOffHeapStorageAvailable(snappySession)){ + def persist(df: DataFrame) = if (ServiceUtils.isOffHeapStorageAvailable(snappySession)) { df.persist(StorageLevel.OFF_HEAP) } else df.persist() - def processDataWithEventType(dataFrame: DataFrame) = { + def processDataWithEventType(dataFrame: DataFrame): Unit = { val hasUpdateOrDeleteEvents = persist(dataFrame) .filter(dataFrame(EVENT_TYPE_COLUMN).isin(List(DELETE, UPDATE): _*)) .count() > 0 diff --git a/core/src/test/scala/org/apache/spark/sql/streaming/SnappyStoreSinkProviderSuite.scala b/core/src/test/scala/org/apache/spark/sql/streaming/SnappyStoreSinkProviderSuite.scala index 2cd55002ac..d7e18bea03 100644 --- a/core/src/test/scala/org/apache/spark/sql/streaming/SnappyStoreSinkProviderSuite.scala +++ b/core/src/test/scala/org/apache/spark/sql/streaming/SnappyStoreSinkProviderSuite.scala @@ -19,15 +19,16 @@ package org.apache.spark.sql.streaming import java.util.concurrent.atomic.AtomicInteger +import scala.reflect.io.Path + import io.snappydata.{SnappyFunSuite, StreamingConstants} import org.apache.log4j.LogManager +import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} + import org.apache.spark.sql.Row import org.apache.spark.sql.catalyst.encoders.RowEncoder import org.apache.spark.sql.kafka010.KafkaTestUtils import org.apache.spark.sql.types._ -import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} - -import scala.reflect.io.Path class SnappyStoreSinkProviderSuite extends SnappyFunSuite with BeforeAndAfter with BeforeAndAfterAll { @@ -275,6 +276,43 @@ class SnappyStoreSinkProviderSuite extends SnappyFunSuite assertData(Array(Row(1, "name999", 999, "lname1"))) } + test("conflation enabled, _eventType column: absent") { + val testId = testIdGenerator.getAndIncrement() + createTable()() + val topic = getTopic(testId) + kafkaTestUtils.createTopic(topic, partitions = 1) + + val batch2 = Seq(Seq(1, "name2", 30, "lname1"), Seq(1, "name3", 30, "lname1")) + kafkaTestUtils.sendMessages(topic, batch2.map(r => r.mkString(",")).toArray) + + val streamingQuery = createAndStartStreamingQuery(topic, testId, conflation = true, + withEventTypeColumn = false) + + streamingQuery.processAllAvailable() + + assertData(Array(Row(1, "name3", 30, "lname1"))) + } + + test("conflation enabled, key columns : undefined") { + val testId = testIdGenerator.getAndIncrement() + createTable(withKeyColumn = false)() + val topic = getTopic(testId) + kafkaTestUtils.createTopic(topic, partitions = 1) + + val batch2 = Seq(Seq(1, "name2", 30, "lname1"), Seq(1, "name3", 30, "lname1")) + kafkaTestUtils.sendMessages(topic, batch2.map(r => r.mkString(",")).toArray) + + val thrown = intercept[StreamingQueryException] { + val streamingQuery = createAndStartStreamingQuery(topic, testId, conflation = true, + withEventTypeColumn = false) + streamingQuery.processAllAvailable() + } + val errorMessage = "Key column(s) or primary key must be defined on table in order " + + "to perform conflation." + assert(thrown.getCause.isInstanceOf[IllegalStateException]) + assert(thrown.getCause.getMessage == errorMessage) + } + test("[SNAP-2745]-conflation: delete,insert") { val testId = testIdGenerator.getAndIncrement() createTable()() From 1cc0d7e534a1816aa9a5bc705f5d11fb3b46963c Mon Sep 17 00:00:00 2001 From: Sachin Kapse Date: Thu, 24 Jan 2019 17:57:54 +0530 Subject: [PATCH 04/22] Linking latest spark submodule. --- spark | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spark b/spark index 317d74b29e..4f2a2cee70 160000 --- a/spark +++ b/spark @@ -1 +1 @@ -Subproject commit 317d74b29e3c63f940887c3d0eb4f962c4ec8626 +Subproject commit 4f2a2cee70a9dbd465309450ef721d62bac23759 From df0e2945e88128b19c19d570e5f8f8ce5dc8c245 Mon Sep 17 00:00:00 2001 From: Sachin Kapse Date: Thu, 24 Jan 2019 22:26:58 +0530 Subject: [PATCH 05/22] Linking latest spark submodule. --- spark | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spark b/spark index 4f2a2cee70..48799d0ef6 160000 --- a/spark +++ b/spark @@ -1 +1 @@ -Subproject commit 4f2a2cee70a9dbd465309450ef721d62bac23759 +Subproject commit 48799d0ef6dbba91fc7fd149f4f01ca9e8c6a852 From 39dfa7a393c3d0485b079db38f8b413e29fe5a4f Mon Sep 17 00:00:00 2001 From: Lizy Geogy <31404069+lizygeogy@users.noreply.github.com> Date: Mon, 4 Feb 2019 17:01:11 +0530 Subject: [PATCH 06/22] Update README.md Changed SnappyData version number. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 155c7b77ae..ac66537efc 100644 --- a/README.md +++ b/README.md @@ -47,22 +47,22 @@ SnappyData artifacts are hosted in Maven Central. You can add a Maven dependency ``` groupId: io.snappydata artifactId: snappydata-core_2.11 -version: 1.0.1 +version: 1.0.2.1 groupId: io.snappydata artifactId: snappydata-cluster_2.11 -version: 1.0.1 +version: 1.0.2.1 ``` **Using SBT Dependency** If you are using SBT, add this line to your **build.sbt** for core SnappyData artifacts: -`libraryDependencies += "io.snappydata" % "snappydata-core_2.11" % "1.0.1"` +`libraryDependencies += "io.snappydata" % "snappydata-core_2.11" % "1.0.2.1"` For additions related to SnappyData cluster, use: -`libraryDependencies += "io.snappydata" % "snappydata-cluster_2.11" % "1.0.1"` +`libraryDependencies += "io.snappydata" % "snappydata-cluster_2.11" % "1.0.2.1"` You can find more specific SnappyData artifacts [here](http://mvnrepository.com/artifact/io.snappydata) From 1630148ad6ccb95a353f5807977a03d7d6c612a1 Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Tue, 29 Jan 2019 16:36:30 +0530 Subject: [PATCH 07/22] Fix for filter push down to scan level when IN list has constants but in Cast node. --- .../spark/sql/catalyst/expressions/ParamLiteral.scala | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/src/main/scala/org/apache/spark/sql/catalyst/expressions/ParamLiteral.scala b/core/src/main/scala/org/apache/spark/sql/catalyst/expressions/ParamLiteral.scala index 4913fd80e3..50b8f42dcf 100644 --- a/core/src/main/scala/org/apache/spark/sql/catalyst/expressions/ParamLiteral.scala +++ b/core/src/main/scala/org/apache/spark/sql/catalyst/expressions/ParamLiteral.scala @@ -403,6 +403,13 @@ object TokenLiteral { def isConstant(expression: Expression): Boolean = expression match { case _: DynamicReplacableConstant | _: Literal => true + case Cast(child, dataType) => { + val isConstant = child match { + case _: DynamicReplacableConstant | _: Literal => true + case _ => false + } + isConstant & dataType.isInstanceOf[AtomicType] + } case _ => false } From 755a5c72a4e5709e52af3b072b2665bcb85bae26 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Mon, 4 Feb 2019 14:41:47 -0800 Subject: [PATCH 08/22] added bug test to reproduce issue SNAP-2718. Could not reproduce the issue via test --- .../org/apache/spark/sql/store/BugTest.scala | 36 + .../src/main/resources/careplans1000.csv | 1000 +++++++++++++++++ .../src/main/resources/patients1000.csv | 1000 +++++++++++++++++ 3 files changed, 2036 insertions(+) create mode 100644 tests/common/src/main/resources/careplans1000.csv create mode 100644 tests/common/src/main/resources/patients1000.csv diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index 7725ea8e69..b280478bf2 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -475,5 +475,41 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { } + test("SNAP-2718") { + snc + val path1 = getClass.getResource("/patients1000.csv").getPath + val df1 = snc.read.format("csv").option("header", "true").load(path1) + df1.registerTempTable("patients") + + val path2 = getClass.getResource("/careplans1000.csv").getPath + val df2 = snc.read.format("csv").option("header", "true").load(path2) + df2.registerTempTable("careplans") + + + + snc.sql("select p.first, p.last from (select patient from ( select *, " + + "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + + "from careplans )c group by patient having sum(coverage) = 0)q " + + "join patients p on id = patient ").show + + df1.createOrReplaceTempView("patients_v") + + df2.createOrReplaceTempView("careplans_v") + + + + snc.sql("select p.first, p.last from (select patient from ( select *, " + + "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + + "from careplans_v )c group by patient having sum(coverage) = 0)q " + + "join patients_v p on id = patient ").show + + snc.dropTempTable("patients") + snc.dropTempTable("careplans") + snc.sql("drop view patients_v") + snc.sql("drop view careplans_v") + } + } diff --git a/tests/common/src/main/resources/careplans1000.csv b/tests/common/src/main/resources/careplans1000.csv new file mode 100644 index 0000000000..ad07b1ddc9 --- /dev/null +++ b/tests/common/src/main/resources/careplans1000.csv @@ -0,0 +1,1000 @@ +ID,START,STOP,PATIENT,ENCOUNTER,CODE,DESCRIPTION,REASONCODE,REASONDESCRIPTION +15a903cf-8c7c-4196-8e8e-247e539f03d0,2011-08-10,2011-08-31,bd797bac-3fe9-4289-922c-7ca568dfb89e,7a4fd3a5-8849-4cc3-8f13-0ed7d628a3e1,225358003,Wound care,284549007,Laceration of hand +f8a5f364-82de-44cf-834b-d116caccc86f,2012-07-26,2012-09-24,bd797bac-3fe9-4289-922c-7ca568dfb89e,e698271c-606e-4c1f-968f-8a074e029178,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +d0cde2bc-8149-4b53-9708-60aab5a32fb6,2015-05-27,2015-06-10,f94f9ffe-9f4b-4a14-860f-4cc48cf8e8ed,05b481c1-7875-4b56-be54-1f5576178430,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1f649825-55d4-4c76-88b6-9c2e986faadd,2013-12-15,2014-01-14,e5574ace-e448-4866-b258-94aafe3ae4c0,de479b99-ac4e-4194-9c04-6c4baff038d5,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +7e81175c-0c16-461a-a5f8-434ff51e0f24,2015-07-19,2018-06-19,e5574ace-e448-4866-b258-94aafe3ae4c0,176691a2-345f-48dc-9a08-81d885df63f4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +05eee72d-efb4-41f9-ab8d-dd74ce6f295c,2003-11-22,,35407c8f-8f63-4b5f-ad0d-52726cf97ffc,47b0738a-7f55-4d76-961a-5ba5485b2845,734163000,Care plan (record artifact),55680006,Drug overdose +a8e96568-c2a5-40c2-8079-e7651e905620,1974-06-03,,cc61259b-99cc-42cc-9e14-de085c249187,9c3bd613-2ac2-4d2a-b6d9-217989b43778,326051000000105,Self care,, +953a7fe9-a7c2-4141-a610-3d1d3e161671,2010-12-05,2010-12-26,ea158f42-6e23-44e7-bb35-7a6a361cc41e,652ae2a4-27b2-46ea-9dc4-5a9d3ac66afd,225358003,Wound care,284551006,Laceration of foot +a4e5a248-daf1-4ef9-a9a0-443be5dfa3d9,2011-02-19,2011-04-20,cc61259b-99cc-42cc-9e14-de085c249187,3d746104-2177-4738-b4c7-6b58bfc44ac4,91251008,Physical therapy procedure,239720000,Tear of meniscus of knee +31778480-700b-413b-bdaa-624f7b7b18da,2011-05-08,2011-09-04,ea158f42-6e23-44e7-bb35-7a6a361cc41e,7b910e3a-4806-48a7-b4d1-505aaa6d29aa,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c682b9ed-18b3-4b93-ad27-fa4978077ca0,2012-12-15,2013-01-05,ea158f42-6e23-44e7-bb35-7a6a361cc41e,fc01c1a0-f586-489e-b231-84b6dc4ea383,225358003,Wound care,284549007,Laceration of hand +36c71c8a-a783-4ede-9afb-a2770ee5f563,2010-08-29,2011-03-27,4c9ef4da-7117-41e4-8d88-1e643ce07389,b46b26fe-1b39-4c6f-bb9d-0b8138a443c2,134435003,Routine antenatal care,72892002,Normal pregnancy +c3c823cc-52a3-442d-b1cc-d83a2f958ada,2016-01-12,2016-01-19,ea158f42-6e23-44e7-bb35-7a6a361cc41e,577ff734-b4de-4541-b51b-175dfdcf9bad,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e018e35c-906b-40de-8615-c49030124f6a,2016-11-06,2016-12-06,4c9ef4da-7117-41e4-8d88-1e643ce07389,f2411b71-1133-4085-96e1-78fd518b54e7,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +9698313e-0ca5-45b0-b8fe-459b8807bc62,2007-10-07,,e9601724-5078-437a-9984-15e0d04c9470,a20da14a-e60a-4dbf-aac5-267782d3cacf,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +5530bc59-536e-4535-81c7-aa9600018a3a,2012-11-26,,e9601724-5078-437a-9984-15e0d04c9470,907db559-01e5-4cb8-afd7-172f4f235b55,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +dfc3cca7-90ba-4125-8084-578590a1f71d,2017-01-24,2017-01-31,02958673-9549-4bee-9a4b-9788e422dc85,052101a9-8b7f-4537-9122-a59c4020c539,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +72a66b50-4576-417a-b556-5ecd26c6bd82,2017-04-23,2017-05-14,02958673-9549-4bee-9a4b-9788e422dc85,19b7af21-ff48-40e7-b344-ce22f766b752,225358003,Wound care,284551006,Laceration of foot +03e91a6f-0abd-4598-a766-3a69ef92ef56,2018-09-24,,02958673-9549-4bee-9a4b-9788e422dc85,8d089647-c330-480b-a5f9-d6e52c41e953,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bafa71cd-ef06-4f6c-9a1b-4433870bf842,1997-03-23,1997-10-05,31ed3fec-dd62-4c02-a186-41a5a42692e7,9b7c7183-ebbf-46f7-a268-779139de4aeb,134435003,Routine antenatal care,72892002,Normal pregnancy +2ecb8efe-cb9f-46d9-81ae-ab3c206bab58,1999-01-03,1999-08-08,31ed3fec-dd62-4c02-a186-41a5a42692e7,4094b5cc-b159-41d5-aff5-7b938fe9cee9,134435003,Routine antenatal care,72892002,Normal pregnancy +356753b6-dd0a-454a-bb59-af3bee11393c,2005-05-22,2005-12-18,31ed3fec-dd62-4c02-a186-41a5a42692e7,79fc21ba-a4bd-44c9-b1a6-52dfb37f97dd,134435003,Routine antenatal care,72892002,Normal pregnancy +259c16f3-8592-427c-a23c-ae00be97c855,2006-10-29,2007-05-27,31ed3fec-dd62-4c02-a186-41a5a42692e7,518850e9-b926-438d-9c31-6b074031a794,134435003,Routine antenatal care,72892002,Normal pregnancy +64d5372e-3e47-4397-a65a-d4af5a0c2fe0,2008-04-06,,31ed3fec-dd62-4c02-a186-41a5a42692e7,e1c422f0-c213-4df4-8e70-4b3cfb5a30bd,134435003,Routine antenatal care,72892002,Normal pregnancy +84c7f57d-60f5-4c43-846c-8f2438f27b23,2012-01-09,2012-01-23,31ed3fec-dd62-4c02-a186-41a5a42692e7,89ea5adf-0b73-4fb1-8356-95d03e40508c,225358003,Wound care,284551006,Laceration of foot +5dcb01a7-520c-48cc-acfd-4c3d8b33bad4,2017-07-30,,31ed3fec-dd62-4c02-a186-41a5a42692e7,c2d5223c-d2c7-461e-a9c4-eee6ebcaf1ae,698360004,Diabetes self management plan,44054006,Diabetes +eb4e2527-1c10-4e42-86ae-a45bd29ef6f1,2018-08-31,2018-09-07,31ed3fec-dd62-4c02-a186-41a5a42692e7,7537dd89-8027-434b-bb82-c8d614b7c669,869761000000107,Urinary tract infection care,38822007,Cystitis +63093f3e-cf19-42a0-9724-5f6f7a51f667,2012-08-07,,df2a3380-7ffc-4560-906c-0f3a4216704f,5893fb5a-6221-4008-9b98-f7ae007b7a5c,326051000000105,Self care,, +039c84a5-f4da-421f-9f00-8aea5d0e63c9,2015-12-17,,df2a3380-7ffc-4560-906c-0f3a4216704f,0931e8ab-aa14-45d7-b81d-f85612e3ba2f,699728000,Asthma self management,233678006,Childhood asthma +c9af272c-e28e-4f64-8709-a3f1d0957f05,1990-08-08,,1aa7bae8-69ce-4a35-9363-d227d30f3af7,526fb319-5dfc-4f4f-a619-2feeb0ed84da,698360004,Diabetes self management plan,15777000,Prediabetes +adee9a1c-af27-4d2e-a473-e616e52d7833,1992-09-02,,1aa7bae8-69ce-4a35-9363-d227d30f3af7,8d9f219d-97a4-41df-bd8f-bf24c677a338,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +ea4578f5-bda3-45a2-ae40-e1f5a1973ff1,2011-02-17,2011-03-21,1aa7bae8-69ce-4a35-9363-d227d30f3af7,6deed577-ce55-4119-9421-de3176fe4814,133899007,Postoperative care,, +8204a7f5-77b1-43a2-8612-508daa793f10,2014-02-14,,1aa7bae8-69ce-4a35-9363-d227d30f3af7,4df5e659-e576-4214-854a-956e4fdeb3e3,872781000000100,Musculoskeletal care,90560007,Gout +34b921be-9eef-48c0-be3d-83facf203754,2017-02-24,2017-04-25,1aa7bae8-69ce-4a35-9363-d227d30f3af7,a7fa606d-89fa-4a9e-8eb5-825d474faf96,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +1fb81ade-6797-41c6-bcc4-905e09f4a6c7,2000-08-06,,eb55b1ff-2f46-426b-8fe9-a0ae22e470d5,c148ab53-200f-422c-b2a0-e26ba7846162,698360004,Diabetes self management plan,15777000,Prediabetes +f05d5436-84cd-4a2d-8253-bc60a4075d71,2005-01-30,,eb55b1ff-2f46-426b-8fe9-a0ae22e470d5,4cf9025d-f9ab-47ef-bbfe-036d641a920f,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +10fa4aa1-bd61-4bdc-931b-e8be5083873e,2009-01-10,2009-04-10,dafbb70f-1232-4a2e-b295-8f7893d30a8d,74352159-f2e2-468a-a49c-65c83cfa5388,385691007,Fracture care,263102004,Fracture subluxation of wrist +5b414c62-8295-4699-9b72-af729c44330f,2009-07-06,,be89f733-db33-4ece-9ed9-0867ee9f0b02,55b9f6cf-fd02-4aa7-8548-620d323dfcdf,326051000000105,Self care,, +527b8df7-23f9-49a3-8106-d2585754b77a,2012-03-19,2012-06-11,be89f733-db33-4ece-9ed9-0867ee9f0b02,55edb00f-e1b5-4923-857d-76fa745b7d83,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +592c9b34-aa86-4c65-9f37-41d2523e82fd,2015-06-27,2016-07-11,be89f733-db33-4ece-9ed9-0867ee9f0b02,e50b198c-2c20-4d80-9c89-69ea6642117a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +006eb767-c2bf-4415-a683-f02a1c95aeab,2017-07-20,2017-09-18,be89f733-db33-4ece-9ed9-0867ee9f0b02,f73dfe05-429d-443a-a2f4-1f0c52772523,385691007,Fracture care,33737001,Fracture of rib +362b5846-3847-42eb-933b-da59b6a0493e,2017-09-25,,be89f733-db33-4ece-9ed9-0867ee9f0b02,2cce23a3-05c4-4763-b102-2319cd999762,711282006,Skin condition care,24079001,Atopic dermatitis +6348a1f0-f25c-41c2-a75a-03ef79013e63,2006-07-02,2009-07-11,f2b95216-c5df-404a-b1b8-19ab62b36fa0,b54ab535-e784-41d1-a0e5-c967ec4c4437,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +76365406-2622-4f96-bc44-530d110a13b9,2008-12-05,2009-01-11,f2b95216-c5df-404a-b1b8-19ab62b36fa0,491f4400-7863-4365-a88c-ab094006a9aa,91251008,Physical therapy procedure,30832001,Rupture of patellar tendon +8fa43619-9161-412e-97d1-0cb82c872138,2008-12-13,2009-07-25,f2b95216-c5df-404a-b1b8-19ab62b36fa0,1a6e501c-d53a-4951-a321-d089645a6efd,134435003,Routine antenatal care,72892002,Normal pregnancy +a1decf92-475d-4fd4-acf2-b5ccd9d71fb7,2011-06-02,2011-06-09,f2b95216-c5df-404a-b1b8-19ab62b36fa0,c7d1772a-4e13-4ccd-b612-6f5b6506b8b3,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e8ca42b3-acd9-42da-be7f-3a3c35a99c51,2012-07-28,2013-03-09,f2b95216-c5df-404a-b1b8-19ab62b36fa0,56dd32d9-302a-4ee8-ad50-27a939fc3d49,134435003,Routine antenatal care,72892002,Normal pregnancy +2e72e141-2221-4c01-a05e-ced8e57b9d34,2014-04-12,2014-11-15,f2b95216-c5df-404a-b1b8-19ab62b36fa0,e1a61228-a068-4a08-ab89-61e1be7da063,134435003,Routine antenatal care,72892002,Normal pregnancy +3b2b096a-1217-46dd-bc3b-2ae41c7bfcd8,2015-04-21,2017-06-17,f2b95216-c5df-404a-b1b8-19ab62b36fa0,db9661fe-f322-48df-94c7-c238cb9dbe16,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4af39d8e-8628-4f40-8753-486f9deb1291,2016-08-06,2017-09-23,f2b95216-c5df-404a-b1b8-19ab62b36fa0,28e3e062-c677-4acd-a72d-11343b6b7a55,134435003,Routine antenatal care,72892002,Normal pregnancy +2c32fb9c-4059-43b4-a912-dcc743410734,1962-11-23,,3eef6c86-6050-40f2-9103-4757157e4717,bb7b5db7-f640-477e-b2af-54f1a3f2f68f,326051000000105,Self care,, +7f61538f-0315-48be-8256-54832bb6c7e9,1964-08-03,,3eef6c86-6050-40f2-9103-4757157e4717,6aa0533e-d1b3-46d9-9f95-1143007677e9,699728000,Asthma self management,233678006,Childhood asthma +f1304836-6c32-4428-9c57-c8a567d0e102,2009-02-16,2009-03-16,3eef6c86-6050-40f2-9103-4757157e4717,1facf281-3292-4cb9-b7ec-5dc480898f26,91251008,Physical therapy procedure,44465007,Sprain of ankle +f771ef5d-dbd5-4f83-909d-9de8628ab818,2011-03-06,2011-03-27,3eef6c86-6050-40f2-9103-4757157e4717,5ed0dda3-0223-4295-927b-73ce8d20bba5,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +5a9007f4-d781-4690-ae0e-9d28173b0d0a,2015-04-05,2015-05-10,3eef6c86-6050-40f2-9103-4757157e4717,496910aa-122f-46ab-8c08-80e03c382ab8,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +7af32a06-c11c-4e4d-b468-31dc691bee2d,2016-01-23,2016-01-30,3eef6c86-6050-40f2-9103-4757157e4717,e223cb54-576e-48e2-acaf-58849412434f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1c33ee9b-5db0-4822-9233-6c5191f8a8d2,2017-04-29,2017-05-27,3eef6c86-6050-40f2-9103-4757157e4717,d2d9467a-937f-4a8c-9118-fb5a10cc5653,133901003,Burn care,403190006,First degree burn +707f1d36-d145-4250-b5fa-0e02dc3fa995,2013-02-20,2013-03-06,d9271144-4cdd-4550-ab71-9d675cdb3ac8,5192c68b-2628-4074-ae23-be86f640c45d,225358003,Wound care,283371005,Laceration of forearm +c4b9c2de-99fb-4644-baf5-f0b6182d9c91,2013-12-31,2014-03-01,d9271144-4cdd-4550-ab71-9d675cdb3ac8,771f0237-8ad1-4245-abe2-03df76c41058,91251008,Physical therapy procedure,239720000,Tear of meniscus of knee +ff01c56d-a5cf-4b07-b079-74816a8aabaf,2016-01-12,,d9271144-4cdd-4550-ab71-9d675cdb3ac8,393ea5cb-8507-47fc-804a-13eabc224ca0,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +87d4ec29-dc88-4399-a0f7-661852579d7d,2010-06-17,2010-07-01,9a249b38-0793-4538-a405-5c30b84d6f58,1e11051a-16d6-477e-abe9-ef93190286cd,91251008,Physical therapy procedure,70704007,Sprain of wrist +bcdb33a3-f4d6-4515-a60e-b85dcc8cf674,2014-05-11,2014-06-15,9a249b38-0793-4538-a405-5c30b84d6f58,7f22d85e-5e0d-4fb1-8260-3ef2d4c0dc67,91251008,Physical therapy procedure,70704007,Sprain of wrist +fba06ce2-8f85-4f28-b0f0-1d77f91ed4e9,2010-10-17,,c3148540-67ea-4604-8281-8496e18c9ed7,e1defccf-28e4-4aec-b25c-716705dc13f7,326051000000105,Self care,, +a9e8cef9-8764-4d10-bea0-ecdb80b9764b,2017-10-03,2017-10-24,c3148540-67ea-4604-8281-8496e18c9ed7,4ee3c146-cc24-4bc3-9796-6f2944ed592e,225358003,Wound care,370247008,Facial laceration +f5e53d5b-43cc-4390-8f85-30dff7edbe60,1986-11-24,,a8a8e3ce-26d8-4a20-95a2-650f2e8d24e3,85f3e2de-f4f9-4bb6-8b49-75ef30f7bbeb,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +3e8018da-2d9f-4b42-90dc-87b1912f44eb,2011-12-31,2012-03-12,a8a8e3ce-26d8-4a20-95a2-650f2e8d24e3,f8c2cbef-4cb0-44ca-9f21-5d0e4e199661,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fc1a5f37-58d2-4335-8e0a-d1d079940dbd,2016-01-01,2016-01-31,a8a8e3ce-26d8-4a20-95a2-650f2e8d24e3,bee649b0-7283-43c8-9d1b-7faff10816d8,385691007,Fracture care,58150001,Fracture of clavicle +4ee0dd03-e12d-4f69-987a-1c9c6e8c191a,2016-11-17,2016-11-24,a8a8e3ce-26d8-4a20-95a2-650f2e8d24e3,e14660f1-ee81-44dd-8877-ca890379d842,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e22a2ba1-b7ae-4b61-bc0c-d2258188db44,2018-10-20,,80dd8237-08e2-47d3-ab74-ba83182fe7b7,ab0f10f8-86c2-485c-8c7a-af44fa089da3,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +11679e22-94dd-4b81-be74-d56a74b8f483,1987-07-01,1988-02-03,9a16b6b5-20e0-4033-838f-4207839e7f20,7e206af6-f87d-4361-9a0e-39be146e5ddd,134435003,Routine antenatal care,72892002,Normal pregnancy +22d2497a-4c88-45b3-970a-56643d8db893,1988-06-15,1989-01-11,9a16b6b5-20e0-4033-838f-4207839e7f20,e5386148-b379-40df-a135-c5afd856ba7b,134435003,Routine antenatal care,72892002,Normal pregnancy +e76d1607-7c76-4a93-8d0b-4a9ea4bbdfac,1996-08-21,1997-03-19,9a16b6b5-20e0-4033-838f-4207839e7f20,6accae07-6f86-4090-94b4-3392f182166b,134435003,Routine antenatal care,72892002,Normal pregnancy +51037527-6d41-4048-b5ab-e5244b8fb747,2005-04-13,,9a16b6b5-20e0-4033-838f-4207839e7f20,b33bae6a-297d-41f0-ba93-4c370efcbe8b,134435003,Routine antenatal care,72892002,Normal pregnancy +71e498d9-6a80-4670-92e1-70257b21f465,2012-11-29,2013-06-26,9a16b6b5-20e0-4033-838f-4207839e7f20,3de0ba80-aa0d-41bc-b58c-9022ecebc3d5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b8abc133-d77e-4a44-ab84-18b8ef724c58,2007-06-25,2007-07-16,07ff086e-b8bd-44b7-95d7-826f8169f49a,81642eb6-525f-40dd-aa73-1cddaf10e24f,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +4e29f3f3-1b90-43c8-9571-c51f9ed18d49,2011-06-27,2012-01-30,07ff086e-b8bd-44b7-95d7-826f8169f49a,6586f769-b5da-4da5-9058-6d3011f7e14b,134435003,Routine antenatal care,72892002,Normal pregnancy +cf9ad1d1-443b-4311-bded-dab64bb1f190,2014-04-24,2014-05-08,07ff086e-b8bd-44b7-95d7-826f8169f49a,06892f80-ba0e-42ca-8871-17fde42691f5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8d4e08e2-e7b0-443d-8947-ef08de8c7469,2016-08-10,,07ff086e-b8bd-44b7-95d7-826f8169f49a,98135852-c67a-4c9a-95dd-c3be894363bf,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +ba365e5f-ab03-4207-84f5-cb9fae894429,1994-08-08,,4e7058c6-50e6-4fb5-b01b-df5dfc28f181,a419f841-e53c-4e76-9663-207ed1c9f0f0,698360004,Diabetes self management plan,15777000,Prediabetes +e69979be-3971-4fcb-a2e7-0a71d9ddca45,1985-03-27,,dfc6eea8-1371-4ff3-96a9-5891151f737d,c28492f3-b150-4bcb-8b2e-4e57ec54debd,699728000,Asthma self management,233678006,Childhood asthma +dc001d58-0eb5-4a1a-ba24-6e22d7202751,2013-03-25,2013-10-28,dfc6eea8-1371-4ff3-96a9-5891151f737d,fe584afa-7235-43b0-9d95-17652c39f948,134435003,Routine antenatal care,72892002,Normal pregnancy +7b47c96b-abe5-463a-a0cb-3500fb256848,2015-08-17,2016-03-21,dfc6eea8-1371-4ff3-96a9-5891151f737d,f16cd467-8002-4ef1-94c1-a7d54a23fbd7,134435003,Routine antenatal care,72892002,Normal pregnancy +fb0c712a-7f4a-44bc-a01a-20d36f9b377d,2018-04-29,2018-05-13,dfc6eea8-1371-4ff3-96a9-5891151f737d,b7221eae-ed56-44aa-a479-4a9f431f78e6,787301000000101,Surgery care management,, +acbcf866-bfc1-49ed-885e-084abf563684,2017-09-07,2017-10-07,8bc179f0-d517-44a3-82f7-aa187c93b487,e585a58a-9c24-4629-8d11-830ac88c214f,385691007,Fracture care,58150001,Fracture of clavicle +6e1bfde3-b0ed-4760-8fa5-15f83a2e2ceb,2012-11-23,2012-12-21,527101a5-28c8-4042-b74b-d8213d714dd8,f8e8e066-3a0c-41cf-97e5-78ac0fc11b8c,91251008,Physical therapy procedure,44465007,Sprain of ankle +08e004a8-567b-4a31-96de-232c4ace79cf,2001-05-03,,d1ca9369-46f2-425c-8f5e-b57339ae71cf,e37a7cf7-1d89-4a46-a841-75bcfa500e21,698360004,Diabetes self management plan,15777000,Prediabetes +60075c4a-728a-4841-9e90-bf5058fa31bf,2012-03-03,2012-04-07,d1ca9369-46f2-425c-8f5e-b57339ae71cf,0f7ec361-49cf-4d51-999b-3499a34d0c54,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +1f49f89a-359c-4a8b-bd02-5ecc3007d980,2016-03-29,,978df329-1cf5-4d83-97c0-7aff4529ad8b,7b181d2c-df0f-4672-9c9a-569bb61a4f85,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +068f792f-45a2-48ab-aedc-317093191019,2016-05-16,2016-12-26,978df329-1cf5-4d83-97c0-7aff4529ad8b,c6f794dd-36f4-4009-a952-18036cb19e3b,134435003,Routine antenatal care,72892002,Normal pregnancy +502199d3-d484-47d6-9904-341ce282460f,2007-10-01,,22652935-07e7-4fbf-82a1-ec7da099e511,9651f293-b4c6-46f6-9749-1b8187ba1e84,698360004,Diabetes self management plan,15777000,Prediabetes +c856f415-eaf5-4e61-95c0-dbf947d2b3e5,2013-04-15,2013-04-22,22652935-07e7-4fbf-82a1-ec7da099e511,7b7aae14-b4f7-4b1b-a8c8-a0a92735957d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fbd5e30c-1167-4d80-af2b-e3d21dd4f2db,2014-05-09,2014-05-23,22652935-07e7-4fbf-82a1-ec7da099e511,cda75efb-f671-4340-aafb-42ee9d785461,787301000000101,Surgery care management,, +8042748f-080c-4b3f-a6f9-f071c4e4746f,2015-04-10,2015-04-17,22652935-07e7-4fbf-82a1-ec7da099e511,6516536c-eede-466d-8cb0-461cce3437ec,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +f0bfc0b2-911f-4fc5-b5a0-3992dcc9fbee,2018-10-25,2018-11-08,22652935-07e7-4fbf-82a1-ec7da099e511,25686612-1d1a-47ed-9c8b-621420596593,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6de99b88-4662-4166-adb2-204ffd1c1f32,2007-12-12,,82832871-acf3-4c60-90c0-5f2805031021,dd63f625-6ae3-47bd-8cbb-64dc5e6a3037,698360004,Diabetes self management plan,15777000,Prediabetes +f67c14d2-a0f6-424b-9d98-3a544afa7b78,2013-10-26,2013-12-25,d721ff7c-2432-41ac-82c4-440833196099,548626c9-9949-40ac-ab79-e8838583da7a,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +6e1081e8-c782-4bd6-9596-fe037d55aa47,1983-03-05,,8a38018e-1f46-407b-a45d-e7edfaeb9eca,d4dea14d-3002-4872-9ec1-9566f1d4e5d3,698360004,Diabetes self management plan,15777000,Prediabetes +ff0b384f-b8c3-44bf-aab0-33913b3593f8,2017-04-08,,8a38018e-1f46-407b-a45d-e7edfaeb9eca,93bfd1a5-9921-445a-81b3-58af7af10b49,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +f6137114-24b8-4c3d-8979-c658c9ca3cd3,1974-10-31,,ccba21a8-9fde-4c58-af39-9e1417d24f00,f6f07440-afde-44a3-b39a-e43ecb58dddc,698360004,Diabetes self management plan,15777000,Prediabetes +2da21523-fce1-4463-9c4d-b012df46d711,1992-09-17,,ccba21a8-9fde-4c58-af39-9e1417d24f00,25f9357d-da5e-4f7e-b39e-236839c35ea3,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +10eb0f12-67db-4d7f-9e10-d52af9dcca41,2010-04-22,2011-01-06,ccba21a8-9fde-4c58-af39-9e1417d24f00,01a14198-b41f-4c5b-81fb-bcec61e9e62c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +84214c09-b02d-453f-8bd2-ea27b89de996,2015-07-16,2016-02-04,ccba21a8-9fde-4c58-af39-9e1417d24f00,48e01886-bc0f-4484-8eca-cc11323a64dd,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +42bf61a9-ac04-4be3-af8b-531087b51b91,2016-05-13,2016-07-12,ccba21a8-9fde-4c58-af39-9e1417d24f00,0773ec9e-f325-4182-baeb-aadde03e520c,91251008,Physical therapy procedure,239720000,Tear of meniscus of knee +3954ad03-44a0-4c1c-bd7d-8f61135dc56d,2018-02-15,,ccba21a8-9fde-4c58-af39-9e1417d24f00,844c1493-9af2-4d6f-8414-12f14d71e984,386257007,Demential management,26929004,Alzheimer's disease (disorder) +15b054f1-63e8-4485-ab11-33ab163c3862,1983-07-19,,bc28bef0-8251-4945-b9ae-09f86472f389,e67c908b-0b5d-4f9d-bbd1-06df3f7885f4,698360004,Diabetes self management plan,15777000,Prediabetes +77f2cc1d-0fde-4de6-939e-eb73ae4f9549,2009-12-30,2010-02-03,bc28bef0-8251-4945-b9ae-09f86472f389,158b6f18-98fb-41a2-8e6b-ad02b9713687,91251008,Physical therapy procedure,44465007,Sprain of ankle +e835e048-576c-4d91-ad2e-bb586bbe1ecc,2011-11-25,2011-12-09,bc28bef0-8251-4945-b9ae-09f86472f389,82db0d34-f23b-47e8-b590-207a8864f0f6,225358003,Wound care,283385000,Laceration of thigh +ad58b234-2e91-4d4b-9738-1b1dd61d33a0,1988-07-26,,ac2a2e0b-3ea5-4d84-9399-472296aa8321,49d247ec-0d52-4e40-b1ec-a8d444ebeb86,872781000000100,Musculoskeletal care,69896004,Rheumatoid arthritis +00afc118-4060-4e51-9a7c-31d8c989fbaa,2013-10-31,2014-02-21,ac2a2e0b-3ea5-4d84-9399-472296aa8321,54325f1d-79f4-473c-8a06-995b57712605,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e11ca3c8-977a-4140-bb41-a6ade4294069,1982-12-12,,cbfe3365-48b7-451f-aeee-b68a28e9a8b1,82ed1291-708a-4210-baa7-a744fbe2c488,326051000000105,Self care,, +58a23f06-9e46-4e73-a2e5-42af27f360ab,2006-12-30,,cbfe3365-48b7-451f-aeee-b68a28e9a8b1,7a72fcb1-41ec-4272-ae51-278c2ad84a8d,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +c97040b7-ec10-45ff-a692-11ca22d64b6f,2012-04-04,,83afa1dd-6433-4fbb-ae66-ef31f1f3381e,2ad55cdc-312a-4f25-8103-54fcabab873d,698360004,Diabetes self management plan,44054006,Diabetes +3f24873a-d118-42c2-8b1a-162cea848e57,1973-11-26,,bda8c658-1865-4cd0-ba28-a180b5f64846,de1d550f-62d1-4e19-a4e2-0450df2359d9,698360004,Diabetes self management plan,15777000,Prediabetes +391d71cc-5ff2-4353-8f9b-d7fe0ba72c7f,1997-08-18,,bda8c658-1865-4cd0-ba28-a180b5f64846,ef25cc3f-f250-47a7-8638-3ad9de34476c,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +86d255fe-3354-4640-acda-661fefa69b0a,2011-09-09,2011-11-07,bda8c658-1865-4cd0-ba28-a180b5f64846,82492835-6dbc-48e9-9bf8-68848bd0e47b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +57e7a738-a3f8-4977-abe9-4cbfd354f179,2017-07-31,2017-08-21,71f49b56-a56d-451d-9402-2c819fb95251,d7f7fe7d-11ab-4b4a-8214-e14ad7e5c98e,91251008,Physical therapy procedure,44465007,Sprain of ankle +5dd48573-e1a0-4501-8b37-5e28d4e1f45c,2018-03-29,2018-04-05,71f49b56-a56d-451d-9402-2c819fb95251,aeaf5bef-597f-40e7-b83a-7187b3b2f4c2,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fe7260fc-c4fb-46ea-a63c-7ddf7366ace8,2018-09-03,2018-10-01,bda8c658-1865-4cd0-ba28-a180b5f64846,18bdc070-58ac-4639-b1bd-8c483df1842d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2276ee8d-6868-4d38-b744-b2dcb0117c97,2010-11-23,2011-02-21,9a74ce45-ee88-49e2-98be-e77bb2f085b1,291c76cf-80d8-41f2-855f-21fb4fb767d7,385691007,Fracture care,58150001,Fracture of clavicle +04946eee-efff-4cf8-ade1-5849e77769e0,2015-08-30,2016-09-13,9a74ce45-ee88-49e2-98be-e77bb2f085b1,55ede47f-e043-4f97-bcc4-9bb864155c93,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2d5d4ddc-1d2f-475e-bdde-9094a8ff1fcc,2017-12-16,2018-01-15,9a74ce45-ee88-49e2-98be-e77bb2f085b1,cf94129a-fcb3-434f-b6a0-544395a403c2,385691007,Fracture care,33737001,Fracture of rib +03a0ef30-645b-4ac4-b968-bfb936db4b3d,1978-11-10,,0a381843-5342-4bbb-a196-6efa237287c8,170bfa25-c171-4685-b6b3-2648861f8520,698360004,Diabetes self management plan,15777000,Prediabetes +06eefc2b-ad2c-475a-8da1-cff6dfb16b85,2009-04-21,2009-05-05,0a381843-5342-4bbb-a196-6efa237287c8,6dc69711-f420-4944-9bed-8c8a24e14414,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +65e1fa35-daab-469f-bb68-3878fd3cd663,2013-03-16,,0a381843-5342-4bbb-a196-6efa237287c8,56a92dd5-cb69-446c-b831-a624d2add7f1,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +5da11731-1361-47c6-948f-f4a98fbb8c81,2004-10-27,,5869e22c-cd83-4a4e-8517-bc6970e6c27d,98083b27-c7ed-412a-8b1e-3209862c1e06,734163000,Care plan (record artifact),55680006,Drug overdose +1df622b7-939a-4d23-8417-128ad1924f6a,2010-06-18,2010-07-02,5869e22c-cd83-4a4e-8517-bc6970e6c27d,f9a3cb23-414a-4f86-b614-956be4f8191c,787301000000101,Surgery care management,, +3dd7765f-10e7-44b3-97d1-c2f29e7952a6,2010-08-12,,5869e22c-cd83-4a4e-8517-bc6970e6c27d,bf6720a6-f604-4651-86f7-332e2874a52d,698360004,Diabetes self management plan,15777000,Prediabetes +fe4bfdd1-f958-4b57-8ee5-c39e8b2c7869,1995-06-29,,7d5ccbc1-0300-4bba-b4a1-9403f8bbd338,812344ef-2da4-46fb-a432-873b455adc3b,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +8bbeee15-b7a0-4236-a2f8-e9c9f372bd14,2017-09-27,2018-10-15,7d5ccbc1-0300-4bba-b4a1-9403f8bbd338,2ec11eaf-0b18-4410-93c2-48f8d2637c5e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ff37cd6e-f2c2-45d5-a16c-6c4922d7ee0f,1995-07-13,,d6e4befb-ce45-4d73-946e-d4175d37896e,e70ce640-cacc-48b8-95c7-a95dea14635e,698360004,Diabetes self management plan,15777000,Prediabetes +03f9bec1-2eec-47a3-92c6-20920d02a24c,2008-02-29,2011-03-10,d6e4befb-ce45-4d73-946e-d4175d37896e,07f6ede5-5093-4e38-acf3-909104a993bd,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5b1baa82-d09d-494f-8670-1baeccdbdd1a,2013-12-26,2016-01-07,d6e4befb-ce45-4d73-946e-d4175d37896e,62028119-649b-4a32-9440-778782e7385e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ad4d8c9f-25e6-47b9-a371-1afe3c8ab929,2017-12-28,2018-01-04,d6e4befb-ce45-4d73-946e-d4175d37896e,9dd18938-a0e3-4d35-b2e0-3ab1bed9f44a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4394244c-6328-4005-b88f-13c74f91ee92,2009-03-13,2010-07-16,9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,ec06041d-7002-4f88-b14a-6f9b8cd31239,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +76c97935-8061-4872-9d15-7f794e96c9e4,2012-05-04,2012-12-07,9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,7f105a6f-9542-4a8f-a571-b52b66988e49,134435003,Routine antenatal care,72892002,Normal pregnancy +23a705d4-1631-414c-8506-58d5ba24971d,2013-04-19,2013-11-22,9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,0f5e2e6b-325b-4b21-980a-d9cc353698f3,134435003,Routine antenatal care,72892002,Normal pregnancy +ca08767d-1298-4e78-8d52-b7fbd9e89412,2014-04-11,2014-11-28,9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,56b3ae2e-52c4-4cf1-9393-68d67440225a,134435003,Routine antenatal care,72892002,Normal pregnancy +e4408dad-c0c7-4ce3-acad-44d8bab10382,2018-01-11,2018-01-25,6110e96c-b79d-44ef-b93c-8221d46be6de,eb7e3584-7273-43ff-a10d-5bace4e4e045,225358003,Wound care,284549007,Laceration of hand +61457b27-8113-4503-9e8b-c2d3a5d4d4ad,2016-06-03,2016-12-30,9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,e8b9682e-ae46-46bc-a7e9-f5077172559e,134435003,Routine antenatal care,72892002,Normal pregnancy +2b77efd8-4964-45b5-ba30-724b6480e27f,1997-03-01,,8722c2fe-d066-4f3e-837b-df27536ae914,c028ec07-ab25-4746-b8e5-0dff0f3b0a88,698360004,Diabetes self management plan,15777000,Prediabetes +cfa3e116-1c99-49c0-aed2-f4e407014d09,2010-08-29,2012-09-08,8722c2fe-d066-4f3e-837b-df27536ae914,a7fafe84-d293-47c1-a62e-5c4c5ccf670a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +02e3e8ed-7334-4334-a9ac-d4cba5cd0a1f,1988-06-10,,8da9037a-4edf-4eeb-ab64-4420cd815d2f,167be7fa-c113-4214-ae67-2ecaa48c4399,698360004,Diabetes self management plan,44054006,Diabetes +eb8b9c8e-8643-43e5-ae90-d5f6b341a5fe,2009-06-03,2009-07-03,8da9037a-4edf-4eeb-ab64-4420cd815d2f,44b995fe-09f6-415d-b1a1-5fe21e63c197,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +41d8f456-210a-4dff-838c-3dd1cef4de07,2010-03-17,,8da9037a-4edf-4eeb-ab64-4420cd815d2f,0d14e470-1e3d-4695-97a0-725253762316,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +c6d431c0-bdec-46ae-9011-563b110cf84b,2013-04-19,,8da9037a-4edf-4eeb-ab64-4420cd815d2f,e9cabeef-8ba2-46f4-9e0c-c48ea035a540,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +bede6c54-0d55-478f-94a0-6bfe17db3bd3,2014-02-07,2014-03-28,8da9037a-4edf-4eeb-ab64-4420cd815d2f,4889b35e-62b7-41cc-8dd5-4e3c0fe5d816,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +58307ab5-ef36-4b6b-bb0f-d73d4a85c343,2018-01-17,2018-02-16,8da9037a-4edf-4eeb-ab64-4420cd815d2f,54b32585-2a6d-4aa1-aad7-115882326f33,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +1d292674-b1f1-4e45-9294-95242e23a272,2018-05-07,2018-06-08,8da9037a-4edf-4eeb-ab64-4420cd815d2f,24b9b842-f741-413a-9d4c-13dce0944bcc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5fc717fb-d4b3-4df3-82b8-d8501a9c3875,1975-11-02,,39dac597-f888-4259-a98a-c1da12a73822,550d990e-2ae9-4ec6-97d7-27b84454f175,698360004,Diabetes self management plan,15777000,Prediabetes +0cae1e3d-fa1d-4bf7-ae08-35856e2c6c6c,2003-07-28,,39dac597-f888-4259-a98a-c1da12a73822,42c62468-26cf-46a5-b838-07b919b6a5be,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +b9599090-bc2e-48ef-9d75-7a7caf5d52f9,2011-04-03,,39dac597-f888-4259-a98a-c1da12a73822,fd933276-9de5-41b1-ba5c-a504d43c02d7,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +30e4a2a2-cf3d-42bf-a44b-0cf67961a2bf,2015-04-26,2015-05-31,39dac597-f888-4259-a98a-c1da12a73822,419a6a9e-2441-429e-8a63-c109b02275e3,91251008,Physical therapy procedure,44465007,Sprain of ankle +5d8629f7-fb04-4698-bd2f-db46f2ed287f,2016-03-04,2016-03-11,39dac597-f888-4259-a98a-c1da12a73822,5356e7a5-ce9f-4365-8abd-47182b94c4df,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3a1eca30-ffac-41b1-a8d6-94f54bfb2798,1996-08-06,,2e94ab53-2e32-4a6c-9d43-ee8bef0f311d,9a053d85-19b3-40cb-9e13-7710488ea754,326051000000105,Self care,, +7d5a8a79-7f96-4441-804a-4f98c0ad5dba,1997-05-20,,2e94ab53-2e32-4a6c-9d43-ee8bef0f311d,80ddf8c8-56fb-434c-92d0-6217a1446a4a,699728000,Asthma self management,233678006,Childhood asthma +948c88ab-e16a-430c-8402-d24b332f1eb8,2008-05-18,2011-11-20,2e94ab53-2e32-4a6c-9d43-ee8bef0f311d,1fcd39f7-fec9-4a24-839a-7b02019dec60,170836005,Allergic disorder monitoring,, +e36088af-a04e-4168-ba10-15d6ae8a3ef2,2009-09-30,2010-09-05,2e94ab53-2e32-4a6c-9d43-ee8bef0f311d,9f38f3e0-e298-404c-b8d2-a6fef3c5b345,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2cf76617-c187-4050-a3f2-0efa1134d66c,1991-01-03,1992-06-06,fa5249dc-50b7-445b-84a7-8d3f6179af97,00577f58-5529-4fb2-8dfa-4dbffa4f793f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +28e2a8f9-f3c4-4341-9401-9e292ee57d11,1994-03-15,1994-06-13,fa5249dc-50b7-445b-84a7-8d3f6179af97,a44f7a46-a90d-4a49-a258-baeefa835acc,385691007,Fracture care,33737001,Fracture of rib +dd2ffdeb-3e9f-4fc0-95df-8baec4c619ca,1966-02-11,,ec604d06-19bc-4584-92ef-b87a1d12c881,f91e43a9-b646-4f58-a60d-e28325ba3a8d,326051000000105,Self care,, +d0a46d44-d570-42e9-b1dd-620792727d35,2004-01-19,,ec604d06-19bc-4584-92ef-b87a1d12c881,7419da98-4656-4f1e-b9c4-791a562de59d,698360004,Diabetes self management plan,15777000,Prediabetes +1b183d88-5ee6-407c-88f6-50149ae57620,2014-06-02,2015-06-15,ec604d06-19bc-4584-92ef-b87a1d12c881,a97249bb-3467-443b-8f85-80d34016f8cc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1d0355bf-a00b-45d8-a81c-ebec51ecb08a,1946-09-11,,58522975-5391-48eb-a2cb-acda53bd0948,19b3e03a-fd56-4174-bcc0-810bc69b16ef,326051000000105,Self care,, +b0c51402-804f-445f-bdf5-9d0db315e03f,1985-11-13,,58522975-5391-48eb-a2cb-acda53bd0948,17f84d3f-c2af-4729-ae8e-7ed66f13f5d4,698360004,Diabetes self management plan,15777000,Prediabetes +719f356a-4cc6-4abc-8e6c-3a6b80cc9005,1992-08-03,,58522975-5391-48eb-a2cb-acda53bd0948,902851ec-8919-495c-8bb2-d09b781d3e08,872781000000100,Musculoskeletal care,239872002,Osteoarthritis of hip +e00742dc-7cca-48ca-b70c-5706c73477cf,2011-02-28,2011-03-28,58522975-5391-48eb-a2cb-acda53bd0948,3aa8bad8-3fc1-4e57-8ce6-7961c0af8233,91251008,Physical therapy procedure,44465007,Sprain of ankle +1a24e59c-660b-4fb8-8d9d-272c17fa63d8,2012-06-13,2013-05-01,58522975-5391-48eb-a2cb-acda53bd0948,ee129ebf-ed2e-4189-a7bf-d916e3ae5d59,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +02ecadcd-8b7f-4f81-9f2c-90a0a0a5ceaf,1962-12-14,,af071cb8-62a5-4411-a5e3-7ef190b9761d,fa7fa824-052e-4c8a-921b-a00a1026cdba,326051000000105,Self care,, +cedb8d46-44cd-4542-8335-597aca733c7c,2008-11-07,,af071cb8-62a5-4411-a5e3-7ef190b9761d,a80e273d-cf44-4690-935b-645f4a8a9b55,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +864acbd4-3aa6-42d4-94c3-1961115fb6d5,2008-12-10,2008-12-24,af071cb8-62a5-4411-a5e3-7ef190b9761d,16b1efcd-671a-4c1c-9315-505dd212e60e,225358003,Wound care,284551006,Laceration of foot +14c5420e-88b2-4f58-b463-69a377de3e93,2009-11-19,2010-01-18,af071cb8-62a5-4411-a5e3-7ef190b9761d,83c7e958-e120-4525-a008-1a6c4be8f63e,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +dad9f9fb-5852-4fa4-a595-57f468b7f374,2012-11-25,,af071cb8-62a5-4411-a5e3-7ef190b9761d,20563bc9-7568-431d-bff4-81e88366a016,698360004,Diabetes self management plan,15777000,Prediabetes +b21332da-420e-4ea8-9d1d-e7df69879d42,2013-07-26,2013-08-28,af071cb8-62a5-4411-a5e3-7ef190b9761d,838e6c32-68c0-4f23-9cc5-1100476faa3b,781831000000109,Major surgery care management,, +13dd8d11-e6bb-43c9-9744-6d212b86b5c9,1995-08-30,,c02b5bcb-19a8-49b4-9c88-fadbd0e4203e,4895996e-7abe-475d-bdb5-e8adcf308473,698360004,Diabetes self management plan,15777000,Prediabetes +96b0aa83-33e2-4eaf-adae-0202dcfe31bb,2010-07-09,2010-09-15,c02b5bcb-19a8-49b4-9c88-fadbd0e4203e,fee02649-831c-48d9-a934-609ecd8fb467,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ac594de7-0084-417e-be21-20b02ec840f0,2005-10-29,,4944db25-4689-4cda-b428-76511346ae7f,3a2636ff-cdb2-45d2-bfb3-a0a866636af8,698360004,Diabetes self management plan,44054006,Diabetes +8b1665b9-f0b1-4fc8-b812-d6e7756b9db8,2007-03-12,2007-04-16,0fd23c83-0326-4c76-8817-3af01058894b,32e4178c-2e4a-4f91-8e30-43a010f00f6d,91251008,Physical therapy procedure,44465007,Sprain of ankle +34e32764-9314-45e0-8635-0cb04ea95a49,2009-12-28,2011-01-11,0fd23c83-0326-4c76-8817-3af01058894b,dd3236c7-8308-44ce-9b46-8cf84d1d42c7,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +64f3e263-4750-4229-bc44-acabc7f08f21,1989-04-16,,cfd7d453-12a5-45d8-90ae-8f42d8451e93,69b3ee73-0e0a-4b9f-b80b-62cbb62026fa,326051000000105,Self care,, +bb1e1548-da5b-4141-ad68-07d580a72e9f,2009-05-30,2009-06-06,cfd7d453-12a5-45d8-90ae-8f42d8451e93,339b4497-1be0-4513-8bb8-58bd8347fb04,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3534063d-1ea4-46cb-b53a-40dbd4db336f,2012-01-13,2012-01-27,cfd7d453-12a5-45d8-90ae-8f42d8451e93,911eff31-1941-4096-9748-40cf00bd7393,225358003,Wound care,370247008,Facial laceration +fa03034d-ea74-4fe2-8f76-a0fd77d3de21,2013-12-17,2014-03-17,cfd7d453-12a5-45d8-90ae-8f42d8451e93,d4ca2f21-8b74-4a8f-851b-1642aa0bfc30,385691007,Fracture care,58150001,Fracture of clavicle +9455956c-5313-4c47-be46-e2a31b42c622,2013-01-04,,531daafb-9613-4f00-9b3d-ee1e3ceed03e,7caaac2d-fde5-4242-bc86-6b2000a14c2c,872781000000100,Musculoskeletal care,239872002,Osteoarthritis of hip +bf45299b-6896-4266-8a4b-96fb798f42f9,2016-02-16,2017-11-20,531daafb-9613-4f00-9b3d-ee1e3ceed03e,7c55158d-4eef-4ce3-80b2-bb86a8118bba,395082007,Cancer care plan,363406005,Malignant tumor of colon +834258a6-b0ed-4079-8783-71487e05419a,2016-02-23,2016-03-06,531daafb-9613-4f00-9b3d-ee1e3ceed03e,b5ac2af6-4985-4b79-bf9f-13583cf3e21f,781831000000109,Major surgery care management,363406005,Malignant tumor of colon +a3847ce7-3e8d-4b28-92a9-70cebef8dd9a,2017-07-26,2017-08-09,531daafb-9613-4f00-9b3d-ee1e3ceed03e,83925bc6-accd-4698-952d-6f1c17507be1,225358003,Wound care,284551006,Laceration of foot +faf147ff-222f-47c0-ba44-6b81f3b86b3f,2018-08-04,2018-09-08,531daafb-9613-4f00-9b3d-ee1e3ceed03e,d5cb2817-4007-4e96-8f7c-95ce7ea9bcc8,133901003,Burn care,403190006,First degree burn +728d58b5-f52b-4142-9031-bf1e53eebf33,1947-10-05,,49ab9669-7d51-4ab7-8272-4918b0caa48e,5e65f824-508b-4d9a-bf19-d97ac35e316f,326051000000105,Self care,, +0f9b1511-1e44-4d1d-a919-43918bd1e9b0,1981-02-27,,49ab9669-7d51-4ab7-8272-4918b0caa48e,54b4d1bc-5e68-4bf0-ab9d-477c9c77bd45,698360004,Diabetes self management plan,15777000,Prediabetes +1d144ef6-384f-4e0d-b178-076202f910e4,2004-02-03,,b9423bcd-fbb2-4b20-9ad4-9476a4669d7f,6aaaaac9-5b26-4bab-a94f-904806838ce6,326051000000105,Self care,, +5b3107b2-0e98-4e32-8e0a-834567a828b4,2011-12-17,2013-01-01,b9423bcd-fbb2-4b20-9ad4-9476a4669d7f,35d5dc50-9443-45b0-9d1d-b8111f10b18b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ac226f2c-160a-4ed0-8f9f-4239614568a3,2016-07-05,,b9423bcd-fbb2-4b20-9ad4-9476a4669d7f,c6425233-1458-4409-9e94-805de12f847c,170836005,Allergic disorder monitoring,, +ba96e8c2-268d-428e-8acc-1cffc1f4c9d5,2018-08-05,2018-08-19,b9423bcd-fbb2-4b20-9ad4-9476a4669d7f,318d008d-4e79-4b5f-9afc-42c40e1bf927,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3b4eed04-aebf-439c-898d-312ad661a8df,2016-06-23,2016-07-14,49ab9669-7d51-4ab7-8272-4918b0caa48e,f990bbca-f00f-441b-813a-0d75049a50c9,225358003,Wound care,370247008,Facial laceration +83131376-cb4c-46d2-a503-7df5813e141e,2012-09-09,2012-09-23,e7fe0876-8888-43e3-aed0-2151c6ecbbb8,445193df-9c4b-4026-b84c-2c143bab8771,225358003,Wound care,283385000,Laceration of thigh +4ee17afc-cd70-4200-9d41-76f3302c551a,2014-10-09,2015-01-07,6f0455d7-d951-4b0b-b5bc-9b58710e0060,85836c7d-6e3e-4ed9-b089-c02f804ff83a,385691007,Fracture care,65966004,Fracture of forearm +7b819a2f-c8ee-4da9-97b0-148b5527412a,2015-01-21,2018-01-20,6991cc45-9140-4e91-a754-a97eb26703e5,51501438-7a96-4b2c-9ac6-1596bedce695,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1c9e1e7d-ac42-44e2-b73b-7ca1436e1e28,1986-09-05,,263e67f1-992f-4b7d-a852-37423fa46e66,be4979ba-294a-40c1-af1a-8bc3a16acf63,698360004,Diabetes self management plan,15777000,Prediabetes +aa05f06c-1493-411a-8a66-d5ceaa479f84,2011-01-18,2011-03-19,8906d7ea-96cd-4598-b9a7-4101a7246828,f72d708c-1bf5-496c-890d-83853644de34,385691007,Fracture care,263102004,Fracture subluxation of wrist +519be17e-5a86-429d-aca7-e1cf6c2b35fd,2011-02-13,2011-09-18,8906d7ea-96cd-4598-b9a7-4101a7246828,d7d21521-2d0e-4cd8-98d5-4f6a5ddfed86,134435003,Routine antenatal care,72892002,Normal pregnancy +b6f3fdb9-4489-47a3-9c44-1f74782d3122,2016-01-03,2016-07-17,8906d7ea-96cd-4598-b9a7-4101a7246828,f072129c-a480-4bea-9dcc-1a720b94c648,134435003,Routine antenatal care,72892002,Normal pregnancy +86339103-aea7-4fb1-bb41-62b4bc8055b3,2011-01-15,2014-01-25,da448dc6-eb21-4a04-89ca-404b7c836c83,3103cb5c-6ea5-4ee3-8122-7502bfa7f14a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +71da1c35-18e2-41de-ade1-41eb66d872b0,2017-01-22,2017-02-19,354ff955-949d-4cb3-bda1-d634c0266f50,5e6d5569-d332-4a1b-8fa5-71f598f2de74,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +ac6f126a-33c9-48a6-adef-796b77bc27c7,2009-06-25,2010-02-11,43198299-f370-4e7a-9b92-7c6fc93ceab8,12ed354f-7422-45e7-9c6f-89af266726ec,134435003,Routine antenatal care,72892002,Normal pregnancy +8681f7b2-700b-425c-808e-eb22114022f6,2010-09-23,2010-11-22,43198299-f370-4e7a-9b92-7c6fc93ceab8,fb8b7e2f-bec2-4ef7-8fb9-4a05f9fad31b,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +4385ac8a-f050-4567-90c2-647a91196a86,2011-01-13,2011-08-18,43198299-f370-4e7a-9b92-7c6fc93ceab8,55b77d23-772b-4a55-9d06-ef133f839955,134435003,Routine antenatal care,72892002,Normal pregnancy +383860bc-ab61-413e-bd9e-f4d42510c21c,1996-04-18,,869ef909-0b27-4e86-960f-6bbe2919dada,d7f0fd08-bda7-4823-96e7-8cf8a2c1ee7e,699728000,Asthma self management,233678006,Childhood asthma +27e502b4-418b-4262-94e5-a3a2d20303ed,1998-07-22,1999-08-10,869ef909-0b27-4e86-960f-6bbe2919dada,39087f89-19fc-4a02-9bbe-745ece04ca0d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +56c93b0b-9de0-4c9f-8194-149e8be0e4c4,2002-09-24,2002-11-05,869ef909-0b27-4e86-960f-6bbe2919dada,61f29025-a341-462b-80b6-3bcf71b893a4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +691f41b7-d9f9-45ba-ad3c-c578d89bef93,2009-12-29,2010-01-05,869ef909-0b27-4e86-960f-6bbe2919dada,afeba4df-6184-411f-a41c-dc6f06d15e86,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bdf132a0-7b7f-43c9-8881-e1e385564569,2018-02-23,,869ef909-0b27-4e86-960f-6bbe2919dada,58323f8f-1a5d-437d-9d16-ce7cfe1f50ab,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +a07d85c0-db69-42fc-878c-3414a2d320a9,2008-10-24,2008-11-23,fa2cba32-bb59-4d68-96f4-8b55a19925ff,88236615-b09c-443c-95e5-a67d21000e48,385691007,Fracture care,65966004,Fracture of forearm +e1b84830-8a6f-45b9-a153-a1bc7fe738cf,2014-01-26,2014-02-16,fa2cba32-bb59-4d68-96f4-8b55a19925ff,48697fb5-1be6-4152-a113-7c2647650573,225358003,Wound care,284551006,Laceration of foot +aba9ad31-03f6-470d-9cfa-8fe665c95a59,1992-04-01,,976d8f68-069a-4574-a9b5-67e1fa696702,c928d2d6-9f58-47f7-862e-84109ea21483,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +f522de65-4cac-48d1-ae66-6de4c569c7c4,2007-07-05,2008-06-11,976d8f68-069a-4574-a9b5-67e1fa696702,9febc408-1c1f-4e5a-bea3-989b9493694d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0db59e56-5f40-4d08-acbf-5ed876222ab3,2009-09-16,2009-11-15,976d8f68-069a-4574-a9b5-67e1fa696702,a353b496-67fa-4147-9e00-0aa16b4c3bb6,385691007,Fracture care,263102004,Fracture subluxation of wrist +e96d465c-dfef-42fd-a7cb-f3ed05325f30,2014-11-09,2014-11-16,976d8f68-069a-4574-a9b5-67e1fa696702,8ccb4c64-fa84-4e31-a2af-d3a8c2b3f3ef,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +aaf56bdd-5e31-4cb3-a385-966879bad3af,2015-05-18,2015-06-17,976d8f68-069a-4574-a9b5-67e1fa696702,d10a1b69-6beb-43bf-8575-d781b68fa327,385691007,Fracture care,263102004,Fracture subluxation of wrist +4f3470bb-7795-4fb0-99e9-5a568c6dac3f,2017-11-02,,976d8f68-069a-4574-a9b5-67e1fa696702,696c224d-9409-4a25-bdce-e303bcd4bbfc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4a53da80-89d1-4091-8f8d-dec34ce5b3ed,2009-05-20,2009-12-23,044fbd27-433d-418b-a243-8788f6598103,f73386f2-101f-42dc-b476-1840208a97eb,134435003,Routine antenatal care,72892002,Normal pregnancy +c97c20d5-4a7f-4d40-b772-495a1d5107cf,2010-11-03,2011-06-08,044fbd27-433d-418b-a243-8788f6598103,5a643d31-87d4-469f-91d3-b2c11fc26afc,134435003,Routine antenatal care,72892002,Normal pregnancy +6a3f412f-4d02-4697-9731-d2bfdd51a7f7,2015-10-04,2016-03-16,044fbd27-433d-418b-a243-8788f6598103,e026c8e6-0745-4ad3-9821-4b61455de132,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b933e902-862b-442a-8eb9-bfb97b27ba76,1996-05-22,,d48138da-21dd-471d-96fb-0215311e179a,69a95cc6-f768-4aa7-9538-5861461e26ee,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +9beb357f-4598-4945-acd8-ba9fe8a70694,2015-08-16,2015-09-12,d48138da-21dd-471d-96fb-0215311e179a,221dbc15-056b-40ff-b9f5-016897af0987,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +80cb8766-a5af-4eed-8604-f6b108c5e7a2,2016-10-23,2016-10-30,0e3daf4d-e2f2-46ab-b17e-4e29875cf4b3,5922d629-a000-4478-8b6c-e5aeea1106c7,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e96cb6a2-0c13-4667-9447-d745603d1ade,2017-04-01,2017-05-01,9656e27c-2914-4765-b8ec-d50cbaef308c,da4701a7-48c6-44ab-a063-beb8320b8aaa,385691007,Fracture care,33737001,Fracture of rib +86252ff9-98fa-41af-a9e9-2e084a6de819,1951-03-29,,dfcc8ad4-7ec3-48bc-be4e-d6fb1fd31e36,b12a75e3-2a6c-4e4a-a75a-3b987fd1ab8b,326051000000105,Self care,, +a5fa23ea-a3e9-41d5-befc-4b76ae3a4bd0,2010-12-25,2011-01-15,dfcc8ad4-7ec3-48bc-be4e-d6fb1fd31e36,1ff19ca4-6aa3-4353-a8cd-685762f63102,225358003,Wound care,283371005,Laceration of forearm +436bb5c7-5e1e-4a98-8470-f99a3bd31aa8,2012-04-11,,dfcc8ad4-7ec3-48bc-be4e-d6fb1fd31e36,fb359fdc-c8fe-4d96-94fc-032417e3b7d8,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +0e051507-b452-472b-88bd-5e06915df235,2016-03-14,2017-03-29,dfcc8ad4-7ec3-48bc-be4e-d6fb1fd31e36,5dbb9377-85fc-4315-8730-da74ce212ab6,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +a6f839d0-a28d-402d-9a7b-42448971f124,2009-06-18,2009-07-09,47010f4b-b394-4def-8fee-46d03435319e,836acfa1-accd-4aef-aeff-3891bcaa3d27,91251008,Physical therapy procedure,44465007,Sprain of ankle +02cef6fe-c49d-4c54-9d4c-7408324280c2,2015-05-09,2015-05-23,47010f4b-b394-4def-8fee-46d03435319e,575f8ba1-83a7-4e6b-b398-42cb51b98cd8,225358003,Wound care,283371005,Laceration of forearm +5e871387-d5d8-4807-94ac-7f1fae5b139d,2018-07-20,,47010f4b-b394-4def-8fee-46d03435319e,b120ed7c-caed-41c3-bd4f-0aad8e920bcf,698360004,Diabetes self management plan,15777000,Prediabetes +67ffa98f-df48-41b3-bd3e-2a23d44b2b9f,2009-03-17,2009-10-20,be33f6bc-ab58-4df0-84c7-a3d7978f1e65,fcf31cf5-ee1c-4fcd-8ee0-9be72c581e5b,134435003,Routine antenatal care,72892002,Normal pregnancy +79877fa0-e3d9-46cb-b7c4-1bb95514aa17,2010-09-14,2011-05-03,be33f6bc-ab58-4df0-84c7-a3d7978f1e65,7785e5c9-4c51-4d5a-9ff8-43b4568b27f2,134435003,Routine antenatal care,72892002,Normal pregnancy +b374b2a7-eb18-4e33-8f4c-42c4d7ca8667,2012-10-02,2013-04-30,be33f6bc-ab58-4df0-84c7-a3d7978f1e65,ab6e82d4-38c0-43fc-b761-771b92c84100,134435003,Routine antenatal care,72892002,Normal pregnancy +27e62950-016e-4b9e-a8ec-12c4bf2f22bd,2014-09-16,2015-04-14,be33f6bc-ab58-4df0-84c7-a3d7978f1e65,7cce0f73-3647-4ff2-91c8-ef7b7d1d72b5,134435003,Routine antenatal care,72892002,Normal pregnancy +bf628945-57fd-4ec0-a550-bc6d6ae98bbe,2015-06-08,2015-06-22,be33f6bc-ab58-4df0-84c7-a3d7978f1e65,97c05401-0e55-47a2-8ffc-95b99e731556,787301000000101,Surgery care management,, +91b52c93-7733-44fe-ac53-4e0e59810e27,2009-10-21,,0dc41d1e-ad7a-42b0-9822-b787551e83e8,9be90b85-1677-4056-ae40-09f10ce2f276,698360004,Diabetes self management plan,15777000,Prediabetes +a7db802e-9522-4572-8abe-989d92ee9a73,2013-02-09,2013-02-16,0dc41d1e-ad7a-42b0-9822-b787551e83e8,5b818657-364e-4b69-9b53-59942e7efdaf,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6f0b5060-d582-45f9-a0a8-927e5d563ac8,2000-05-29,,686bef47-761a-4b56-a998-2c6e18a9dfd7,ccd16a1c-88b9-4240-a601-997273587a7a,698360004,Diabetes self management plan,44054006,Diabetes +81aef982-4dcf-4c9f-b80c-79e3e44df3b8,2015-02-09,,686bef47-761a-4b56-a998-2c6e18a9dfd7,fbf1938c-e2f1-4a20-b33b-b7a649763ccd,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +1b989e49-0f60-4d0a-9229-ba12673ffb2e,1965-08-31,,0af043d4-8e12-4cc3-94d0-532a2c40ce55,3744dacf-356a-4014-a9e2-c2ebbe40096f,699728000,Asthma self management,233678006,Childhood asthma +8b1ce62d-6e7b-4650-957d-66d4504f3829,1996-11-15,,0af043d4-8e12-4cc3-94d0-532a2c40ce55,38c20727-90c2-40fc-9566-403f78123fc4,698360004,Diabetes self management plan,15777000,Prediabetes +98f90200-c4b2-4f85-8784-e3fe59de2908,2010-03-09,2010-04-06,0af043d4-8e12-4cc3-94d0-532a2c40ce55,d0e70afb-05dc-415c-b355-479edecf76b3,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +99a02aee-a3eb-4c7d-b71d-e1cfce0ebcf3,2014-01-22,2014-01-29,3dd58746-8f70-45ef-9f5e-c459d640b432,0893d3a7-c1a9-4a1b-aabf-d470e2633c17,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c9c4aecd-b65c-4ae0-837f-a5ebd6f23e2e,2016-02-09,,3dd58746-8f70-45ef-9f5e-c459d640b432,6408d57a-63db-4b4b-82a6-39de291fedc1,698360004,Diabetes self management plan,15777000,Prediabetes +57ef7497-0d5a-45c7-8805-8a610162b7ba,1991-02-11,,a3ce07de-85b9-48db-81fc-2207dfa2479b,de8217bf-62d9-40f9-b84e-61f1a6bbc051,326051000000105,Self care,, +f6163a3d-1301-403c-b022-4a73c876233d,2010-09-11,2010-09-25,2a59a1ae-0f1f-4a01-b17a-8f08dfcc2f27,a6988408-c9d7-4ef7-ab64-de6ae64ea76c,225358003,Wound care,283371005,Laceration of forearm +a92f2801-ed2e-4e73-8586-6519b89f2bed,2014-06-15,,2a59a1ae-0f1f-4a01-b17a-8f08dfcc2f27,208fb143-0103-4d5e-98b2-e2fab0e49a57,698360004,Diabetes self management plan,15777000,Prediabetes +36dc1b0c-ea6f-4cf3-bec1-c3247fc5d2c3,2010-06-05,2010-06-19,106dec0f-107d-4533-99fa-5bdcad26c218,4317f346-c154-414d-9d63-f8a86e80de31,91251008,Physical therapy procedure,44465007,Sprain of ankle +32d364b7-6cd7-40a6-a9c0-fa025d0cc1e8,2012-06-04,2013-11-07,106dec0f-107d-4533-99fa-5bdcad26c218,98267779-9197-4f72-b029-be0975bc48bb,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ba6df4d4-25f0-4b16-9330-eda09131bddb,1991-12-04,,9f6c944a-5af9-4a68-928b-74fa647207af,bb00cd07-1e49-4ca3-8033-0264fd8c10e4,326051000000105,Self care,, +1d1b4768-a73e-4689-a2d9-4abb1d296d88,2009-02-08,2010-02-20,9f6c944a-5af9-4a68-928b-74fa647207af,e3dcbe80-7d36-43e9-b1ba-67387ed03f16,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f9a98040-b232-4451-9a62-32c04d6754bf,2009-09-06,2009-12-05,9f6c944a-5af9-4a68-928b-74fa647207af,35150f16-08a6-4c66-87b2-3183f3db305b,385691007,Fracture care,58150001,Fracture of clavicle +9424761a-9661-4d70-b7b0-a430bda9c346,2009-07-12,2010-10-31,f4fa9684-acd2-4920-bf73-d177e3b75bde,a5d2255a-9695-47b5-aa8f-222aa4c80e1a,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +b7fdaafc-628a-4772-987e-a631adcb6135,2012-08-08,2012-10-07,f4fa9684-acd2-4920-bf73-d177e3b75bde,15a5c118-6e5e-45b2-bc64-ce1576f5800a,385691007,Fracture care,65966004,Fracture of forearm +a3050654-0208-4b2b-ad45-7d2d0ffc5e37,2013-11-01,2013-11-29,f4fa9684-acd2-4920-bf73-d177e3b75bde,96537d17-a03b-487d-9a3d-c27806768f78,91251008,Physical therapy procedure,44465007,Sprain of ankle +ebf646f5-1668-4aa9-8197-f88b2146b6b2,2014-07-31,2014-08-07,9f6c944a-5af9-4a68-928b-74fa647207af,536e342c-c8f8-440a-a4b6-c7868544ed38,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5cf35433-3da0-46c1-8706-eb88700e1d83,2014-10-10,2014-11-14,9f6c944a-5af9-4a68-928b-74fa647207af,d6f64dad-afef-48f5-a30c-8ba26e5b9097,133901003,Burn care,403190006,First degree burn +b396d02a-b8e7-4ad8-91fb-23c9b28e1096,2017-10-09,2017-10-23,f4fa9684-acd2-4920-bf73-d177e3b75bde,2370446b-8359-4a8d-9592-1a6bac83e456,91251008,Physical therapy procedure,70704007,Sprain of wrist +6722a622-023d-485f-b3c6-61868e9470a1,2016-08-05,2016-08-19,9f6c944a-5af9-4a68-928b-74fa647207af,f2877c8a-26da-4f46-9894-fdece931c675,225358003,Wound care,284549007,Laceration of hand +26c386dc-4e29-4af8-a87b-8e46ad298342,1991-01-23,,8fbdc442-6e1d-4faa-80c9-c003ed3bf807,e8a0b5df-64ec-4a99-a5c9-e04782e10853,326051000000105,Self care,, +3743ea3e-27b9-4e86-b5cd-1e0c0f2dfed8,2015-05-19,2015-05-26,8fbdc442-6e1d-4faa-80c9-c003ed3bf807,b69c010a-e845-4763-9c93-e7c671e2b3dc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6448eb1e-cf50-4c6f-bc9c-16330aee04bb,2018-05-29,,8fbdc442-6e1d-4faa-80c9-c003ed3bf807,62192e63-dd7d-40f2-affd-fcc682149ac9,698360004,Diabetes self management plan,15777000,Prediabetes +d995e9a0-b97f-4e5d-aaa5-1e4c160e750a,2018-04-04,2018-04-18,1bfebaa6-a906-4682-9f6a-aaec70b25239,b85322b1-5ea6-4c8b-a8cc-f2ed37005f1e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0c52ae17-30e8-4d22-8f84-1f30e5034a4d,1992-07-14,,d37c9080-e586-4b05-bc7d-2e7a0debf977,b551bb92-3d68-4667-b783-21d91200f334,326051000000105,Self care,, +739efda2-e599-41ce-b721-e2b34d72738e,2003-06-18,,d37c9080-e586-4b05-bc7d-2e7a0debf977,10b1efcb-b63b-44c5-b55a-bae2bb76ef12,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +b340219e-520a-4448-b184-dd142dec5c2b,2010-03-03,2011-05-26,d37c9080-e586-4b05-bc7d-2e7a0debf977,dd2a0fd3-fd3b-44d3-acf5-417b8c188163,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +eb8603ff-4248-4e8d-a329-df22908e1832,2011-07-17,2011-07-24,d37c9080-e586-4b05-bc7d-2e7a0debf977,6ce64805-7e83-4fd7-af95-3869663b5169,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +7deb235d-da8b-4809-b132-12234a6189f6,2015-08-16,2015-08-23,d37c9080-e586-4b05-bc7d-2e7a0debf977,4e6cd477-9127-4ecb-bef6-fc7253fd6caf,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +08e6db77-e2af-4da3-9871-799e33eac6f9,2015-10-24,2015-10-31,d37c9080-e586-4b05-bc7d-2e7a0debf977,ee1caa03-1bee-4321-a6f6-be61d72826a3,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +f0c1ff1a-0a1c-4f96-b30f-1c0835acdc79,2016-07-21,,d37c9080-e586-4b05-bc7d-2e7a0debf977,6bfaa362-2e8a-40d4-a59a-58c64d319bfc,698360004,Diabetes self management plan,15777000,Prediabetes +dbd155ca-52aa-4da1-b158-93a5bf7eaccb,2017-12-21,2018-08-02,d37c9080-e586-4b05-bc7d-2e7a0debf977,6b85441b-b86f-49f8-a9d6-834a8ce4838a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3b2c818c-2a2b-4d85-a926-cc41f651b0c9,1954-10-08,,578a5c1e-572d-48a2-98c1-96a789d47eb4,442ef1fc-4770-473c-8622-ed52e16da748,699728000,Asthma self management,233678006,Childhood asthma +0ff87f60-9c88-4c4b-ba5b-e47657422b17,2010-06-11,2010-07-09,578a5c1e-572d-48a2-98c1-96a789d47eb4,93eb5dce-3ccd-4a85-9f2d-ce23a89da786,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +0a0d765f-1d59-48b8-b147-dd86961c3329,2017-11-29,2018-02-27,578a5c1e-572d-48a2-98c1-96a789d47eb4,1c735254-d5eb-46d3-ac22-d04d96516c29,225358003,Wound care,262574004,Bullet wound +9a66a340-c4a4-42ed-ad26-87dbc0ad5aac,2012-12-05,2014-04-23,7779a136-2666-4c61-8cef-61cb5f891acb,ae5f997e-7681-47c6-993a-942d223d5b7d,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +81d269f1-87e9-41b6-a76d-b4d6e7fc34d9,2009-05-17,2009-12-20,b7729d36-43a9-4e06-b1cd-48c05271cedc,58c3ab83-bc3c-4e50-9d61-73e0a386ce01,134435003,Routine antenatal care,72892002,Normal pregnancy +8f7fc920-6462-457f-920a-2d51be1efd3f,2012-11-09,2012-11-16,b7729d36-43a9-4e06-b1cd-48c05271cedc,eca9ada2-49f8-4388-8399-e14d49b001c6,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4c090a4c-bc6f-48a1-a378-5c90b4ba5fe4,2014-11-08,2014-11-15,b7729d36-43a9-4e06-b1cd-48c05271cedc,d8f9bf24-3b44-410d-841c-66de77d298cb,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2ef4ba78-7d4e-4ed5-965c-5de40a850440,2015-02-28,,8790548f-4350-4cd8-a23a-d9374573b24c,e0c107b8-1e0d-45c8-b7de-a578442b0816,326051000000105,Self care,, +0b117f8d-5682-4370-91bc-4af9eb4aa673,2016-02-27,,8790548f-4350-4cd8-a23a-d9374573b24c,b014e716-b0ff-4cfc-ba1e-2b012cd4b5da,711282006,Skin condition care,24079001,Atopic dermatitis +547fe178-7c79-4bf2-b269-b141b4f05e4f,2017-06-06,,8790548f-4350-4cd8-a23a-d9374573b24c,13dddf1d-0e82-4dc0-9117-17212f8322ac,699728000,Asthma self management,233678006,Childhood asthma +94870b71-b7dd-45a1-96d6-33046261ef68,2018-04-10,2018-04-24,8790548f-4350-4cd8-a23a-d9374573b24c,9b8e17e4-461e-456b-b1ac-0e0fa88dbe41,91251008,Physical therapy procedure,44465007,Sprain of ankle +86b58b71-7468-4f11-9818-6f2cb76e6d4e,2002-03-15,,bd8fb4af-150e-46bb-b8c7-53a086153428,33545119-1f7d-49d2-9695-17755c1419c2,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +ad6ce1d5-2eab-4095-a4f8-36dae42c89be,2009-08-08,2010-03-20,fefe92dd-94b6-42aa-8f74-970d8df9d32b,eac2714b-0cd5-4041-bb15-5a2f5191dc55,134435003,Routine antenatal care,72892002,Normal pregnancy +1317e2ec-8a62-4e9e-bdf1-6a1a16b8e9a3,2011-03-12,2011-04-09,fefe92dd-94b6-42aa-8f74-970d8df9d32b,e276026f-9277-493c-83e4-4360b31c4b11,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +e0ddfeac-5a86-4968-8afc-d018d0e91e54,2012-10-19,,fefe92dd-94b6-42aa-8f74-970d8df9d32b,d87f9b53-9a5b-4e3f-8894-f6024e7b96e0,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +6fc9daef-2507-460e-89ad-598d1fc0f4c8,2014-04-24,2014-05-08,fefe92dd-94b6-42aa-8f74-970d8df9d32b,26ab4bfc-c2bf-42e6-84e8-ce43b6f4adc9,787301000000101,Surgery care management,, +8220d3e8-ac75-48fe-9ece-874007cc3aa1,2018-02-02,,fefe92dd-94b6-42aa-8f74-970d8df9d32b,be8a344b-1f72-4a0b-a2cd-dcda1d592f34,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +49417a80-4a3a-467f-9c44-a1683b7b5c85,1981-06-26,,128ac07b-9931-4d0d-9182-5d66dfdcd261,e25b7ffc-3a51-4f0b-958c-afac00683638,326051000000105,Self care,, +3e42c6ca-4309-45f9-9429-ec2e79c52b96,2010-05-05,2010-12-15,128ac07b-9931-4d0d-9182-5d66dfdcd261,d4f924cf-e70f-4601-913a-1685da128f0d,134435003,Routine antenatal care,72892002,Normal pregnancy +e6f8c9b8-7ce0-47fc-8b51-ab0ed002cb27,2018-03-21,2018-06-19,bd8fb4af-150e-46bb-b8c7-53a086153428,a57c85e4-cbd2-44e2-a61d-d97e2dd0f970,385691007,Fracture care,263102004,Fracture subluxation of wrist +5400b218-a839-4895-a934-5e5914a9383a,2011-06-01,2011-12-28,128ac07b-9931-4d0d-9182-5d66dfdcd261,2ac3b5c4-e430-4f25-8770-fd28fd76bb86,134435003,Routine antenatal care,72892002,Normal pregnancy +c7fbbe0b-3c7a-460a-a026-f0f8214f44a2,2013-09-04,2014-04-09,128ac07b-9931-4d0d-9182-5d66dfdcd261,2758f655-0599-4daa-b381-4da5cfa84b0f,134435003,Routine antenatal care,72892002,Normal pregnancy +04f2404f-3449-41f5-a105-b6355940600f,2016-08-02,2016-10-31,99759268-d6bc-42f1-b70a-68d093dfc46e,5a46d0d3-1e2e-487a-8397-ded467ef925f,385691007,Fracture care,33737001,Fracture of rib +a0e2f8a4-929f-4939-8b54-252e8555ade3,2013-05-09,2013-08-07,bd15466c-e655-4aeb-86b1-d3980f94487b,ebd133b3-26a9-4229-af7c-1af7e86a2232,385691007,Fracture care,65966004,Fracture of forearm +b08b191f-b0aa-419b-9ee1-d97e250f9a6d,2015-12-20,2017-01-03,bd15466c-e655-4aeb-86b1-d3980f94487b,a3444701-b3c6-414c-a7a0-2b6fac031ced,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4eb0df65-6965-4672-9e94-e6bd9bc94b93,2005-03-04,,1c4801f6-0526-4a63-a155-3801e94293bd,bc2f8a54-092f-4224-ab0d-02669e42ba6e,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +853601bc-ad41-4390-bc65-af063274c58c,2006-09-28,,39c38fac-b78c-4349-ab1a-fea7fb43dd32,2dfffea5-cdf2-4fa2-9a83-4b83e70699a1,734163000,Care plan (record artifact),55680006,Drug overdose +db741ee9-7546-4a14-9b95-dcee31945b0e,2009-01-15,2009-08-27,39c38fac-b78c-4349-ab1a-fea7fb43dd32,832e7cdc-283e-4348-84c1-f49fdc74a5eb,134435003,Routine antenatal care,72892002,Normal pregnancy +80425489-037a-4864-a2cb-7dfb1f039353,1970-11-07,,0739d054-ce13-4a63-92ac-4eadb97b4e44,80e8e33b-213a-4b92-aff2-f922469ebd2f,326051000000105,Self care,, +cec9c639-a220-434d-a3ec-0599774f9d36,1971-03-07,1971-03-28,0739d054-ce13-4a63-92ac-4eadb97b4e44,3b0e3659-464f-4cbc-ad5b-8c1880a27119,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +5837f838-4122-4026-8685-af4fb4f826ae,1998-12-01,,0739d054-ce13-4a63-92ac-4eadb97b4e44,59f5c386-0769-4c5c-b956-a328a93a2d29,698360004,Diabetes self management plan,15777000,Prediabetes +922678eb-d59a-4fc7-9ca4-b4a8a07b2495,2007-02-01,,0739d054-ce13-4a63-92ac-4eadb97b4e44,7b0accc8-eb57-4c5c-92e0-1034ed965e41,872781000000100,Musculoskeletal care,95417003,Primary fibromyalgia syndrome +c42a4b71-5552-4307-a4af-b34dcbf9155a,2011-12-30,2012-01-13,39c38fac-b78c-4349-ab1a-fea7fb43dd32,4e81338c-99da-4efd-9695-01b114f6c791,225358003,Wound care,284549007,Laceration of hand +bafd0185-f6b4-45e7-b149-ffbb825fef5e,2017-08-23,2017-09-06,39c38fac-b78c-4349-ab1a-fea7fb43dd32,bd3fdb84-2513-4c2a-884b-4c2454617cfe,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +01641804-a014-49ec-8130-47c3f3d44f87,1950-08-15,,a86f68ff-636a-402a-9bbb-d9976e0c75f4,432140e2-2dc8-48b3-9e4b-4151d0c07232,326051000000105,Self care,, +805d896d-0b14-4a31-af15-dd3c916708d3,1980-11-01,,a86f68ff-636a-402a-9bbb-d9976e0c75f4,ab648b5e-d9dc-4e41-bc3b-405c1e798e26,698360004,Diabetes self management plan,15777000,Prediabetes +3be06115-55ca-44e3-a8f0-9fca89dd9031,1991-09-21,,a86f68ff-636a-402a-9bbb-d9976e0c75f4,a281a9d3-b751-4627-b2cd-8dfc71f72e70,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +cf53ff03-970c-4aef-9c53-c0ddb909c021,2013-03-30,2013-05-29,1c4801f6-0526-4a63-a155-3801e94293bd,609e7dd7-86e9-4910-b12d-85dd39d59df6,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +1544edb4-7ef9-464b-8386-e56c784090d6,2011-09-11,2011-10-16,a86f68ff-636a-402a-9bbb-d9976e0c75f4,2deeabdb-5ee0-4fe1-8e81-f389caa1b703,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +ba63483b-1432-4689-a286-a7b2e46fb322,2012-10-10,2012-10-31,a86f68ff-636a-402a-9bbb-d9976e0c75f4,72dcf9ca-7523-48dc-bd1e-241b3f4e0d7a,225358003,Wound care,283371005,Laceration of forearm +df3e8f27-44bf-4322-872a-a4b83014d81e,2015-08-26,2015-11-21,a86f68ff-636a-402a-9bbb-d9976e0c75f4,29ee3029-580a-4eaa-8d80-7a3719920f1f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +23a0c6fb-351f-4b32-a475-57a33d266472,2018-08-09,2018-08-16,a86f68ff-636a-402a-9bbb-d9976e0c75f4,d003c5eb-d8f6-4ffb-97ce-2c3823866232,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ea322dc2-0a4b-495c-ad3a-9f8766e43b9f,2005-01-19,,07caa088-c066-4c8a-92a0-baff35b06bcf,2b4da459-ef80-4ee4-b6b5-68808a6ddeb6,698360004,Diabetes self management plan,15777000,Prediabetes +1f37a3ee-66b7-4dd0-8263-367dab3f2a2b,2012-02-15,2012-09-19,07caa088-c066-4c8a-92a0-baff35b06bcf,df0c9834-9055-446a-ae72-2a65cf1cb078,134435003,Routine antenatal care,72892002,Normal pregnancy +8ee6205c-ede9-46e8-a72d-9b04badf1565,2013-03-27,2013-10-30,07caa088-c066-4c8a-92a0-baff35b06bcf,0c87a552-c7be-4c99-a470-32c333c9c077,134435003,Routine antenatal care,72892002,Normal pregnancy +c4b180c7-2044-445f-8c57-e907c7db4248,2008-06-18,2013-03-13,6df4c3a1-adf8-4d50-ae51-bd575f44f6da,98a76068-0f0e-401f-ab74-79e6513f8bf2,134435003,Routine antenatal care,72892002,Normal pregnancy +7cd9ca77-a9ad-4e91-9249-31c0ef118949,2010-03-23,2010-04-13,6df4c3a1-adf8-4d50-ae51-bd575f44f6da,b2839888-a209-44e7-b751-2da2f3f70be6,91251008,Physical therapy procedure,44465007,Sprain of ankle +d9ec848f-cc8f-46cb-8671-7dabfb4f7555,2012-03-03,2012-04-02,6df4c3a1-adf8-4d50-ae51-bd575f44f6da,31f495ff-fddb-447e-8371-6d06b6153bde,385691007,Fracture care,58150001,Fracture of clavicle +1de355de-27b7-489f-a917-0b03aa2ffbfc,2014-08-06,2015-03-11,6df4c3a1-adf8-4d50-ae51-bd575f44f6da,de944453-0764-4145-9fbf-6df05aafdfde,134435003,Routine antenatal care,72892002,Normal pregnancy +20cb1b7b-9c89-4941-a0d9-f81172718a07,2018-03-28,,6df4c3a1-adf8-4d50-ae51-bd575f44f6da,257760ec-cde9-4cb3-a2e3-21fbe5c98834,698360004,Diabetes self management plan,15777000,Prediabetes +0b6579be-114e-4b09-a593-a389a5c42b5e,1968-12-06,,8f863347-9f05-41aa-bda4-c4344173155c,8a994b44-8236-4648-befc-72873d982a1c,735984001,Heart failure self management plan,88805009,Chronic congestive heart failure (disorder) +66cccec3-0b11-44d2-9594-d12609f31b3a,1980-01-15,1980-07-28,8f863347-9f05-41aa-bda4-c4344173155c,568afbaa-ea8f-4b2d-94df-41a26773d5ef,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4796a094-832e-4f0e-9433-d2b563431eff,1980-11-04,1980-12-11,8f863347-9f05-41aa-bda4-c4344173155c,7bf63d16-e17b-45f3-bccc-7b4ae24f657d,91251008,Physical therapy procedure,444448004,Injury of medial collateral ligament of knee +922dd8c8-82c2-47fb-85fe-c1b10b6cb9c0,1982-08-09,,8f863347-9f05-41aa-bda4-c4344173155c,8774b178-7752-40b4-a3dd-2773b6097a26,386257007,Demential management,26929004,Alzheimer's disease (disorder) +270c05bd-3801-43b7-aa86-836f2dabfb31,1984-09-10,,8f863347-9f05-41aa-bda4-c4344173155c,3236320a-68e4-4788-921a-07978f252d5b,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +2f08de84-e348-415d-82ee-4c3e5fa1660c,1990-02-25,,fe9738e1-1025-4e41-ae20-bc96879f75d0,79c76676-ceda-4adc-a2a5-f43366fcbfc2,718347000,Mental health care plan,36923009,Major depression single episode +1c208e62-3770-462f-9656-533302854007,2011-08-18,2011-09-01,fe9738e1-1025-4e41-ae20-bc96879f75d0,d7e3f3d3-cd24-44d0-aafc-fe76f80d0333,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c7b9db7b-57e3-4262-a007-542dcb36772b,2014-10-17,2014-10-24,fe9738e1-1025-4e41-ae20-bc96879f75d0,9d66726a-be0a-4281-8fa7-1415a6f44d7e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +9e85a88f-71ea-48dd-a80b-0f3001869626,2016-12-25,,fe9738e1-1025-4e41-ae20-bc96879f75d0,04448707-c0e4-46e9-afd6-a1ad7b20a27d,698360004,Diabetes self management plan,15777000,Prediabetes +2a8c64b3-b8e3-40a2-b6e9-16ca0a155f3c,2010-05-06,2010-12-02,ed417a8c-330c-4294-89f0-305936fd1c3b,a26c0035-1e08-4d4f-b755-ee0f8e8b9f90,134435003,Routine antenatal care,72892002,Normal pregnancy +29263fb2-29a3-4221-b74b-884b4a7e9059,2014-05-21,2016-04-28,ed417a8c-330c-4294-89f0-305936fd1c3b,93c8804d-6322-4874-97ec-c04668b1dd8c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +16ed2fd0-5898-4680-af9c-5802fdb719ef,2016-10-26,2016-11-09,ed417a8c-330c-4294-89f0-305936fd1c3b,d2b5938b-f3f9-4db2-958b-190af7d72a5e,225358003,Wound care,284549007,Laceration of hand +be8bb675-4c04-44f7-8446-3f2f82e05dea,2016-02-16,2016-03-17,6c9adfb9-d9db-44ab-b668-7fc38e187a64,c2c05a28-6f28-4c51-bdfe-95077881acff,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +3d94be5e-f1ef-47ee-a180-a4a0f21cfd8c,2001-12-24,,f790e12b-c2a3-4e1e-906a-5942591692f6,caba64fa-74eb-4aa0-af97-285126520daf,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +f1b7a887-92e1-4b31-9a89-e9186e631147,2018-10-10,,f790e12b-c2a3-4e1e-906a-5942591692f6,8ae29fcf-6fb9-4a02-962c-81d72ba77aed,386257007,Demential management,26929004,Alzheimer's disease (disorder) +467c9147-fe4b-4e82-8041-f77d758a3a86,2011-07-19,2011-09-17,a2b8ba68-1f80-4e29-9a94-604955198de8,86125b10-d5c8-413b-bc12-67eb8be6fe4f,385691007,Fracture care,263102004,Fracture subluxation of wrist +aae20e82-21cd-4afc-957a-23683bcafdf4,2011-12-29,2012-05-05,a2b8ba68-1f80-4e29-9a94-604955198de8,88dbd800-af7c-4719-8c8f-a21db9d4052b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7aa151c4-1065-4f8d-bee1-57c20f956c3a,1995-04-25,,6ba9fd75-fb12-4199-a2a4-0ec63667d5ce,98296e4c-0a0e-4115-b6fb-a6b04fb327e9,326051000000105,Self care,, +6a628155-7027-4dd9-b8e6-239487a571a8,2007-03-06,2010-09-07,6ba9fd75-fb12-4199-a2a4-0ec63667d5ce,dbd4c5cf-cc92-49ee-b72c-58ef9433c8e1,170836005,Allergic disorder monitoring,, +51832b1f-c52c-48d8-9c35-8dd5595bdbdf,2009-09-08,2009-10-06,6ba9fd75-fb12-4199-a2a4-0ec63667d5ce,83a01af4-8238-4393-80e4-a83f5e658161,91251008,Physical therapy procedure,44465007,Sprain of ankle +4599eeed-5d72-455c-89df-4ce449cf6c65,2009-11-02,2009-12-22,6ba9fd75-fb12-4199-a2a4-0ec63667d5ce,57057ae3-7da5-4309-86b6-73e988059f37,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c7def8b2-0c6f-4c23-837a-7b73e7f3ee3f,2009-07-01,2009-07-15,b8d04fa7-345b-4b7d-8f6a-cda44254774f,e291845e-d559-4f49-b646-5baaa6c122b1,225358003,Wound care,283371005,Laceration of forearm +07c71f05-77cc-4185-974e-39a7eb7b1f02,2013-04-27,2013-05-04,b8d04fa7-345b-4b7d-8f6a-cda44254774f,3c33423a-75ad-42bd-b786-de495c5a46cb,869761000000107,Urinary tract infection care,38822007,Cystitis +2191c784-62b7-40d5-8328-e350ad92091d,1994-04-03,,629cf8f3-046a-4f2f-baa2-57bddc84c44f,c96ca060-681f-47ea-8fa7-296ca8aaf87f,326051000000105,Self care,, +3c690358-de39-4575-a681-9ef4cd6d91b6,1997-05-31,1997-06-07,629cf8f3-046a-4f2f-baa2-57bddc84c44f,8799a83b-24cc-4e1e-b49e-c2e40d1c13c0,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ef295b94-2c0e-4e26-bfe4-76f85c857a01,2018-05-20,,629cf8f3-046a-4f2f-baa2-57bddc84c44f,c9e492b0-b543-4502-876c-5d28f55b4f66,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e4911eab-3362-462a-a095-4c2b64967d5c,1982-10-31,,19bb6820-34b2-49d2-ad63-188f944949ce,edc070a5-c9fb-404b-a8e4-fa42d1d01b75,872781000000100,Musculoskeletal care,239872002,Osteoarthritis of hip +2b212542-e25e-45ff-8617-923b2d90260f,1995-05-07,,19bb6820-34b2-49d2-ad63-188f944949ce,e391d5d3-8d51-4aa0-9e33-bb888e63d194,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +28b1ae24-8c57-47c8-bf84-df80a2ac94a1,2011-01-03,2011-07-17,19bb6820-34b2-49d2-ad63-188f944949ce,38eefe5c-9d8d-4d5d-a552-57c6b1bafab9,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0aba6067-7ca8-49ba-ab13-9e87b95163be,2011-11-03,2011-12-01,19bb6820-34b2-49d2-ad63-188f944949ce,452a4772-9d89-468f-b1ac-33ac92e80c83,133901003,Burn care,403191005,Second degree burn +f2bcbc47-eb83-4b8d-8c92-cbce6a78a185,2016-07-21,2016-08-14,19bb6820-34b2-49d2-ad63-188f944949ce,ee93e122-4bec-4e08-be1e-09ed09dd0287,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e546c0ac-1eef-402d-b8ba-c23e85393c82,2016-12-04,2017-03-04,19bb6820-34b2-49d2-ad63-188f944949ce,c0e2cbbd-3d43-4825-89c7-15c77fd78d5b,385691007,Fracture care,58150001,Fracture of clavicle +73ed2cb6-c878-4bbd-85e3-83825a225032,1945-10-15,,b702c250-663c-4f32-a2fa-364748bda883,e9d96c90-bb1c-4e57-89b3-615082f81344,326051000000105,Self care,, +a985feb2-19ef-4999-9a8e-dde48f74555c,1967-02-22,,b702c250-663c-4f32-a2fa-364748bda883,b89e50ce-dcbf-4d71-befa-5672409506d6,698360004,Diabetes self management plan,44054006,Diabetes +1c28196c-ef8c-4a49-9037-821272a9756a,1975-09-13,,b702c250-663c-4f32-a2fa-364748bda883,c7b098b6-d7a8-4c79-962f-484acfde14fd,872781000000100,Musculoskeletal care,90560007,Gout +c405f063-eef6-4aad-ad78-d46273dbe8a4,1990-01-03,,b702c250-663c-4f32-a2fa-364748bda883,2c46c6d7-ee49-4fb3-961c-5adec3d55cfe,170836005,Allergic disorder monitoring,, +0f074bdc-304c-4949-b12d-4fbd65cd07ba,1991-10-14,1992-01-12,b702c250-663c-4f32-a2fa-364748bda883,1de1b57e-4a58-4294-99af-eead9f37e315,385691007,Fracture care,263102004,Fracture subluxation of wrist +520a431c-250e-4cdc-906a-623ce6243685,2016-08-19,,44790887-7251-4a52-a581-e50008254229,e6d0bbd6-0e70-4a6a-9531-6368ec8e2909,326051000000105,Self care,, +53f420f5-8358-42eb-9271-55ef9fc7e5d5,2017-04-18,2017-04-25,44790887-7251-4a52-a581-e50008254229,52802888-cc95-483d-9509-0721568c70d1,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3679b455-83f4-473f-bb4c-45f2a53fa40c,2017-06-15,2017-08-14,44790887-7251-4a52-a581-e50008254229,5cc71952-1239-4088-95c6-2e1138f52789,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +b671230a-1d06-4e14-b964-bb621a442c99,2018-06-02,,44790887-7251-4a52-a581-e50008254229,eddf8242-b329-4e1c-a36f-f72f8a01debc,699728000,Asthma self management,233678006,Childhood asthma +1718a3f6-f135-4cd8-80b1-98627893a518,2010-07-01,2011-01-27,49a52471-5a29-43c7-979e-f987662d570b,82450fe7-3fd1-4387-985b-9035f8d6648a,134435003,Routine antenatal care,72892002,Normal pregnancy +9fb8c237-5db0-4fe8-a472-213512e7927a,2001-01-17,,76aa58dc-1bb9-44d6-9927-1f89af66f2e0,c9a5ba51-7911-436e-9450-9a2517ea6677,326051000000105,Self care,, +884ac82b-065d-4889-8109-a6b69a0fec75,2002-06-28,,76aa58dc-1bb9-44d6-9927-1f89af66f2e0,8eef3c71-4381-4b3a-baac-f01763b583a6,699728000,Asthma self management,233678006,Childhood asthma +49f59598-b1f4-4ca6-addc-7859eb9fd1cc,2013-06-26,2016-12-28,76aa58dc-1bb9-44d6-9927-1f89af66f2e0,db78c91c-75aa-4897-9295-1acfa9348ea3,170836005,Allergic disorder monitoring,, +aa18ac91-4b41-40fb-ab91-354bea017edd,2016-03-29,2016-04-19,76aa58dc-1bb9-44d6-9927-1f89af66f2e0,3a8ef9ab-6393-410d-a13d-efa3d957077e,225358003,Wound care,370247008,Facial laceration +2d8c1b32-8562-4e62-bbfb-f65b4e433ce4,1936-05-18,,4c5c3067-72d7-4e4d-b8e9-25a6adb7ed32,0428de3e-bbba-4eea-aaff-78bb5022688d,698360004,Diabetes self management plan,15777000,Prediabetes +3fa97df9-8553-4124-9bb1-fcd412262fe2,1986-06-24,1986-07-29,4c5c3067-72d7-4e4d-b8e9-25a6adb7ed32,28259e3a-4e1c-42fd-aa1c-814aeeadf5bf,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +3b875c14-8c5b-4741-abd5-91166d109b75,1987-01-05,,4c5c3067-72d7-4e4d-b8e9-25a6adb7ed32,080710b2-b436-445b-85c5-2b7dc433cc76,872781000000100,Musculoskeletal care,95417003,Primary fibromyalgia syndrome +cb8a66fe-1be4-49ac-8df4-39875e6b6873,1989-04-14,1989-07-13,4c5c3067-72d7-4e4d-b8e9-25a6adb7ed32,9b5c8bef-3395-4218-83ec-7bc82284de3a,385691007,Fracture care,263102004,Fracture subluxation of wrist +447a21aa-de12-458c-a046-92cfddce3918,1968-06-12,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,aa0589d1-0931-44c6-bde5-07b494a4bba9,412776001,Chronic obstructive pulmonary disease clinical management plan,87433001,Pulmonary emphysema (disorder) +0905bce8-77ea-47f0-b5e2-b02077518cba,1975-05-14,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,c1b0236b-bbd8-49a9-ac90-13534d410106,698360004,Diabetes self management plan,44054006,Diabetes +28588a46-aa85-4f3e-a02b-4da8b9fd792d,1986-07-08,1986-07-22,cb500bf6-f261-40bf-9bd2-b9740ff1be15,bffe6cc8-6158-4d93-afc2-a224cf078a7b,225358003,Wound care,283385000,Laceration of thigh +4b74e79e-ec05-45b7-8336-5f1dd9f92175,1991-08-15,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,04045632-b9c7-442a-b82c-e9db60fd1bc4,736252007,Cancer care plan,126906006,Neoplasm of prostate +0feb0c7b-e794-4559-8c34-3cde14b721eb,1992-01-04,1992-07-15,cb500bf6-f261-40bf-9bd2-b9740ff1be15,e275999b-28b7-4cc7-a2f1-83d021f16ff8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +52243e92-8371-4aab-b53b-dba63f300f9f,1992-07-14,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,ff5e4665-ebdf-477b-a5f6-388e3e943ca5,182964004,Terminal care,424132000,Non-small cell carcinoma of lung TNM stage 1 (disorder) +22441fac-4f76-4037-bc29-7873d9ef5070,1992-08-05,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,acd2af16-972f-4f47-9170-5b97bba42d37,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +e2752143-9fed-4b4f-8912-c9a4a2b541d6,1994-03-09,,cb500bf6-f261-40bf-9bd2-b9740ff1be15,20cb7f0c-3c9f-4419-a96b-912114c3c56d,734163000,Care plan (record artifact),55680006,Drug overdose +0a59952f-7e6b-46f9-a166-135fa3d3f9c9,1995-08-01,1995-08-30,cb500bf6-f261-40bf-9bd2-b9740ff1be15,cd80159f-6504-43df-a1c5-32333a25fb67,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c60d2355-a772-45b9-9a22-91004d7251d2,2009-02-18,2010-03-04,b19a1396-d41e-4cd6-9548-b19eb28a102a,d411d2ac-7d24-498b-81dc-0acefff1bdb7,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ec4c36ed-eac1-472b-ab09-ede1b272fbe0,2010-11-30,2011-12-15,b19a1396-d41e-4cd6-9548-b19eb28a102a,14e34e55-9158-4496-a6f6-fe4147db3af8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +afc946b7-ac98-40d0-b0cd-2fac35accf14,2016-02-10,2016-03-16,b19a1396-d41e-4cd6-9548-b19eb28a102a,ac580adb-6302-40ca-9d19-507c9e73278c,133901003,Burn care,403191005,Second degree burn +507cf43f-d1c5-4a3d-87c4-05d55f2cc365,2017-04-19,2018-01-18,b19a1396-d41e-4cd6-9548-b19eb28a102a,8c2cb67e-8a37-4077-9c7d-5a55fc09efd1,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +52fc678c-c9bd-472b-a1a3-4e7285c1657c,1993-12-14,,76bd51b9-f39d-4e9a-a352-601d85dd3bb9,00a7f636-9f08-464e-bc61-b5e8eac19cd8,734163000,Care Plan,449868002,Smokes tobacco daily +506b3a27-d6ed-4fb5-82e0-6279d1b922ad,2007-10-09,,76bd51b9-f39d-4e9a-a352-601d85dd3bb9,e8d32804-fc3f-42cd-a72e-88fa3d1afd62,698360004,Diabetes self management plan,15777000,Prediabetes +e39ab4a0-cee4-4cfb-8c39-f8950c2709ee,2009-05-28,2009-10-13,76bd51b9-f39d-4e9a-a352-601d85dd3bb9,ba92d964-f392-4588-9031-fa6e4a05c72c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f0b8e9fc-9a7b-4fcd-8664-ca4927425871,2009-11-08,2010-01-07,c06c78a1-d681-472e-8bbb-0828e86957e6,e7462f8c-a601-4e67-80bd-a206ddbd6c28,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +627b7c42-9b02-4bf0-a4b3-130df7a3a6db,2013-08-19,2013-09-18,c06c78a1-d681-472e-8bbb-0828e86957e6,b923c6be-212a-400b-9553-3c2b06c84dc8,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +b42ab52f-e80a-4fcd-8f2a-1cf97c88006d,2018-07-24,2018-08-28,c06c78a1-d681-472e-8bbb-0828e86957e6,a82c3e19-d8e3-4c6a-9a5a-d18ffe8344c3,91251008,Physical therapy procedure,44465007,Sprain of ankle +6e42fde4-1c49-421b-9dc4-73a56f4cfcd8,1998-09-07,,5f11f565-45c8-480a-8729-18b2853f0c44,35607183-5c12-442d-b8cc-4a907a333024,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +f8c54655-7aeb-45ad-ab9d-4bf4690edcf0,2012-05-24,2013-01-02,5f11f565-45c8-480a-8729-18b2853f0c44,4171cc49-8a95-4c0a-96f9-ab1b00b7b43e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +59bc21e8-01c3-40d6-9d62-eed1fc244810,2014-06-16,2014-07-16,5f11f565-45c8-480a-8729-18b2853f0c44,93669318-73f0-4e60-93d4-99ea4d04b253,385691007,Fracture care,263102004,Fracture subluxation of wrist +018d65d9-afcb-4da0-bdb8-cd560be4c6b6,2009-09-21,2010-10-07,e482f9fa-4caf-4665-993c-34985763e712,3c8009ee-ffc9-4530-97f6-9bc1f865f13f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ab93fc9f-adac-49e4-b5b1-c9c3db7d548a,2018-08-09,2018-08-16,e482f9fa-4caf-4665-993c-34985763e712,37a1892d-4cc3-41eb-a306-62c6a6fb74ca,869761000000107,Urinary tract infection care,38822007,Cystitis +fe026aba-36c8-45d0-bb74-6ee8aee4d460,1991-11-01,,38c39808-b2a4-47f1-a330-34195e2fea84,f80bd400-bebe-49e4-a375-aae7841798e3,698360004,Diabetes self management plan,15777000,Prediabetes +49e5295f-cd53-456c-94d5-21ad465f3061,1994-02-07,,38c39808-b2a4-47f1-a330-34195e2fea84,80b3b3ba-9a1d-4bf0-b45f-c67e9e4b0d66,872781000000100,Musculoskeletal care,239872002,Osteoarthritis of hip +8cfdf39e-56b1-4f46-a78f-f63b535bda41,2012-11-27,2013-12-13,38c39808-b2a4-47f1-a330-34195e2fea84,217311a7-c501-45a9-a00a-78ea16b812cc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +112e7c0f-58e6-49cf-8911-a5e9caae88ed,2014-04-06,2014-06-05,38c39808-b2a4-47f1-a330-34195e2fea84,5255ec57-9db0-4bac-b13a-7eb8d6f61f20,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +58ab4b10-75f5-47ae-99aa-1786f9b8f80e,2016-01-26,2016-02-25,38c39808-b2a4-47f1-a330-34195e2fea84,554c26fc-e3f9-415a-8595-0721e184779b,385691007,Fracture care,263102004,Fracture subluxation of wrist +2ddc0c46-02d9-48c6-a937-bd769e143411,2015-03-16,,c4073684-7f28-4502-8893-2ccfd50bfdf7,2e752a30-b2f9-4d34-ad22-614c7e7286c0,326051000000105,Self care,, +7657cd69-9e38-49f3-82ac-f64189e38951,1971-09-29,,99d6d0ef-b4b8-4360-8a30-942befb1ba0d,639e1afd-6833-4fa4-9969-1b0a5194f968,698360004,Diabetes self management plan,15777000,Prediabetes +bcfda9d6-9db3-4999-b30b-161e8dd2f6e8,2012-06-19,2012-06-26,99d6d0ef-b4b8-4360-8a30-942befb1ba0d,5cbea109-39d8-4fea-86b5-45414fffb120,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6b4eaac9-c158-41f9-8a4e-bb82f8a50763,2017-08-10,2017-10-16,99d6d0ef-b4b8-4360-8a30-942befb1ba0d,4b212de1-57d9-49dd-a10e-46ca4378dfe9,91251008,Physical therapy procedure,444448004,Injury of medial collateral ligament of knee +b1407ad4-cbf2-4bf4-9c93-c85ffe619153,2017-11-29,2018-07-01,49a78e84-ce6e-48b7-a6e0-91c79408ac04,b7912ea0-d943-4760-9cff-9db738fa4d65,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bb797e31-0a24-46df-8bb6-dc1898b8cd71,2008-12-20,2009-01-19,28e99e25-265b-49f4-baff-14844d148a96,468c6f66-b940-4ea9-8245-aa0c3d3ec2b2,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +f5de6997-a102-4a6d-81b9-911fc1264874,2010-11-10,2010-12-10,28e99e25-265b-49f4-baff-14844d148a96,53273f4a-d71d-4ae3-ba32-485d6b6cf2a6,385691007,Fracture care,33737001,Fracture of rib +1b2d7a99-9830-4ac1-90a0-c6acd7da499a,2012-12-29,2013-01-28,28e99e25-265b-49f4-baff-14844d148a96,198a2122-15d2-47a8-9bfe-17ff099a6379,385691007,Fracture care,263102004,Fracture subluxation of wrist +3bd49803-2fcf-474a-ad1a-6f7355de92e7,1989-01-25,,0549b621-6328-4ac8-b818-5cd82c31ae92,f5bbb22e-7ef9-4504-8e43-06c026275bc9,698360004,Diabetes self management plan,15777000,Prediabetes +469a21b6-3657-4de7-b284-cde54902d57c,2014-01-23,2014-02-13,0549b621-6328-4ac8-b818-5cd82c31ae92,dd541b25-dd27-4652-b311-4f709d43cb50,91251008,Physical therapy procedure,70704007,Sprain of wrist +3913a8bc-48f8-48d4-92b3-9d22c2ec944a,2017-11-26,2017-12-03,0549b621-6328-4ac8-b818-5cd82c31ae92,7c253bb9-b87d-4497-9932-204e23241749,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d34ae57d-94a4-41d7-9357-d35b39363977,2010-05-23,,86564464-2ea4-4ea5-8729-db3e7ba51f18,bfba9ee8-909e-4785-8976-306bbb980130,326051000000105,Self care,, +4e749523-270c-43f4-9e65-cbf54f79c9fc,2005-11-25,,c46d604d-9449-4e91-825f-4669b0b5f4ae,ff707072-6e42-418c-b44b-a156f398b661,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +bfe4af26-f59e-4016-9afb-4fd0606fe491,2010-11-15,,c46d604d-9449-4e91-825f-4669b0b5f4ae,8c5e99d3-bdfc-4575-8c50-10ba53081bb9,698360004,Diabetes self management plan,15777000,Prediabetes +9162951e-636f-4506-afdc-44e8e496407e,2015-01-06,2015-01-27,c46d604d-9449-4e91-825f-4669b0b5f4ae,7294e301-4bb2-4a09-9876-d98cddeda47f,225358003,Wound care,283385000,Laceration of thigh +6dd23e94-606a-467c-9f74-727125a25257,2015-09-30,,eb1c7f7d-802e-4d0c-ba3f-82af5d623b4c,2ad61bd7-7845-4d2c-a9f7-cb093c1ee6c8,326051000000105,Self care,, +c2f74ad9-604b-4b82-9ada-ecc9fbe3e083,2017-09-08,,eb1c7f7d-802e-4d0c-ba3f-82af5d623b4c,7f81aed1-f642-4e42-bced-abf36e46e107,699728000,Asthma self management,233678006,Childhood asthma +5a135e81-4642-4d31-9e5f-20d497b8185b,1989-12-05,,ffddf6dc-46eb-45dc-8733-3d8f7e621803,80458343-ddd7-4388-8785-f43adc06a30b,698360004,Diabetes self management plan,15777000,Prediabetes +7d150386-2469-4fb4-9850-588e137c7b56,2014-05-16,2014-05-30,ffddf6dc-46eb-45dc-8733-3d8f7e621803,5a2ea7ff-3f61-48ad-a669-47b4fae6830a,91251008,Physical therapy procedure,70704007,Sprain of wrist +07c43115-9077-4ded-9899-027f88fbbb04,2016-04-13,2017-10-03,ffddf6dc-46eb-45dc-8733-3d8f7e621803,1467dab9-411a-43c8-a341-4ad23d693e54,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3e2e7684-0285-45ed-bac1-4fe09ab4f7fb,2013-05-16,2013-06-26,858f2742-22b9-4501-ba87-0ffc08eb9095,33480916-e5b3-444e-958d-5ccaf5e1f0f8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2d3fde60-f60f-4501-915c-075b878185ba,2017-05-07,2017-07-06,dc810bc2-75f4-4a21-bd46-40e6e0aa909a,289a222c-b8c8-4f69-8c06-0cb3dbe779e9,385691007,Fracture care,263102004,Fracture subluxation of wrist +7bab03ec-9598-46fb-82ca-c14694bf8994,2018-01-15,2018-02-19,47e1ed39-7dec-4780-b39e-06cc33457268,b2b8448e-4eea-4972-acce-ad53327aea10,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +95bc4b0c-c597-4caf-8b39-29eaeebedfaf,2018-02-26,2018-03-05,47e1ed39-7dec-4780-b39e-06cc33457268,cf2cf19c-dc10-4473-9c35-c2531ef2aa80,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +326926ba-1532-42f8-ab05-0104211fd221,2010-12-03,2010-12-24,e7ae2f0b-937b-48b9-a5c1-9ae5f0d62198,e607f74c-d5b3-42c7-97b4-ae32dcb3042a,225358003,Wound care,283385000,Laceration of thigh +3c02dd92-e823-4263-b2a1-c7e729fc3374,2014-06-02,,e7ae2f0b-937b-48b9-a5c1-9ae5f0d62198,41dfda98-39f4-49d0-87aa-58d6780a5ddf,698360004,Diabetes self management plan,15777000,Prediabetes +bc789b09-a3b8-4186-9366-8fe33a009efb,1987-01-11,,8d046e67-c0f7-41e1-b75f-ca7428558ebf,5c8ec885-0ca8-4008-b88b-4839d8dd07fa,699728000,Asthma self management,233678006,Childhood asthma +e70f0c62-aa65-408b-a105-d61aca894477,2010-06-04,2011-01-14,8d046e67-c0f7-41e1-b75f-ca7428558ebf,52c1cace-ca49-412d-af57-8ff100e2b00d,134435003,Routine antenatal care,72892002,Normal pregnancy +cae1a742-7c0f-4609-9af5-12ffbf926bc6,2010-06-22,2010-07-22,8d046e67-c0f7-41e1-b75f-ca7428558ebf,abbfa9db-d1af-44b6-8b72-9058d482f62f,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +ea0d8e7d-f6c2-4820-8b52-2b4d64e5c229,2011-12-02,2012-06-29,8d046e67-c0f7-41e1-b75f-ca7428558ebf,7286d9e9-d83b-4b14-850b-cc069fb63075,134435003,Routine antenatal care,72892002,Normal pregnancy +be96f653-8c20-4896-b0dc-f066913c3d52,2012-11-16,2013-06-14,8d046e67-c0f7-41e1-b75f-ca7428558ebf,e352c246-7914-49c4-b07c-d7e41ae8e494,134435003,Routine antenatal care,72892002,Normal pregnancy +bee7557c-c565-48fc-bee3-bb7eb8a4289e,2015-03-13,2015-10-16,8d046e67-c0f7-41e1-b75f-ca7428558ebf,b2b9c38d-7470-4995-93f2-e72e1ee15124,134435003,Routine antenatal care,72892002,Normal pregnancy +c6e0d71e-4584-449b-b7f5-b4d08e887bc1,2016-04-22,2016-12-02,8d046e67-c0f7-41e1-b75f-ca7428558ebf,43f5f8e4-5acd-4066-9a58-dff215a0c9b6,134435003,Routine antenatal care,72892002,Normal pregnancy +cd1f8eba-b3a8-4165-b7a8-d4a015a533c7,1910-12-07,,364d7056-dc54-4996-b027-17abb8d703df,49a09a42-12bb-47c5-b07d-1b96b2b1d42e,699728000,Asthma self management,233678006,Childhood asthma +1ac1811b-26ca-404e-9f82-0318e3fece91,1987-08-04,1987-11-02,364d7056-dc54-4996-b027-17abb8d703df,f95e3f68-1333-4e6f-b84f-c96c8a54a725,385691007,Fracture care,16114001,Fracture of ankle +107d57bb-f8f5-45a4-83a8-d7c4a50ed28c,1990-01-01,,364d7056-dc54-4996-b027-17abb8d703df,25e57fec-c131-498e-80bb-5ceba79a50fc,386257007,Demential management,26929004,Alzheimer's disease (disorder) +fbaec0c9-0c48-449b-adac-d4a7dbf169e4,1994-03-30,1994-04-20,364d7056-dc54-4996-b027-17abb8d703df,b9ebe377-e13b-4175-8e9e-7514fe136eb3,91251008,Physical therapy procedure,44465007,Sprain of ankle +fd8a2b2a-840b-4bfc-b5ae-397232472fae,2010-03-24,,b8c94af9-6f09-4218-a392-36cccc3e5fc1,35d0e4ce-445d-4d7a-9c90-0022c0845d41,326051000000105,Self care,, +25792a37-4f8c-4f78-b67f-d55b05ac9829,2011-01-19,2011-02-02,b8c94af9-6f09-4218-a392-36cccc3e5fc1,e975cbad-31d8-4c27-8179-6ab5f9744cca,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1d816829-46b5-4630-9451-2e98a595bc1e,2012-09-01,,b8c94af9-6f09-4218-a392-36cccc3e5fc1,c57f9976-00e9-4902-9b7d-6e46a1758c5f,699728000,Asthma self management,233678006,Childhood asthma +ef6f0c85-2036-47a2-9999-e0f7f13fe584,2013-03-24,2013-07-31,b8c94af9-6f09-4218-a392-36cccc3e5fc1,f76f0089-2d9e-4d7c-a52d-90661e289734,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8f187846-c13e-4f7a-86c5-1b02a6af697f,1985-05-01,1985-12-18,1400424b-65a1-4f37-8e44-45ed7a39abaf,aa71b260-124d-4186-a0e1-a290fd3ab119,134435003,Routine antenatal care,72892002,Normal pregnancy +08c0cb07-8c0b-4634-afe3-55e265ead4da,1985-11-27,1985-12-25,1400424b-65a1-4f37-8e44-45ed7a39abaf,c4db4c3e-8c40-47dc-b5a4-e95e6637d8d4,133901003,Burn care,403191005,Second degree burn +1559454d-4b2b-429e-8de2-4a18cb3007e2,1987-03-11,1987-10-14,1400424b-65a1-4f37-8e44-45ed7a39abaf,1459399f-e580-4716-9716-2bce9c816ab2,134435003,Routine antenatal care,72892002,Normal pregnancy +5b4172bd-3740-453f-bf8c-d3570238c896,1989-07-09,1989-07-23,1400424b-65a1-4f37-8e44-45ed7a39abaf,307a749e-8c5a-406d-8a22-34cf98b65f96,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +134aeb91-ef1c-4cf7-9ad1-811d514b1dca,1990-10-18,1991-10-23,1400424b-65a1-4f37-8e44-45ed7a39abaf,b6112584-8831-4743-a34d-1d7af6d46199,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f86431f3-0dff-42c0-9b80-1a0e4952188c,1992-11-17,1992-12-01,1400424b-65a1-4f37-8e44-45ed7a39abaf,044d6759-f628-4419-b876-12bc0d197da1,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1f0a61ca-2386-48e5-89a1-393885663a62,2009-10-18,2009-11-01,54653f38-bacf-4c78-8d13-b1178e5c7650,15d4aaa9-b3bd-4051-90f9-4cc0fec0e65b,133901003,Burn care,403190006,First degree burn +ffc20c57-8499-475f-ab84-01676f858b01,1994-12-07,,1400424b-65a1-4f37-8e44-45ed7a39abaf,1f1b393c-3f6a-4f64-866d-257572ee4481,734163000,Care plan (record artifact),55680006,Drug overdose +8c1d6b57-bfd3-4f54-b3c1-8779056807ca,2010-09-05,2010-10-05,a45e4f55-69ef-47b8-b4cc-c9d3ccb2681e,6b9e5dc0-4a2e-4df6-b98d-9c1db27d8b08,385691007,Fracture care,58150001,Fracture of clavicle +c51c142e-888b-43c9-b93d-f26903c888f6,2011-08-01,2011-08-22,a45e4f55-69ef-47b8-b4cc-c9d3ccb2681e,7d2948b7-224f-4be5-ab90-a9ee4dd0815e,225358003,Wound care,284549007,Laceration of hand +dd113b80-0f12-4501-9db3-8d1fa56bb189,1995-05-24,,1400424b-65a1-4f37-8e44-45ed7a39abaf,9074e5b1-5dc4-4969-9f4f-5a37f8b3cfb5,134435003,Routine antenatal care,72892002,Normal pregnancy +017bc28c-719f-4819-9112-bc4b7c1e990e,2018-09-27,2018-10-11,a45e4f55-69ef-47b8-b4cc-c9d3ccb2681e,54bd772d-54c4-4173-bdc7-8ec1134919cb,869761000000107,Urinary tract infection care,38822007,Cystitis +b8cf5630-c895-421f-b3a4-95ed8d14d9fa,2009-05-07,2010-05-19,16e48bd5-6d5f-4345-8e6e-748e8bda1a47,92b4343a-ddac-4cee-bdd8-c3932273d570,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +cb603fad-ff4d-40c5-a76a-380183c5f213,2011-01-30,2011-02-27,16e48bd5-6d5f-4345-8e6e-748e8bda1a47,5c0ec8f5-b33d-40e2-bd5f-0ba721222ab7,91251008,Physical therapy procedure,44465007,Sprain of ankle +7c7ba032-8bcf-409a-8dfa-4e2cbd2faa5d,1992-08-22,,9ef5403a-82c3-4e81-b17d-66e378b59030,bf3968fd-e814-4fca-9f5c-622b6dd28866,412776001,Chronic obstructive pulmonary disease clinical management plan,185086009,Chronic obstructive bronchitis (disorder) +2aeaab04-c400-4af4-b352-85d198a5591d,2000-07-11,,9ef5403a-82c3-4e81-b17d-66e378b59030,68b67339-66eb-4bad-a4c8-d6b4e3c059a4,734163000,Care plan (record artifact),55680006,Drug overdose +81172459-17cc-4b5d-8f1f-ee7bacf7cd48,2009-07-03,2009-07-17,9ef5403a-82c3-4e81-b17d-66e378b59030,bcd2a906-9485-4551-b57b-9a42188c425d,787301000000101,Surgery care management,, +987d7e81-ec2f-4cc8-9465-c54541f5710c,2011-06-05,2011-06-26,9ef5403a-82c3-4e81-b17d-66e378b59030,0aad40cd-0f37-49a2-a59e-9170a2396855,225358003,Wound care,284549007,Laceration of hand +749ff7aa-deb3-471c-8020-e6f45ef692f6,1958-09-01,,72f8564e-6a2a-4571-9b87-bd335a183dba,c1f6a010-b176-4f13-bdd8-d76c9835e248,698360004,Diabetes self management plan,15777000,Prediabetes +a8778f7c-b531-4bb3-9deb-49c28bdce7fa,1985-03-25,,72f8564e-6a2a-4571-9b87-bd335a183dba,3cf7afb5-00d6-4117-97f4-3564af35802d,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +7fbc5f23-62a9-4bc4-8749-52fbeb017e96,2014-10-27,2014-11-26,72f8564e-6a2a-4571-9b87-bd335a183dba,e979dac4-e51b-4075-b1eb-b6cc1b316a31,385691007,Fracture care,16114001,Fracture of ankle +71caf2cd-61d3-4f1d-83c7-f2e5628afb05,2017-08-12,2017-08-26,72f8564e-6a2a-4571-9b87-bd335a183dba,a2f764d4-5791-4de5-8b0a-faa3c3070ff3,225358003,Wound care,284551006,Laceration of foot +c15f4009-1587-4f7d-b2d2-71b297d782ee,1994-08-10,,11eafc39-4ff6-4f15-bd57-d4f852e95bee,a35775c3-878f-405f-b4ae-803bff4c1950,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +348b2316-b7ca-419e-93b6-4a9c2e70c1ac,1999-03-25,,11eafc39-4ff6-4f15-bd57-d4f852e95bee,b8592907-a70e-429b-8e1b-43c7e32d4494,698360004,Diabetes self management plan,15777000,Prediabetes +10c5fd2f-6744-41af-bcfb-9c1dd42ce927,2012-01-31,2012-05-24,11eafc39-4ff6-4f15-bd57-d4f852e95bee,87723f8e-c710-4ca5-b8a1-0bf9c1d7b2ea,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b3e36375-ca0f-4125-89ea-f63e07ae5d85,2013-06-20,,11eafc39-4ff6-4f15-bd57-d4f852e95bee,46538e77-baf8-45de-a529-40c7640d299d,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +98891d6d-9d62-4ad1-ab89-b3bf8d16098f,2015-09-18,2015-09-25,11eafc39-4ff6-4f15-bd57-d4f852e95bee,7b02aa57-363e-4f57-8b4f-ade7c4bee7c8,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +5560973e-42b2-46d3-a572-203f79a42f47,2015-12-12,2015-12-19,11eafc39-4ff6-4f15-bd57-d4f852e95bee,9e393f49-6d9d-4ff3-a430-34330038beb1,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +d9ae867b-36d7-45c5-b130-0913e7a2cd85,2009-02-21,,55cb9cea-6125-493e-a27a-cb5a7cd44e93,bc6d410d-b50e-46b8-88db-4149f5a0ccba,698360004,Diabetes self management plan,15777000,Prediabetes +cf8b7572-31cc-4580-9b0e-04e9656d3257,2017-04-24,2017-05-01,55cb9cea-6125-493e-a27a-cb5a7cd44e93,d42bb808-3945-469b-b1ce-989024b13fa3,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +90842ad9-42bf-409d-bc7b-ca58f21b3bbf,1997-08-14,,c7bb0f2f-12ec-4abd-8f79-97df6e900b77,e73dcc6b-97b5-4948-8932-8ba7a6da5bbc,698360004,Diabetes self management plan,15777000,Prediabetes +211e3502-008b-4663-88c0-c9e6460207f6,2006-07-13,,c7bb0f2f-12ec-4abd-8f79-97df6e900b77,6944d665-e503-4827-9666-b15f75893b77,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +d1ad80ed-3747-4308-a811-5c376dfaf65b,2016-10-24,2016-11-23,c7bb0f2f-12ec-4abd-8f79-97df6e900b77,41f8a9d0-3c2c-4edf-b4dc-01b09463b5b4,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +baf19049-a8cf-44d3-8b9e-690f5bd64bae,1934-06-04,,73aadf56-6dc1-4d43-87d1-6f9566d6068b,8fc09404-a275-4ca2-ad01-b241eb817ebd,698360004,Diabetes self management plan,15777000,Prediabetes +696f9da4-6573-4cab-a656-97b073cabfb8,1943-11-22,,73aadf56-6dc1-4d43-87d1-6f9566d6068b,a8a0d314-c246-4350-85bd-88e3dfbca9f3,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +f8b2c4de-ae5b-46d1-be7f-334383ad3eea,1985-08-19,,73aadf56-6dc1-4d43-87d1-6f9566d6068b,6497b05c-58ae-48d6-91ae-d25284cea46e,386257007,Demential management,26929004,Alzheimer's disease (disorder) +4cedf2f2-0ed8-4590-bd3a-9c1458f88f05,1992-03-21,,f51ec3c3-2cad-48e8-a94a-aa828a8bd322,9ccb7c5d-514b-4a73-969d-c3cbd1ebcd7e,326051000000105,Self care,, +8c04f622-8a26-4e19-8c89-f821abcf7e13,1994-12-03,2013-03-12,f51ec3c3-2cad-48e8-a94a-aa828a8bd322,97c6aaea-4136-450e-b8cb-598bb1afc9d8,699728000,Asthma self management,233678006,Childhood asthma +43ae56bf-de57-4c6a-8732-6cadea6e3f4a,2015-02-19,2015-03-21,f51ec3c3-2cad-48e8-a94a-aa828a8bd322,a3619364-e43c-4f0c-a66a-decf19b2692a,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +815ec9b1-c06d-4bda-98a2-f85530144686,1967-08-24,1968-02-28,5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,6a3928da-189b-4302-b3da-20f12ddbe015,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +29b7e5cc-418d-4204-ab35-b98dafbe0b0b,1986-11-26,,5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,c21a68f6-2aa2-4c82-a0a4-895f4c596b4b,698360004,Diabetes self management plan,15777000,Prediabetes +172beabf-8ef4-4d20-bc9c-f24cb5a09660,2013-04-03,2013-04-10,5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,a57f0d0d-f890-481a-8b24-c0441fc79e03,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7c9c05f9-cf5a-4e84-967e-5fbaa0154ccb,2016-07-21,2016-09-19,5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,0c76854c-0fe2-4488-b557-8347fc20c9ac,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +331cb27e-49b1-4fe3-947f-cf3f1dfad8ea,2018-09-12,,5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,4dc8ecc8-00e7-4b0e-b9cd-e09b3d51c792,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +abf3ca1e-13c0-47ae-9089-4930bf9636cf,2011-07-27,2011-08-10,c42ac70e-6c3d-49c9-a898-0e6650098317,88ece0f4-49d3-405b-b856-cd0b8f42e92a,225358003,Wound care,283385000,Laceration of thigh +e3e34dac-8a65-4d95-9a72-db5e5435f7b3,2005-02-02,,c6a8c990-1ebc-40da-8854-d8faa34aff43,b826d50f-229c-4b26-b175-48c47fd650ea,698360004,Diabetes self management plan,15777000,Prediabetes +bacbb823-faed-4dd9-bb6a-68da51ff4b6f,2016-11-24,,c6a8c990-1ebc-40da-8854-d8faa34aff43,920892fa-a0f4-422b-a085-05537804e39f,872781000000100,Musculoskeletal care,239872002,Osteoarthritis of hip +2b72e536-752f-4e1d-83bd-24e2c028a788,1988-09-07,,74c06b2a-fa4e-4716-a07e-980b8da321da,553c75f0-5a33-41c0-ac79-e55a37612df6,698360004,Diabetes self management plan,15777000,Prediabetes +1a193a2e-7b0d-4ba5-8337-6d941d71d635,2009-06-18,2009-08-12,74c06b2a-fa4e-4716-a07e-980b8da321da,a08e3ef8-eaff-4f94-9612-bf2982e40c67,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +475a526c-e066-4198-b07f-759da95447d4,2015-11-04,,74c06b2a-fa4e-4716-a07e-980b8da321da,a8ac01f1-1a7c-4fac-b4ac-a914aaff5b05,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +19ae0e63-e5cb-413e-9f05-d0e317d23760,2018-04-28,2018-06-27,74c06b2a-fa4e-4716-a07e-980b8da321da,0f2466af-96c4-465b-9343-3ef146a53c92,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +87020f9a-76be-4c94-a116-30ef826b1f42,2003-08-15,,ebec0355-61ee-4011-9d54-38875fc56770,4d16ca43-53de-49a3-ae43-2b38ec97faf0,698360004,Diabetes self management plan,44054006,Diabetes +0cd01c3a-c2dc-4f7d-be32-67cbce52ebe3,2016-06-17,2016-07-15,ebec0355-61ee-4011-9d54-38875fc56770,ee8837a6-93f1-44a6-9dc7-3a3d3cceab97,91251008,Physical therapy procedure,44465007,Sprain of ankle +406bb55f-61ca-42f5-9f92-56d8dfd68e1a,1999-09-18,,0b822a72-30fb-4dbb-9496-bbcc7cdbf159,4951beca-23d3-4192-80b9-92c68fd923de,326051000000105,Self care,, +699ff6b9-63c5-44f7-9c01-02ad33852643,2011-07-30,2015-01-31,0b822a72-30fb-4dbb-9496-bbcc7cdbf159,111d8dfb-75a4-4c3e-b8ec-856e36d9aee3,170836005,Allergic disorder monitoring,, +e3b0faf5-1572-4a96-960c-f0ea976656b8,1995-02-28,,e68c5e0c-c170-4da3-8b2e-bdbf71071531,38598533-6970-4884-8ad5-038217c8ffa2,734163000,Care plan (record artifact),55680006,Drug overdose +c22a7897-3274-48ec-ad07-57badd2251ec,2008-07-12,2009-02-21,e68c5e0c-c170-4da3-8b2e-bdbf71071531,92459bd5-13fd-4d25-ab3c-8888cb939e43,134435003,Routine antenatal care,72892002,Normal pregnancy +e5183599-aafe-40c8-b5aa-b85930554446,2012-08-11,2012-09-01,e68c5e0c-c170-4da3-8b2e-bdbf71071531,1b79bd74-3c59-4b7d-b01b-d7dd25e2481c,225358003,Wound care,283385000,Laceration of thigh +c09e9c3a-d3c4-4a37-99a4-3d91de4d2c85,2015-08-13,2015-08-20,e68c5e0c-c170-4da3-8b2e-bdbf71071531,6a80441b-d27e-4fb1-bd94-90838936903d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8cadacfe-4aa3-41d8-bc25-7525107f776d,2015-10-10,2016-05-07,e68c5e0c-c170-4da3-8b2e-bdbf71071531,d53da798-53ee-4f97-b52d-4f311328b87b,134435003,Routine antenatal care,72892002,Normal pregnancy +ace23417-53b0-4a06-b39e-23f9ddfa53fa,1997-12-24,1998-01-15,5623855e-d960-49e1-b5c1-a55f48e0e961,d6c475ff-479b-4ed5-8476-b942d7f6e2f9,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +a769dcde-ab84-4a91-ab88-27308c55f710,2010-04-02,2011-04-14,acf0483c-e210-4da7-8afd-0944190c07b4,174d2976-88a2-46ef-9bdb-718d8a06c000,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5ec0355e-2124-4aea-8bc0-b53fad9fad1b,2009-08-29,2010-04-03,5d7f5238-6890-46bc-9e3a-831e2fcf2b34,78805fd4-28da-49be-8485-b43e66bb34e0,134435003,Routine antenatal care,72892002,Normal pregnancy +a15c059b-1cfd-48bd-a821-c5c2336a1f26,2014-11-04,2014-12-09,5d7f5238-6890-46bc-9e3a-831e2fcf2b34,7081c179-68d4-4e73-8eb4-8e6eff88cf22,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +d820aad9-c9f5-4507-9185-b828d8741152,1993-04-24,,d2e7598f-7a32-4d8d-b904-e86ce3ea9d44,ef19d1da-2079-48c2-b606-9ab75efbcb08,326051000000105,Self care,, +70065328-d091-40f0-ba15-e1f421af2fcb,1996-02-05,,d2e7598f-7a32-4d8d-b904-e86ce3ea9d44,4a3c7568-70ff-4118-97db-f82c498d6b06,699728000,Asthma self management,233678006,Childhood asthma +9550b64b-8dd8-4932-a4b9-f0c147a05b78,2002-12-10,,1f70844b-fffa-4977-8c81-5867620c0b2f,18552855-792f-483c-866f-e8e6921c317d,326051000000105,Self care,, +07f84457-3d96-480a-8344-dec571cfeba5,2010-07-29,2011-02-01,1f70844b-fffa-4977-8c81-5867620c0b2f,0d212183-294d-4d61-9e28-3bffae9fe5c8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4d300fef-109b-4165-9a14-0a364fd5bf4f,2011-09-01,2012-02-07,1f70844b-fffa-4977-8c81-5867620c0b2f,d3bf5772-534f-460f-88db-d480f8e7d745,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6ce60e52-274e-44a5-8582-5595782e7c7e,2015-03-17,2018-09-18,1f70844b-fffa-4977-8c81-5867620c0b2f,a6621230-786f-496b-af95-862dcc3d4057,170836005,Allergic disorder monitoring,, +c1d9c3b2-fc99-4bc1-99ae-2b30ba6a333d,1986-10-09,,8d423274-201e-42c2-8523-44afb280e111,be000d84-8c00-4813-9749-0e7ca0a604ac,698360004,Diabetes self management plan,15777000,Prediabetes +723bf950-1840-48ab-b174-590b51cd2e98,2012-12-27,2013-01-10,8d423274-201e-42c2-8523-44afb280e111,e85f91fe-f04c-4019-9b2f-460c3e9f779f,225358003,Wound care,370247008,Facial laceration +bd65597d-cd04-4001-9b43-53f089f63e22,2005-11-17,,189349d8-e630-45e1-ac00-3f7a6ec152da,59d0ba22-9e93-4cfa-a59c-eae41675bcf6,711282006,Skin condition care,24079001,Atopic dermatitis +c63db6c4-2832-439f-a2de-f5dd02dfb7b5,2005-12-06,,189349d8-e630-45e1-ac00-3f7a6ec152da,53622c7b-4012-46a8-ac3a-9fef2d80ed03,326051000000105,Self care,, +6bfe9800-bfff-408c-8868-7867ef83227d,2009-10-01,2009-10-22,189349d8-e630-45e1-ac00-3f7a6ec152da,3ed846df-1e5e-4d0d-8bf8-eb8ae5603880,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +80c34f16-5793-4a36-bd22-ffb837095062,2013-12-16,2015-07-09,45d99826-68f0-47fb-9717-26e6a6fadcc7,e1956785-d1e1-4cd2-ae4e-9de943d1323f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +4b6f0949-428c-4ab8-85cd-06167fc31738,2014-01-01,2014-01-22,45d99826-68f0-47fb-9717-26e6a6fadcc7,30634f1c-110c-4102-8b01-431626d3e088,91251008,Physical therapy procedure,44465007,Sprain of ankle +e82de992-6903-4eaf-800c-8cfd09fd0c10,2014-01-05,2014-01-26,9e2df923-c399-429d-ac69-dce786b7de2c,98fda59c-e8f2-401d-8e4b-fc5a760bcddf,91251008,Physical therapy procedure,44465007,Sprain of ankle +f12f52ac-5ddf-477d-9232-4bd0829b5752,2015-01-27,2015-02-03,9e2df923-c399-429d-ac69-dce786b7de2c,23fab133-e781-4156-898b-4f65f258318b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +756cfe69-7603-4a2a-ae27-e292eeb047ee,2018-03-06,2018-04-03,9e2df923-c399-429d-ac69-dce786b7de2c,fef7392d-3d54-4693-ba58-a797f4a66c35,91251008,Physical therapy procedure,70704007,Sprain of wrist +c549bd2f-acc5-404d-a9d8-b8f5e9dad924,1979-03-22,,2fb07161-be1b-4c41-87b5-22f26a14fcf4,c328ca5f-ad67-42a2-84ef-a3ea0f22b07c,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +bf3c125a-bb85-42a1-a88c-31171b7651ea,2008-12-08,2009-01-07,2fb07161-be1b-4c41-87b5-22f26a14fcf4,eebf7aa0-7bc1-4545-ac39-f8d20bc362de,385691007,Fracture care,58150001,Fracture of clavicle +229aac5c-3e04-40ac-ba6e-9237b1094993,2009-10-07,2009-10-14,9cd7c092-b58e-4d68-8032-9e73742fc115,a43c7d55-4dac-4018-a742-8ca5e6ca05bf,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +a4e753e9-eb33-423b-9f14-1435a0f7257d,2012-05-20,2012-06-03,2fb07161-be1b-4c41-87b5-22f26a14fcf4,1f5db187-d406-4019-bb07-4b387ad8c7e3,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +722d3dcf-ebfd-4a6c-8786-012407fd7102,2013-10-29,,9cd7c092-b58e-4d68-8032-9e73742fc115,ea3c00ee-05f5-46c4-b2e5-067a0479b71d,698360004,Diabetes self management plan,44054006,Diabetes +3aa7e67d-bfa8-429d-81f9-103454a8039f,2016-10-27,,9cd7c092-b58e-4d68-8032-9e73742fc115,fe93eb50-add1-41d8-a3d0-438b512c7385,734163000,Care plan (record artifact),55680006,Drug overdose +3f757999-653c-4086-844b-128e3cba8cba,1979-09-06,,e0125cec-ab89-48fb-860a-b968ba2d5cce,96489198-1756-454b-a87a-ec93a889057f,326051000000105,Self care,, +acca2970-635f-462e-ae97-e94c7cd999d0,2010-05-29,2010-06-12,e0125cec-ab89-48fb-860a-b968ba2d5cce,e54970dc-237c-4be2-b614-5a42822c0214,787301000000101,Surgery care management,, +f98284fe-d5c7-4a69-99a8-71c5b5f12384,2013-12-11,,e0125cec-ab89-48fb-860a-b968ba2d5cce,4c8bb33d-170e-4815-999a-5932dad70ad2,698360004,Diabetes self management plan,15777000,Prediabetes +ef42eee8-ec8b-468f-9c37-a31ddae8ed5b,1910-12-07,,eb50de37-84e6-42db-a5f1-19f57b2f6322,53276f68-6fa5-43d1-aca2-8f21dc4d88e4,699728000,Asthma self management,233678006,Childhood asthma +23c31221-efac-433a-921b-b155d31e75bb,1932-12-19,,eb50de37-84e6-42db-a5f1-19f57b2f6322,536d4e39-869f-4fb1-bac9-992133c70b3d,698360004,Diabetes self management plan,15777000,Prediabetes +bbd14a3e-e1f8-4d83-a551-9c545b45e088,2012-11-27,2013-04-22,eb50de37-84e6-42db-a5f1-19f57b2f6322,89e996c7-cd98-4042-ab04-ad629c1348d2,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d914bfe2-c742-4462-b37c-10c1dea7fdae,1964-06-12,,708ca23c-afcd-4122-ac46-c38cc23f8df5,57c0384e-2f94-4404-b339-280de8b699e5,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +3a67f0fc-8822-4e2e-be99-a2fea9417888,1983-10-21,,708ca23c-afcd-4122-ac46-c38cc23f8df5,e8063751-65d7-4b97-9bed-bc7e8e12928e,734163000,Care Plan,, +c506d5ff-a177-4b71-a632-7f7890784048,1985-10-26,,708ca23c-afcd-4122-ac46-c38cc23f8df5,8c16120a-0ad8-43cf-a3db-b981152b6d3f,736252007,Cancer care plan,126906006,Neoplasm of prostate +445dcff4-5466-4474-bd64-aadc7308305f,1996-03-28,1996-06-26,708ca23c-afcd-4122-ac46-c38cc23f8df5,370e511c-6a8d-4400-955c-57d02977bec1,385691007,Fracture care,16114001,Fracture of ankle +39141def-b19b-4e2d-a2f7-6809f28355f4,1998-08-21,,708ca23c-afcd-4122-ac46-c38cc23f8df5,e72ff09f-34dd-4b58-891d-16626a0e173c,386257007,Demential management,26929004,Alzheimer's disease (disorder) +b1c04e06-8023-4267-838b-1cb97198accb,2013-09-13,2014-04-18,5dc8d874-44b7-48b8-880a-92b173fcc38f,1084b4c9-3c0d-4fbb-b39c-d0819621188a,134435003,Routine antenatal care,72892002,Normal pregnancy +b6a6612a-3433-41c8-b3e9-2b6a5d5ed6a0,2016-10-07,2017-05-12,5dc8d874-44b7-48b8-880a-92b173fcc38f,64b72f53-3656-47f6-9766-793a681c7803,134435003,Routine antenatal care,72892002,Normal pregnancy +a800c899-af47-4333-b5ac-5b05011aa83d,1993-11-11,,dfa46f1f-eb0b-4220-bd5c-f4a1e320073f,69dc1e35-7d16-4fea-81b1-b0133e8bcae9,326051000000105,Self care,, +dacd2fad-8b79-4d1c-ab6a-58f8dfbf1aba,2005-11-17,2009-05-21,dfa46f1f-eb0b-4220-bd5c-f4a1e320073f,fd410609-b86b-4a48-a51c-f6b0ea6ce907,170836005,Allergic disorder monitoring,, +43271ec3-85b0-4388-8c29-d7b0f40d6fac,2009-09-17,2010-04-29,dfa46f1f-eb0b-4220-bd5c-f4a1e320073f,fe8e3ddc-8a5a-4ca6-b4a8-a0d582c40735,134435003,Routine antenatal care,72892002,Normal pregnancy +3355d20a-305a-4afb-8de2-a62f10c03a1c,2013-11-08,,02d058e3-cbb3-47f2-ab83-d70be7eaa292,2accbb4b-8c74-4817-b8b7-2e784621727b,698360004,Diabetes self management plan,15777000,Prediabetes +880e8338-651c-4e8d-bc3a-4c3f14eb99a3,2016-05-05,2016-11-25,02d058e3-cbb3-47f2-ab83-d70be7eaa292,7f386235-7517-4402-bb07-8b9aa80682ca,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1e637091-e3e3-43c7-90dd-fdb5f8ae3b63,1963-01-21,,350f4700-d683-4dc7-8d46-7a9fb1edeced,93008b9e-1af9-4334-be8c-0342573289e7,698360004,Diabetes self management plan,15777000,Prediabetes +de31f8a8-61df-443d-be17-c04213ffcaaa,1995-02-06,,350f4700-d683-4dc7-8d46-7a9fb1edeced,c898e529-710b-4246-b7be-1b758f5ae552,736252007,Cancer care plan,126906006,Neoplasm of prostate +88c883d8-44f3-486c-8111-5107c7205e93,1999-01-04,,350f4700-d683-4dc7-8d46-7a9fb1edeced,036092ce-48ba-478b-a960-a028b744d6a4,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +e28d53da-663c-4481-9bfa-7ac08f5dfecf,2000-12-25,,350f4700-d683-4dc7-8d46-7a9fb1edeced,8bbdec9a-8e8c-46c8-9bdd-5b47cd925a75,386257007,Demential management,26929004,Alzheimer's disease (disorder) +acf49fc5-5482-4980-b4eb-9557360c0705,2004-05-31,2004-07-30,350f4700-d683-4dc7-8d46-7a9fb1edeced,7791a9e4-5f8f-4c14-bced-14bfd88ff066,385691007,Fracture care,33737001,Fracture of rib +84763d79-f6ac-48ba-bf4d-e93469dd98eb,1989-02-24,1989-10-13,d826cb77-9130-47a7-81c3-c40e1f6afdbf,5fba2635-a8a3-42e6-a720-c61777217149,134435003,Routine antenatal care,72892002,Normal pregnancy +d03580d1-dde5-48ff-8afa-033e49b05b46,2000-02-11,2000-09-08,d826cb77-9130-47a7-81c3-c40e1f6afdbf,ac039402-3945-42f0-8348-7cc02092757b,134435003,Routine antenatal care,72892002,Normal pregnancy +a379a42c-ea4e-4731-b2cd-a2c1a5774bad,2005-09-30,2006-05-05,d826cb77-9130-47a7-81c3-c40e1f6afdbf,73e275b6-b266-46ac-9733-1f19de6a4b60,134435003,Routine antenatal care,72892002,Normal pregnancy +f4efacbb-439c-4d53-aa43-7fc4c6edc2b9,2012-08-19,2014-06-20,d826cb77-9130-47a7-81c3-c40e1f6afdbf,313cb51a-1ead-4b1f-b416-a3537a046804,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +dd828989-418c-4856-96b4-b76afad587cb,2015-07-10,,d826cb77-9130-47a7-81c3-c40e1f6afdbf,1d919c73-ada6-4758-b866-ece651653bd7,134435003,Routine antenatal care,72892002,Normal pregnancy +820cb818-8188-4fd1-9fc6-9d01a37bfdbc,2018-06-29,,d826cb77-9130-47a7-81c3-c40e1f6afdbf,9fa68fed-5d66-4068-9b3d-d9c30bd962ba,698360004,Diabetes self management plan,15777000,Prediabetes +85cc22aa-50b3-42da-a108-a3d3a7b99f62,1980-07-27,,19a7aa7b-cda1-4755-92eb-53ff5f2ac5b8,2f5bece0-f00b-41e5-895d-bb8cbe49ba2c,326051000000105,Self care,, +88f870fc-64bd-45e8-9b73-c455680f549b,2012-08-25,2013-01-06,19a7aa7b-cda1-4755-92eb-53ff5f2ac5b8,c294bc30-4fe5-46fc-b198-bc8c18bd73da,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bcb2a993-54a6-4f13-b287-f4b0f2d5f046,2004-02-10,,50b478ab-3936-4dbe-a3cd-73d30de089eb,8d80e626-76ba-4b24-9010-695259e25256,698360004,Diabetes self management plan,15777000,Prediabetes +2ac46f09-9809-478f-9e13-29f9c44c9089,1972-04-13,,5359b341-db76-4f02-95f1-69ef76b56366,90d2e28e-89e4-4f82-aff7-1bdaae36822f,698360004,Diabetes self management plan,15777000,Prediabetes +8e7190b2-a214-49ed-8e3c-b7dea7d33629,1999-07-22,,5359b341-db76-4f02-95f1-69ef76b56366,2e3b8dc7-5f0b-4e8f-a2fe-a69dcdcabe0d,736252007,Cancer care plan,126906006,Neoplasm of prostate +85ed5f05-80e1-4959-a712-222756ef5f8e,2010-09-23,,5359b341-db76-4f02-95f1-69ef76b56366,b507c527-8131-46d1-9bdb-457bf23cd26f,386257007,Demential management,26929004,Alzheimer's disease (disorder) +a0a1e282-e4f0-4383-8425-261ce70730c9,2011-08-02,2011-08-30,5359b341-db76-4f02-95f1-69ef76b56366,e49db6c6-2b9a-43ac-9b0c-55b3279036c5,91251008,Physical therapy procedure,44465007,Sprain of ankle +9fd2c252-d094-4cd2-b7db-09f732c0f9a4,2015-12-09,2016-04-28,5359b341-db76-4f02-95f1-69ef76b56366,5b44c34f-5496-48a1-bd6a-25447bcc6e3d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b22d1f54-8e96-4057-a2d6-2eb0a3ac33e3,2017-04-05,,5359b341-db76-4f02-95f1-69ef76b56366,a14f6fd7-a6fc-4b8a-8237-311fb5c13b55,182964004,Terminal care,424132000,Non-small cell carcinoma of lung TNM stage 1 (disorder) +9093628c-8a33-4335-8006-893583ec3168,2017-04-30,2017-05-21,5359b341-db76-4f02-95f1-69ef76b56366,bce34392-19a9-426f-8bce-7c0a1d6de004,225358003,Wound care,283371005,Laceration of forearm +1a7d0f12-4c38-4d26-b9d2-830c8cad0875,2013-02-23,2013-09-28,718526a9-5ab6-48ff-8d55-ce99f02799fe,97cf74b6-1ae9-4d17-ab0a-b7eb05769ffa,134435003,Routine antenatal care,72892002,Normal pregnancy +6d4b41d0-322c-4cb0-9a12-55edff761c48,2015-10-10,,718526a9-5ab6-48ff-8d55-ce99f02799fe,173e4efe-5443-4ec2-a677-8c7d402d95e6,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +3799f349-9211-4770-a56c-b30c37973984,2016-06-26,2018-07-07,718526a9-5ab6-48ff-8d55-ce99f02799fe,6927c52a-4085-4e82-bbe0-d8d6e8590878,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c307e12b-5864-4871-bade-1d87359f68b4,1963-07-26,,ee2684ff-729a-4378-bd17-2c3e2c6bd815,deecb356-be25-413b-837c-34c7df1d5696,698360004,Diabetes self management plan,15777000,Prediabetes +93095f67-866f-4b92-bea0-62c6469ba597,1980-10-31,,ee2684ff-729a-4378-bd17-2c3e2c6bd815,5e87041f-dbc2-4857-be28-16d63b3534d5,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +5b64518a-4731-4f6b-ae5c-e652c38547cd,2009-07-25,2009-10-23,ee2684ff-729a-4378-bd17-2c3e2c6bd815,40e1833f-e3da-4e7a-b4d7-6625f48e3f63,385691007,Fracture care,58150001,Fracture of clavicle +24cea8bc-7986-4baa-a35d-20cf8a9ba41d,2013-12-28,2015-01-09,ee2684ff-729a-4378-bd17-2c3e2c6bd815,84e671a0-8184-4736-8bc2-5251760e5b21,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3f9e264b-1aa5-42da-aece-e237ee29754d,2016-06-18,2016-09-16,ee2684ff-729a-4378-bd17-2c3e2c6bd815,e5c9ad95-961e-4c53-bb68-ac60ccc4fc50,385691007,Fracture care,58150001,Fracture of clavicle +3bf75331-7fe8-43ee-9375-528a6d6d1de4,1997-02-28,1997-10-17,7171f90b-ef0a-46de-a199-a3525ba4924e,e861a9f8-e31c-43ec-8b68-08300d06ce28,134435003,Routine antenatal care,72892002,Normal pregnancy +b92e360c-ea43-4fb3-9524-7954240c371f,2002-03-08,2002-10-11,7171f90b-ef0a-46de-a199-a3525ba4924e,8183106d-a4d4-4b42-9d24-5f2aed759b01,134435003,Routine antenatal care,72892002,Normal pregnancy +b81feb70-5f73-490a-9b11-1b305647fcfc,2007-01-12,2007-08-10,7171f90b-ef0a-46de-a199-a3525ba4924e,0a438f05-9f52-4ff1-a87d-aab40b5977c1,134435003,Routine antenatal care,72892002,Normal pregnancy +7a6f3f63-7238-447a-bba2-61fabc113e1e,2008-06-13,2009-01-16,7171f90b-ef0a-46de-a199-a3525ba4924e,dc5e867e-d7dc-43c3-803e-6eae87b4e1aa,134435003,Routine antenatal care,72892002,Normal pregnancy +3c0287e2-93f4-4d75-8f52-dba85ad4d346,2009-07-19,2009-08-02,7171f90b-ef0a-46de-a199-a3525ba4924e,b82890f9-2657-4678-9082-1a40336ecda9,225358003,Wound care,283371005,Laceration of forearm +c19b741e-6744-4f3d-8bf7-3e0c6451e1e3,2013-04-12,,7171f90b-ef0a-46de-a199-a3525ba4924e,9f7fc3b5-c053-4fbe-aa7b-6393aeddf0c1,698360004,Diabetes self management plan,15777000,Prediabetes +fa863c77-cb2d-413a-b9cf-df11ed787b27,2013-04-19,2013-11-15,7171f90b-ef0a-46de-a199-a3525ba4924e,1b18ee4f-7c68-488e-bc9c-8e93b193d460,134435003,Routine antenatal care,72892002,Normal pregnancy +e24ffe2a-6ffe-476f-9a0e-a158a69419c8,2014-07-18,,7171f90b-ef0a-46de-a199-a3525ba4924e,4c8c1e51-86b9-42a2-b925-6ae53aa53135,134435003,Routine antenatal care,72892002,Normal pregnancy +fe57edc7-c489-43b6-bc84-6eb184252884,1999-08-26,,98b5311e-d5d0-473a-b773-71f5372a1981,7e70ef49-0585-4fbd-9500-f8b30829dfdf,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +41f33a6f-1f7b-4cf8-b356-d607e1b078be,1972-10-07,1972-11-06,8fea1275-f5e2-4625-8c85-aeb6f06cc563,61a06002-eec6-42f4-9337-efd79f4c9887,385691007,Fracture care,58150001,Fracture of clavicle +7ce15970-b752-4354-acdd-50e851085d7a,1979-04-04,1979-05-09,8fea1275-f5e2-4625-8c85-aeb6f06cc563,303d52ca-7620-4bb6-9aee-0af69fccf39b,91251008,Physical therapy procedure,44465007,Sprain of ankle +a8faf82b-2916-40fc-a300-1d6f22d5c603,1994-03-10,,2024c932-7a0b-4bfc-b908-7c5bf3e9645d,50a61fd4-cf3d-4e79-a086-30585491389f,698360004,Diabetes self management plan,15777000,Prediabetes +2ee10215-694f-4c34-9cc7-ab584a202a36,2009-09-11,2009-10-02,2024c932-7a0b-4bfc-b908-7c5bf3e9645d,3228db3c-35fd-4e22-9a58-4227e5368c86,225358003,Wound care,284549007,Laceration of hand +707c82cf-9e50-4b40-aacd-7f96b22163b2,2016-01-30,,2024c932-7a0b-4bfc-b908-7c5bf3e9645d,cc9dce6f-7245-4c3b-9f6f-07dc30aeb4b5,734163000,Care plan (record artifact),55680006,Drug overdose +947e549d-16a7-4883-b38b-757cc51e11e7,2012-09-25,2014-10-12,62bd2b5a-4199-45d8-b54e-13c393718120,fbdddd96-695b-4379-8ffb-009389c19575,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d4fe4c38-7fa9-4e9d-adb4-d1856ca23270,2016-10-16,,62bd2b5a-4199-45d8-b54e-13c393718120,680d578e-46b2-4c59-ba82-7a383f84c091,386257007,Demential management,230265002,Familial Alzheimer's disease of early onset (disorder) +0e232b13-3b3e-4339-88de-df83faeb9edf,2002-10-21,,01e74270-b2d5-4ac8-84c4-5ac72567af04,d7c102ce-45bc-4a27-a38f-caa87678ccc1,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +7c5ac050-6bd3-40e8-9b13-3b26b8a2c567,2010-07-28,2010-09-01,01e74270-b2d5-4ac8-84c4-5ac72567af04,f85809f3-8353-4ddc-882b-a2f259d26cce,133901003,Burn care,403190006,First degree burn +18d3999e-8819-4e30-a94a-2afff5996c2c,2014-05-13,2014-06-03,01e74270-b2d5-4ac8-84c4-5ac72567af04,03779db5-c3f7-44f1-8277-31f3cd658b78,225358003,Wound care,283371005,Laceration of forearm +bcb74ebc-3c9a-4681-a509-b7acb8578c14,2009-01-07,2009-01-28,5adc76dd-a63c-4ced-8234-2d62b80461c1,c354303f-0c89-4f97-814f-5ffc682116a8,91251008,Physical therapy procedure,44465007,Sprain of ankle +cbbfc30d-420c-43ff-ab43-56c660319326,2014-09-20,2014-10-04,80dbc462-4f18-4698-90a7-94b9be39cf10,8733dca5-0020-4ad5-9dd6-21ab10bf4f2f,225358003,Wound care,284551006,Laceration of foot +3f2b99be-eaab-4ee3-812a-3cf9d0bea819,2015-01-13,2015-08-19,80dbc462-4f18-4698-90a7-94b9be39cf10,cf440699-bca1-4279-a0d5-e5f76d9a158e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1e58f8d4-0c1e-4e4e-a7b9-b70928a0e157,1959-05-18,,c683c092-9191-4cde-a69d-3596809efb3b,6e485038-d395-437c-926e-7ac3c0357394,698360004,Diabetes self management plan,44054006,Diabetes +d5898eaf-9c22-43b5-84b3-ce0217f97d1f,1972-10-23,,c683c092-9191-4cde-a69d-3596809efb3b,079a8441-2119-46bc-a3bb-02894c3b170c,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +1f586804-ae99-4b75-ba55-7124a18a27d1,1990-08-28,1990-09-24,c683c092-9191-4cde-a69d-3596809efb3b,49a4982b-fa23-47cd-990b-be637b85b34f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0da0dac2-5b7c-4d3a-a364-b6c3a6345a59,1993-12-27,1994-01-10,c683c092-9191-4cde-a69d-3596809efb3b,480b9e70-7492-4202-be2f-1942b5f00ace,225358003,Wound care,283371005,Laceration of forearm +d01b2e4a-94d3-4b44-9aa3-9ea1974eae3f,1996-09-26,1996-12-25,c683c092-9191-4cde-a69d-3596809efb3b,c53019bb-8b5e-4407-8826-6e847f8ade15,385691007,Fracture care,65966004,Fracture of forearm +da8f6ba1-8db2-4793-8151-33e6d0e4d559,1997-12-12,,c683c092-9191-4cde-a69d-3596809efb3b,93839708-40c2-4e54-b554-9c6078034aac,182964004,Terminal care,67811000119102,Primary small cell malignant neoplasm of lung TNM stage 1 (disorder) +4613d70b-d577-4a6f-b4ea-f6221a9b2245,1991-05-12,,3c1ddee5-42f7-4faf-939f-9d7f1c1526d3,36d9c542-332c-4d21-b155-5dabb4ba5367,698360004,Diabetes self management plan,44054006,Diabetes +aeede260-9df4-49f0-91c8-13afdbcd30cb,2011-01-31,2011-12-29,54c28125-a21f-47e9-8ca5-415e1d931720,624f1131-0e4a-4dea-ac96-d509ea095442,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8e98011c-a750-45dd-8a50-150f7d43ba59,2014-07-08,2014-08-07,3c1ddee5-42f7-4faf-939f-9d7f1c1526d3,a017edcb-969e-4be1-92a0-354be0134c58,385691007,Fracture care,263102004,Fracture subluxation of wrist +76b215ec-0ceb-4a82-883a-331754d07939,2018-03-01,,3c1ddee5-42f7-4faf-939f-9d7f1c1526d3,3bde7c6a-a28f-4f2b-bb5c-7822d745a029,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +16da396d-9d74-421d-ac2c-ed40fb6858cc,2002-05-23,,266c6bcc-1925-429d-8f12-31275d321c19,ec4b065a-e935-499e-ae18-7447e5416ad5,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +3b4368e6-0803-438e-b33f-15ecd327a010,2011-09-02,2011-09-23,266c6bcc-1925-429d-8f12-31275d321c19,36e002f9-5862-4e80-889f-187d22e7df6e,225358003,Wound care,370247008,Facial laceration +029cad67-d60d-4859-9da5-1c2c96a9dd15,1986-01-30,,ed8e17d1-f8d6-43d7-9194-e808ce624e39,aeeb7aa3-ea03-4f81-8d8f-b3bdc9f4bede,698360004,Diabetes self management plan,15777000,Prediabetes +b0a74675-e3c1-4033-97f1-ea7eaac2d460,2009-10-08,2010-05-06,ed8e17d1-f8d6-43d7-9194-e808ce624e39,4bdfb263-69bc-443d-901b-75c6b7f3b2d0,134435003,Routine antenatal care,72892002,Normal pregnancy +1c4f8de6-ce0e-4865-8e44-075b45cfad7e,2011-07-28,2012-03-15,ed8e17d1-f8d6-43d7-9194-e808ce624e39,5ef03178-1d3f-4842-b96f-48ad0431a894,134435003,Routine antenatal care,72892002,Normal pregnancy +374df3e0-516e-4255-98a5-cbc7218ab712,2014-04-24,2014-11-06,ed8e17d1-f8d6-43d7-9194-e808ce624e39,452a222f-04b1-464e-ba4d-418d4d7f9b6b,134435003,Routine antenatal care,72892002,Normal pregnancy +57e564bd-0dc3-470e-8558-aab108afc893,2017-06-29,2018-02-08,ed8e17d1-f8d6-43d7-9194-e808ce624e39,f1a26816-89d5-4a77-be74-f27670172cf0,134435003,Routine antenatal care,72892002,Normal pregnancy +69897ef1-593f-42ff-b3b1-d3c39760b4d4,2017-07-02,2017-07-23,ed8e17d1-f8d6-43d7-9194-e808ce624e39,2cc8b9c0-2322-49c7-8871-0decd2d25687,225358003,Wound care,283385000,Laceration of thigh +988c7b09-7b7c-4422-809c-60a43e37171c,1983-01-15,,50b6f48d-9a6c-4e68-bf71-fec2addb3242,338e5f97-51b5-417f-bacc-67dd036a127a,718347000,Mental health care plan,36923009,Major depression single episode +0400980f-717d-4083-b7ba-bb2afd4b4ad5,1983-01-15,,50b6f48d-9a6c-4e68-bf71-fec2addb3242,029fc0a7-29f7-45d3-8abf-dc8d266a8324,737434004,Major depressive disorder clinical management plan,370143000,Major depression disorder +fc241be5-3e01-4b64-81aa-13d1b130c994,1999-12-11,,50b6f48d-9a6c-4e68-bf71-fec2addb3242,1fa3c74e-158e-4d29-8a91-71db47615fc9,698360004,Diabetes self management plan,44054006,Diabetes +8a9f9a59-84b0-481f-9c7b-a7980ec4dfd1,2010-09-16,2011-01-15,50b6f48d-9a6c-4e68-bf71-fec2addb3242,fed6e75f-969a-4715-86c1-601d561bb7d1,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +10e5db9e-a584-4047-8727-6944503fe7c4,2011-11-18,,50b6f48d-9a6c-4e68-bf71-fec2addb3242,b10a48c8-b01d-466c-a7e0-6ea051ad20bb,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +af8019ea-3baa-4ae9-a206-37a012c62535,1993-02-02,,c61ce1c4-fec9-4b8a-b7b7-b00651a48602,0aeee65c-19e8-4b57-bdd2-b0631301114b,326051000000105,Self care,, +68f1a7eb-292c-4003-a264-330ee75bb8be,2009-02-28,2009-10-03,c61ce1c4-fec9-4b8a-b7b7-b00651a48602,31b61c4e-9e09-4870-ae3e-55383a30eb46,134435003,Routine antenatal care,72892002,Normal pregnancy +0754570c-24e2-4c7a-89a3-1b2079189094,2014-04-05,2014-11-08,c61ce1c4-fec9-4b8a-b7b7-b00651a48602,a170cd4c-81f5-49fa-8cd4-a59b7dfbe608,134435003,Routine antenatal care,72892002,Normal pregnancy +edb294f7-5b94-415b-800b-7cc1c15f370c,2014-10-06,2017-10-14,c61ce1c4-fec9-4b8a-b7b7-b00651a48602,22ff6c9f-0a80-4165-8e00-a88999252e25,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8eac2be5-f0de-4768-8bc8-198be6e91207,2014-12-27,2015-01-10,c61ce1c4-fec9-4b8a-b7b7-b00651a48602,66390368-2850-4f0a-a643-90e075c9024b,787301000000101,Surgery care management,, +3879dac9-5d2e-4522-ab32-c80a6be99701,2010-08-15,2010-11-13,c3ecc608-d647-4aaf-8bd0-f029c524d998,e6000b62-31ef-460e-8eb1-cb59e01334ac,385691007,Fracture care,16114001,Fracture of ankle +bec327e8-e6ed-4fb3-a242-60434e2cb05e,2012-04-05,2012-11-08,c3ecc608-d647-4aaf-8bd0-f029c524d998,308f5ba6-9e79-46e7-bc2d-1c60da0e6571,134435003,Routine antenatal care,72892002,Normal pregnancy +912c4163-c21d-4b47-85da-ce0a54d59ac5,2016-11-29,2016-12-06,c3ecc608-d647-4aaf-8bd0-f029c524d998,cc63b29f-c55b-4b36-ba17-fcb75476c6d0,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b4ae24de-8a5e-49b8-9706-1a5b78010781,1963-01-21,,d409acff-6c44-46d3-8efd-13ade12dec1f,d6f0c579-bd7d-4daf-ba6e-3086129c59f6,412776001,Chronic obstructive pulmonary disease clinical management plan,87433001,Pulmonary emphysema (disorder) +e1dc7f6c-f10c-41a0-8e85-140c72c097d5,1968-11-11,,d409acff-6c44-46d3-8efd-13ade12dec1f,937c6c61-afc4-4a7f-9175-7039d8e648e8,698360004,Diabetes self management plan,44054006,Diabetes +a5e6dc63-3829-4d2d-8425-0dc8c1c189a1,1968-11-11,,d409acff-6c44-46d3-8efd-13ade12dec1f,937c6c61-afc4-4a7f-9175-7039d8e648e8,734163000,Care Plan,449868002,Smokes tobacco daily +9d0448ba-e9a1-4297-9d83-5d7f2c06abd5,1973-07-24,1973-09-22,d409acff-6c44-46d3-8efd-13ade12dec1f,f85c43e3-57c2-440a-95d7-d53266acf786,385691007,Fracture care,16114001,Fracture of ankle +1a1a3d74-e3f3-4649-91a9-7e24b14d668f,2007-11-02,2010-11-11,d115300c-e307-480c-8abb-ddeff18ea501,fef175a8-0ef2-4a45-8738-238746f3c493,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +3d38438c-b03f-411a-9966-ac9ee03db1f5,2012-05-23,2013-01-02,9cb10b05-eeea-48d3-b73b-b03bd17f5ab9,e22fc8b6-8e48-4f09-9fdb-13054c47081a,134435003,Routine antenatal care,72892002,Normal pregnancy +078e2cdd-2a83-4360-acac-13498415ce28,2014-10-15,2015-05-20,9cb10b05-eeea-48d3-b73b-b03bd17f5ab9,9b9dcdb3-85ba-4be2-89be-e3e584738754,134435003,Routine antenatal care,72892002,Normal pregnancy +4284e0f8-7a34-48a3-a1bd-a2b7a1831c6b,2016-06-08,2017-01-11,9cb10b05-eeea-48d3-b73b-b03bd17f5ab9,f588ee98-b231-48ec-b1a2-f6cb7ad81333,134435003,Routine antenatal care,72892002,Normal pregnancy +867cdaaa-930c-4a65-8b3b-903acae0a8ba,2017-12-27,2018-08-15,9cb10b05-eeea-48d3-b73b-b03bd17f5ab9,f5527720-2597-4e1c-929a-c3db5c91f403,134435003,Routine antenatal care,72892002,Normal pregnancy +310fcf51-d89d-4c1f-a28f-05d8849fa5b0,2009-10-01,2009-11-30,b03574a8-7a2b-4e18-9bf3-9949921a2333,2679bcae-6778-42d3-9d89-59c90e9dddc8,385691007,Fracture care,33737001,Fracture of rib +e2e36d7d-c37b-44d4-8049-04eb8c4485c3,2011-07-23,2011-08-22,b03574a8-7a2b-4e18-9bf3-9949921a2333,f1214586-69aa-433d-a872-249242d731c2,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +223f3e87-f115-47cb-bef7-3c09b978bc69,1992-12-28,,42e1027e-fa61-4a13-b56e-9eccf3abb389,8c07a110-ba52-4348-86d6-8a0c11e9c91e,698360004,Diabetes self management plan,15777000,Prediabetes +9daf9d3d-3a3a-4f36-8286-f1865e54a866,1970-11-10,,c4d5830b-1bdf-45b1-ab0e-d1c11c72f237,a671cda3-68ef-4678-896c-b8f16a92a428,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +df93f1c6-6cb0-4da5-b407-d55243e3aeef,2005-04-30,,0d7d281a-6e8e-439c-a533-43dd39253a54,e69fd299-287f-4a8d-8d52-317b2e54a68e,734163000,Care plan (record artifact),55680006,Drug overdose +ed4c6720-0cc3-47bb-a021-e5499e4b8873,2009-01-08,2009-02-05,0d7d281a-6e8e-439c-a533-43dd39253a54,e5a33c75-edea-436d-8df4-1b7578f65805,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +60d78a70-85aa-4736-83c8-351020af8629,2010-03-28,,0d7d281a-6e8e-439c-a533-43dd39253a54,2d404e50-88c0-4812-8b04-19a8383dd3f9,698360004,Diabetes self management plan,15777000,Prediabetes +1bf8c195-5f3b-47ab-acd3-70e422f2720c,2010-10-30,2010-11-13,0d7d281a-6e8e-439c-a533-43dd39253a54,4cac5ecf-5203-4124-a2a1-7aab9353ebff,787301000000101,Surgery care management,, +21a84c07-bc39-4e73-b121-3f4263799192,2009-08-31,2010-04-19,af6793a3-697d-4a45-ae98-c47e988361a1,e3a8f464-2bac-4bc9-af67-ea2350753949,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6a7836a2-0929-4734-9dd1-d83255d6204b,2015-07-05,2015-07-26,af6793a3-697d-4a45-ae98-c47e988361a1,7746e947-a597-4642-824f-ebef931266b4,225358003,Wound care,283371005,Laceration of forearm +90e0f51e-30e0-4666-b30e-46ffe192099c,1981-01-10,,010af95f-0fdf-4a81-ad69-c1cc92e60154,67cca533-6c82-4347-bde5-37f1419de61a,698360004,Diabetes self management plan,15777000,Prediabetes +1578ac9a-5db6-4360-8e31-44df33b40343,2014-03-09,2015-03-28,010af95f-0fdf-4a81-ad69-c1cc92e60154,5df96e9b-36a7-4301-9537-717da0e57936,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e1e6c458-fdd1-4678-b33a-8b3015a09a06,1999-08-26,2000-04-13,a451667a-ca62-4cfc-b0fa-1d5c7969d598,b6e54bf9-4886-4540-ba59-830421ed3c86,134435003,Routine antenatal care,72892002,Normal pregnancy +fbf4d192-c2a2-4274-beca-f3342ae139d0,2000-09-21,2001-04-26,a451667a-ca62-4cfc-b0fa-1d5c7969d598,960cf375-020d-4fd1-a586-ae02f9085df8,134435003,Routine antenatal care,72892002,Normal pregnancy +54de96d7-756d-4d03-93ad-68fc735f4884,2003-07-10,,a451667a-ca62-4cfc-b0fa-1d5c7969d598,6203b4fd-f467-4ff4-a793-5fd4035694e8,134435003,Routine antenatal care,72892002,Normal pregnancy +e408817d-bc2e-4301-85c5-92b3211eba84,2012-05-04,2013-06-13,a451667a-ca62-4cfc-b0fa-1d5c7969d598,6cbd8341-4cbe-4caa-b41f-46e0a552aa3e,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6e89128d-f2a0-4717-b628-ef981774e194,1982-10-13,,56db1629-9042-41d3-b1c1-636e8f3bd0a5,38bbecd4-6ac5-40af-8be1-d742da495aa1,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +8c3b619e-1d98-414b-9011-f185ae060550,2017-02-13,2017-06-15,7003a13a-0a69-4c77-b248-f15bc6b502be,c1959cc2-62b6-49d0-ab81-248446fc67aa,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7c840f59-1856-4a54-b7fc-0615617096a4,2009-01-07,,56db1629-9042-41d3-b1c1-636e8f3bd0a5,e6084aee-4f66-4b38-8c61-86935d3878b6,386257007,Demential management,26929004,Alzheimer's disease (disorder) +c9730710-5e84-48c8-84ae-646a3d4c2a23,2011-11-19,2012-01-18,56db1629-9042-41d3-b1c1-636e8f3bd0a5,dfa725f6-f559-4cf5-8c08-bec53bca2e5c,385691007,Fracture care,65966004,Fracture of forearm +8fe60cb4-bced-428b-a9ba-faf943d43b73,2008-05-29,,f3a0d3f6-6db6-4348-acca-e234d17d0dfe,b11c1e37-b3d9-4ff6-aa0e-85f6b615545d,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +a958ab2e-9131-4706-b31e-11ff97dd75f8,1985-07-01,,35244b8b-ee2b-48bf-9c76-c2d8e43a676a,e9d980dc-1765-4fa2-9461-375b891f0877,698360004,Diabetes self management plan,15777000,Prediabetes +a637e486-2430-490a-9970-2c8396591114,2001-07-30,,35244b8b-ee2b-48bf-9c76-c2d8e43a676a,96943381-18da-4f08-afbb-ad4bf56be333,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +f2f13def-a2c5-41c4-884d-d3dc2d585ff9,2010-11-06,2011-11-21,35244b8b-ee2b-48bf-9c76-c2d8e43a676a,6fbae43d-a084-4c6a-814d-3d6861303950,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7007beee-88c7-45f4-ba75-b2a10feb8b0f,1989-09-25,1989-12-24,d7cda29c-319f-4c6d-8b1f-a8acaffd9649,24689c8a-2582-40a2-a87c-e1985e638fbe,385691007,Fracture care,58150001,Fracture of clavicle +e0f285d1-13b2-4e2d-b19b-4d4446a6753e,1993-09-21,,d7cda29c-319f-4c6d-8b1f-a8acaffd9649,a8bb70bf-3129-42c4-a04c-08a2130b2178,386257007,Demential management,26929004,Alzheimer's disease (disorder) +f71e44d6-7b0e-498d-852c-ba6ef278df29,1996-07-03,1996-09-01,5fc91de6-a1f3-4e9f-8d7a-8f78d9b0b4b1,7e7222bd-be04-41e6-b338-0d8895d183fc,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +326fb84d-1644-4870-8f54-c534b5977a18,2009-06-16,2009-06-30,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,2982afa0-4c99-4cfa-9b8d-61eef41917ee,787301000000101,Surgery care management,, +7c841685-8326-4859-9bd1-53528b208503,2012-08-11,2012-08-25,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,050cd676-efd4-4d91-adc4-8aa74559fbd5,225358003,Wound care,284549007,Laceration of hand +8b2528aa-7072-4b90-a47b-8ec0272cf8f2,2015-06-23,2016-07-22,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,71c361a8-c204-4cf9-9794-b9acd7432083,711282006,Skin condition care,40275004,Contact dermatitis +f7c3031d-ce7d-4d45-b275-1264f9e6e5ca,2015-07-16,,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,bfa3578b-606c-4933-ade7-0edd23483e81,326051000000105,Self care,, +f85f9bda-23ef-48ed-b9a8-f55e7846ebc4,2015-07-16,,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,20082bf8-f8b0-4740-92ee-8ca17450a95f,170836005,Allergic disorder monitoring,, +e02737a1-4922-4b32-a58e-8c4399886e77,2017-07-12,2017-07-19,1a11d4d6-7c52-405e-9a34-5612df3e7ac8,a4482e0d-4b19-4610-af4b-8257d6f7f556,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +4324cb53-21b5-41fb-979c-276be5a524b0,1998-08-01,,58ed0470-168d-4d2f-a210-40a4700d1661,f6ffe6ef-1d9c-4a2e-88dc-db7ef964dedd,698360004,Diabetes self management plan,15777000,Prediabetes +6757ad59-4b66-40cb-9cd6-29511c1ee9a8,2013-08-13,2015-10-31,58ed0470-168d-4d2f-a210-40a4700d1661,e36c2a81-0ae4-41b9-a1b7-456bf4a4a9ec,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e9e5904c-3042-40d0-b50b-72dd71f10510,1994-03-15,,0c88cb98-837d-41d9-a0db-1da6f90c4645,6b902136-5bb7-4814-a1ee-40ff23c9a086,698360004,Diabetes self management plan,15777000,Prediabetes +42a906d5-3187-4415-a91c-86999c4c0b8e,2009-03-13,2009-04-03,0c88cb98-837d-41d9-a0db-1da6f90c4645,ab7feb73-6cf7-4005-8652-5b943cd0d373,225358003,Wound care,283385000,Laceration of thigh +bf88f9f4-ae7f-41e5-8655-0c14224dfc3c,2011-03-14,2013-02-05,0c88cb98-837d-41d9-a0db-1da6f90c4645,99e670ae-dbc3-4542-8885-55db099be470,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fd73ebd7-d677-4728-a753-31a4dd7e8621,2007-07-10,2009-02-09,b0d4b5a3-0d9a-4e74-b7b1-f7e25f3da9be,8fbf680e-de08-4ee1-9c38-d460e53c12ac,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +2b2ed30e-94b3-4e47-ac1a-8141754d7689,2009-12-07,2010-07-19,b0d4b5a3-0d9a-4e74-b7b1-f7e25f3da9be,16983957-ae59-45fb-ae0f-72a689d0eb43,134435003,Routine antenatal care,72892002,Normal pregnancy +67640a98-5544-4277-b842-fddc498f862b,2012-06-04,2013-01-07,b0d4b5a3-0d9a-4e74-b7b1-f7e25f3da9be,10ebbdcd-ffd4-4433-bb68-177dd56f6282,134435003,Routine antenatal care,72892002,Normal pregnancy +2e33d038-cae4-4126-86a3-6024c4c6ad4d,1975-04-07,,cee62a79-df74-4417-962b-78e79b4db183,179ea795-fbb2-484c-8e47-1f0db6e0b44a,326051000000105,Self care,, +104048d7-d2f1-42ec-9943-80e188db12b6,1976-03-19,,cee62a79-df74-4417-962b-78e79b4db183,87a13ab7-6043-4133-b279-1de649c02ae2,699728000,Asthma self management,233678006,Childhood asthma +693110fa-9564-471e-bec2-6e9fc4bc9aa2,2016-04-22,2016-06-15,cee62a79-df74-4417-962b-78e79b4db183,5bd912f0-62fc-4888-8c32-84ed5e06f429,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ecc053f4-41e8-4ffd-95ca-c615619a58b9,1955-10-19,,3ad1486b-13c2-443b-9ac6-d0ac837bce22,639cf398-d774-4743-bf23-bb620253d274,718347000,Mental health care plan,36923009,Major depression single episode +26f13522-acb5-48a4-b8ce-8116a5e5978d,1955-10-19,,3ad1486b-13c2-443b-9ac6-d0ac837bce22,94a93c16-2a88-4df9-8d01-c2b565c08833,737434004,Major depressive disorder clinical management plan,370143000,Major depression disorder +878c18ec-9186-43f0-ae4d-f762ae93385d,1955-11-01,,3ad1486b-13c2-443b-9ac6-d0ac837bce22,ec0d1399-48d1-410d-bffa-d0d55097aed8,736254008,Psychiatry care plan,370143000,Major depression disorder +621c2b24-038e-4f17-8ae9-2adac96f126d,1999-02-24,,3ad1486b-13c2-443b-9ac6-d0ac837bce22,4c8bbf44-afd4-4ff6-9f80-a7a7b354abdb,736252007,Cancer care plan,126906006,Neoplasm of prostate +49e29134-f8ac-406c-ab0a-67275600afe3,2009-11-25,,3ad1486b-13c2-443b-9ac6-d0ac837bce22,6189b5be-c7a4-4136-a676-74c42ded923a,386257007,Demential management,26929004,Alzheimer's disease (disorder) +ae3acb85-0133-4375-b9b2-92b88e29d22b,2009-12-13,2010-12-01,3ad1486b-13c2-443b-9ac6-d0ac837bce22,bd87cc66-5a98-44c5-bb91-61cddddc3d8d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +07507cd5-b2b3-41d6-801b-ead6071d1cb3,2012-02-13,2012-02-20,58c5e550-9ac5-40be-bcf5-11627fcc94b7,edcbe024-8119-487e-8fac-6a81877409f8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ca5ed679-ae1b-4a5d-b0c9-1f4043593603,2018-07-19,2018-10-22,58c5e550-9ac5-40be-bcf5-11627fcc94b7,688e9dab-f9bc-485f-985b-c5d3f494714a,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f4bbb955-aaa5-4375-97fe-a519d8f4c275,2010-01-16,2010-10-03,524312f4-5b98-42d8-ac18-562834f91274,49b8df0c-cc0e-437c-8d3d-f238cff0fe87,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0b6fb927-44ff-4531-a623-9866d76db4e5,2012-06-30,2012-08-29,524312f4-5b98-42d8-ac18-562834f91274,bdaddd30-c613-44da-8a5a-239dd3de779e,385691007,Fracture care,16114001,Fracture of ankle +a17f41a1-37b7-4ecb-94bb-20595ee33bb0,2013-08-11,2013-08-25,ab53e6a5-3623-4152-bf08-2d2bcf4913b8,299739a7-004b-465e-8e2e-54b0be73a944,225358003,Wound care,283385000,Laceration of thigh +7c520079-1673-4714-a96e-fb23b8b0df06,2013-03-01,2013-03-15,7e1b3027-643a-468f-a5e5-ec66d4aa1668,304366a6-c7cc-4ecc-8cf4-a3b98ac4774c,225358003,Wound care,284551006,Laceration of foot +56903a1e-b77e-4855-b4e0-7cbaa3bf6b8e,2002-09-29,,4d1df3e0-7a85-43b5-b5c8-b35bfbc10ce9,1d23f8ee-d639-4262-a1e2-7d4f2fab36e9,698360004,Diabetes self management plan,15777000,Prediabetes +6392add8-96a2-49e5-a55c-eaa674273c23,2017-10-21,,fca38524-61ec-4a58-98fd-5b21ea40a6d1,75d74dd7-19b9-49fa-953a-d96513240156,326051000000105,Self care,, +228a8b60-1e6b-46c7-8334-99c296f6b541,2018-06-18,2018-07-02,fca38524-61ec-4a58-98fd-5b21ea40a6d1,660da556-abb3-4038-a4f4-be53de4241b6,225358003,Wound care,370247008,Facial laceration +4dd29dbc-21a6-4a45-adc5-3fb7928759dd,2010-07-07,2010-08-06,464391ec-edd2-4417-9adc-d219bb8623fd,ccc308ac-2fc6-4d7a-afe2-88f0e04ee2f1,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +c5331fd4-f525-461e-965d-d700de4c70b1,2007-06-18,2010-06-29,a065d0e0-1f47-40fc-aad4-3113f6ae0139,c2354f46-53c8-42c9-bb52-08db37ff0d03,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +12dad715-1eb8-4b9d-9d22-1f5f10d6235e,2016-07-17,2016-08-16,a065d0e0-1f47-40fc-aad4-3113f6ae0139,e838c667-373c-4b6b-84f7-48bd12d8d98c,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +05f4b239-6ecf-49c0-8b51-fefbfff280c3,2013-11-04,2016-11-13,a6c26299-f3fd-418b-bfcf-11865af89271,6796604a-ccc6-40db-9f76-09f54badd238,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +38e2f823-c2c0-42ff-b619-f87fcfe17d34,1935-01-22,,f415dc1d-d48f-4188-92f6-8904ee6b56ea,8ec514cb-d660-480e-b2bf-1ac31728e3b6,734163000,Care Plan,449868002,Smokes tobacco daily +994a53e4-7f13-4371-88a5-129c15ca2bb0,1935-03-11,1935-04-08,f415dc1d-d48f-4188-92f6-8904ee6b56ea,b40ef285-1423-4541-9c9e-409712d93088,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +9639aef2-9f2a-4d9f-9d8b-6f5e24fea221,1938-01-01,,f415dc1d-d48f-4188-92f6-8904ee6b56ea,66c35000-97b8-46d8-8e89-50e50cc58cd5,736254008,Psychiatry care plan,47505003,Posttraumatic stress disorder +718abf25-b8f8-4604-b1ed-b4de0fca2d23,1950-02-07,,f415dc1d-d48f-4188-92f6-8904ee6b56ea,cf7a1549-389e-4d2c-9f25-1c55d7835631,698360004,Diabetes self management plan,15777000,Prediabetes +3ae95f6d-2267-4d55-999f-dd1fde276d80,1956-12-27,,f415dc1d-d48f-4188-92f6-8904ee6b56ea,db8a373f-0c9d-4107-b69f-b8073672fe98,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +a321d56c-c467-4747-b4c9-628ab4aa458b,1974-03-06,,f415dc1d-d48f-4188-92f6-8904ee6b56ea,6712c0c6-7973-4d74-bfb8-a823c6f3dc6c,736252007,Cancer care plan,126906006,Neoplasm of prostate +e33bbab5-9827-447a-8b93-8f26e4828ff5,2008-11-24,2009-01-23,f415dc1d-d48f-4188-92f6-8904ee6b56ea,8cbb818b-67d8-4259-9334-95d828a03f5c,225358003,Wound care,262574004,Bullet wound +27feae6d-8add-4668-83fc-6cbe3dba17f6,2016-10-13,2017-01-11,f415dc1d-d48f-4188-92f6-8904ee6b56ea,979838aa-c0b1-4d3b-83c0-2808b1f3dda5,385691007,Fracture care,33737001,Fracture of rib +f022f008-5a0a-475d-822a-3e4a201f80a0,2018-01-06,2018-03-07,f415dc1d-d48f-4188-92f6-8904ee6b56ea,506f4553-b9d0-4eb0-8eb9-6d05996d0834,385691007,Fracture care,359817006,Closed fracture of hip +3c04ae9b-e177-406e-9e04-8de782d5f437,2012-04-07,2012-11-17,a3433cfb-4441-4904-9e94-dfb0bf302729,9c2200d0-a363-4d46-bb29-633cab6bc490,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +421aa2ef-fde4-4f64-84c5-c0db498526c0,2016-11-23,,a3433cfb-4441-4904-9e94-dfb0bf302729,a177b486-461a-4e7a-96f6-da365ec0b042,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +9b78614a-b843-4e27-b1ec-ed9c7da9c7a6,2011-08-27,2011-10-01,4b06f797-6507-49e5-9c8b-e31ce99fea4e,9c6b00e6-5e42-4a55-a845-5093835c7042,91251008,Physical therapy procedure,44465007,Sprain of ankle +144d3be3-d149-4352-ad5e-ea5148f1000d,2016-10-04,2016-12-03,4b06f797-6507-49e5-9c8b-e31ce99fea4e,440d3bf3-b79f-4409-9fec-d51dba9e5ec1,385691007,Fracture care,58150001,Fracture of clavicle +04fb760a-6e86-4889-8ea0-10626c60c103,2006-04-18,,509008d0-189b-4db9-887c-edb082c8575e,c0d7ad58-f8c0-4faa-9836-08e131091b8d,326051000000105,Self care,, +18f5b0b7-bc55-46f4-a549-9fe5344d144f,2010-10-15,2010-11-12,509008d0-189b-4db9-887c-edb082c8575e,f694ee57-620b-4f40-9e1e-974d5aac64ff,91251008,Physical therapy procedure,44465007,Sprain of ankle +36d9381d-3cdc-416a-8210-2d652f93ea7f,2017-09-06,2017-10-06,509008d0-189b-4db9-887c-edb082c8575e,7765c953-1a97-43a8-a6c1-d9f5710d445d,385691007,Fracture care,16114001,Fracture of ankle +33fc96bf-a16b-489f-883b-dc040aa7a0a1,2018-10-25,,509008d0-189b-4db9-887c-edb082c8575e,26ffdd02-a6f0-4e0b-8a65-a5198cf5a310,170836005,Allergic disorder monitoring,, +7de29071-3054-4d3b-900b-88388ebadaa8,1990-02-03,,a162962e-128f-45d8-bd69-35c36263c5cf,ab7dc8ea-0bb6-4999-8744-09256f11e809,698360004,Diabetes self management plan,15777000,Prediabetes +f4ae230e-d10b-4e32-8441-c4590885c471,2010-10-17,2010-11-16,a162962e-128f-45d8-bd69-35c36263c5cf,92b12e9e-2a40-4afd-ae88-963c3ce3d835,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +84ac4221-e166-4183-83ed-bb54b4915a0b,1984-04-13,,d053b013-36ec-4ec5-8622-4aa199dc89c9,a358cea4-a66e-43a4-a966-c184891771ac,698360004,Diabetes self management plan,44054006,Diabetes +5543122c-73e8-44e9-bdfc-46361a0b72c6,1995-11-10,,d053b013-36ec-4ec5-8622-4aa199dc89c9,246da39e-710b-4962-8b5f-728917331499,734163000,Care plan (record artifact),55680006,Drug overdose +ecbbb8ac-5559-40c6-9e61-bd026b35b325,2015-06-10,2015-06-24,d053b013-36ec-4ec5-8622-4aa199dc89c9,831161f4-34eb-4ce1-b06b-453e4fb41f42,225358003,Wound care,370247008,Facial laceration +05344544-cb40-48e0-ac79-4fcf32316554,1990-07-31,,4094d8dd-c473-4cbb-a2d2-afd77abb78b8,cd7ecf5f-0342-4462-b559-6e15212a281f,698360004,Diabetes self management plan,44054006,Diabetes +a9da3b45-5c3c-4536-b28e-5448d3544148,2004-09-14,,4094d8dd-c473-4cbb-a2d2-afd77abb78b8,58491046-69df-471e-b4dc-7cfb91fa80cf,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +f8bf2ca5-589e-4a45-9d5b-3b1f31fb3762,1963-02-05,,38bd8b04-d453-4317-9415-e63b97368e01,77cdc773-9802-4fac-b1a9-8c600e537e19,326051000000105,Self care,, +fe63c1c2-3675-46a7-95ee-5639764d75c4,1984-08-21,,38bd8b04-d453-4317-9415-e63b97368e01,e2382a70-1217-4142-bdfe-a123ffdf71b4,698360004,Diabetes self management plan,15777000,Prediabetes +f5d54adb-d699-42de-a884-ba73c40145f3,2010-08-20,2010-09-24,38bd8b04-d453-4317-9415-e63b97368e01,58699de9-ad3d-4b67-967f-1d7913fbe852,91251008,Physical therapy procedure,70704007,Sprain of wrist +0cb16057-fb9d-4324-887d-e41d4ed099f7,2013-04-04,2013-04-11,38bd8b04-d453-4317-9415-e63b97368e01,81416cb9-dc56-4d76-9a9c-09281e735ca5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bd3d889e-de90-4057-adca-ce18d0d386af,1984-07-19,,edae80ce-fa38-4f77-9654-bfb9e1fb1949,5033c979-4511-48a3-bdf6-2da5fb7d08fe,736254008,Psychiatry care plan,47505003,Posttraumatic stress disorder +e529460c-d38d-4238-bf0d-b6fc0bb80f17,2007-08-07,2007-09-01,edae80ce-fa38-4f77-9654-bfb9e1fb1949,4640db86-92e3-453e-8c95-05f0cfc15b33,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fcb579d2-16ca-4109-8308-59c64400cfc2,2008-12-25,2009-09-12,edae80ce-fa38-4f77-9654-bfb9e1fb1949,cc1a5866-e8d3-4d0d-b53b-e412d8dc0011,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +9f822842-fd1e-469f-a9cb-43818b2898c4,2015-10-17,,edae80ce-fa38-4f77-9654-bfb9e1fb1949,b9de2c5b-b0ac-44b9-91ef-8ebb30bf8e73,736252007,Cancer care plan,126906006,Neoplasm of prostate +9d395ec0-7b6d-44a6-9f56-e1c479afe582,2009-11-06,2012-09-10,590dbe4a-5c17-47b2-9d64-a55924b2ff06,7a7b79b7-7bde-4a17-9950-7221498cb90b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6fe593e4-3558-464f-92d4-902fe1af38c6,1998-11-18,,dc437309-bc06-46ef-bd06-1d286c462ebb,061801d0-12b0-4703-bfba-0ee0246154b1,326051000000105,Self care,, +d1f26c5d-419f-4edf-8c24-7de202f71ce2,1996-06-24,,809b9b18-36ee-4549-9e5e-5b8b341d23d1,b0e6facd-f68a-481d-a70e-c22e652aebb5,698360004,Diabetes self management plan,15777000,Prediabetes +fe0af7b1-7d8a-4ea2-a095-52aff150a02e,2011-03-28,2014-09-29,dc437309-bc06-46ef-bd06-1d286c462ebb,e8712c86-e990-4013-9ac6-81395fb22402,170836005,Allergic disorder monitoring,, +7160a636-a028-4775-ab1f-fc5f073b53be,2018-04-16,2018-05-16,97c41e8c-d247-4c21-bc38-aa77e0eee7c2,4e0060ad-6b67-47cb-99a0-257c14762d53,385691007,Fracture care,33737001,Fracture of rib +a3495abb-ca67-46da-ba2c-4f4268c8f65c,2014-10-27,2015-06-01,dc437309-bc06-46ef-bd06-1d286c462ebb,0fd35a61-c56d-4b8d-abb1-914e2c999359,134435003,Routine antenatal care,72892002,Normal pregnancy +6302a24a-a924-41df-81d2-4821b1feb928,2017-10-23,2018-06-04,dc437309-bc06-46ef-bd06-1d286c462ebb,6577b108-ace2-4dfe-ac4f-3a8be73c8e94,134435003,Routine antenatal care,72892002,Normal pregnancy +ad313302-5022-4c48-8a90-91965a24d2e6,2011-03-03,,3779ae34-13e0-450d-994e-4c252c2858a8,e7516099-e704-4bc0-a8cb-bfeba974a146,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +82db44e9-7039-48ff-8336-efe2348c1e5c,2013-02-24,2014-01-23,3779ae34-13e0-450d-994e-4c252c2858a8,3f45a241-3f72-48c2-b03c-8d3b7c359c10,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +df2399f1-4fb1-4d33-b6c6-48de39500cab,2014-01-23,,3779ae34-13e0-450d-994e-4c252c2858a8,2bd8ed9b-50a9-4584-993b-85c039c229bd,698360004,Diabetes self management plan,44054006,Diabetes +d28550b5-934c-4c16-945b-becfddbd9669,1997-03-12,,ef9f964c-1eed-409d-97bd-af0827b07b40,31a1347b-fe43-4ccf-a2af-52de546ad034,711282006,Skin condition care,24079001,Atopic dermatitis +11a123de-5c86-4110-87c8-4fb8ae697ac9,1997-03-29,,ef9f964c-1eed-409d-97bd-af0827b07b40,5bb013de-0988-4cc8-86cf-f2b98385034b,326051000000105,Self care,, +cf091c1c-44b1-4a36-b446-4a508c218d47,2000-05-15,,ef9f964c-1eed-409d-97bd-af0827b07b40,21c359d4-6d03-4b80-bd28-5336c1c7c11c,699728000,Asthma self management,233678006,Childhood asthma +1fddc1e8-0a20-4d60-9c0b-c5a65ac33ee4,2009-05-14,2012-11-15,ef9f964c-1eed-409d-97bd-af0827b07b40,b3c4ff93-7ea7-4ab2-98f0-9e5819a3586b,170836005,Allergic disorder monitoring,, +3b398c7c-7986-4b66-ac5b-caa020edfc12,2011-05-09,2011-06-09,ef9f964c-1eed-409d-97bd-af0827b07b40,c3f05fb2-a02d-498c-88c1-c15e96eabe92,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +240122cf-6917-456a-8bcd-eafc182c4473,2013-09-27,2014-10-02,ef9f964c-1eed-409d-97bd-af0827b07b40,1e2b9238-6a3f-4072-84cf-4459cc12913f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +710fb380-33cd-4ae1-8b58-c223eef872aa,2011-06-14,2014-07-15,205888f3-6f27-47dc-81f6-9141cb4947f7,c5a8cdb5-946d-4a85-9bce-27127e14c8c6,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +09c38899-2ce5-4387-95ce-7928173e985d,2015-06-19,2016-03-15,205888f3-6f27-47dc-81f6-9141cb4947f7,6a289b17-7bde-4464-9786-5f491e2c83f4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +9ce0bc94-f88d-4c3f-b180-5ec30c51e3e9,2014-12-31,2015-01-07,d5233590-3c5f-4c43-ad87-3618f7a37bbd,b206cdfb-2dff-4d33-90b6-ed8993bc4fba,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +9a384f1b-862f-483a-a462-92bf5d4b91f1,2015-03-29,2015-04-19,d5233590-3c5f-4c43-ad87-3618f7a37bbd,d91477aa-51a7-48ef-92c8-cf9ecc189aa2,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +a7e6e6ee-b224-4556-87c8-c77f3529e9bc,1973-09-01,,5bb704ca-2390-438d-96a9-0a6c0c1db6a9,b47c456c-5423-4612-8aac-6c6e471ec760,698360004,Diabetes self management plan,15777000,Prediabetes +ae81a2f1-35d1-4e6a-9c89-8584041d35d9,2010-04-15,2010-05-06,5bb704ca-2390-438d-96a9-0a6c0c1db6a9,5e5dbfbe-e5c3-4408-b312-2f23c498010a,225358003,Wound care,283371005,Laceration of forearm +f1eaa849-886c-4067-9142-018a369b0066,2016-01-07,2016-01-14,5bb704ca-2390-438d-96a9-0a6c0c1db6a9,5d164fb3-5282-4381-ad27-6ffd379534ce,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +1adff2de-4c57-4dad-a01e-1e03341f5b96,2017-11-25,2018-01-31,5bb704ca-2390-438d-96a9-0a6c0c1db6a9,f09e3801-0adc-41b9-8463-cd9b5b1ee0fb,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +74a8f95d-9ecc-448e-8194-b714f54d54fd,1979-10-04,,59def9f0-70fe-4351-b9b6-d5f52657ae47,538c0eef-22db-4dd6-9112-aacf6d070667,698360004,Diabetes self management plan,44054006,Diabetes +db29bfbb-ad40-4b7a-8194-4a9d1b43a009,1984-11-01,,59def9f0-70fe-4351-b9b6-d5f52657ae47,bf09f1fc-0a21-4e79-8a4b-55cd926fa5c2,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +62693591-f5e6-4fda-baa8-d1a979aa324e,2008-04-19,2009-06-13,59def9f0-70fe-4351-b9b6-d5f52657ae47,51efe824-1423-4051-bfd5-04a0f88e1016,395082007,Cancer care plan,93761005,Primary malignant neoplasm of colon +680956c4-52f5-4a39-9853-69107925ecbe,2012-04-28,2013-02-21,59def9f0-70fe-4351-b9b6-d5f52657ae47,e0296ea7-90ed-4caf-8eb3-a708bad5cceb,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0b7db274-c10e-431e-ace7-e5c22bdc8ddb,2013-07-28,2013-08-27,59def9f0-70fe-4351-b9b6-d5f52657ae47,604b4915-bea2-4282-8a42-c035eafb7caf,385691007,Fracture care,58150001,Fracture of clavicle +794f17a0-fd10-42de-9e7e-f6a8aa7a4a79,2008-12-15,2011-12-27,b2807b47-82f3-4a4a-ad34-28150e0b8470,96eb07b6-d77d-4ef1-b2e6-0bcabc6711d1,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +89093e57-9794-46ba-b4e4-7b38c1d9fe70,2010-07-06,2010-08-05,b2807b47-82f3-4a4a-ad34-28150e0b8470,beccbc7b-bfa0-4d12-87e5-bf854155160a,385691007,Fracture care,16114001,Fracture of ankle +c9e088d0-5f5d-4406-b276-7843fa740f1e,2011-06-01,2011-07-06,b2807b47-82f3-4a4a-ad34-28150e0b8470,319087aa-2212-47f5-b545-3ef5ee4ae26f,133901003,Burn care,403191005,Second degree burn +4005765d-355a-4a1b-9559-8d6375b30cd4,2013-03-22,2015-04-07,b2807b47-82f3-4a4a-ad34-28150e0b8470,0203fece-67f3-42f6-a031-162346a8b60b,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +90261baf-45cf-42e8-be41-5e66c2f29b0e,2014-12-06,,8dd3a8a0-57e0-4291-b461-748e48021461,6d1887fd-defd-471f-81f6-6d5eab5b8755,698360004,Diabetes self management plan,15777000,Prediabetes +e385e013-f873-46cb-832d-aa7a83a01e05,2016-12-14,2017-01-11,8dd3a8a0-57e0-4291-b461-748e48021461,7b125bc3-e84d-40b5-b0b8-ca631738c409,91251008,Physical therapy procedure,44465007,Sprain of ankle +8b023769-db43-4d67-b982-21a80b8476bf,1992-01-19,,ba9d609a-f70c-47f6-a4ee-3f594d2b6886,e00290dd-38de-4881-93bc-417545e932d0,326051000000105,Self care,, +fbca0075-cf5c-4d2e-9b86-eaf1f4115adc,2011-08-14,2014-08-24,ba9d609a-f70c-47f6-a4ee-3f594d2b6886,bc6e07a0-5247-4503-960c-2d5d25b827dc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bfd77b7e-c3bb-4956-bed2-6f74dba8415c,2014-12-28,2015-08-02,ba9d609a-f70c-47f6-a4ee-3f594d2b6886,bb8bf2f7-ff50-49d3-9877-2b90f3d5a0a6,134435003,Routine antenatal care,72892002,Normal pregnancy +247500d1-65ef-4893-9f22-a7fa71092f00,2016-10-23,2017-05-21,ba9d609a-f70c-47f6-a4ee-3f594d2b6886,f208412c-43fd-4309-a494-923bdd150865,134435003,Routine antenatal care,72892002,Normal pregnancy +25660f78-2c97-4bad-bc9c-e0f60c722498,1947-10-12,,06898f8e-e333-4b87-b912-e96f24e3f02a,ac81d29e-835a-4d04-85ae-7ace2d246b66,698360004,Diabetes self management plan,44054006,Diabetes +2a1a171b-2617-43fb-b56c-f28f9629d534,2002-01-27,,06898f8e-e333-4b87-b912-e96f24e3f02a,647ce58c-ca92-4cb4-a62d-3fe30af6530b,386257007,Demential management,26929004,Alzheimer's disease (disorder) +e5b3d5dd-bd6d-4468-b479-2547598825a4,2009-02-13,2009-03-08,06898f8e-e333-4b87-b912-e96f24e3f02a,3f3214e1-f5c8-4908-94d9-3271dcd9e1c9,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +a8c51dad-9255-4597-9bb7-b711a1d9594e,2009-11-05,2010-01-03,06898f8e-e333-4b87-b912-e96f24e3f02a,ce401a60-98d8-4fea-8378-fd0b59aac1eb,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +9e6fe50d-e3a6-49cb-bf96-0eff18f1b6e9,2013-01-24,2013-02-28,06898f8e-e333-4b87-b912-e96f24e3f02a,6ab7c13e-573d-45ba-ac82-d7ed2ba8abb6,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +f30fcfcd-d1de-4373-974c-e1321992d37e,2018-02-02,2018-05-03,06898f8e-e333-4b87-b912-e96f24e3f02a,c2f5dcfe-499b-4bac-bc79-971318a80bb7,385691007,Fracture care,58150001,Fracture of clavicle +c2909539-049d-494c-8150-c7fe102583b5,1980-02-08,,4396525e-cc22-46a4-8f89-9497686ba60b,34620524-b1ea-45fc-a674-7d7921b81074,718347000,Mental health care plan,36923009,Major depression single episode +e3d820a9-d421-4211-b72a-bf80ffc895a7,1980-02-08,,4396525e-cc22-46a4-8f89-9497686ba60b,4487963c-75e1-4b88-848f-0b42ea6a4d82,737434004,Major depressive disorder clinical management plan,370143000,Major depression disorder +5205d989-e276-4923-84c3-fdf09da9177b,2013-07-12,,4396525e-cc22-46a4-8f89-9497686ba60b,cc2279c3-34e7-4ae9-85d9-a5df54ed3773,698360004,Diabetes self management plan,15777000,Prediabetes +57e77328-edcd-4cfc-8501-fb688eacc611,2014-07-18,,4396525e-cc22-46a4-8f89-9497686ba60b,c309851c-9c32-406f-acd9-b1f72990dd81,734163000,Care Plan,449868002,Smokes tobacco daily +bb524714-0c21-41a5-a623-c13ba96e5e5c,1970-07-12,,ddbd4506-c104-432f-92e6-efc61b373faf,2b018c29-693e-44be-9bcb-a4f5655b5e01,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +29d6c81b-0b15-4571-b25c-a1e1b9df7c90,1999-10-31,1999-11-30,ddbd4506-c104-432f-92e6-efc61b373faf,644a3412-9c93-4320-8064-42158bf0088b,385691007,Fracture care,65966004,Fracture of forearm +e413a4f0-eb1f-4d98-97d1-23bce18c29a6,2002-12-14,2003-01-04,ddbd4506-c104-432f-92e6-efc61b373faf,17cb8bec-d194-4ca2-b338-82dcaa1cbbfe,225358003,Wound care,284551006,Laceration of foot +5d0ae21a-4db6-4b38-9b8d-7450b4f343eb,2003-03-02,,ddbd4506-c104-432f-92e6-efc61b373faf,4573cd1e-45b4-4539-9d5d-5ec1122e301b,386257007,Demential management,26929004,Alzheimer's disease (disorder) +e8cbff4f-4b42-4347-a64b-5e958efda3be,2003-12-30,2004-01-13,ddbd4506-c104-432f-92e6-efc61b373faf,5d11b6ff-ea8b-4dd6-8601-13350694f803,225358003,Wound care,284549007,Laceration of hand +cb39f682-3638-4905-b744-859b72fd03d4,2007-10-24,2007-11-28,ddbd4506-c104-432f-92e6-efc61b373faf,26bdd9de-51e5-4e08-bbd8-163903f7c201,133901003,Burn care,403192003,Third degree burn +d0eef50c-6a46-4f14-aea7-e91064d15490,2012-02-26,,265fbd2f-566f-4210-9ae8-2a4dbe689bf7,9cba4b9e-8b5e-4c79-961d-4eacd394f59d,326051000000105,Self care,, +c8f6f092-6823-4a31-a7e6-ad4469f24e69,2013-07-30,,265fbd2f-566f-4210-9ae8-2a4dbe689bf7,7ad46885-7fe7-465a-b438-3b1ef84ba445,699728000,Asthma self management,233678006,Childhood asthma +a5cbcffb-ef59-4f3a-9c6e-30e28d967247,2011-04-29,,63fdcffd-76d6-4ef9-9dcc-868186e82e09,2029e22f-8aeb-47be-8c37-30dfe9236af9,698360004,Diabetes self management plan,44054006,Diabetes +2e435fd6-0654-4d3d-b8d4-4e8d84bd7420,2014-06-09,2015-06-05,63fdcffd-76d6-4ef9-9dcc-868186e82e09,2fe13fdd-b143-4631-a7e2-d5d1681ef370,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5c7267de-3e0c-4a72-83cf-adae345002ae,2014-09-30,2014-11-04,63fdcffd-76d6-4ef9-9dcc-868186e82e09,c24bb320-4eee-4e40-82ea-096be7719622,91251008,Physical therapy procedure,44465007,Sprain of ankle +8d249e24-263e-455a-89f0-3bb8d574d083,1989-03-02,1990-03-17,3f12dc57-816d-44a2-9419-dab7861552a8,1c9a045a-4961-4381-803c-4485d1c36b15,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +45d72ac2-540e-45f7-9845-312faaa61ab2,2008-10-11,2009-05-16,3f12dc57-816d-44a2-9419-dab7861552a8,c20eed33-9bbb-415c-9c9c-c0368a1f1318,134435003,Routine antenatal care,72892002,Normal pregnancy +a171ba13-620b-4d4e-979c-08691cc11cf1,2009-11-21,2010-07-03,3f12dc57-816d-44a2-9419-dab7861552a8,f6939917-f4ec-443d-b20c-720d6e982907,134435003,Routine antenatal care,72892002,Normal pregnancy +f4da362d-123c-48c0-a27b-f1adf4ff5c32,2011-11-05,2012-06-09,3f12dc57-816d-44a2-9419-dab7861552a8,586eaa74-31c9-43b1-b634-9c0e92e88155,134435003,Routine antenatal care,72892002,Normal pregnancy +c2ee0169-fbd2-4122-8d65-4fec99202b33,2012-10-27,2013-06-01,3f12dc57-816d-44a2-9419-dab7861552a8,e51dbe13-4c26-44ba-8d5f-ae6097d4b4aa,134435003,Routine antenatal care,72892002,Normal pregnancy +0aa1c399-0785-4612-a07c-1ef9797e75c6,2016-05-04,,3f12dc57-816d-44a2-9419-dab7861552a8,53bef924-5de4-4261-87f8-ac7603517953,734163000,Care plan (record artifact),55680006,Drug overdose +fdfe21e8-f46c-4274-958f-dc5089226f23,2017-12-22,,3f12dc57-816d-44a2-9419-dab7861552a8,c026367f-b322-49d2-a83f-3a9e1bfc8216,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f5c9878f-2717-4a39-a1ea-ffec410ee8e7,2015-10-28,2015-11-25,ff048d6d-1115-4a2f-848b-1ecbbfb0706d,ab06d731-d8f7-4409-9284-2150053a8740,91251008,Physical therapy procedure,44465007,Sprain of ankle +80633428-e3d8-4c37-8e54-38564a670b6a,2002-11-11,,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,97a03fad-54ba-40c6-8567-ba1e88313a6f,698360004,Diabetes self management plan,15777000,Prediabetes +34fdc4c4-a884-4eaf-88bd-ef0a672275f8,2008-08-18,2009-04-06,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,6d676e67-5e76-40eb-84e4-0b803a129cb1,134435003,Routine antenatal care,72892002,Normal pregnancy +4f3b89fe-275d-4a2a-b289-f4722f5b4768,2009-08-24,2010-04-05,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,9dd4c7ce-59fd-401b-93f3-d05632bd116b,134435003,Routine antenatal care,72892002,Normal pregnancy +87da71ae-a11e-4471-8d9f-4df8732a78c8,2009-09-27,2009-10-04,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,9a3eab9e-8432-46b8-a510-428a0b2f5263,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f6b5e043-128f-4cb2-9e4c-44d68f5b048c,2009-12-19,2009-12-26,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,97e71910-0f6c-42ea-882e-f052b90d4101,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +3d2e0345-3f1a-4556-8841-8b89638b369e,2011-01-29,2011-06-06,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,e2dd9842-ce09-45f4-85bf-4a8f79b3b551,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d2c2e820-38c7-44d0-8890-3182ce0a2e24,2016-02-15,2016-08-29,656f3801-be97-4c4d-b6b9-ab3f25dc4f18,41cfd93b-2537-433c-9005-5ab0a2c9467e,134435003,Routine antenatal care,72892002,Normal pregnancy +f345906f-e608-428d-9a9f-7c52421c59be,2008-11-13,,78790778-4e00-45af-9498-01b739daf732,911bc20d-f964-415b-b111-032a4f098cd5,326051000000105,Self care,, +d305257e-63e8-4e0e-ab0b-8def8bd6a301,2015-10-04,2015-10-18,78790778-4e00-45af-9498-01b739daf732,44bb53c5-1484-484b-b299-dcb0bb08f89f,91251008,Physical therapy procedure,70704007,Sprain of wrist +922e4227-25ee-429c-892d-a9e19b831f5a,2004-03-05,,a8ed16fc-966c-4b56-b9e7-80bdf0afe366,c4c65e27-6254-4824-acec-8962d67479af,326051000000105,Self care,, +6703b7f8-7eb3-4f69-8358-b5fb164fa18c,2016-03-15,,a8ed16fc-966c-4b56-b9e7-80bdf0afe366,5dd35d21-a6fe-4064-a67f-fc3068006468,170836005,Allergic disorder monitoring,, +2188a47e-fb89-4503-a032-310d5fc68a4a,2018-08-21,,a8ed16fc-966c-4b56-b9e7-80bdf0afe366,b4af0dc8-1c99-4c0a-afba-38a95c4e1d3d,134435003,Routine antenatal care,72892002,Normal pregnancy +9a0d4d60-176e-4c68-ba50-406cc99f1949,2018-09-20,,a8ed16fc-966c-4b56-b9e7-80bdf0afe366,a80d0192-5144-455b-aea9-235757e73846,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +5fd05943-3da7-44ed-9c25-3f73f282e553,2007-05-11,,cd3b3d2d-6f8e-4e88-907d-a562cf5f7fe0,70139eeb-ce21-4f72-8528-5f34fac2375b,698360004,Diabetes self management plan,44054006,Diabetes +941e6695-807e-4212-891f-1950df7469b8,2009-04-30,2011-07-28,cd3b3d2d-6f8e-4e88-907d-a562cf5f7fe0,7572270f-661c-468d-aeda-63ffb22ab4ea,395082007,Cancer care plan,363406005,Malignant tumor of colon +d82a7787-e2c9-493c-ace9-759e9bb68bc7,2009-05-07,2009-05-22,cd3b3d2d-6f8e-4e88-907d-a562cf5f7fe0,656b8056-9336-4bc5-b811-ed7df1fe1b49,781831000000109,Major surgery care management,363406005,Malignant tumor of colon +51d6e5d5-b608-4af7-84cd-b03a6b13c548,2014-05-18,2015-05-30,406fb9c2-34b0-422b-a20f-198db2ae0154,8070b4f2-070b-4990-8c42-fe17298d5ba2,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +836faa71-65b5-40cc-aa3a-cf45e72d588b,1979-01-18,,ab996428-a991-4f87-a5a2-42a7949a1a9f,d40bca8b-6703-40d2-999d-e1c3f70c6c35,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +439b56fa-7d5c-4da9-a634-65ac020c655c,2009-08-13,,ab996428-a991-4f87-a5a2-42a7949a1a9f,64f9b5ce-9eeb-4499-8a22-2b9dc3cacd7a,386257007,Demential management,26929004,Alzheimer's disease (disorder) +c33db56e-9e04-4979-a279-bc63460be020,2013-05-19,2013-08-17,ab996428-a991-4f87-a5a2-42a7949a1a9f,7e7eade9-eaba-4ad0-89dc-04364848bfe2,385691007,Fracture care,263102004,Fracture subluxation of wrist +e6defb48-6c8a-44fd-bd35-3a55a8e2df3e,1915-01-22,,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,0d328500-5b0a-4843-b55f-d17628f68354,326051000000105,Self care,, +55c9d564-88ae-4df2-b522-6370cb187daa,1946-03-31,,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,1a10d616-d76c-4d47-b42b-46636efedc4b,734163000,Care Plan,449868002,Smokes tobacco daily +82fea9d8-4ece-4718-9ebf-65efb464a0b9,1957-07-15,,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,5f287700-4301-46ef-9386-d93822b58cc4,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +26a9c51c-d53c-4a2d-b003-9250d9f962e8,1967-11-12,,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,364440bd-b5a8-4846-9485-aae9ddb544b3,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +23a4d783-7ff7-4bb3-9f5e-158dd412b39c,1985-01-27,,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,85c98eb2-5beb-426c-8985-c2c403a4d319,736252007,Cancer care plan,126906006,Neoplasm of prostate +68022207-a11a-4c01-aacf-e476453a1fd0,1990-01-07,1993-07-11,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,5ab6fa7c-b495-4f2d-8094-04f1e53df707,170836005,Allergic disorder monitoring,, +d39ad843-8edb-43a2-b2a1-567f92b55d25,1991-09-01,1991-10-06,3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,1edd3194-e125-44ce-87ef-427d834e0b90,91251008,Physical therapy procedure,44465007,Sprain of ankle +9ccfa5e5-2009-42dc-8f39-204bdc3b545d,1989-03-04,1990-03-16,59670983-1492-4d64-9f66-dcf3b02fcbc9,a098ee4b-e419-472c-bc25-3ef808c7b6b4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c0fe335c-3cc6-488f-8915-7d749dde619b,1991-03-12,1992-03-27,59670983-1492-4d64-9f66-dcf3b02fcbc9,93341396-427f-4e8c-9c65-07e2c671d132,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +49b43d78-76a0-4942-804c-a5e079a40ffc,2005-03-08,,59670983-1492-4d64-9f66-dcf3b02fcbc9,5e1fb654-bf92-4f93-9ccb-9c8042416d37,326051000000105,Self care,, +bab2bacf-224d-4a7b-8317-56c1d2a62480,2009-10-07,2009-11-06,59670983-1492-4d64-9f66-dcf3b02fcbc9,8b85d37a-9e5f-45f5-82e0-2ad88a91d29d,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +f8737ff2-feee-4f63-97f4-0cbdbcf286af,2013-05-17,,59670983-1492-4d64-9f66-dcf3b02fcbc9,f754928b-60d6-4e6d-94ae-40fb771492f2,698360004,Diabetes self management plan,15777000,Prediabetes +6fbe2115-8710-42cb-b4e8-b83ec7e69342,2015-03-28,2015-04-11,59670983-1492-4d64-9f66-dcf3b02fcbc9,001c77f9-8634-4b77-9d73-a7e315532884,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +8aba3561-232d-4d8e-b131-0dd4ecde3796,2018-02-10,,59670983-1492-4d64-9f66-dcf3b02fcbc9,aebfa1d9-309e-4a87-bc8b-2384e73c9742,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +861b993e-85e7-41a7-9b57-fcbeac11aab1,2010-11-08,2011-07-11,04d978a1-7d93-46be-a173-288a389078a2,f4c8aa7b-f0b5-4bac-adb4-78648c2e9276,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8a03e8f3-d0c7-4454-be9c-bf0ac6e83799,2015-06-02,2015-06-30,04d978a1-7d93-46be-a173-288a389078a2,835a5a5a-62c8-4a7e-9fe7-9139afe339b7,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +64ef2324-92a5-42f2-b642-f7d55f184177,1960-06-17,,b96d33f5-8e5e-4040-b536-9e6436ffaede,d23ece9b-3c11-457b-bbaf-3d1919ef5246,326051000000105,Self care,, +9ea355ec-295a-415e-b61e-797b28965392,1962-10-24,,a8888089-e921-464a-986c-e8b7de882222,4e68e806-2930-4feb-acf9-bdd81ed6d8e8,412776001,Chronic obstructive pulmonary disease clinical management plan,87433001,Pulmonary emphysema (disorder) +8bfa4baa-3013-4258-86e4-318b448daf4c,2006-05-21,,b96d33f5-8e5e-4040-b536-9e6436ffaede,f55ecae7-b10d-4fa8-a72d-0820048141ef,698360004,Diabetes self management plan,15777000,Prediabetes +d4c83ea0-2aee-4ffa-9dd5-79c9fb44896f,2006-06-11,,b96d33f5-8e5e-4040-b536-9e6436ffaede,ab34fdab-9310-4cca-9ff4-bf5f15678149,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +8224bb2c-cf9f-4616-a4b6-02fea31b04cc,2008-06-25,2009-07-12,b96d33f5-8e5e-4040-b536-9e6436ffaede,e83aab48-44fe-410d-a0c4-f7efd4485437,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +b0393e97-aaf6-41d3-99c9-087fcb376d1b,2013-11-09,2014-01-08,a8888089-e921-464a-986c-e8b7de882222,837fb33b-6ee1-4917-a521-9995a81c7d3c,385691007,Fracture care,263102004,Fracture subluxation of wrist +6d07bb89-e040-4ce4-aa9a-8a5e40b5f9ca,2017-12-07,2018-01-11,b96d33f5-8e5e-4040-b536-9e6436ffaede,d15021a6-ba2a-48a2-a16a-c182083f1e1d,91251008,Physical therapy procedure,44465007,Sprain of ankle +4d778070-fc31-481e-8b91-8cc1e19bd374,1958-02-11,,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,8ece8273-251c-4e5e-a0c9-7f9829587b2f,711282006,Skin condition care,24079001,Atopic dermatitis +e266f135-565e-49ac-bda0-40a4ef9b55ed,1958-12-01,,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,3a622d9b-371f-4da0-9e98-20b7979a3b50,326051000000105,Self care,, +19ca701b-bcfd-439e-8f94-ead156a73c30,1961-12-12,,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,5008b854-04af-449f-9724-68f89bae451b,699728000,Asthma self management,233678006,Childhood asthma +6047c2fa-5538-43b3-8482-88a698d82006,2003-10-10,,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,dc8d55c4-2a8d-4fc7-b67f-1f49eedc3d1a,698360004,Diabetes self management plan,15777000,Prediabetes +86bfa719-cff0-440c-bc71-9e972ae9a947,2009-01-08,2009-06-26,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,0f8ef32d-c588-4f7e-9619-c9f60446f3b7,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7dedd2bb-fca7-4158-be02-8fe180c7ab3b,2017-01-16,2017-12-01,ed3b8194-5848-4970-9d7e-214eb3f4c0c0,aa1de451-38b8-4363-8845-f73f2cdd13df,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +e14b4536-c015-43af-a37d-163b425606e9,1994-05-23,,21f0af3c-d706-42af-bf6a-5307e5c8c68e,567ff986-7c8d-48b9-bedd-219beeac83f0,698360004,Diabetes self management plan,44054006,Diabetes +c7229abe-356d-41f1-a0f8-cfeff7c5b2b1,2012-11-08,2012-12-13,6314a95a-f1e1-4580-9285-44c82a237eee,bd5b0f8f-6e56-44db-a9f0-390ba70c00a2,91251008,Physical therapy procedure,44465007,Sprain of ankle +46fc2f3a-5421-46a7-8642-a9be3ed634ca,2014-03-06,,6314a95a-f1e1-4580-9285-44c82a237eee,76726eae-2c23-455d-9217-bb18b0d1669c,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +4a5978e8-d455-434b-8520-fad191d812ea,2015-02-01,2015-02-15,6314a95a-f1e1-4580-9285-44c82a237eee,f1d34248-779a-42a6-884e-6ccae2c5da28,91251008,Physical therapy procedure,44465007,Sprain of ankle +8837ae59-0682-4a6c-b256-ff059b38220d,2010-03-23,2010-05-03,21f0af3c-d706-42af-bf6a-5307e5c8c68e,c9ce32b9-2160-4300-877b-0857d58b1f77,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +99f3b0d3-c78d-4d7c-989c-861afcc45c3e,2016-03-11,2016-04-10,6314a95a-f1e1-4580-9285-44c82a237eee,a2a650f5-c30f-4480-bb76-1a9e843ec0f4,91251008,Physical therapy procedure,444470001,Injury of anterior cruciate ligament +e2576da0-1dcc-4bf5-ab95-5fd81409374f,1989-09-20,,39941f21-aa8a-4110-b074-b50d057ff5b7,f374343d-abc4-4569-afb1-59a5984dad0b,326051000000105,Self care,, +6b4f2862-bf6c-4aca-9308-210455adb658,2016-06-02,2016-07-25,21f0af3c-d706-42af-bf6a-5307e5c8c68e,c49d08a4-5c6e-4f0f-bb26-b1dc60d4d717,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +244795da-62b4-430c-8dd8-fb95b70731ac,2005-12-07,2006-07-26,39941f21-aa8a-4110-b074-b50d057ff5b7,6b23ff5d-aa82-4fb7-a5d5-ae8ef4702220,134435003,Routine antenatal care,72892002,Normal pregnancy +107b143e-fd92-4097-bfe4-94173639b617,2007-11-28,2008-07-02,39941f21-aa8a-4110-b074-b50d057ff5b7,5545eca3-f173-477d-97cc-325863f1148b,134435003,Routine antenatal care,72892002,Normal pregnancy +256e98a7-564c-457a-b0af-629a6517b633,2009-08-19,2009-08-26,39941f21-aa8a-4110-b074-b50d057ff5b7,9f7e1a65-3c6c-4e86-89e6-dcbd588359e7,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +cb7c71f5-1af1-4fb2-9124-97d139b90a38,2013-08-28,2014-04-02,39941f21-aa8a-4110-b074-b50d057ff5b7,088d097d-ec4f-4041-af23-8e9d8d51d1ba,134435003,Routine antenatal care,72892002,Normal pregnancy +bcee611c-e2aa-458e-8586-cc6fa9b9dd62,2015-08-19,2016-03-23,39941f21-aa8a-4110-b074-b50d057ff5b7,63f5abeb-e9ee-4d0d-88e8-866a35fe52c0,134435003,Routine antenatal care,72892002,Normal pregnancy +8381fa4c-e96f-428a-922f-6bdeb607b8ef,2018-08-29,,39941f21-aa8a-4110-b074-b50d057ff5b7,6d956fe2-11ca-4866-99cf-d1250f7b4396,134435003,Routine antenatal care,72892002,Normal pregnancy +5b6c75a8-8902-45e0-a484-b01a49c4fc86,2018-07-06,2018-08-05,21f0af3c-d706-42af-bf6a-5307e5c8c68e,01e3e45b-743a-476c-b1b0-66650ca3a5b5,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +7eb787f9-1b7e-42f8-8e06-6a33461f5eb4,1940-07-13,1940-07-27,c3ae1b6c-0b64-498f-b7d7-1045bc8142d3,c6e5680f-3f57-4dae-b7d5-f97110a34c66,225358003,Wound care,284549007,Laceration of hand +44f43b5a-7f99-4e16-af86-e9ef0828ea4d,2008-10-25,2008-11-24,e9eef22c-f4f3-45c1-8a4d-1a9b0c4cb1b1,fc9dfdc9-c593-4917-b818-a26b36e177f8,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +84aa21db-ce0f-4813-be56-b99f55806ae9,2013-06-01,2013-07-01,e9eef22c-f4f3-45c1-8a4d-1a9b0c4cb1b1,4b33bed4-3525-45e7-99e4-82cfa02bcf38,385691007,Fracture care,16114001,Fracture of ankle +5bd332a7-a32f-49e6-ac33-975189df4bc0,1999-09-26,2000-10-09,02b2d16e-425b-4b68-95ae-60f11e097942,1eede8cf-cdc3-410e-b1ea-c8d6ab58e1e4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +91f555b4-db2b-4684-b81b-235817501a62,2011-06-16,2014-06-30,02b2d16e-425b-4b68-95ae-60f11e097942,0d09b5a0-cd26-4640-8f55-c1a19429b0cf,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +6f49a6b7-3ebc-4ed7-8e73-eb691d833391,2016-04-22,,02b2d16e-425b-4b68-95ae-60f11e097942,0c4c1266-5339-41e9-8c1d-e2abf7414870,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +728f9511-3b37-4aca-9a48-8430acf347d3,1967-08-13,,0a0999cc-7b77-4f61-be77-9396f613bd6a,6fed39b1-6811-4275-a98c-0d25d277201e,698360004,Diabetes self management plan,15777000,Prediabetes +d4389672-e2b0-4f5a-a54f-85941c2dfa20,1978-02-19,,0a0999cc-7b77-4f61-be77-9396f613bd6a,3124c184-0b0a-4c1e-afc5-724936a5cffd,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +48c85baf-6159-4501-bd49-fe84b2c078ce,2001-01-01,,0a0999cc-7b77-4f61-be77-9396f613bd6a,4ab083f0-1a0e-4b87-9bea-e722c2c2aeca,736252007,Cancer care plan,126906006,Neoplasm of prostate +d17ba2e7-579f-46b1-b3fc-42b1757232b0,2009-06-12,2009-07-17,0a0999cc-7b77-4f61-be77-9396f613bd6a,cef0bc5a-4e33-4b8a-b883-3bbc3e4a6265,91251008,Physical therapy procedure,44465007,Sprain of ankle +82d7230f-9793-40ce-889b-d643d8daf78f,2011-07-07,2011-07-28,0a0999cc-7b77-4f61-be77-9396f613bd6a,44d3ec60-2db9-4f9e-b591-822f3437f671,133901003,Burn care,403191005,Second degree burn +8a1614e6-2b03-4ac8-8ae5-0ffafb8b7a7c,2016-08-31,2016-09-07,0a0999cc-7b77-4f61-be77-9396f613bd6a,6c7fd423-f95c-4c0d-9397-7bff711042d2,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d48cdc07-29c1-4955-8c00-b9eb79817590,1988-03-23,,d4056ab4-8dee-434b-a6c3-4a3bd1408669,9ee26a94-6688-41a5-8257-46e97d5eefdb,718347000,Mental health care plan,36923009,Major depression single episode +6d55f2c6-fc47-4ca6-aa46-c255a2e8560b,1988-03-23,,d4056ab4-8dee-434b-a6c3-4a3bd1408669,dafa3145-1071-4e16-89b1-623bc2afd54e,737434004,Major depressive disorder clinical management plan,370143000,Major depression disorder +2bf2c707-4c9c-4aee-be9a-5831e825fc68,1991-10-30,,d4056ab4-8dee-434b-a6c3-4a3bd1408669,ce74c741-56b8-458f-871e-92e616d51233,698360004,Diabetes self management plan,15777000,Prediabetes +52bb7fb8-0317-4c7c-89f3-fc87a7e6d87e,2015-05-17,2017-05-31,d4056ab4-8dee-434b-a6c3-4a3bd1408669,2a8db0e2-8cb6-4e38-bc84-3a38217469b6,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +962a1cda-4cc5-407f-b20b-f776acfb31e8,2017-02-23,2017-03-09,d4056ab4-8dee-434b-a6c3-4a3bd1408669,cebdd0ce-bd9b-4f91-a11a-9bcbc6e84fe4,225358003,Wound care,284549007,Laceration of hand +8e91a6a8-30ea-4160-ac93-49f0825c33a7,2017-03-09,2017-03-16,be3764a8-b3a8-46e6-bccb-28b48ba6f37d,b3a17760-de3e-4f1c-9438-f124bb5e3749,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +49e2db79-ec06-46f5-9558-aa189cb75131,1996-05-03,,de8ca91c-fa83-4802-809a-1835a76c70ac,4f8a76a7-3c0d-4cc8-aa0c-818ae03d9444,326051000000105,Self care,, +aaaa2f86-c9fc-4fde-b2a1-03086ebf4282,2008-06-12,2011-12-15,de8ca91c-fa83-4802-809a-1835a76c70ac,61ae81b7-afc0-4c95-85ab-5cf7477f0bed,170836005,Allergic disorder monitoring,, +3825384d-3da8-4f01-bc64-a6394e620fcf,2010-04-11,2010-05-16,de8ca91c-fa83-4802-809a-1835a76c70ac,fc89d088-04ab-48f2-959b-e6fedb15dc2c,91251008,Physical therapy procedure,44465007,Sprain of ankle +ee337f12-fd4d-4395-b061-e814b157e407,1949-07-25,,e3483c91-3b8e-4d37-97c1-f509066cbdbd,7f077792-6e50-4f30-980a-3f6ce2e0fd6a,326051000000105,Self care,, +4fbecbf2-d237-4a14-a6db-83ab57c6bb56,2009-08-22,2009-08-29,e3483c91-3b8e-4d37-97c1-f509066cbdbd,45ecab08-fb7a-454d-8965-17719a80a4d5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bfef0836-0648-4264-8e8d-304851c1e26b,1972-04-09,,af6a280b-7d1d-47ad-bc36-9b5c7ff7ff6e,0bc37899-043f-4a7f-a7fd-5885ad893d05,698360004,Diabetes self management plan,15777000,Prediabetes +e968ab62-46cf-4fff-a42f-409fd43dd252,2009-02-19,,6ca0237d-2d63-4501-8fa8-96e6fc1d1beb,9afd3746-d2c6-4f0f-961c-53a57c6a1278,326051000000105,Self care,, +2d6ffd54-dc6d-4b8c-873c-9b1f7037368c,2011-08-01,2011-09-30,6ca0237d-2d63-4501-8fa8-96e6fc1d1beb,7a518ed4-d96a-40ac-bf2d-b170c546502b,385691007,Fracture care,16114001,Fracture of ankle +55973733-fdbf-47c8-be7a-2a8a31a3a17d,2014-12-18,2016-04-07,6ca0237d-2d63-4501-8fa8-96e6fc1d1beb,bca94e55-b07d-4531-85e0-b684c54cb8d2,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +a0f8d611-fab8-47d8-b6e7-c5f809ead6fc,2011-06-05,2012-04-10,52294d4c-b811-4de3-ace1-e2358f4ccb49,66569261-e557-4a8e-84ac-4c807f46060d,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +f64153ac-b7b3-43c1-8572-f2ee7d963bcb,2013-03-24,,52294d4c-b811-4de3-ace1-e2358f4ccb49,be4917ee-1ea1-473c-a700-23522cb056dd,386522008,Overactivity/inattention behavior management,192127007,Child attention deficit disorder +406ac7b6-1613-4482-8803-62ab73e918a8,2018-06-05,,52294d4c-b811-4de3-ace1-e2358f4ccb49,2cb7b0e0-272c-49b7-90b2-3890445b2600,134435003,Routine antenatal care,72892002,Normal pregnancy +ab925a4d-43b9-4087-be27-04c731e1dfc0,1936-03-15,,3f996c8b-f86d-4811-b298-eef1af3ed783,1057d19e-2f2b-4f3f-99f4-272286ab8063,326051000000105,Self care,, +4c407e0d-6ba0-4f32-8c64-1caf865f1901,1974-09-03,,c3c7f37d-92fd-46d4-b671-3659c1b5f979,0b4106a8-97a7-4cf9-a3ee-be10af5c7fc5,698360004,Diabetes self management plan,15777000,Prediabetes +b708ee38-0e66-443c-9207-1546d957063b,1973-12-02,,3f996c8b-f86d-4811-b298-eef1af3ed783,8d434d7e-9688-4a77-ba59-1063684dda69,698360004,Diabetes self management plan,15777000,Prediabetes +67e1548f-1386-4217-934b-853412ccc177,1982-10-10,,3f996c8b-f86d-4811-b298-eef1af3ed783,dbfe5b27-3404-46a2-b3d4-aac6a7a894ee,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +3765ff31-b41a-415d-acb3-31a7507f618f,2016-11-29,2017-12-12,c3c7f37d-92fd-46d4-b671-3659c1b5f979,442fd7da-9c4f-4bcf-b6f4-b2aa981e6d31,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +01f18193-f59c-4a65-8a2a-7ae4c612cce1,2011-02-20,,3f996c8b-f86d-4811-b298-eef1af3ed783,3247fcd7-d8df-462f-9ea4-0794670f0339,386257007,Demential management,26929004,Alzheimer's disease (disorder) +2398972a-9940-45df-9b4a-9112c6589e82,2011-06-03,2011-07-03,3f996c8b-f86d-4811-b298-eef1af3ed783,979f596b-e154-4769-aa60-5e429cc39e46,385691007,Fracture care,263102004,Fracture subluxation of wrist +191711c6-6242-478f-a8d7-94107fb47a48,1988-09-09,,51aabd7d-222a-4add-be50-dd5ac0d2b94f,78d822eb-ac5d-40b2-9a3f-901ba365d830,412776001,Chronic obstructive pulmonary disease clinical management plan,185086009,Chronic obstructive bronchitis (disorder) +3f5d840d-6164-436a-835d-b27706a7ca60,2013-08-14,,51aabd7d-222a-4add-be50-dd5ac0d2b94f,8307062e-4e8a-4776-bd78-21062c271ebd,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +b0b5efd1-0cbc-45af-8cd1-347dc49f3c50,2014-07-04,2015-07-17,51aabd7d-222a-4add-be50-dd5ac0d2b94f,2f2944a6-00ad-46f4-9e24-b42a26fde80c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +cde2cfb8-dde3-41be-af6f-b1da81b3e888,1962-09-01,,5fb5e78f-6e36-43f7-b597-09cf2312ee85,4eb52286-920f-443b-a88a-e4cf2e45a630,326051000000105,Self care,, +603683d8-3dbb-4500-acc4-ba4187a48f2b,1984-02-18,,5fb5e78f-6e36-43f7-b597-09cf2312ee85,1712fbf3-057f-4a80-b91c-b8657de77ae6,698360004,Diabetes self management plan,15777000,Prediabetes +11ab8d1d-2934-42d0-ae94-6e5d85b1f02f,2017-07-09,,5fb5e78f-6e36-43f7-b597-09cf2312ee85,04bbebf9-b898-435c-a2a4-1b4dd91b76b9,395082007,Cancer care plan,109838007,Overlapping malignant neoplasm of colon +9367e230-84c0-44e1-8ddb-13096d002ad7,2017-07-16,2017-08-04,5fb5e78f-6e36-43f7-b597-09cf2312ee85,7854adc4-372b-4de8-bb3f-b76ae6c1fbb9,781831000000109,Major surgery care management,109838007,Overlapping malignant neoplasm of colon +a587978a-3a5b-463e-8540-e07ebeb70c4c,1990-04-23,1990-04-30,a3792a8a-0d49-4a50-ac6c-ecc543fcbf0d,5e65ab06-e4bf-4e14-bedf-8abbf97697eb,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +84d98193-7bfa-4c91-8035-84278108b58b,2004-06-17,2007-06-26,a3792a8a-0d49-4a50-ac6c-ecc543fcbf0d,9b6955cf-dd4b-459e-a5c8-b6bf5509e4bc,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +eed523d1-8484-4da2-aed4-e350a80e6779,2018-10-28,,a3792a8a-0d49-4a50-ac6c-ecc543fcbf0d,f4362b0c-72f3-4786-b021-4e5163a3985c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +0bb04b4a-6778-4f5b-933a-f76fce3c9370,2007-08-15,,c1663d95-ba52-4774-95fc-63cbbda894ed,511d51ae-c207-4a3c-823f-b00282e6314c,698360004,Diabetes self management plan,15777000,Prediabetes +59895ae3-69f8-49fe-8f65-74adba06a3a4,2009-07-01,2010-02-10,c1663d95-ba52-4774-95fc-63cbbda894ed,90f596cb-e634-465f-9d35-06f02ac73bbc,134435003,Routine antenatal care,72892002,Normal pregnancy +f2a9d52e-9932-4c05-a1c2-3d337df665e6,2014-08-06,2015-03-11,c1663d95-ba52-4774-95fc-63cbbda894ed,2b91f6b9-e664-4a7c-866a-0b2f59d64b1e,134435003,Routine antenatal care,72892002,Normal pregnancy +ea845c84-5485-4ab4-acb7-17bd0a914b79,2016-06-28,2016-07-05,c1663d95-ba52-4774-95fc-63cbbda894ed,c2b5b9ad-e777-425d-9308-57280e66d4cd,869761000000107,Urinary tract infection care,38822007,Cystitis +d67a6b35-460e-4ef4-ab1a-a1f0f623db17,2017-08-02,2017-08-09,c1663d95-ba52-4774-95fc-63cbbda894ed,9ab0f623-7609-4216-8310-5828358a3dd5,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +4201578f-db93-4801-8789-6d4480d17d57,2017-09-13,2018-04-11,c1663d95-ba52-4774-95fc-63cbbda894ed,19db69b4-9ba4-46fb-9c5c-e2392fad447b,134435003,Routine antenatal care,72892002,Normal pregnancy +85a32ff5-58a7-4607-b497-f3741ade6c18,1978-07-17,,8e057ef4-be52-4473-8782-81b58543a47e,0122e2a7-87d8-4512-9eab-17f96fc1dd3f,698360004,Diabetes self management plan,15777000,Prediabetes +27dfb515-8e01-4139-9ea6-ec7edf4d2478,2009-11-27,2010-04-05,8e057ef4-be52-4473-8782-81b58543a47e,95516c7c-1c58-430c-9204-bbbd308eaab5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +41e8c549-565f-4d7f-ad6b-54c344c3b2d3,2011-04-05,2011-05-05,8e057ef4-be52-4473-8782-81b58543a47e,6b761693-f2bb-4ed4-85c0-1ce021dfe2fc,385691007,Fracture care,263102004,Fracture subluxation of wrist +a2f956d8-f973-48fd-ad1e-59d428a4cea5,2016-10-05,2016-10-26,8e057ef4-be52-4473-8782-81b58543a47e,c0a8122b-ed69-4f9b-8667-09c0c706d727,91251008,Physical therapy procedure,70704007,Sprain of wrist +e59ca242-5f9e-4ffb-bf1e-60446b316a87,1985-05-27,1985-06-17,9c21a20e-6859-4d64-91e5-809980aeb14f,8d62f5f4-aa40-4e6b-b5c9-9a94c9dbd120,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +f727c960-f2fe-4164-bdc1-79b18925b919,1997-08-31,,9c21a20e-6859-4d64-91e5-809980aeb14f,52c29a51-76f5-49eb-b570-28419902663e,698360004,Diabetes self management plan,15777000,Prediabetes +823c92a6-f66b-44c6-9140-764ab35f8481,2008-08-10,,9c21a20e-6859-4d64-91e5-809980aeb14f,99134185-8b95-44dd-8a25-ce329b0c43aa,872781000000100,Musculoskeletal care,201834006,Localized primary osteoarthritis of the hand +bde1a6df-aee2-49a4-8974-6536b3dc7380,2011-04-14,2011-06-13,9c21a20e-6859-4d64-91e5-809980aeb14f,bd2b6ee8-184c-4375-8a6a-7832cfb04653,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +ee793f7c-9c46-42d3-852b-915793a7cc96,2012-05-08,2012-06-07,9c21a20e-6859-4d64-91e5-809980aeb14f,b5547d8e-5b79-4e4a-aea3-853596756cdd,385691007,Fracture care,263102004,Fracture subluxation of wrist +d58e74f2-6833-4fc7-95b9-455e05e99b45,2013-05-03,2013-07-02,9c21a20e-6859-4d64-91e5-809980aeb14f,908b8bf2-4388-4fa9-b7bb-4e55eb3bf822,91251008,Physical therapy procedure,307731004,Injury of tendon of the rotator cuff of shoulder +5f531eef-cc47-4bbc-8790-4f9eb60a3068,2016-07-31,2016-08-07,9c21a20e-6859-4d64-91e5-809980aeb14f,cfb2467f-4217-4bdb-93f3-56c7f4b13c3f,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d9f9ed14-3c58-49b9-9cd7-1f97b3cc5794,2018-01-07,2018-02-06,9c21a20e-6859-4d64-91e5-809980aeb14f,d1a3e15c-952a-40f6-b347-6e70e0cdc0be,385691007,Fracture care,58150001,Fracture of clavicle +0553cddd-ed2a-4abc-b709-2d04fe0686e9,2012-12-13,2013-07-18,27575e33-8519-47a4-b7dc-2b779b2cf156,bcc7bd50-38bb-45c2-8cc8-b4491019eb03,134435003,Routine antenatal care,72892002,Normal pregnancy +6286e94e-1c70-48ae-8531-9fd9e6622f83,2007-11-25,2008-12-07,908844a2-8691-46a9-8333-d227b95cdcab,2495a49e-5c06-459c-9bc5-e81d6c4fe796,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ddcc8fa9-e325-4c56-ac88-6e0bd9a20742,2009-11-30,2009-12-07,5516d9cf-45b4-43b4-8af9-7075d5c0cc8a,e8a7bd17-d5f1-4c66-a379-8a45d7530ead,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +101beba5-7738-475e-8e79-05b09eae314c,2011-01-06,2011-01-20,5516d9cf-45b4-43b4-8af9-7075d5c0cc8a,241c82bc-c2b9-47b5-87eb-13fc5a7562b0,91251008,Physical therapy procedure,70704007,Sprain of wrist +06bc8fc8-ab2f-4cd1-93c0-56fde43081fa,2013-11-05,2013-11-26,5516d9cf-45b4-43b4-8af9-7075d5c0cc8a,692ef5c6-9ef6-4ecb-bdbf-99f913a597d7,91251008,Physical therapy procedure,44465007,Sprain of ankle +699c8efd-331c-4617-8c7a-d5971961097b,2011-02-24,2012-06-13,f579169a-1280-4166-b91b-40a3cd0532f4,59ee4098-7a98-48dd-ba2f-345cd30c742c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +c28447e1-4015-4b0d-853a-4c78db762f78,2013-04-01,2013-04-29,f579169a-1280-4166-b91b-40a3cd0532f4,02973fbb-289b-4e88-9888-b3fab4176ee8,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +7ef66f87-f4ea-407a-8c9d-765aa30bc5ac,2016-12-27,2017-01-03,fcf0f85e-a1eb-4664-8d25-c13fe3ac9f0e,e5059514-d973-43dc-969f-1781a88471d4,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +fefa3f8b-a430-4807-a645-8ac773650a86,2012-11-09,2012-11-16,fb8fa5ea-59df-4a14-a195-21c7e53a5f0f,afe551fb-89db-4af6-a9b5-44f3a3eedeb8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +ab29a1c2-88e4-446e-a720-31553cf32adb,2016-02-21,2016-03-06,fb8fa5ea-59df-4a14-a195-21c7e53a5f0f,8c108814-ef48-4d14-b618-5736daff448c,91251008,Physical therapy procedure,44465007,Sprain of ankle +617c2568-45ea-483a-8674-9c84228fc9a8,2018-09-17,,fb8fa5ea-59df-4a14-a195-21c7e53a5f0f,07326a19-2dde-4c93-bed8-64ae0988e5a8,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +be527aec-6965-4d8b-82b1-05ed7ba7ba19,1976-06-27,,253e4a36-51fe-405a-a013-aeaf0bd5fa76,55cc93aa-8332-4682-bc36-e339e0d1db7c,698360004,Diabetes self management plan,44054006,Diabetes +10495a80-4420-4fb0-891f-4801cc4c90e9,2012-11-24,2012-12-22,253e4a36-51fe-405a-a013-aeaf0bd5fa76,34782899-3e48-4419-9e9d-df585bebef6a,133901003,Burn care,403192003,Third degree burn +ec5809c2-5792-4e72-ae9b-af50005de154,2015-02-04,2015-04-05,253e4a36-51fe-405a-a013-aeaf0bd5fa76,8f38ab08-26fc-4245-8000-1403bb46e687,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +60e736fa-7fed-4adc-901a-f7151a53acb3,2017-06-25,2017-11-26,253e4a36-51fe-405a-a013-aeaf0bd5fa76,3e777e72-cfa4-4ccb-adcc-48d0d9fddb28,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +894d397e-7385-460a-ab34-748190cec574,2006-07-10,,3dd17bae-5fa3-40d7-9221-769e6bc15345,56c1debc-8c75-476c-a199-fd0179758239,698360004,Diabetes self management plan,15777000,Prediabetes +d10668c6-c86c-47a2-937e-1abb945ec59c,2012-10-19,2015-05-11,3dd17bae-5fa3-40d7-9221-769e6bc15345,e5e0b135-c2e4-4326-8c28-ba71857d8963,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8f6f36bf-26fa-46ee-9cec-d22cfba08487,2017-05-15,2017-12-18,3dd17bae-5fa3-40d7-9221-769e6bc15345,3ba800cc-1ee1-4e00-ad36-3376d93c6755,134435003,Routine antenatal care,72892002,Normal pregnancy +cc6aac32-00cf-49eb-9d6c-55b5b697b49b,1996-09-03,,0adef127-4b45-4daa-8834-92b3de6347e6,343d87c3-5863-452c-ac67-a49c60375a77,698360004,Diabetes self management plan,15777000,Prediabetes +9f3ea519-5944-4fd1-83b6-808b686f7072,1979-08-30,,a6452d01-2610-43bd-bfba-3b7b09d97d7a,02837cd1-2057-4cfb-9500-606b5e52504c,711282006,Skin condition care,24079001,Atopic dermatitis +a53aea5e-3c62-4132-a940-62ee6cb1014d,1966-03-26,,d1125dcc-3318-415e-8546-db95b5d67823,6e05a5d6-d027-45bc-bac2-821a2df24e75,326051000000105,Self care,, +c979761b-5b2e-4045-b197-974a59add39e,1989-05-25,,d1125dcc-3318-415e-8546-db95b5d67823,8f2e84e6-6948-4518-98cb-0dc142f2e86c,698360004,Diabetes self management plan,15777000,Prediabetes +8ceeaf19-ec41-4c6e-835e-d8bdf2e8f3df,2011-09-29,2011-11-03,d1125dcc-3318-415e-8546-db95b5d67823,857953f0-4bd8-4b46-abbe-011232ff1562,133901003,Burn care,403190006,First degree burn +a5c887c5-24de-4216-bbd2-97269e35c8fe,2012-08-26,2012-09-02,d1125dcc-3318-415e-8546-db95b5d67823,3e092a14-8c15-42e0-ba38-205233694a29,869761000000107,Urinary tract infection care,301011002,Escherichia coli urinary tract infection +2306c4a5-56ed-4e43-8cb8-b77f98ab5c50,2018-09-28,2018-10-12,d1125dcc-3318-415e-8546-db95b5d67823,e2133ec2-9d3d-4203-892a-f6e2bbfe2d04,869761000000107,Urinary tract infection care,38822007,Cystitis +d1354a64-4c20-479b-b606-157052982944,2017-04-22,2017-11-25,9b2d07aa-4447-42b0-bc18-9dcf6a7ff4da,6859caa0-9390-4ae4-9738-68bf29a47358,134435003,Routine antenatal care,72892002,Normal pregnancy +15820229-ee77-4506-9278-b756b03de6e0,2014-02-23,2014-09-06,3cb871f5-3fb9-4754-9fac-698dabb87cd4,c365d5c2-340d-45ea-9734-fb1f2fc8ced5,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7f290365-9d84-46a7-a4bf-d9701a7882e4,2017-12-02,2018-01-31,3cb871f5-3fb9-4754-9fac-698dabb87cd4,962989cb-5b77-441c-8ca6-c6dad5ac47c3,385691007,Fracture care,16114001,Fracture of ankle +88984aa9-3c10-4e77-b19a-f6ac648473f1,1995-11-25,,87e70e3b-9910-4493-9a01-06b130d859ff,4324742d-9427-4121-8429-167314b531b5,698360004,Diabetes self management plan,15777000,Prediabetes +5eb8aea8-f6da-44be-8457-07d117534a0e,2011-11-03,2012-01-28,87e70e3b-9910-4493-9a01-06b130d859ff,c267c0b2-e052-4dc6-a0ae-c1dc022872a2,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +328f0ac7-5e50-442e-a012-230939bc6fdb,2015-03-07,,87e70e3b-9910-4493-9a01-06b130d859ff,d92251f1-831a-487d-a4c4-e46a203523da,736285004,Hyperlipidemia clinical management plan,55822004,Hyperlipidemia +91cee6ed-55c9-49cb-9370-127c8ff4f2e7,2003-10-24,,41b78ade-9061-4018-af0f-d35cbcd2076c,623bd87f-82bc-4165-b0c0-e5a11f08dd5f,872781000000100,Musculoskeletal care,239873007,Osteoarthritis of knee +3720e1e1-d876-4bfb-a00b-31b9ed738287,2012-06-13,2012-11-21,41b78ade-9061-4018-af0f-d35cbcd2076c,b00fc118-98a4-4bad-ba0e-662091c33c08,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +183d32ff-81dd-4f5b-96d5-959760d51e4c,2016-11-30,2016-12-14,41b78ade-9061-4018-af0f-d35cbcd2076c,ebce5d9e-6455-424f-ad71-39ec659649db,225358003,Wound care,284549007,Laceration of hand +bd8e4692-6b67-4b7e-899c-14be157d5105,2017-01-30,2018-02-14,41b78ade-9061-4018-af0f-d35cbcd2076c,dada441c-6e7a-4039-b83a-1548ca3a2a41,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +bfb06910-49fc-462a-b3eb-0bd1f41f32c8,2018-02-14,,41b78ade-9061-4018-af0f-d35cbcd2076c,115e1934-e7d8-412d-ab8a-3c7342f63d31,698360004,Diabetes self management plan,44054006,Diabetes +0cc8387c-63d9-4a14-801e-d644ecd798f0,1940-01-24,,035f549c-c2cb-4428-a856-2b0e1fadeb84,62d26336-4d19-43bf-acb7-69294366d7ef,326051000000105,Self care,, +10eb3164-7239-468e-8728-b894528b3e01,2002-04-03,2002-05-03,035f549c-c2cb-4428-a856-2b0e1fadeb84,380060b5-e43a-445d-90f8-5dd2c9619e57,47387005,Head injury rehabilitation,62564004,Concussion with loss of consciousness +0b8f1aa4-7ac3-4823-af7a-034f3b9882dd,2005-04-20,2006-05-01,035f549c-c2cb-4428-a856-2b0e1fadeb84,4492cc0b-619d-4cc3-9ff9-417f0d93b807,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +d17b5aa7-e61c-42d3-9c05-3cfc31ac3c84,2011-01-16,2011-04-16,035f549c-c2cb-4428-a856-2b0e1fadeb84,f7fe6085-67cc-4029-832e-740c70fc50b8,385691007,Fracture care,16114001,Fracture of ankle +a72cd210-fa9f-4991-a993-9ef5cacfbffa,1945-04-04,,b3d2e30c-1257-4e2c-9c74-81a58cbf15bf,a5d41803-1807-4d89-8765-15acf2790905,699728000,Asthma self management,233678006,Childhood asthma +550e7006-812c-4fc2-9252-4cc3ca35ae3e,1987-05-28,,b3d2e30c-1257-4e2c-9c74-81a58cbf15bf,f6b8b25e-ed7d-437b-bb18-261c385fc35a,182964004,Terminal care,67811000119102,Primary small cell malignant neoplasm of lung TNM stage 1 (disorder) +dfa7f807-3d92-4560-af94-6d14df4c165a,2009-01-29,2009-03-05,eeb60d05-767e-4ee4-94d5-20a209018b9e,130f374c-0691-42d2-ae2b-766ec986ddac,872781000000100,Musculoskeletal care,39848009,Whiplash injury to neck +d545c391-fc48-447b-9236-64d40c44502c,2015-11-29,2015-12-29,eeb60d05-767e-4ee4-94d5-20a209018b9e,12c4cd10-79a7-4ca5-888f-acdbd0989909,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +3e6b14cb-8b06-4ef5-a63f-811c062e9eef,2017-11-14,2017-11-21,eeb60d05-767e-4ee4-94d5-20a209018b9e,2465d69c-dc54-46c8-9985-98394d1fe399,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +93a68497-deb8-40d8-8db1-cbd5a0ce0cac,2011-04-07,,b9424bc3-5ec7-4485-8858-ef1eb5c2c3dd,e907a00c-c51b-46d2-9868-e04c1351bd4f,326051000000105,Self care,, +42189aa6-88a0-4a9e-bd2a-b32c67b55f92,2012-06-17,,b9424bc3-5ec7-4485-8858-ef1eb5c2c3dd,4633ca82-b6e2-40e2-aaae-d2d471ffad7c,699728000,Asthma self management,233678006,Childhood asthma +c0df60d2-9ca9-4307-86d4-31f2c660b407,1978-04-17,,560c60de-4aec-4ec1-9daf-c20fe020da70,591dc258-dd12-460e-bc30-a77088b45f12,698360004,Diabetes self management plan,15777000,Prediabetes +24cf2ed9-e3fb-4e1c-86f0-311d3f22d3f2,1996-03-13,,966005a6-2b31-44ff-a7f9-73f23fbff57c,cea49ba4-66be-4927-855d-81a7d4724a05,326051000000105,Self care,, +be5686b4-8071-4560-94b6-cd9178dc242f,1998-12-20,,966005a6-2b31-44ff-a7f9-73f23fbff57c,86af499a-832f-4a37-9604-f83b49afb925,699728000,Asthma self management,233678006,Childhood asthma +b4045c47-e505-473a-bd33-05edf29c3bfc,2007-12-19,2011-06-22,966005a6-2b31-44ff-a7f9-73f23fbff57c,6d0afffd-0bee-4ca7-949c-a8e68d38e2bc,170836005,Allergic disorder monitoring,, +dda2ab3a-57db-4d81-a5fa-f7efa01fa13b,2009-03-02,2009-05-31,cc6b347f-5bbb-469b-8304-fa384963818d,0bda6cd6-fc6d-4c17-83e6-c56968cdd768,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +8865c0a9-7918-4e7f-b15e-f0672123c2bc,2010-02-08,2010-02-22,cc6b347f-5bbb-469b-8304-fa384963818d,aab0dd98-b43c-45b9-b4c6-e57d98c1084a,225358003,Wound care,283385000,Laceration of thigh +f7f79a7c-5642-4c1a-bd12-a578b7480ec6,2012-11-08,2012-12-08,cc6b347f-5bbb-469b-8304-fa384963818d,502c48cc-9ca3-4532-9c70-ea68b6d280eb,47387005,Head injury rehabilitation,62106007,Concussion with no loss of consciousness +e72cf115-7651-4e64-bc3b-ed57d3b1a85c,1968-04-15,,ffa2bb9e-038e-4460-8ece-010a76d785e5,e09625fa-6b7a-4033-bd1a-ca4ef9422d86,711282006,Skin condition care,24079001,Atopic dermatitis +adae0751-4be2-4b4d-bc94-29ea06df8ad7,1968-05-06,,ffa2bb9e-038e-4460-8ece-010a76d785e5,6dc66bd7-1889-4292-9c3c-4f2814c7189c,326051000000105,Self care,, +7b9a2333-7542-4ac3-941d-548850228985,2000-12-30,,b530a685-2d4f-4983-8fe4-feea61726eb3,88cd07d6-0e15-427f-ad46-44409df5e396,872781000000100,Musculoskeletal care,95417003,Primary fibromyalgia syndrome +4a188471-01cb-450f-b05c-386de5a9bb5c,2007-01-19,,b530a685-2d4f-4983-8fe4-feea61726eb3,35cd6170-777d-4eb9-bc60-f72337d71900,698360004,Diabetes self management plan,15777000,Prediabetes +7d0c3fa0-14a3-4e6a-9b46-58f9f4a694ca,2008-04-29,2009-01-23,b530a685-2d4f-4983-8fe4-feea61726eb3,1a9cc58b-6aaa-4cf9-8ccf-43286714d761,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +7da97535-cfd4-4ca7-9dd8-12c541fbab9c,2015-02-11,2015-02-18,b530a685-2d4f-4983-8fe4-feea61726eb3,15c4b08e-5a3c-4a58-9853-ff9cd6237d10,869761000000107,Urinary tract infection care,38822007,Cystitis +832e6af3-ba87-49bb-b0df-33e94c5b443a,2010-04-12,,7a839433-d077-47f9-af60-a5dd2fa1d447,e0380523-97a6-4f84-ac90-223a716a49ff,711282006,Skin condition care,24079001,Atopic dermatitis +4f85feba-a73a-47a8-98b4-99b1596a29a7,2010-04-25,,7a839433-d077-47f9-af60-a5dd2fa1d447,d58188f8-6326-437d-ab5a-558f5fce40da,326051000000105,Self care,, +70dfd3c8-55f4-4685-bb44-25227fb932f1,2012-09-21,2012-10-21,7a839433-d077-47f9-af60-a5dd2fa1d447,46f18a59-4b5d-4883-ab38-61f63dd63334,385691007,Fracture care,263102004,Fracture subluxation of wrist +1da7e4a5-1c4f-4e4e-be27-ceed7dfd730c,2012-10-13,,7a839433-d077-47f9-af60-a5dd2fa1d447,eeaedec3-0849-494c-98c8-9f68a1f25c0a,699728000,Asthma self management,233678006,Childhood asthma +cb51f6ed-ce45-4551-bda4-ad2c20dfa53f,2017-05-28,2017-07-27,7a839433-d077-47f9-af60-a5dd2fa1d447,d7d4a4e7-2ff6-4e1a-be4a-7dc60bd92b04,385691007,Fracture care,263102004,Fracture subluxation of wrist +8be053a7-83aa-43db-90ee-879ddcc8604b,2017-10-27,2017-11-10,7a839433-d077-47f9-af60-a5dd2fa1d447,282d7467-99b8-4740-9ecb-4a85b427203c,53950000,Respiratory therapy,10509002,Acute bronchitis (disorder) +deb8184f-bd84-42c5-a9ee-562411c7148f,1998-08-26,,55498d3e-ece1-4d5a-97a0-142eea0ac337,f3871af1-1b07-4cd5-a0c1-8cf6b8f2ef56,734163000,Care plan (record artifact),55680006,Drug overdose +1ff67829-fd08-4c7a-9810-0391b101a8bc,1964-04-19,,5e3975b5-6c40-4712-9e05-40e6bbcba27d,5a0b2942-ff9a-473e-a88d-0322d069b377,698360004,Diabetes self management plan,15777000,Prediabetes diff --git a/tests/common/src/main/resources/patients1000.csv b/tests/common/src/main/resources/patients1000.csv new file mode 100644 index 0000000000..fe3616056f --- /dev/null +++ b/tests/common/src/main/resources/patients1000.csv @@ -0,0 +1,1000 @@ +ID,BIRTHDATE,DEATHDATE,SSN,DRIVERS,PASSPORT,PREFIX,FIRST,LAST,SUFFIX,MAIDEN,MARITAL,RACE,ETHNICITY,GENDER,BIRTHPLACE,ADDRESS,CITY,STATE,ZIP +bd797bac-3fe9-4289-922c-7ca568dfb89e,2006-09-14,,999-65-9867,,,,Gregory545,Osinski784,,,,white,english,F,Worcester,275 Hagenes Lock,Belchertown,Massachusetts,01007 +f94f9ffe-9f4b-4a14-860f-4cc48cf8e8ed,2007-05-24,,999-95-2580,,,,Berniece493,Davis923,,,,hispanic,central_american,F,Boston,266 Harber Bay Apt 80,Boston,Massachusetts,02108 +5f1cef17-b06a-42e6-ac6b-7151dc2c7221,2000-04-06,,999-43-1147,S99990853,,Ms.,Holley125,Berge125,,,,white,italian,F,Lynn,667 Mitchell Dale Suite 96,Holyoke,Massachusetts,01040 +e5574ace-e448-4866-b258-94aafe3ae4c0,1993-04-13,,999-18-1475,S99969530,X42429471X,Mr.,Damion480,Runolfsson901,,,,white,italian,M,Peabody,560 Nienow Dam,Brockton,Massachusetts,02301 +35407c8f-8f63-4b5f-ad0d-52726cf97ffc,1985-05-24,,999-67-6996,S99937771,X78033243X,Mr.,Kennith515,Brown30,,,S,white,polish,M,Springfield,317 Trantow Road Apt 43,Brockton,Massachusetts,02301 +ea158f42-6e23-44e7-bb35-7a6a361cc41e,2001-08-26,,999-29-4050,S99917036,,,Vesta905,Ledner144,,,,hispanic,puerto_rican,F,Lowell,208 Halvorson Branch Unit 71,Chelmsford,Massachusetts,01824 +cc61259b-99cc-42cc-9e14-de085c249187,1973-10-06,,999-45-2431,S99936346,X71845779X,Mr.,Hans694,Braun514,,,M,white,polish,M,Burlington,1085 Gleichner Ranch,Lynn,Massachusetts,01901 +4c9ef4da-7117-41e4-8d88-1e643ce07389,1972-05-28,,999-98-4261,S99915252,X44711127X,Mrs.,Shanta449,Lakin515,,Breitenberg711,M,white,italian,F,Dedham,615 Armstrong Hollow Apt 74,North Reading,Massachusetts,01864 +a7123cad-bec8-4f7e-a556-54a6f9b2d409,2018-04-23,,999-39-7781,,,,Kristina583,Marks830,,,,white,polish,F,Fall River,437 Cassin Frontage road Unit 0,Lexington,Massachusetts,02420 +e9601724-5078-437a-9984-15e0d04c9470,1966-10-17,,999-61-4473,S99971253,X76803388X,Mr.,Keneth579,Jacobi462,,,M,white,french,M,Sandwich,715 Gaylord Plaza,Westford,Massachusetts,01886 +1dc1d16c-36a9-44c2-be86-4a44a89150b1,2010-03-21,,999-54-5660,,,,Lynetta635,Mayert710,,,,white,english,F,Boston,377 Schinner Camp Suite 93,Lawrence,Massachusetts,01840 +02958673-9549-4bee-9a4b-9788e422dc85,2002-12-08,,999-89-2050,,,,Clifford177,Kub800,,,,white,english,M,Hingham,872 Balistreri Spur,Milton,Massachusetts,02186 +31ed3fec-dd62-4c02-a186-41a5a42692e7,1972-08-06,,999-22-2818,S99959888,X82079878X,Ms.,Daniella68,Schamberger479,,,S,white,american,F,Westminster,652 Batz Promenade,West Tisbury,Massachusetts,02575 +df2a3380-7ffc-4560-906c-0f3a4216704f,2011-12-11,,999-53-5294,,,,Vania595,Emmerich580,,,,white,italian,F,Milton,570 McGlynn Park Unit 22,Cambridge,Massachusetts,02138 +c7d23f23-a124-4883-bc24-75d4e1d7682f,1990-07-20,,999-55-7216,S99920071,X15790400X,Mr.,Antwan357,Howe413,,,M,white,german,M,Fairhaven,268 Walter Alley Unit 57,Pittsfield,Massachusetts,01201 +1aa7bae8-69ce-4a35-9363-d227d30f3af7,1949-03-02,,999-87-1362,S99984597,X7024554X,Mr.,Sanford861,Shields502,,,M,white,polish,M,Plymouth,864 Ortiz Lock,Lakeville,Massachusetts,02347 +eb55b1ff-2f46-426b-8fe9-a0ae22e470d5,1952-07-13,,999-41-3684,S99992623,X80574645X,Mrs.,Tiera511,Hagenes547,,Bogisich202,M,white,french_canadian,F,Westford,382 Hessel Ramp,Boston,Massachusetts,02108 +dafbb70f-1232-4a2e-b295-8f7893d30a8d,2006-05-26,,999-47-3183,,,,Kristopher775,Gulgowski816,,,,white,american,M,Taunton,665 Pollich Viaduct,Worcester,Massachusetts,01545 +be89f733-db33-4ece-9ed9-0867ee9f0b02,2008-07-07,,999-72-7193,,,,Hui924,Osinski784,,,,asian,asian_indian,F,Newburyport,139 Spinka Lane Apt 52,Wilmington,Massachusetts,01887 +f2b95216-c5df-404a-b1b8-19ab62b36fa0,1983-04-30,,999-47-4550,S99932128,X72117507X,Mrs.,Lanie389,Walker122,,Nicolas769,M,white,french,F,Medford,243 Halvorson Heights Suite 37,Tewksbury,Massachusetts,01876 +3eef6c86-6050-40f2-9103-4757157e4717,1961-07-28,,999-44-6053,S99914899,X84574869X,Mrs.,Cheri871,Franecki195,,Bauch723,M,white,english,F,Gardner,375 Fahey Underpass,Dedham,Massachusetts,02026 +d9271144-4cdd-4550-ab71-9d675cdb3ac8,1970-01-23,,999-88-9820,S99920968,X57928236X,Mr.,Heath320,Cronin387,,,M,white,italian,M,Amherst,862 Reilly Dam,Tewksbury,Massachusetts,01876 +9a249b38-0793-4538-a405-5c30b84d6f58,1998-03-22,,999-12-8996,S99927222,X34225780X,Mr.,Richard937,Parisian75,,,,white,french,M,Gardner,932 Lebsack Harbor Unit 42,Brockton,Massachusetts,02301 +c3148540-67ea-4604-8281-8496e18c9ed7,2010-03-14,,999-47-5212,,,,Bell723,Daniel959,,,,white,irish,F,Salem,753 Moore Ville Suite 85,Northbridge,Massachusetts,01534 +d83fa307-2458-47ae-a8dd-41460e507ec6,1927-09-16,,999-10-5419,S99950364,X58473939X,Mrs.,Albina13,Veum823,,Brakus656,M,white,irish,F,Chelmsford,807 Littel Glen Apt 98,Boston,Massachusetts,02108 +a8a8e3ce-26d8-4a20-95a2-650f2e8d24e3,1944-12-04,,999-28-1208,S99923046,X41823189X,Ms.,Eulalia351,Ziemann98,,,S,asian,chinese,F,Fitchburg,615 Considine Alley,Boston,Massachusetts,02108 +80dd8237-08e2-47d3-ab74-ba83182fe7b7,1996-05-04,,999-93-1901,S99975810,X14232547X,Mr.,Pedro316,Dávila115,,,,black,dominican,M,Danvers,363 O'Conner Track,Springfield,Massachusetts,01013 +91a61449-5921-45d0-ab3a-91728529991c,1966-05-15,,999-18-1141,S99944039,X4791466X,Mr.,Marvin195,Padberg411,,,M,white,french_canadian,M,Rowley,122 Goodwin Forge Suite 70,Medford,Massachusetts,02145 +9a16b6b5-20e0-4033-838f-4207839e7f20,1958-05-28,,999-22-1894,S99963297,X31704977X,Mrs.,Christine147,Ratke343,,Reichel38,M,asian,chinese,F,Northborough,1020 Crona Street Suite 18,Boston,Massachusetts,02108 +07ff086e-b8bd-44b7-95d7-826f8169f49a,1986-08-18,,999-20-1299,S99913722,X57789528X,Mrs.,Lauren941,Lakin515,,Abernathy524,M,black,african,F,Swansea,571 Rodriguez Dale,Newton,Massachusetts,02458 +bdc71e16-11de-48da-8205-4338d534f51b,1992-07-24,,999-69-5225,S99976252,X86403199X,Mr.,Linwood526,Walsh511,,,,white,irish,M,Acton,708 Monahan Frontage road Apt 6,Medford,Massachusetts,02145 +4e7058c6-50e6-4fb5-b01b-df5dfc28f181,1957-01-21,,999-52-2532,S99997875,X50649735X,Mrs.,Caprice565,Smith67,,Cremin516,M,white,italian,F,Quincy,348 Gutkowski Route,Mendon,Massachusetts,01756 +8bc179f0-d517-44a3-82f7-aa187c93b487,2006-03-09,,999-13-8787,,,,Loyd638,Reichel38,,,,white,portuguese,M,Brockton,388 Barton Street,Milford,Massachusetts,01757 +dfc6eea8-1371-4ff3-96a9-5891151f737d,1983-03-21,,999-69-8952,S99974780,X23369355X,Ms.,Leticia253,Cedillo160,,,S,hispanic,puerto_rican,F,Milford,755 Cronin Viaduct Suite 87,Boston,Massachusetts,02108 +d16ab9e2-ba6a-44b9-a99c-4f81fdd0a724,1993-03-26,,999-34-2807,S99971262,X49948238X,Mr.,Silas208,Mayer370,,,,white,american,M,Weymouth Town,734 Wyman Walk Unit 60,Harwich,Massachusetts,02645 +527101a5-28c8-4042-b74b-d8213d714dd8,2009-03-14,,999-34-6652,,,,Nathanael908,Tillman293,,,,white,irish,M,Spencer,533 Herzog Light Apt 44,Spencer,Massachusetts,01562 +d1ca9369-46f2-425c-8f5e-b57339ae71cf,1974-08-08,,999-83-4802,S99999655,X2392595X,Mr.,Manual570,Beer512,,,M,white,english,M,Cambridge,255 O'Connell Park,Cambridge,Massachusetts,02138 +978df329-1cf5-4d83-97c0-7aff4529ad8b,1996-02-12,,999-95-8643,S99925355,X9170930X,Ms.,Guadalupe206,Pantoja215,,,,hispanic,puerto_rican,F,Greenfield Town,527 Nikolaus Haven Suite 76,Andover,Massachusetts,01810 +22652935-07e7-4fbf-82a1-ec7da099e511,1979-03-26,,999-17-2662,S99915585,X4343227X,Mrs.,Dani520,Steuber698,,Abshire638,M,white,scottish,F,Boston,753 Miller Route,Dartmouth,Massachusetts,02714 +82832871-acf3-4c60-90c0-5f2805031021,1953-11-18,,999-14-3843,S99965537,X60911831X,Mrs.,Susana117,Griego535,,Terán294,M,hispanic,puerto_rican,F,Boston,148 Mertz Fork,Wakefield,Massachusetts,01880 +d721ff7c-2432-41ac-82c4-440833196099,2009-12-16,,999-26-5969,,,,Duane703,Spencer878,,,,white,swedish,M,Arlington,958 Schmitt Extension Unit 88,Cambridge,Massachusetts,02138 +8a38018e-1f46-407b-a45d-e7edfaeb9eca,1948-12-04,,999-40-9337,S99974188,X80111816X,Mr.,Riley817,Labadie908,,,M,white,english,M,Paxton,460 Stracke Wall Unit 94,Weston,Massachusetts,02493 +ccba21a8-9fde-4c58-af39-9e1417d24f00,1940-08-15,,999-69-7972,S99983429,X80324493X,Ms.,Henrietta324,Ondricka197,,,S,white,french_canadian,F,Edgartown,131 Lubowitz Gateway Apt 50,Springfield,Massachusetts,01013 +2d6e7da4-05e7-4cd0-9ebd-0aee7d4b645b,1945-08-28,,999-21-4145,S99924633,X72256290X,Mr.,Chauncey770,Tromp100,,,M,white,german,M,Marlborough,638 Yost Mews,Uxbridge,Massachusetts,01569 +bc28bef0-8251-4945-b9ae-09f86472f389,1961-03-07,,999-79-9747,S99997919,X40996874X,Mrs.,Lauretta754,Block661,,Kovacek682,M,white,french,F,Palmer Town,574 Abshire Vale,Westhampton,Massachusetts, +ac2a2e0b-3ea5-4d84-9399-472296aa8321,1935-08-09,,999-81-4891,S99916048,X89340678X,Mrs.,Stephenie799,Jacobi462,,Stracke611,M,white,italian,F,Springfield,621 Sauer Path,Chelmsford,Massachusetts,01824 +cbfe3365-48b7-451f-aeee-b68a28e9a8b1,1958-11-29,,999-94-6820,S99911751,X78033690X,Mr.,Gavin481,Kautzer186,,,M,white,scottish,M,Waltham,187 Ratke Approach,New Bedford,Massachusetts,02740 +83afa1dd-6433-4fbb-ae66-ef31f1f3381e,1987-01-28,,999-94-5682,S99969111,X56688139X,Mr.,Larry532,Gulgowski816,,,S,white,italian,M,Millbury,430 Rempel Lane,Carver,Massachusetts,02330 +0f0449c7-83aa-40bb-8ab0-00631135a2b2,2002-03-20,,999-96-9151,S99917219,,,Felton646,Lemke654,,,,white,french_canadian,M,Wareham,1045 Pagac Mall,Northbridge,Massachusetts,01534 +bda8c658-1865-4cd0-ba28-a180b5f64846,1951-09-24,,999-38-4659,S99996009,X20428080X,Mrs.,Ana María762,Escobar593,,Paredes726,M,hispanic,mexican,F,Holyoke,152 Ebert Parade,Raynham,Massachusetts,02767 +71f49b56-a56d-451d-9402-2c819fb95251,2016-09-04,,999-83-7310,,,,Ernestine645,Shields502,,,,white,scottish,F,Easton,673 Schimmel Mall Unit 7,New Bedford,Massachusetts,02740 +9a74ce45-ee88-49e2-98be-e77bb2f085b1,2005-02-22,,999-21-8994,,,,Demetria799,McDermott739,,,,white,irish,F,Framingham,257 Gibson Walk,Wayland,Massachusetts,01778 +0a381843-5342-4bbb-a196-6efa237287c8,1956-03-30,,999-15-1656,S99964299,X5492618X,Mrs.,Lillia547,Howe413,,Gulgowski816,M,white,english,F,Revere,343 Stamm Extension,Andover,Massachusetts,01810 +5869e22c-cd83-4a4e-8517-bc6970e6c27d,1984-08-09,,999-53-4576,S99914196,X29637463X,Mrs.,Collene784,Weimann465,,Reilly981,M,white,irish,F,Worcester,268 Christiansen Branch,Southbridge Town,Massachusetts,01550 +7d5ccbc1-0300-4bba-b4a1-9403f8bbd338,1957-07-08,,999-25-4401,S99910597,X74611515X,Mrs.,Paulina892,Lynch190,,Gerlach374,M,white,irish,F,Lexington,141 Heathcote Branch Suite 61,Malden,Massachusetts,02148 +d6e4befb-ce45-4d73-946e-d4175d37896e,1973-06-21,,999-17-2270,S99952825,X46167567X,Mr.,Elroy493,Buckridge80,,,M,white,irish,M,Pembroke,451 Emard Mall Apt 69,Wenham,Massachusetts,01984 +9fc96f92-e0ef-4ca2-ab1c-937b782e7d5f,1985-12-13,,999-27-6230,S99974404,X13856255X,Mrs.,Jacalyn740,Kunde533,,Casper496,M,white,irish,F,Cohasset,849 Renner Meadow Unit 42,Lynn,Massachusetts,01901 +6110e96c-b79d-44ef-b93c-8221d46be6de,1980-10-06,,999-62-6920,S99979187,X16867648X,Mr.,Gilberto712,Hills818,,,M,white,french,M,Leominster,904 Lemke Frontage road,Wenham,Massachusetts,01984 +8722c2fe-d066-4f3e-837b-df27536ae914,1963-07-13,,999-19-1071,S99968323,X22347777X,Ms.,Chery887,Rempel203,,,S,white,swedish,F,Lowell,207 Bernier Key Unit 79,Medway,Massachusetts,02053 +8da9037a-4edf-4eeb-ab64-4420cd815d2f,1963-03-29,,999-53-3362,S99965610,X57773912X,Mr.,Mariano761,Páez758,,,M,hispanic,puerto_rican,M,Northampton,1009 Bogisich Alley,Springfield,Massachusetts,01013 +39dac597-f888-4259-a98a-c1da12a73822,1953-08-09,,999-57-4321,S99932700,X85552096X,Mr.,Raymundo71,Hodkiewicz467,,,M,white,irish,M,Lawrence,419 Lesch Vista Unit 70,Springfield,Massachusetts,01013 +6741085b-07c5-456f-baca-1986918a298c,2017-02-26,,999-84-5945,,,,Detra426,Nolan344,,,,white,french_canadian,F,Milford,1072 Krajcik Way Unit 1,Quincy,Massachusetts,02169 +2e94ab53-2e32-4a6c-9d43-ee8bef0f311d,1995-05-14,,999-25-7930,S99996765,X41564721X,Mr.,Micheal721,Smith67,,,,white,scottish,M,Millis,719 Schowalter Fork,Springfield,Massachusetts,01013 +fa5249dc-50b7-445b-84a7-8d3f6179af97,1965-01-16,1996-09-28,999-44-1606,S99932063,X40837623X,Mr.,Carter549,Yundt842,,,M,white,scottish,M,Dartmouth,468 Ruecker Route Apt 3,Natick,Massachusetts,01760 +ec604d06-19bc-4584-92ef-b87a1d12c881,1964-01-13,,999-76-4320,S99940329,X83145229X,Mrs.,Ranae267,Wehner319,,Morissette863,M,white,french,F,Plymouth,405 Ullrich Loaf,Worcester,Massachusetts,01545 +58522975-5391-48eb-a2cb-acda53bd0948,1945-08-15,,999-22-6307,S99961158,X76733308X,Mrs.,Cinthia596,Erdman779,,Botsford977,M,asian,asian_indian,F,Medford,104 Willms Knoll Suite 83,Medford,Massachusetts,02145 +af071cb8-62a5-4411-a5e3-7ef190b9761d,1961-11-19,,999-58-6490,S99933294,X63372092X,Mr.,Alva958,Sipes176,,,M,white,irish,M,Chelsea,100 Koss Viaduct Unit 82,Chicopee,Massachusetts,01013 +c02b5bcb-19a8-49b4-9c88-fadbd0e4203e,1972-12-06,,999-53-1277,S99992290,X15215353X,Mr.,Warren653,Koch169,,,M,white,italian,M,Boston,362 Bartoletti Estate,Weymouth Town,Massachusetts,02188 +4944db25-4689-4cda-b428-76511346ae7f,1979-03-10,2014-05-31,999-28-5296,S99968981,X33799812X,Mr.,Michael441,Jaskolski867,,,M,white,german,M,New Bedford,106 Marquardt Grove Suite 95,Springfield,Massachusetts,01013 +0fd23c83-0326-4c76-8817-3af01058894b,2003-07-01,2015-04-25,999-73-5603,,,,Hershel911,Bogan287,,,,white,english,M,Tewksbury,317 Skiles Promenade Unit 65,Somerset,Massachusetts,02725 +3b283653-67f3-4de0-9c3c-209bc63be70d,1994-08-14,,999-78-2883,S99917277,X23422431X,Mr.,Roman389,Schultz619,,,,white,swedish,M,Watertown Town,455 Heathcote Brook Unit 64,Middleborough,Massachusetts,02346 +cfd7d453-12a5-45d8-90ae-8f42d8451e93,1988-07-17,,999-49-1229,S99969968,X43315310X,Mr.,Evan94,Murazik203,,,M,white,american,M,Belmont,234 Baumbach View Unit 57,Stoneham,Massachusetts,02180 +531daafb-9613-4f00-9b3d-ee1e3ceed03e,1965-01-16,,999-81-1944,S99986279,X16165614X,Mr.,Luke971,Adams676,,,M,white,scottish,M,Boston,782 Schulist Branch,Natick,Massachusetts,01760 +b7025101-2167-45d2-bf8f-cdd0ff27b067,1974-02-06,,999-46-6471,S99977546,X26659594X,Mr.,Genaro214,Watsica258,,,M,white,english,M,Lunenburg,850 Schowalter Ranch,Chelmsford,Massachusetts,01824 +49ab9669-7d51-4ab7-8272-4918b0caa48e,1946-07-12,,999-98-3568,S99949422,X44491283X,Mr.,Clyde817,Glover433,,,M,white,italian,M,Taunton,481 Hoppe Rue Suite 97,Medford,Massachusetts,02145 +b9423bcd-fbb2-4b20-9ad4-9476a4669d7f,2003-07-01,,999-23-6969,,,,Christopher407,Gaylord332,,,,white,english,M,Westfield,116 Simonis Branch,Somerset,Massachusetts,02725 +4cb6bcc0-d9a2-4d7e-9289-4df4ea60e77b,2010-11-02,,999-89-7891,,,,Kelli207,Kerluke267,,,,white,french,F,Easthampton Town,223 Grimes Way Apt 65,Brockton,Massachusetts,02301 +e7fe0876-8888-43e3-aed0-2151c6ecbbb8,1981-03-07,,999-50-2507,S99924790,X8515637X,Mr.,Benito209,Prado282,,,M,hispanic,mexican,M,Worcester,587 Hand Knoll,North Attleborough,Massachusetts, +6f0455d7-d951-4b0b-b5bc-9b58710e0060,2013-11-13,,999-63-2327,,,,Oren284,Orn563,,,,white,french,M,Plymouth,556 Wisozk Skyway,Sherborn,Massachusetts,01770 +6991cc45-9140-4e91-a754-a97eb26703e5,1979-03-10,,999-78-6718,S99951472,X41459511X,Mr.,Ellsworth48,Smitham825,,,M,white,german,M,Fall River,258 Bergstrom Union Apt 81,Springfield,Massachusetts,01013 +263e67f1-992f-4b7d-a852-37423fa46e66,1964-07-03,,999-69-2545,S99969734,X74268709X,Mr.,Harland508,Murazik203,,,M,white,irish,M,Plymouth,972 Vandervort Haven Apt 24,Westfield,Massachusetts,01085 +8906d7ea-96cd-4598-b9a7-4101a7246828,1994-10-23,,999-68-4647,S99989964,X60750796X,Ms.,Mendy939,Ernser583,,,,black,west_indian,F,Quincy,756 Kozey Hollow Unit 66,Holbrook,Massachusetts,02343 +da448dc6-eb21-4a04-89ca-404b7c836c83,1991-04-13,,999-77-6303,S99980542,X66428934X,Mr.,Larry532,Beer512,,,M,white,italian,M,Andover,518 Gerlach Camp,Northbridge,Massachusetts,01534 +354ff955-949d-4cb3-bda1-d634c0266f50,1975-09-25,,999-52-8031,S99990204,X85082328X,Mr.,Lupe126,Klein929,,,S,white,french,M,Needham,231 Homenick Crossroad,Boston,Massachusetts,02108 +b8861c03-0a59-4667-a6d2-3d705168c047,1977-11-01,,999-19-7605,S99952458,X53457531X,Mr.,Numbers230,O'Reilly797,,,M,white,italian,M,Chicopee,1051 Ullrich Tunnel,Boston,Massachusetts,02108 +43198299-f370-4e7a-9b92-7c6fc93ceab8,1977-04-14,,999-52-6288,S99942109,X14548362X,Ms.,Catharine355,Prohaska837,,,S,white,french,F,Wilmington,723 Heaney Corner,Northampton,Massachusetts,01053 +869ef909-0b27-4e86-960f-6bbe2919dada,1994-04-12,,999-64-4683,S99979739,X71745218X,Mr.,Alvin56,Krajcik437,,,,asian,chinese,M,Somerset,463 Konopelski Haven,Stoughton,Massachusetts,02072 +fa2cba32-bb59-4d68-96f4-8b55a19925ff,1998-10-12,,999-66-8404,S99973086,X89217307X,Mr.,Theodore876,Corkery305,,,,white,german,M,Shrewsbury,1023 Donnelly Center,Chelmsford,Massachusetts,01824 +976d8f68-069a-4574-a9b5-67e1fa696702,1937-02-10,,999-42-4051,S99957565,X86663733X,Mr.,Bradley693,Kessler503,,,M,white,italian,M,Boston,773 Predovic Arcade Suite 34,Needham,Massachusetts,02492 +044fbd27-433d-418b-a243-8788f6598103,1970-02-25,,999-27-7342,S99958397,X51283915X,Mrs.,Christa452,Emmerich580,,Volkman526,M,black,african,F,Fitchburg,736 Stiedemann Quay,Marlborough,Massachusetts,01752 +d48138da-21dd-471d-96fb-0215311e179a,1950-06-03,,999-15-3359,S99937817,X12412880X,Mr.,Lesley194,Torphy630,,,M,asian,chinese,M,Brookline,313 Dach Hollow Apt 45,Groton,Massachusetts,01450 +0e3daf4d-e2f2-46ab-b17e-4e29875cf4b3,2000-09-22,,999-89-6653,S99939912,,Ms.,Cristina921,Solano766,,,,hispanic,central_american,F,West Springfield Town,634 Lakin Byway,Gloucester,Massachusetts,01930 +9656e27c-2914-4765-b8ec-d50cbaef308c,2004-01-10,,999-68-9366,,,,Octavio643,Mesa630,,,,hispanic,central_american,M,Boston,874 Rosenbaum Bridge Unit 0,Lowell,Massachusetts,01850 +dfcc8ad4-7ec3-48bc-be4e-d6fb1fd31e36,1947-03-05,,999-73-4310,S99985017,X89592838X,Mr.,Wilton999,Littel644,,,M,white,french,M,Lynn,249 Treutel Haven Unit 25,Wilbraham,Massachusetts,01095 +47010f4b-b394-4def-8fee-46d03435319e,1979-03-02,,999-86-7640,S99959000,X69386517X,Mr.,Asa127,Gerlach374,,,M,white,irish,M,Boston,350 Gottlieb Viaduct,Dracut,Massachusetts,01826 +be33f6bc-ab58-4df0-84c7-a3d7978f1e65,1989-08-29,,999-21-8707,S99948052,X29624892X,Mrs.,Agnus790,Cummings51,,Runolfsdottir785,M,white,irish,F,Brockton,108 Fay Crossing Unit 47,North Attleborough,Massachusetts, +0dc41d1e-ad7a-42b0-9822-b787551e83e8,1967-10-11,,999-19-8954,S99914072,X68425355X,Mr.,Dario75,Crona259,,,M,white,irish,M,Weymouth Town,201 MacGyver Tunnel,Attleboro,Massachusetts,02703 +686bef47-761a-4b56-a998-2c6e18a9dfd7,1966-02-21,,999-91-6445,S99973628,X69034364X,Mr.,Manuel446,Pizarro791,,,M,black,west_indian,M,Boston,1064 Sanford Viaduct,Plymouth,Massachusetts,02360 +0af043d4-8e12-4cc3-94d0-532a2c40ce55,1961-08-25,,999-47-4087,S99990200,X9296671X,Mr.,Dan465,Nolan344,,,M,white,irish,M,Boylston,995 Schuppe Ramp,Brookline,Massachusetts,02215 +3dd58746-8f70-45ef-9f5e-c459d640b432,1967-10-24,,999-32-1947,S99915648,X17629934X,Mr.,Cesar434,Schinner682,,,M,white,irish,M,Boston,178 Hermann Ville Suite 10,Melrose,Massachusetts,02176 +a3ce07de-85b9-48db-81fc-2207dfa2479b,1988-01-14,,999-91-7039,S99985754,X46375432X,Mr.,Kirby843,Hilpert278,,,M,white,scottish,M,Boston,929 Macejkovic Mill Apt 45,Auburn,Massachusetts,01501 +2a59a1ae-0f1f-4a01-b17a-8f08dfcc2f27,1990-10-28,,999-96-6507,S99936207,X37914725X,Mr.,Leopoldo762,Legros616,,,M,white,french,M,Stoughton,766 Christiansen Junction,North Andover,Massachusetts,01845 +106dec0f-107d-4533-99fa-5bdcad26c218,1985-08-15,,999-46-4182,S99984055,X9189375X,Mr.,Cary869,Lakin515,,,M,white,irish,M,Marlborough,416 Gleichner Extension,Boston,Massachusetts,02108 +9f6c944a-5af9-4a68-928b-74fa647207af,1957-11-16,,999-64-4627,S99916607,X78196216X,Mrs.,Arnette709,Mraz590,,Cartwright189,M,white,english,F,Tewksbury,371 Torp Course,Melrose,Massachusetts,02176 +f4fa9684-acd2-4920-bf73-d177e3b75bde,2000-07-14,,999-12-7632,S99999087,,Ms.,Carlyn477,MacGyver246,,,,asian,chinese,F,Chicopee,372 Eichmann Ramp,Everett,Massachusetts,02148 +8fbdc442-6e1d-4faa-80c9-c003ed3bf807,1990-02-27,,999-88-8763,S99931172,X87132401X,Mr.,Tommie457,Parker433,,,S,asian,asian_indian,M,Quincy,954 Dietrich Key,Boston,Massachusetts,02108 +1bfebaa6-a906-4682-9f6a-aaec70b25239,2017-08-06,,999-36-4193,,,,Dean966,Dickinson688,,,,white,italian,M,Fairhaven,216 Champlin Vale Apt 88,Boston,Massachusetts,02108 +d37c9080-e586-4b05-bc7d-2e7a0debf977,1962-06-28,,999-93-5730,S99922783,X27483120X,Ms.,Gabriela205,Madera340,,,S,hispanic,central_american,F,Sutton,1003 Hammes Wynd,Lowell,Massachusetts,01850 +578a5c1e-572d-48a2-98c1-96a789d47eb4,1952-10-01,,999-24-9793,S99923046,X33911987X,Mr.,Herman763,Barrows492,,,M,white,scottish,M,Chelsea,720 Halvorson Avenue Unit 81,Attleboro,Massachusetts,02703 +7779a136-2666-4c61-8cef-61cb5f891acb,1999-12-09,,999-62-2229,S99970386,,Mr.,Ed239,Shanahan202,,,,hispanic,puerto_rican,M,Weymouth Town,1049 Hodkiewicz Orchard,Duxbury,Massachusetts,02332 +b7729d36-43a9-4e06-b1cd-48c05271cedc,1962-07-15,,999-39-5196,S99914781,X39890744X,Mrs.,Danelle47,Fisher429,,Nicolas769,M,white,irish,F,Lowell,359 Vandervort Loaf,Amesbury Town,Massachusetts,01913 +8790548f-4350-4cd8-a23a-d9374573b24c,2014-05-31,,999-52-2765,,,,Domonique463,Morissette863,,,,white,italian,F,Salem,387 Monahan Passage,Shrewsbury,Massachusetts,01545 +bd8fb4af-150e-46bb-b8c7-53a086153428,1944-01-07,,999-96-9505,S99994460,X38888368X,Mrs.,Norine97,McGlynn426,,Moen819,M,white,polish,F,Waltham,398 Medhurst Ramp Suite 81,Maynard,Massachusetts,01754 +fefe92dd-94b6-42aa-8f74-970d8df9d32b,1978-10-28,,999-33-9898,S99975434,X30664188X,Mrs.,Doretta917,Graham902,,Upton904,M,white,english,F,Brockton,219 Flatley Skyway Unit 1,North Andover,Massachusetts,01845 +128ac07b-9931-4d0d-9182-5d66dfdcd261,1980-04-02,,999-52-5617,S99955835,X77670441X,Ms.,Dana512,Schmidt332,,,S,white,american,F,Holden,1054 O'Connell Ranch Suite 93,Rockport,Massachusetts,01966 +99759268-d6bc-42f1-b70a-68d093dfc46e,2013-01-20,,999-41-3626,,,,Louis204,Yost751,,,,white,portuguese,F,Westborough,487 Grimes Station Apt 59,Boston,Massachusetts,02108 +bd15466c-e655-4aeb-86b1-d3980f94487b,1962-09-04,,999-73-3430,S99930359,X19195729X,Mr.,Danilo179,Cronin387,,,S,white,italian,M,Lawrence,523 Daugherty Mill,Medford,Massachusetts,02145 +1c4801f6-0526-4a63-a155-3801e94293bd,1959-04-17,,999-60-6944,S99922016,X86708322X,Mrs.,Cherly215,Kilback373,,Rempel203,M,white,english,F,Agawam Town,112 Schoen Burg,Tyngsborough,Massachusetts, +39c38fac-b78c-4349-ab1a-fea7fb43dd32,1974-03-14,,999-52-1781,S99922371,X1962554X,Ms.,Rina274,Fay398,,,S,white,irish,F,North Attleborough,248 Spinka Haven,Framingham,Massachusetts,01701 +0739d054-ce13-4a63-92ac-4eadb97b4e44,1970-02-10,,999-93-8139,S99965727,X28128003X,Mrs.,Vanessa263,Schulist381,,Dibbert990,M,white,french,F,Sudbury,934 Tillman Grove Unit 76,Eastham,Massachusetts,02642 +a86f68ff-636a-402a-9bbb-d9976e0c75f4,1949-08-20,,999-40-6239,S99923471,X27275977X,Mrs.,Jeremy766,Schaefer657,,Boyer713,M,white,irish,F,Boston,154 Fisher Course,Freetown,Massachusetts, +da8f3f83-c795-41d8-bc0f-9b9eb169dd0d,2010-10-14,,999-25-2895,,,,Margarito178,Stokes453,,,,asian,chinese,M,Fitchburg,482 Spencer Green,Everett,Massachusetts,02148 +40595a9f-4436-4b16-b334-9e302d0fddc6,2015-12-24,,999-40-4004,,,,Tomas436,Koch169,,,,white,scottish,M,Wellesley,118 Luettgen Rue,Needham,Massachusetts,02492 +07caa088-c066-4c8a-92a0-baff35b06bcf,1985-11-20,,999-42-3866,S99942939,X60537955X,Mrs.,Erna640,Beahan375,,Hodkiewicz467,M,white,irish,F,Amherst,528 White Spur,Taunton,Massachusetts,02718 +6df4c3a1-adf8-4d50-ae51-bd575f44f6da,1977-09-28,,999-78-2784,S99993565,X62295545X,Mrs.,Keturah238,Cartwright189,,Cremin516,M,asian,chinese,F,Hadley,1080 Kerluke Vale,Randolph,Massachusetts,02368 +8f863347-9f05-41aa-bda4-c4344173155c,1908-11-30,1987-10-12,999-17-7474,S99999250,X76332467X,Mrs.,Britni406,Schneider199,,Bernhard322,M,black,west_indian,F,Brewster,484 O'Connell Glen,East Longmeadow,Massachusetts,01028 +fe9738e1-1025-4e41-ae20-bc96879f75d0,1971-01-10,,999-41-4581,S99929147,X20373177X,Mr.,Jorge Luis88,Samaniego616,,,S,hispanic,south_american,M,Gloucester,790 Hartmann Viaduct,Gloucester,Massachusetts,01930 +09314f88-11ff-461b-9e59-732218414b30,2010-06-11,,999-30-8010,,,,Chery887,Hilll811,,,,white,french_canadian,F,Groton,893 Denesik Mall,Barnstable Town,Massachusetts,02601 +ed417a8c-330c-4294-89f0-305936fd1c3b,1982-01-28,,999-75-5385,S99922949,X11920986X,Mrs.,Marietta439,Ratke343,,Kiehn525,M,native,american_indian,F,Brockton,804 Bernier Vale,Whitman,Massachusetts,02382 +6c9adfb9-d9db-44ab-b668-7fc38e187a64,1991-06-27,,999-79-5228,S99976486,X29189871X,Mr.,Mac103,Turner526,,,M,white,polish,M,Walpole,651 Conn Route,Revere,Massachusetts,02151 +f790e12b-c2a3-4e1e-906a-5942591692f6,1949-11-21,,999-79-7396,S99922437,X70807003X,Mr.,Gayle448,Ullrich385,,,S,white,irish,M,Springfield,190 Heller Rest Suite 5,Saugus,Massachusetts,01906 +a2b8ba68-1f80-4e29-9a94-604955198de8,1956-03-31,,999-57-8703,S99951979,X14063992X,Mr.,Alphonso102,Maggio310,,,M,white,french,M,Framingham,930 Walker Crossroad,Falmouth,Massachusetts,02540 +6ba9fd75-fb12-4199-a2a4-0ec63667d5ce,1994-03-01,,999-58-3351,S99967607,X39550283X,Ms.,Julian715,Mertz280,,,,white,portuguese,F,Barnstable Town,254 Pouros Way,Littleton,Massachusetts,01460 +b8d04fa7-345b-4b7d-8f6a-cda44254774f,1967-03-29,,999-19-2033,S99999578,X78574276X,Mrs.,Renate369,Reinger292,,Williamson769,M,white,english,F,Taunton,517 Kunze Spur Suite 11,Winchendon,Massachusetts,01475 +629cf8f3-046a-4f2f-baa2-57bddc84c44f,1965-03-18,,999-57-1991,S99979866,X18682484X,Mrs.,Aiko748,Christiansen251,,Fisher429,M,white,american,F,Boston,1083 Sauer Common Apt 30,Billerica,Massachusetts,01821 +c0c5d2f2-009a-40f8-9440-a973578ddecf,2016-04-05,,999-69-7701,,,,Gavin481,McCullough561,,,,white,italian,M,Andover,473 Padberg Overpass Apt 18,Braintree Town,Massachusetts,02184 +19bb6820-34b2-49d2-ad63-188f944949ce,1940-11-10,,999-50-6416,S99938259,X83440729X,Mrs.,Susana117,Hurtado459,,Muñiz642,M,hispanic,puerto_rican,F,Cambridge,848 Mraz Lane,Danvers,Massachusetts,01923 +b702c250-663c-4f32-a2fa-364748bda883,1944-09-20,1993-05-19,999-55-2538,S99912249,X56226476X,Mr.,Cecil300,Bartoletti50,,,M,white,french,M,Adams,182 Johns Wall,Oak Bluffs,Massachusetts,02557 +44790887-7251-4a52-a581-e50008254229,2015-05-27,,999-73-8516,,,,Roxanna261,Mosciski958,,,,black,west_indian,F,Boston,282 Rowe View,Boston,Massachusetts,02108 +49a52471-5a29-43c7-979e-f987662d570b,1993-11-11,,999-40-9517,S99986340,X56434684X,Ms.,Hallie315,Brown30,,,,white,english,F,Brockton,245 Botsford Well,Freetown,Massachusetts, +76aa58dc-1bb9-44d6-9927-1f89af66f2e0,2000-06-21,,999-47-4733,S99973698,,Ms.,Reyna401,Williamson769,,,,white,english,F,Hanover,318 Bode Camp,Norwood,Massachusetts,02062 +4c5c3067-72d7-4e4d-b8e9-25a6adb7ed32,1908-11-30,1994-01-24,999-90-5843,S99912108,X37242937X,Mrs.,Corrinne176,Yost751,,Torphy630,M,black,west_indian,F,Holyoke,1082 Ritchie Pathway,East Longmeadow,Massachusetts,01028 +cb500bf6-f261-40bf-9bd2-b9740ff1be15,1926-05-12,1996-04-03,999-73-3707,S99939195,X51728868X,Mr.,Dorian295,Mueller846,,,S,white,english,M,Middleton,797 Kshlerin Trail,Springfield,Massachusetts,01013 +74cfe9bb-d661-4f88-bddf-972350bb84e4,1982-03-11,,999-87-3804,S99912780,X67936700X,Mr.,Robt687,Rempel203,,,M,white,italian,M,New Bedford,519 Schinner Street Apt 35,Revere,Massachusetts,02151 +b19a1396-d41e-4cd6-9548-b19eb28a102a,2003-10-16,,999-38-9730,,,,Wallace647,Dickens475,,,,white,german,M,Pittsfield,244 Durgan Landing Suite 0,Medford,Massachusetts,02145 +76bd51b9-f39d-4e9a-a352-601d85dd3bb9,1967-10-03,2016-06-21,999-39-1474,S99984701,X58075888X,Mr.,Pat3,DuBuque211,,,M,white,english,M,Boston,172 Greenfelder Haven,New Bedford,Massachusetts,02740 +c06c78a1-d681-472e-8bbb-0828e86957e6,1973-12-05,,999-95-9785,S99967126,X89616226X,Ms.,Elyse324,Marvin195,,,S,white,german,F,Uxbridge,222 Renner Club,Lawrence,Massachusetts,01840 +5f11f565-45c8-480a-8729-18b2853f0c44,1944-09-20,,999-47-3550,S99913265,X53493696X,Mr.,Courtney281,Larkin917,,,M,white,french,M,Kingston,999 Erdman Plaza,Oak Bluffs,Massachusetts,02557 +e482f9fa-4caf-4665-993c-34985763e712,1997-07-17,,999-80-6439,S99937193,X28439954X,Ms.,Many655,Orn563,,,,white,irish,F,Westford,543 Jaskolski Tunnel Unit 71,Boston,Massachusetts,02108 +be33cd97-a8d5-4b80-8a6a-eacfc6f7efff,1968-10-22,,999-62-7319,S99950095,X13136551X,Mr.,Adalberto916,Feeney44,,,S,white,english,M,New Bedford,630 Funk Gate Suite 72,Canton,Massachusetts,02021 +38c39808-b2a4-47f1-a330-34195e2fea84,1949-02-18,,999-24-3670,S99922222,X66641784X,Mr.,Maurice742,Fahey393,,,M,white,irish,M,Middleborough,375 Flatley Bay,Longmeadow,Massachusetts,01106 +c4073684-7f28-4502-8893-2ccfd50bfdf7,2013-12-21,,999-63-5387,,,,Penney623,Powlowski563,,,,white,irish,F,Malden,890 Cummerata Avenue,Andover,Massachusetts,01810 +99d6d0ef-b4b8-4360-8a30-942befb1ba0d,1926-05-12,,999-41-2157,S99985373,X63418405X,Mr.,Kraig824,Morar593,,,M,white,english,M,Plainville,655 Moore Approach,Springfield,Massachusetts,01013 +49a78e84-ce6e-48b7-a6e0-91c79408ac04,2012-12-23,,999-12-7695,,,,Willian804,Veum823,,,,white,french,M,Waltham,838 Rice Underpass,Boston,Massachusetts,02108 +28e99e25-265b-49f4-baff-14844d148a96,1995-10-30,,999-56-3362,S99920956,X49671975X,Ms.,Teodora360,Berge125,,,,white,irish,F,South Hadley,757 Gorczany Stravenue,Brockton,Massachusetts,02301 +0549b621-6328-4ac8-b818-5cd82c31ae92,1957-10-23,,999-66-4010,S99923702,X89758875X,Mrs.,Filomena215,Erdman779,,Schiller186,M,white,irish,F,Lexington,945 Abernathy Trace Suite 6,Duxbury,Massachusetts,02332 +86564464-2ea4-4ea5-8729-db3e7ba51f18,2009-01-25,,999-85-6471,,,,Mandie666,Haag279,,,,white,portuguese,F,Hadley,513 Rohan Bay Unit 61,Freetown,Massachusetts, +0766c7ab-bcef-4876-9fb3-0fe5fb12c5ca,1961-05-06,,999-71-1020,S99982298,X62326674X,Mr.,Clay913,Kreiger457,,,M,white,french,M,New Bedford,702 Greenfelder Heights,Fairhaven,Massachusetts,02719 +c46d604d-9449-4e91-825f-4669b0b5f4ae,1959-12-07,,999-83-7935,S99940494,X41365855X,Mrs.,Cherri385,Gislason620,,Grady603,M,white,portuguese,F,Concord,570 Will Orchard Apt 49,Shrewsbury,Massachusetts,01545 +eb1c7f7d-802e-4d0c-ba3f-82af5d623b4c,2013-09-02,,999-76-5500,,,,Madeline975,Fisher429,,,,white,irish,F,Worcester,539 Leuschke Camp Unit 10,Falmouth,Massachusetts,02540 +ffddf6dc-46eb-45dc-8733-3d8f7e621803,1967-10-03,,999-39-3817,S99992355,X78193318X,Mr.,Jesse626,Bruen238,,,S,white,english,M,Boston,847 Walter Grove,New Bedford,Massachusetts,02740 +f1e2c3f0-95f4-4664-9b81-2990b8911ffe,2012-10-17,2013-08-13,999-47-1345,,,,Cyril535,Kling921,,,,white,french,M,Boston,986 Nitzsche Route Suite 32,Brockton,Massachusetts,02301 +858f2742-22b9-4501-ba87-0ffc08eb9095,2012-10-17,,999-89-4877,,,,Houston994,Cassin499,,,,white,french,M,Worcester,911 Monahan Byway Unit 87,Brockton,Massachusetts,02301 +dc810bc2-75f4-4a21-bd46-40e6e0aa909a,2015-07-17,,999-37-2664,,,,Granville802,Bruen238,,,,white,french_canadian,M,Hanson,974 Senger Flat Unit 98,Pembroke,Massachusetts,02359 +47e1ed39-7dec-4780-b39e-06cc33457268,1973-11-09,,999-48-2795,S99971473,X11170639X,Mr.,Irwin931,Ritchie586,,,M,white,irish,M,Barnstable Town,279 Prosacco Meadow,Plymouth,Massachusetts,02360 +e7ae2f0b-937b-48b9-a5c1-9ae5f0d62198,1963-05-27,,999-46-5995,S99923460,X45637991X,Mr.,Earnest658,O'Reilly797,,,M,white,irish,M,Dartmouth,200 McCullough Route Apt 37,East Bridgewater,Massachusetts,02333 +8d046e67-c0f7-41e1-b75f-ca7428558ebf,1985-01-04,,999-83-7697,S99998384,X36767379X,Ms.,Anette189,Kautzer186,,,S,white,english,F,Rehoboth,166 Orn Overpass,Brookline,Massachusetts,02215 +364d7056-dc54-4996-b027-17abb8d703df,1908-11-30,1995-07-04,999-92-8878,S99932974,X15859449X,Ms.,Delpha270,Sporer811,,,S,black,west_indian,F,Franklin Town,669 Hane Trailer,East Longmeadow,Massachusetts,01028 +67ce89ee-1c5d-401f-b78f-c2b69be125f4,1965-11-08,,999-33-3688,S99999108,X58758695X,Mr.,Emerson869,Bernier607,,,M,white,portuguese,M,Fall River,655 Botsford Rapid,Somerville,Massachusetts,02138 +b8c94af9-6f09-4218-a392-36cccc3e5fc1,2009-08-26,,999-46-8580,,,,Luana867,Veum823,,,,white,italian,F,Lawrence,145 Kuhlman Forge,Shutesbury,Massachusetts,01072 +1400424b-65a1-4f37-8e44-45ed7a39abaf,1951-10-17,1995-05-31,999-51-8151,S99943841,X27894932X,Mrs.,Nettie309,Bradtke547,,Mraz590,M,white,irish,F,Billerica,809 Gerhold Tunnel,Concord,Massachusetts,01742 +a45e4f55-69ef-47b8-b4cc-c9d3ccb2681e,1968-08-27,,999-20-8319,S99961012,X69193221X,Ms.,Helena807,Greenfelder433,,,S,white,irish,F,Charlton,491 Altenwerth Wynd,Lancaster,Massachusetts,01523 +54653f38-bacf-4c78-8d13-b1178e5c7650,1972-03-01,,999-45-4419,S99916995,X43739912X,Mr.,José Eduardo181,Pabón228,,,S,black,dominican,M,Springfield,236 Boyle Terrace,Boston,Massachusetts,02108 +114b4e2b-bb79-43c8-b1ba-7222a3e0a0fe,2002-06-04,,999-43-9109,S99952141,,,Max124,Rohan584,,,,black,west_indian,M,Stoughton,765 Kemmer Stravenue Suite 70,Acton,Massachusetts,01720 +16e48bd5-6d5f-4345-8e6e-748e8bda1a47,1950-06-14,,999-60-9012,S99953828,X77664846X,Mr.,Mohammed454,Huel628,,,M,white,irish,M,Franklin Town,957 Cartwright Fort,Brockton,Massachusetts,02301 +9ef5403a-82c3-4e81-b17d-66e378b59030,1973-06-30,,999-13-1895,S99974160,X17501253X,Mrs.,Lonna614,Morissette863,,Hagenes547,M,white,french_canadian,F,New Bedford,497 Lowe Throughway,Whitman,Massachusetts,02382 +72f8564e-6a2a-4571-9b87-bd335a183dba,1939-07-03,,999-67-7779,S99963652,X74379334X,Mr.,Rupert654,Prosacco716,,,M,white,irish,M,Newton,736 Hirthe Rest,Holyoke,Massachusetts,01040 +11eafc39-4ff6-4f15-bd57-d4f852e95bee,1953-08-20,,999-14-9901,S99977046,X11162835X,Mr.,Dewitt635,Gutmann970,,,M,white,italian,M,Worcester,1068 Donnelly Way,Newton,Massachusetts,02458 +55cb9cea-6125-493e-a27a-cb5a7cd44e93,1964-01-11,,999-66-2882,S99995791,X60533992X,Mr.,Roberto515,Orn563,,,S,white,italian,M,Fall River,907 Gulgowski Rue Suite 92,Cambridge,Massachusetts,02138 +c7bb0f2f-12ec-4abd-8f79-97df6e900b77,1964-07-23,,999-15-8205,S99918426,X33427344X,Mrs.,Roxane435,Osinski784,,Bayer639,M,white,irish,F,Lawrence,138 Fahey Parade Suite 9,Malden,Massachusetts,02148 +73aadf56-6dc1-4d43-87d1-6f9566d6068b,1908-11-30,1996-08-25,999-91-8808,S99982336,X73496484X,Mrs.,Julietta740,Grady603,,Schulist381,M,black,west_indian,F,Saugus,107 Kessler Orchard,East Longmeadow,Massachusetts,01028 +f51ec3c3-2cad-48e8-a94a-aa828a8bd322,1990-11-27,,999-80-4338,S99974136,X80285255X,Mrs.,Nakia544,Herman763,,Hilpert278,M,white,italian,F,Maynard,549 Howe Union Apt 97,Cambridge,Massachusetts,02138 +5d105b20-8c44-4d90-b3a8-8f43da0a9bcc,1964-10-07,,999-26-1491,S99971931,X7254714X,Mr.,Willy639,Rodriguez71,,,M,white,french_canadian,M,Worcester,899 Mills Harbor Suite 34,Hanover,Massachusetts,02339 +c42ac70e-6c3d-49c9-a898-0e6650098317,1969-05-26,,999-27-6255,S99970800,X34545997X,Mr.,Neil122,Kuphal363,,,M,white,french,M,Taunton,597 Heaney Path,Reading,Massachusetts,01801 +c6a8c990-1ebc-40da-8854-d8faa34aff43,1973-12-05,,999-71-8056,S99994648,X70138102X,Mr.,Ian270,Bechtelar572,,,M,white,french,M,Boston,508 McLaughlin Port,Southborough,Massachusetts,01772 +74c06b2a-fa4e-4716-a07e-980b8da321da,1951-10-17,,999-95-4612,S99929348,X48419749X,Mrs.,Zona368,Miller503,,Lakin515,M,white,irish,F,Middleton,1029 Senger Run Suite 16,Concord,Massachusetts,01742 +ebec0355-61ee-4011-9d54-38875fc56770,1978-06-09,,999-26-4319,S99953742,X57747331X,Mr.,Maxwell782,Gorczany269,,,S,hispanic,mexican,M,North Attleborough,780 Mohr Promenade,Lawrence,Massachusetts,01840 +0b822a72-30fb-4dbb-9496-bbcc7cdbf159,1998-07-25,,999-65-8348,S99955996,X34639334X,Mr.,Leland44,Larson43,,,,white,irish,M,Springfield,328 Rohan Run,Sharon,Massachusetts,02067 +e68c5e0c-c170-4da3-8b2e-bdbf71071531,1978-08-26,,999-76-7266,S99924641,X77585160X,Ms.,Daina567,Emmerich580,,,S,hispanic,south_american,F,Beverly,702 Kling Road,Everett,Massachusetts,02148 +acf0483c-e210-4da7-8afd-0944190c07b4,1955-01-20,,999-63-8459,S99952123,X31420946X,Ms.,Linnea167,Bauch723,,,S,white,french,F,Haverhill,279 Hilll Byway Unit 94,Boston,Massachusetts,02108 +5623855e-d960-49e1-b5c1-a55f48e0e961,1935-02-28,2004-03-04,999-31-7747,S99958087,X35492080X,Mr.,Casey401,Schumm995,,,S,white,italian,M,Mashpee,594 Witting Bridge,Bridgewater,Massachusetts,02324 +5d7f5238-6890-46bc-9e3a-831e2fcf2b34,1974-09-21,,999-12-8972,S99945649,X69331778X,Mrs.,Nickole723,Schneider199,,Hansen121,M,asian,chinese,F,Spencer,311 Zboncak Mews Suite 30,Bedford,Massachusetts,01730 +d2e7598f-7a32-4d8d-b904-e86ce3ea9d44,1992-01-30,,999-99-4515,S99927362,X29097882X,Mr.,Zack583,Gleichner915,,,,white,irish,M,Quincy,156 Hayes Ferry,Newton,Massachusetts,02458 +1f70844b-fffa-4977-8c81-5867620c0b2f,2002-03-12,,999-56-5081,S99949218,,,Jann271,O'Keefe54,,,,white,english,F,Boston,102 Rowe Lane Unit 73,Montague,Massachusetts,01351 +8d423274-201e-42c2-8523-44afb280e111,1950-11-09,,999-52-6671,S99994869,X1309139X,Mr.,Jerrell6,Hirthe744,,,M,white,french,M,Gloucester,313 Zieme Trailer,North Adams,Massachusetts,01247 +189349d8-e630-45e1-ac00-3f7a6ec152da,2005-04-14,,999-32-7688,,,,Milan77,Tremblay80,,,,white,polish,M,Natick,110 Kautzer Vista,Springfield,Massachusetts,01013 +e8425c27-8391-41d9-8e73-75349b9ce74b,1954-10-29,,999-99-3134,S99931823,X83025512X,Mrs.,Fatima244,Rau926,,Predovic534,M,white,italian,F,Hanover,241 Anderson Parade Apt 89,Northborough,Massachusetts,01532 +45d99826-68f0-47fb-9717-26e6a6fadcc7,1975-09-04,,999-40-6646,S99920996,X70945071X,Mrs.,Elizabet136,Stark857,,Bosco882,M,white,american,F,Cambridge,551 Fahey Brook Unit 23,Longmeadow,Massachusetts,01106 +9e2df923-c399-429d-ac69-dce786b7de2c,2001-07-07,,999-73-5613,S99963139,,,Jeremy766,Gleason633,,,,white,irish,M,Northampton,108 Lindgren Parade,Southbridge Town,Massachusetts,01550 +2fb07161-be1b-4c41-87b5-22f26a14fcf4,1935-02-28,2014-10-09,999-61-9467,S99959207,X85102418X,Mr.,Ira784,Reynolds644,,,M,white,italian,M,Somerville,249 Denesik Corner,Bridgewater,Massachusetts,02324 +9cd7c092-b58e-4d68-8032-9e73742fc115,1966-09-13,,999-93-2530,S99972443,X3392489X,Mrs.,Yun266,Bode78,,Dach178,M,black,west_indian,F,Barnstable Town,849 Lynch Club Suite 40,Lexington,Massachusetts,02420 +e0125cec-ab89-48fb-860a-b968ba2d5cce,1974-08-14,,999-89-1858,S99968130,X84565805X,Mrs.,Kristen940,Wisoky380,,Krajcik437,M,white,italian,F,Hancock,455 Ratke Dam,Spencer,Massachusetts,01562 +eb50de37-84e6-42db-a5f1-19f57b2f6322,1908-11-30,,999-94-9782,S99986419,X53321284X,Mrs.,Hsiu839,Goyette777,,Abshire638,M,black,west_indian,F,Braintree Town,490 Hammes Lodge Unit 72,East Longmeadow,Massachusetts,01028 +708ca23c-afcd-4122-ac46-c38cc23f8df5,1920-07-09,2004-05-03,999-21-9678,S99932762,X68776169X,Mr.,Fred155,Littel644,,,M,white,irish,M,Chatham,684 Cormier Pathway Unit 41,Shirley,Massachusetts,01464 +5dc8d874-44b7-48b8-880a-92b173fcc38f,1988-12-16,,999-46-5023,S99936104,X35505495X,Mrs.,Lindsy319,Tillman293,,Klein929,M,white,italian,F,Hanson,624 Deckow Rapid,Foxborough,Massachusetts,02035 +ac432238-c7b3-4202-8e82-f89916ef3c44,1987-11-06,,999-65-5087,S99987382,X67326711X,Mr.,Micheal721,Labadie908,,,M,white,polish,M,Holden,844 Klocko Quay Apt 86,Pittsfield,Massachusetts,01201 +dfa46f1f-eb0b-4220-bd5c-f4a1e320073f,1992-11-12,,999-20-1119,S99951671,X1866275X,Ms.,Keshia89,Yost751,,,,white,english,F,Dartmouth,973 Prohaska Wall Unit 2,Middleton,Massachusetts,01949 +02d058e3-cbb3-47f2-ab83-d70be7eaa292,1963-11-08,,999-66-6111,S99942978,X79802213X,Ms.,Magan944,Mayer370,,,S,white,italian,F,Shrewsbury,493 Kling Approach Apt 14,Arlington,Massachusetts,02474 +350f4700-d683-4dc7-8d46-7a9fb1edeced,1928-11-05,2008-06-20,999-75-3291,S99918033,X51740742X,Mr.,Lino542,Hilpert278,,,M,white,french,M,Greenfield Town,1060 Russel Parade,Chelsea,Massachusetts,02149 +9ece8f79-ebcf-4edc-9a5c-9d5c3e256b00,2017-12-14,,999-42-2139,,,,Kelly223,Klocko335,,,,hispanic,south_american,F,Dedham,470 Bogan Fort,Marblehead,Massachusetts,01945 +d826cb77-9130-47a7-81c3-c40e1f6afdbf,1970-05-22,,999-90-5415,S99932153,X31310922X,Ms.,Eloisa55,Olmos892,,,S,hispanic,central_american,F,Becket,742 Littel View,New Bedford,Massachusetts,02740 +19a7aa7b-cda1-4755-92eb-53ff5f2ac5b8,1979-07-01,,999-88-4015,S99938218,X7303516X,Mr.,Jeremiah751,Aufderhar910,,,M,white,italian,M,West Bridgewater,591 Padberg Club,Amherst,Massachusetts,01002 +50b478ab-3936-4dbe-a3cd-73d30de089eb,1962-01-30,,999-83-5090,S99977566,X11925728X,Mrs.,Shantel839,McDermott739,,Marvin195,M,black,african,F,Dracut,1068 Moen Port Apt 77,Concord,Massachusetts,01742 +5359b341-db76-4f02-95f1-69ef76b56366,1935-02-28,,999-77-4942,S99986165,X75930315X,Mr.,Casey401,Brekke496,,,M,white,italian,M,Bridgewater,403 Bergstrom Manor Apt 81,Bridgewater,Massachusetts,02324 +718526a9-5ab6-48ff-8d55-ce99f02799fe,1968-10-26,,999-33-9777,S99954225,X32648185X,Ms.,Gia583,Hauck852,,,S,white,american,F,Agawam Town,500 Zboncak Fork Suite 5,Plymouth,Massachusetts,02360 +ee2684ff-729a-4378-bd17-2c3e2c6bd815,1920-07-09,,999-30-2152,S99991743,X71339751X,Mr.,Tracey100,Cassin499,,,M,white,irish,M,Leominster,445 Barrows Brook,Shirley,Massachusetts,01464 +7171f90b-ef0a-46de-a199-a3525ba4924e,1980-08-01,,999-27-6292,S99945480,X21211107X,Mrs.,Anastacia583,Kunze215,,Torphy630,M,white,french_canadian,F,Quincy,945 Simonis Extension Suite 40,Worcester,Massachusetts,01545 +98b5311e-d5d0-473a-b773-71f5372a1981,1961-09-04,,999-70-4458,S99966666,X12346104X,Mr.,Sebastian508,Abernathy524,,,M,white,italian,M,Marshfield,411 Sporer Station Apt 31,South Hadley,Massachusetts,01075 +8fea1275-f5e2-4625-8c85-aeb6f06cc563,1963-06-27,1980-04-17,999-19-6854,S99930624,,,Kirby843,Grimes165,,,,white,french,F,Brockton,1089 Trantow Overpass Apt 64,Acton,Massachusetts,01720 +2024c932-7a0b-4bfc-b908-7c5bf3e9645d,1971-03-18,,999-78-4989,S99968855,X43895542X,Mr.,Odell776,Rosenbaum794,,,S,white,american,M,Ashburnham,794 Rau Green,Bedford,Massachusetts,01730 +62bd2b5a-4199-45d8-b54e-13c393718120,1968-03-03,,999-46-4914,S99998074,X64145449X,Ms.,Dorine689,Pacocha935,,,S,white,french,F,Williamstown,1005 Prosacco Haven,Fall River,Massachusetts,02720 +01e74270-b2d5-4ac8-84c4-5ac72567af04,1949-11-03,2016-01-21,999-26-3149,S99996838,X87952562X,Mr.,Jan231,McDermott739,,,M,white,english,M,Harwich,438 Skiles Plaza Apt 23,Middleton,Massachusetts,01949 +5adc76dd-a63c-4ced-8234-2d62b80461c1,2006-02-22,,999-42-2760,,,,Zachery872,Schultz619,,,,white,irish,M,Boston,100 Pfannerstill Flat,Bridgewater,Massachusetts,02324 +80dbc462-4f18-4698-90a7-94b9be39cf10,1999-12-08,,999-46-8718,S99970364,,Ms.,Laquita685,Reynolds644,,,,white,german,F,Clinton,383 Sporer Common,Billerica,Massachusetts,01821 +c683c092-9191-4cde-a69d-3596809efb3b,1928-11-05,1999-12-12,999-23-5346,S99941045,X46614500X,Mr.,Oliver401,O'Kon634,,,M,white,french,M,Boston,171 Greenholt Estate,Chelsea,Massachusetts,02149 +3c1ddee5-42f7-4faf-939f-9d7f1c1526d3,1972-03-12,,999-55-3289,S99977203,X36800460X,Mrs.,Queen50,Stiedemann542,MD,Herzog843,M,white,german,F,West Springfield Town,708 Yundt Drive Suite 48,Cambridge,Massachusetts,02138 +54c28125-a21f-47e9-8ca5-415e1d931720,1949-11-03,,999-39-3085,S99925070,X49080718X,Mr.,Roman389,Pagac496,,,M,white,english,M,Boston,1018 Luettgen Landing,Middleton,Massachusetts,01949 +266c6bcc-1925-429d-8f12-31275d321c19,1945-06-06,,999-45-8196,S99996119,X48735072X,Mrs.,Tiesha180,Daniel959,,Batz141,M,asian,chinese,F,Danvers,891 Luettgen Parade Suite 71,Leominster,Massachusetts,01420 +ed8e17d1-f8d6-43d7-9194-e808ce624e39,1967-11-30,,999-90-3317,S99934071,X71852253X,Mrs.,Agueda283,Herzog843,,Hintz995,M,white,irish,F,Rockland,576 Turner Viaduct,Lowell,Massachusetts,01850 +50b6f48d-9a6c-4e68-bf71-fec2addb3242,1963-11-30,,999-62-5488,S99995049,X70901092X,Mr.,Lucas404,Esparza426,,,M,hispanic,mexican,M,Northfield,1083 Kovacek Rue,Lynn,Massachusetts,01901 +c61ce1c4-fec9-4b8a-b7b7-b00651a48602,1989-11-25,,999-69-1588,S99967265,X17799082X,Mrs.,Rosalva540,Conn188,,Bins636,M,white,irish,F,Boston,1053 Breitenberg Throughway,Malden,Massachusetts,02148 +c3ecc608-d647-4aaf-8bd0-f029c524d998,1963-06-27,,999-24-3697,S99922299,X15184669X,Mrs.,Bridgette172,O'Conner199,,Muller251,M,white,french,F,Lawrence,795 Heaney Underpass,Acton,Massachusetts,01720 +d409acff-6c44-46d3-8efd-13ade12dec1f,1928-11-05,1977-04-25,999-68-6408,S99988487,X45085835X,Mr.,Buck819,Schroeder447,,,M,white,french,M,Worcester,204 Klein Terrace Apt 86,Chelsea,Massachusetts,02149 +d115300c-e307-480c-8abb-ddeff18ea501,1987-08-27,,999-20-4684,S99964668,X11847178X,Mr.,Gil594,Heathcote539,,,M,white,portuguese,M,Lexington,321 Hodkiewicz Path,Boston,Massachusetts,02108 +9cb10b05-eeea-48d3-b73b-b03bd17f5ab9,1988-10-05,,999-47-1524,S99933431,X20282008X,Mrs.,Rochelle550,Marvin195,,Blick895,M,white,american,F,Lawrence,167 Schuppe Mill Suite 8,Canton,Massachusetts,02021 +b03574a8-7a2b-4e18-9bf3-9949921a2333,2007-12-11,,999-74-2151,,,,Loise968,O'Reilly797,,,,white,irish,F,Haverhill,1083 Champlin Lane Unit 5,Wakefield,Massachusetts,01880 +327790b1-2cde-4359-8334-48f47ab5e93b,2016-03-28,,999-68-9081,,,,Lane844,Blanda868,,,,white,polish,M,Fall River,493 O'Connell Overpass,Taunton,Massachusetts,02718 +42e1027e-fa61-4a13-b56e-9eccf3abb389,1970-08-24,,999-80-7732,S99935288,X57432273X,Ms.,Coreen424,Stracke611,,,S,white,italian,F,Revere,341 Stehr Glen,Milton,Massachusetts,02186 +c4d5830b-1bdf-45b1-ab0e-d1c11c72f237,1913-01-07,1997-12-28,999-15-3471,S99995280,X70787528X,Mr.,Brendan864,Bergstrom287,,,M,white,german,M,Palmer Town,189 Wisozk Mill Unit 24,Needham,Massachusetts,02492 +0d7d281a-6e8e-439c-a533-43dd39253a54,1985-01-20,,999-54-3007,S99984688,X36259450X,Mrs.,Hattie299,Emmerich580,,Heidenreich818,M,white,scottish,F,New Bedford,452 Brown Highlands,Lawrence,Massachusetts,01840 +dd8d561a-d8e3-483b-a821-f330c500cc73,1952-04-17,2008-04-17,999-15-5606,S99994021,X29055638X,Mr.,Fermin479,Ward668,,,S,white,italian,M,Dartmouth,694 Douglas Annex,Plymouth,Massachusetts,02360 +af6793a3-697d-4a45-ae98-c47e988361a1,1928-11-05,,999-71-6401,S99942495,X21056177X,Mr.,Omar359,Kirlin939,,,S,white,french,M,Springfield,554 Yost Estate Unit 8,Chelsea,Massachusetts,02149 +4d4d2e75-8777-42ed-bfc5-3640c5bbbd1c,1959-06-19,,999-40-6999,S99912444,X38770658X,Mrs.,Paris331,Heaney114,,Wisoky380,M,white,french_canadian,F,Boston,390 Stracke Run,Boston,Massachusetts,02108 +010af95f-0fdf-4a81-ad69-c1cc92e60154,1958-12-06,,999-83-9730,S99932980,X20629068X,Mrs.,Vincenza112,Lang846,,Crona259,M,white,french,F,Bridgewater,349 Kessler Common Suite 80,Gloucester,Massachusetts,01930 +a451667a-ca62-4cfc-b0fa-1d5c7969d598,1973-06-07,,999-88-9671,S99970450,X81011714X,Ms.,Fairy757,Gulgowski816,,,S,white,english,F,Essex,479 Herman Gateway Apt 75,New Bedford,Massachusetts,02740 +56db1629-9042-41d3-b1c1-636e8f3bd0a5,1936-09-02,2015-03-07,999-32-2223,S99976398,X36295151X,Mr.,Moises22,Padberg411,,,M,white,italian,M,Andover,1041 Jones Wall,Oxford,Massachusetts,01540 +7003a13a-0a69-4c77-b248-f15bc6b502be,1994-07-14,,999-85-6279,S99957221,X79677104X,Ms.,Johnsie484,Schaefer657,,,,white,polish,F,Lawrence,343 Dooley Neck Suite 94,Boston,Massachusetts,02108 +f3a0d3f6-6db6-4348-acca-e234d17d0dfe,1952-04-17,,999-88-9185,S99928633,X85313935X,Mr.,Joe656,Stracke611,,,S,white,italian,M,Andover,973 Parisian Way Suite 72,Plymouth,Massachusetts,02360 +35244b8b-ee2b-48bf-9c76-c2d8e43a676a,1945-06-26,,999-79-6686,S99985449,X47501103X,Mrs.,Shanae34,Cremin516,,Bergstrom287,M,white,french,F,Plymouth,535 Zboncak View,Worcester,Massachusetts,01545 +d7cda29c-319f-4c6d-8b1f-a8acaffd9649,1913-01-07,1998-08-26,999-41-3309,S99952123,X69313685X,Mr.,Jean712,Cormier289,,,S,white,german,M,Fall River,272 Rippin Divide,Needham,Massachusetts,02492 +bfbd4a12-9032-4cb2-80d2-3b5a432572be,2000-11-25,,999-81-5367,S99987119,,,Cuc113,Cummerata161,,,,white,french,F,Uxbridge,710 Feest Quay Unit 12,Worcester,Massachusetts,01545 +5fc91de6-a1f3-4e9f-8d7a-8f78d9b0b4b1,1941-04-06,2002-03-10,999-70-4562,S99972911,X43977185X,Mr.,Bruno518,Blick895,,,S,white,scottish,M,Bolton,687 Beahan Overpass Unit 62,Cambridge,Massachusetts,02138 +1a11d4d6-7c52-405e-9a34-5612df3e7ac8,1983-06-24,,999-23-1384,S99961892,X59293376X,Mrs.,Carlota980,Lehner980,,Treutel973,M,white,german,F,Peabody,747 Schimmel Mission Unit 29,Waltham,Massachusetts,02451 +58ed0470-168d-4d2f-a210-40a4700d1661,1976-06-26,,999-32-2118,S99949984,X73305724X,Mr.,Hershel911,Zboncak558,,,M,white,english,M,Southampton,309 Kilback Byway,Bellingham,Massachusetts,02019 +0c88cb98-837d-41d9-a0db-1da6f90c4645,1969-01-21,,999-26-3234,S99995985,X27003814X,Mrs.,Elvira561,Wintheiser220,,Balistreri607,M,white,irish,F,Tewksbury,717 Jerde Light Suite 35,Chelmsford,Massachusetts,01824 +b0d4b5a3-0d9a-4e74-b7b1-f7e25f3da9be,1986-12-08,,999-59-9233,S99973623,X43330414X,Mrs.,Jovan870,Jacobs452,,Hilll811,M,white,english,F,Taunton,755 D'Amore Dam,Webster,Massachusetts,01570 +cee62a79-df74-4417-962b-78e79b4db183,1974-03-13,,999-76-3869,S99962835,X76252571X,Mr.,Donnell534,Klein929,,,S,hispanic,south_american,M,Everett,688 Leffler Street Apt 59,Marblehead,Massachusetts,01945 +3ad1486b-13c2-443b-9ac6-d0ac837bce22,1936-09-02,2017-08-15,999-43-9373,S99982137,X78208455X,Mr.,Ty725,Von197,,,M,white,italian,M,Hampden,321 Koch Village,Oxford,Massachusetts,01540 +58c5e550-9ac5-40be-bcf5-11627fcc94b7,1988-12-05,,999-58-1601,S99970041,X75771212X,Mr.,Kerry175,Towne435,,,M,white,french,M,Springfield,1054 Schumm Walk Apt 35,Marlborough,Massachusetts,01752 +524312f4-5b98-42d8-ac18-562834f91274,1941-04-06,,999-90-7099,S99912640,X16499928X,Mr.,David908,Harber290,,,M,white,scottish,M,Boxford,615 Hilll Lane Suite 21,Cambridge,Massachusetts,02138 +ab53e6a5-3623-4152-bf08-2d2bcf4913b8,1985-05-26,,999-83-6887,S99979196,X81472094X,Mr.,Franklyn361,Gusikowski974,,,M,white,italian,M,Fall River,597 Torp Vale,Lawrence,Massachusetts,01840 +bf407875-715c-4ab8-aa22-ba07924b4b2c,1962-08-17,,999-92-6387,S99923204,X78640313X,Mr.,Carroll471,Rolfson709,,,M,white,italian,M,Georgetown,624 Ullrich Promenade,Everett,Massachusetts,02148 +7e1b3027-643a-468f-a5e5-ec66d4aa1668,2012-03-06,,999-19-8231,,,,Corey514,Koelpin146,,,,hispanic,central_american,F,Falmouth,890 Crona Spur,Paxton,Massachusetts,01612 +4d1df3e0-7a85-43b5-b5c8-b35bfbc10ce9,1984-08-05,,999-45-3339,S99961993,X36481880X,Mr.,Cory323,Hand679,,,M,white,french,M,Newburyport,800 Rath Boulevard Unit 83,Quincy,Massachusetts,02169 +fca38524-61ec-4a58-98fd-5b21ea40a6d1,2016-07-28,,999-93-6359,,,,Vania595,Eichmann909,,,,white,irish,F,Kingston,922 Mohr Vale,Melrose,Massachusetts,02176 +464391ec-edd2-4417-9adc-d219bb8623fd,1936-09-02,,999-19-6711,S99928666,X22570600X,Mr.,Rolf983,Schultz619,,,M,white,italian,M,Boston,930 Stark Vale Apt 17,Oxford,Massachusetts,01540 +a065d0e0-1f47-40fc-aad4-3113f6ae0139,1976-12-14,,999-26-2786,S99935251,X32536578X,Mr.,Lester513,Tremblay80,,,M,white,french,M,Boston,288 Ruecker Walk,Woburn,Massachusetts,01801 +a6c26299-f3fd-418b-bfcf-11865af89271,1994-01-16,,999-97-9401,S99953799,X27798619X,Mr.,Germán350,Cervantes583,,,,hispanic,puerto_rican,M,Rutland,886 Pagac Club Suite 53,Barnstable Town,Massachusetts,02601 +f415dc1d-d48f-4188-92f6-8904ee6b56ea,1913-01-07,,999-59-3828,S99979415,X16012954X,Mr.,Rueben647,O'Keefe54,,,M,white,german,M,Chelmsford,149 Padberg Lodge,Needham,Massachusetts,02492 +a3433cfb-4441-4904-9e94-dfb0bf302729,2005-11-26,,999-11-8656,,,,Dominic463,Rutherford999,,,,white,english,M,Boston,792 Hand Mews,Worcester,Massachusetts,01545 +4b06f797-6507-49e5-9c8b-e31ce99fea4e,2008-03-15,,999-36-2440,,,,Carlee848,Schmeler639,,,,white,english,F,Hopkinton,156 Heathcote Vale Unit 25,Lowell,Massachusetts,01850 +509008d0-189b-4db9-887c-edb082c8575e,2005-10-20,,999-56-1975,,,,Shiloh191,Koepp521,,,,white,english,F,Newburyport,690 Hessel Parade,Marblehead,Massachusetts,01945 +a162962e-128f-45d8-bd69-35c36263c5cf,1967-04-08,,999-29-2771,S99945688,X48481330X,Mrs.,Kitty323,D'Amore443,,Frami345,M,white,english,F,Worcester,930 Rohan Port,Sharon,Massachusetts,02067 +d053b013-36ec-4ec5-8622-4aa199dc89c9,1950-12-15,,999-58-3579,S99963838,X10366379X,Mr.,Galen747,Skiles927,,,M,white,american,M,Mashpee,966 Harber Terrace Suite 32,Lynn,Massachusetts,01901 +4094d8dd-c473-4cbb-a2d2-afd77abb78b8,1946-07-09,,999-11-9814,S99942380,X7581469X,Mrs.,Sau887,Moen819,,Rempel203,M,white,italian,F,New Bedford,938 Brekke Flat Apt 34,Quincy,Massachusetts,02169 +38bd8b04-d453-4317-9415-e63b97368e01,1962-04-10,,999-89-6432,S99985240,X76543179X,Mr.,Damien170,Robel940,,,M,white,irish,M,Boston,758 Carroll Trailer,Westfield,Massachusetts,01085 +edae80ce-fa38-4f77-9654-bfb9e1fb1949,1951-07-28,2016-04-30,999-27-1994,S99954356,X39631382X,Mr.,Wade235,Hoeger474,,,M,asian,chinese,M,Boston,381 Funk Bypass,Melrose,Massachusetts,02176 +590dbe4a-5c17-47b2-9d64-a55924b2ff06,1983-11-28,,999-29-2735,S99917120,X86067784X,Mr.,Reynaldo722,Bogisich202,,,M,white,french,M,Yarmouth,869 DuBuque Knoll Suite 31,New Bedford,Massachusetts,02740 +dc437309-bc06-46ef-bd06-1d286c462ebb,1998-03-23,,999-20-8195,S99931776,X36686664X,Ms.,Hue920,Harris789,,,,white,irish,F,Lanesborough,302 Pagac Harbor Unit 55,Saugus,Massachusetts,01906 +809b9b18-36ee-4549-9e5e-5b8b341d23d1,1963-05-20,,999-38-9027,S99995692,X83572980X,Mrs.,Jewell855,Kirlin939,,Witting912,M,white,german,F,Ludlow,620 Nolan Gate Unit 58,Brockton,Massachusetts,02301 +97c41e8c-d247-4c21-bc38-aa77e0eee7c2,1938-11-30,,999-35-5420,S99964689,X67852124X,Mrs.,Alba338,Runolfsdottir785,,Mitchell808,M,hispanic,south_american,F,Weymouth Town,856 Dare Mission,Somerville,Massachusetts,02138 +3779ae34-13e0-450d-994e-4c252c2858a8,1963-01-17,,999-13-7430,S99945649,X66212599X,Mr.,Zachery872,Heidenreich818,,,M,white,french,M,Palmer Town,346 McGlynn Parade Suite 2,Sturbridge,Massachusetts,01507 +ef9f964c-1eed-409d-97bd-af0827b07b40,1996-05-09,,999-75-2602,S99982860,X20910928X,Mr.,Sid118,Zboncak558,,,,asian,chinese,M,Foxborough,267 Stark Hollow,Gardner,Massachusetts,01440 +205888f3-6f27-47dc-81f6-9141cb4947f7,2004-06-15,,999-57-2894,,,,August363,Wunsch504,,,,white,french,M,Cambridge,606 Parker Bypass,Norwood,Massachusetts,02062 +d5233590-3c5f-4c43-ad87-3618f7a37bbd,1987-08-23,,999-14-9799,S99981506,X14962154X,Mr.,Hayden835,Stiedemann542,,,S,white,russian,M,Norwood,1082 Harber Bay,Worcester,Massachusetts,01545 +5bb704ca-2390-438d-96a9-0a6c0c1db6a9,1951-07-28,,999-97-2669,S99991487,X68161081X,Mr.,Johnny786,O'Reilly797,,,M,asian,chinese,M,Everett,211 Herzog Street,Melrose,Massachusetts,02176 +59def9f0-70fe-4351-b9b6-d5f52657ae47,1943-04-15,,999-64-5585,S99958158,X28749763X,Mr.,Numbers230,Connelly992,,,M,white,italian,M,Boston,530 Bergnaum Ramp Suite 54,Lynn,Massachusetts,01901 +b2807b47-82f3-4a4a-ad34-28150e0b8470,1973-09-18,,999-40-3417,S99968530,X73279696X,Mr.,Chuck784,Kemmer137,,,M,asian,asian_indian,M,Bellingham,497 Upton Lane Unit 17,Tewksbury,Massachusetts,01876 +8dd3a8a0-57e0-4291-b461-748e48021461,1972-11-25,,999-10-8260,S99946348,X15981675X,Mr.,Edmund685,Witting912,,,M,white,american,M,Somerville,944 Kovacek Union,Springfield,Massachusetts,01013 +ba9d609a-f70c-47f6-a4ee-3f594d2b6886,1991-04-21,,999-33-9169,S99963070,X71742656X,Mrs.,Laronda769,Morar593,,Wintheiser220,M,white,italian,F,Medford,1004 Keebler Well Apt 67,Newton,Massachusetts,02458 +06898f8e-e333-4b87-b912-e96f24e3f02a,1922-05-07,,999-28-8163,S99944291,X30690755X,Mrs.,Leilani136,Stanton715,,Cassin499,M,white,irish,F,Lynn,622 Hansen Ferry,Grafton,Massachusetts,01519 +4396525e-cc22-46a4-8f89-9497686ba60b,1960-12-23,,999-50-9772,S99923748,X19710389X,Mr.,Boyce638,Fahey393,,,M,white,irish,M,Worcester,899 Ratke Tunnel Apt 11,Tewksbury,Massachusetts,01876 +ddbd4506-c104-432f-92e6-efc61b373faf,1914-07-26,2008-10-31,999-27-7761,S99977978,X10428538X,Mr.,Freddy176,Hahn503,,,S,white,italian,M,Monterey,545 Adams Terrace,Framingham,Massachusetts,01701 +265fbd2f-566f-4210-9ae8-2a4dbe689bf7,2011-07-24,,999-74-9676,,,,Kirby843,Bruen238,,,,white,italian,M,Norwell,652 Greenfelder Vista,Scituate,Massachusetts,02066 +386e20d6-5e64-4cd6-80b7-52538d7b3709,1981-02-01,,999-47-3778,S99964068,X20954599X,Mrs.,Lexie163,Glover433,,Kutch271,M,white,irish,F,Arlington,149 Kub Way,Walpole,Massachusetts,02081 +63fdcffd-76d6-4ef9-9dcc-868186e82e09,1965-09-03,,999-88-6157,S99917554,X55654715X,Mr.,Thanh759,O'Keefe54,,,M,white,scottish,M,Chelsea,471 Emmerich Ferry Suite 37,Wenham,Massachusetts,01984 +3f12dc57-816d-44a2-9419-dab7861552a8,1976-12-04,,999-54-6723,S99935772,X75986130X,Mrs.,Cristina921,Gómez206,,Moya426,M,hispanic,mexican,F,Beverly,808 Heathcote Bypass,Boston,Massachusetts,02108 +ff048d6d-1115-4a2f-848b-1ecbbfb0706d,1997-01-13,,999-13-2251,S99957218,X7684550X,Mr.,Waylon572,Batz141,,,,white,irish,M,Haverhill,193 Gislason Road Apt 62,East Longmeadow,Massachusetts,01028 +656f3801-be97-4c4d-b6b9-ab3f25dc4f18,1976-11-29,,999-33-3715,S99911005,X2602771X,Mrs.,Darleen361,Rippin620,,Beahan375,M,white,irish,F,Cambridge,448 Stanton Run,Peabody,Massachusetts,01940 +78790778-4e00-45af-9498-01b739daf732,2007-11-15,,999-92-8346,,,,Liliana922,Howe413,,,,hispanic,puerto_rican,F,Boston,927 Hirthe Street,Gloucester,Massachusetts,01930 +a8ed16fc-966c-4b56-b9e7-80bdf0afe366,2003-03-11,,999-76-1427,,,,Kylie930,Heathcote539,,,,white,irish,F,Topsfield,298 Bergnaum Alley,Hingham,Massachusetts,02043 +cd3b3d2d-6f8e-4e88-907d-a562cf5f7fe0,1967-05-05,,999-28-2342,S99989859,X62260776X,Mr.,Nick779,Kessler503,,,M,black,african,M,Springfield,306 Jacobs Center,Boston,Massachusetts,02108 +406fb9c2-34b0-422b-a20f-198db2ae0154,2002-01-05,,999-19-8168,S99996265,,,Kandi717,Shields502,,,,white,irish,F,Arlington,827 Rau Orchard,Medford,Massachusetts,02145 +ab996428-a991-4f87-a5a2-42a7949a1a9f,1936-04-02,2017-10-30,999-38-7476,S99916682,X73183182X,Mr.,Vicente970,Feil794,,,S,white,italian,M,Haverhill,1084 Zboncak Knoll Unit 87,Sharon,Massachusetts,02067 +3000eb86-98fc-41a2-b4fa-d0314dcfbc0d,1914-07-26,2001-07-08,999-37-5929,S99926564,X89358938X,Mr.,Otis335,Eichmann909,,,M,white,italian,M,New Bedford,165 Howell Parade Unit 11,Framingham,Massachusetts,01701 +eb0f0316-da5f-42dc-92ba-77047f1a03f6,2003-07-20,,999-65-9837,,,,Siu135,Terry864,,,,white,irish,F,Springfield,972 Graham Route,Boston,Massachusetts,02108 +59670983-1492-4d64-9f66-dcf3b02fcbc9,1979-02-23,,999-84-6303,S99984363,X13856653X,Ms.,Henrietta324,Schmitt836,,,S,black,west_indian,F,Westport,774 Lesch Ramp Suite 28,Worcester,Massachusetts,01545 +04d978a1-7d93-46be-a173-288a389078a2,1978-10-16,,999-99-7492,S99974164,X35803662X,Mr.,Jacinto644,Padberg411,,,M,white,french,M,Easton,484 Schuppe Manor,Salem,Massachusetts,01907 +a8888089-e921-464a-986c-e8b7de882222,1934-10-21,2018-04-29,999-43-6834,S99946857,X5559096X,Mrs.,Nila48,Lemke654,,Cronin387,M,white,polish,F,Malden,559 Schiller Station,Dedham,Massachusetts,02026 +b96d33f5-8e5e-4040-b536-9e6436ffaede,1959-05-24,,999-85-9274,S99984357,X65793758X,Ms.,Barbar976,Mann644,JD,,S,asian,chinese,F,Worcester,329 Gleichner Heights Suite 36,Cambridge,Massachusetts,02138 +ed3b8194-5848-4970-9d7e-214eb3f4c0c0,1957-12-06,,999-76-1121,S99986716,X22300850X,Mrs.,Rochel591,Willms744,,Greenfelder433,M,white,american,F,Framingham,844 O'Connell Plaza Suite 35,Weymouth Town,Massachusetts,02188 +21f0af3c-d706-42af-bf6a-5307e5c8c68e,1959-09-14,,999-31-2478,S99957757,X16925557X,Mrs.,Patricia625,Garica503,,Abeyta738,M,black,dominican,F,Haverhill,240 Grady Well Suite 33,Canton,Massachusetts,02021 +6314a95a-f1e1-4580-9285-44c82a237eee,1936-04-02,,999-99-2016,S99912295,X51169830X,Mr.,Wilfredo622,Carter549,,,M,white,italian,M,Shelburne,515 Howe Route,Sharon,Massachusetts,02067 +39941f21-aa8a-4110-b074-b50d057ff5b7,1988-07-20,,999-21-5312,S99934667,X49010823X,Mrs.,Teena223,Welch179,,Bradtke547,M,white,german,F,Watertown Town,436 Beer Dale Apt 94,Hingham,Massachusetts,02043 +c3ae1b6c-0b64-498f-b7d7-1045bc8142d3,1938-08-23,1942-04-18,999-50-6697,,,,Etsuko685,Willms744,,,,white,portuguese,F,Ware,790 Hyatt Underpass,Bridgewater,Massachusetts,02324 +e9eef22c-f4f3-45c1-8a4d-1a9b0c4cb1b1,1972-10-20,,999-25-3238,S99973849,X87562341X,Mrs.,Kia427,Maggio310,,Hilpert278,M,white,english,F,Easton,1039 Olson Gardens,Cambridge,Massachusetts,02138 +02b2d16e-425b-4b68-95ae-60f11e097942,1988-11-21,,999-60-1204,S99951827,X85833325X,Mr.,Ramón841,Heredia716,,,M,hispanic,mexican,M,Marlborough,179 Bins Center Apt 22,Boston,Massachusetts,02108 +0a0999cc-7b77-4f61-be77-9396f613bd6a,1914-07-26,,999-93-9654,S99976023,X42719317X,Mr.,Malcolm243,Murphy561,,,M,white,italian,M,Wellesley,631 Wuckert Rue Apt 31,Framingham,Massachusetts,01701 +d4056ab4-8dee-434b-a6c3-4a3bd1408669,1969-02-05,,999-24-2788,S99942460,X49654108X,Mr.,Nicolás801,Bonilla161,,,M,hispanic,puerto_rican,M,Lynn,539 Nienow Lock,Boston,Massachusetts,02108 +be3764a8-b3a8-46e6-bccb-28b48ba6f37d,2016-09-08,,999-85-7551,,,,Sam879,White193,,,,white,irish,M,Boston,343 Langworth Common,Wellesley,Massachusetts,02457 +de8ca91c-fa83-4802-809a-1835a76c70ac,1995-06-08,,999-23-9375,S99912197,X13217313X,Mr.,Merrill415,Collier206,,,,white,french_canadian,M,Boston,293 Keeling Manor Apt 66,Haverhill,Massachusetts,01830 +e3483c91-3b8e-4d37-97c1-f509066cbdbd,1948-11-04,,999-87-8574,S99918374,X77422097X,Mrs.,Noreen211,Kessler503,,Balistreri607,M,white,french_canadian,F,Norwell,878 Rosenbaum Frontage road Suite 57,Easton,Massachusetts,02334 +af6a280b-7d1d-47ad-bc36-9b5c7ff7ff6e,1938-01-23,,999-72-1105,S99929670,X59428614X,Mr.,Emery884,Swaniawski813,,,M,white,french,M,Stoneham,640 Connelly Key Suite 38,Haverhill,Massachusetts,01830 +6ca0237d-2d63-4501-8fa8-96e6fc1d1beb,2007-12-20,,999-47-6620,,,,Heather971,Gutkowski940,,,,white,french,F,Webster,323 O'Keefe Fort Unit 39,Middleborough,Massachusetts,02346 +52294d4c-b811-4de3-ace1-e2358f4ccb49,2001-03-27,,999-27-9919,S99993185,,,Reiko946,Metz686,,,,white,french,F,Boston,709 Hodkiewicz Row,Salem,Massachusetts,01907 +3f996c8b-f86d-4811-b298-eef1af3ed783,1934-10-21,2017-10-16,999-81-4882,S99923640,X15784638X,Ms.,Tisa11,Muller251,,,S,white,polish,F,Oakham,848 Raynor Well,Dedham,Massachusetts,02026 +c3c7f37d-92fd-46d4-b671-3659c1b5f979,1938-08-23,,999-96-2171,S99997845,X54703980X,Mrs.,Miyoko154,Legros616,,Bednar518,M,white,portuguese,F,Yarmouth,736 Larkin Rest,Bridgewater,Massachusetts,02324 +51aabd7d-222a-4add-be50-dd5ac0d2b94f,1959-08-28,,999-34-5408,S99977969,X70773462X,Mrs.,Shae705,Lang846,,Hoppe518,M,white,english,F,Lawrence,1082 Bernier Street,Quincy,Massachusetts,02169 +5fb5e78f-6e36-43f7-b597-09cf2312ee85,1961-06-03,,999-87-9938,S99960462,X53026068X,Mrs.,Dena356,Herman763,,Kub800,M,white,portuguese,F,Tewksbury,606 Johns Camp Apt 47,Medford,Massachusetts,02145 +a3792a8a-0d49-4a50-ac6c-ecc543fcbf0d,1983-03-29,,999-45-1771,S99956986,X81586952X,Mr.,Noe500,Cole117,,,M,white,french,M,Billerica,728 Orn Row Apt 78,Norton,Massachusetts,02766 +c1663d95-ba52-4774-95fc-63cbbda894ed,1979-06-06,,999-60-4184,S99925368,X23655677X,Mrs.,Myrl830,Swift555,,Jaskolski867,M,white,irish,F,Brockton,1082 Mills Wall,Norfolk,Massachusetts,02056 +8e057ef4-be52-4473-8782-81b58543a47e,1960-04-04,,999-17-5438,S99917477,X35641891X,Mr.,Vince741,Skiles927,,,M,white,english,M,Lynn,932 Willms Club Apt 8,Athol,Massachusetts,01331 +997d3a33-adfd-470e-b6f9-9898c0c97e2b,2015-09-02,,999-98-1726,,,,Nettie309,Fritsch593,,,,white,russian,F,Lawrence,598 Bosco Crossing,Norwood,Massachusetts,02062 +9c21a20e-6859-4d64-91e5-809980aeb14f,1966-08-21,,999-53-9152,S99992585,X45476672X,Mr.,Cordell41,Brown30,,,M,white,irish,M,Bellingham,572 Dickinson View,Barnstable Town,Massachusetts,02601 +27575e33-8519-47a4-b7dc-2b779b2cf156,1992-09-24,,999-25-9826,S99926465,X63018995X,Ms.,Twila243,Gorczany269,,,,white,english,F,Winthrop Town,339 Bradtke Mall Unit 6,Lowell,Massachusetts,01850 +908844a2-8691-46a9-8333-d227b95cdcab,2002-03-24,,999-54-7765,S99910791,,,Jeannine438,Bernhard322,,,,white,italian,F,Middleborough,974 Rowe Manor Suite 13,Boston,Massachusetts,02108 +81bb1626-ba8c-4531-ac39-82fc2d213caa,2004-01-09,,999-28-9423,,,,Jamaal34,Lubowitz58,,,,white,english,M,Stoneham,135 Skiles Dale,Lawrence,Massachusetts,01840 +5516d9cf-45b4-43b4-8af9-7075d5c0cc8a,2001-03-29,,999-40-8232,S99925286,,,Thersa321,Ryan260,,,,white,polish,F,Hudson,363 Rohan Row,Methuen Town,Massachusetts,01841 +bad4b7ed-cef0-4bc0-8e16-50db41f0ea30,1993-03-07,,999-56-7698,S99987864,X414404X,Mr.,Darius626,Paucek755,,,,white,irish,M,Barnstable Town,228 Goyette Alley Apt 55,New Bedford,Massachusetts,02740 +f579169a-1280-4166-b91b-40a3cd0532f4,1990-03-28,,999-73-7048,S99939642,X28175023X,Mr.,Alfonso758,Abshire638,,,M,white,swedish,M,Amherst,1055 Price Parade Unit 34,Norwell,Massachusetts,02061 +fcf0f85e-a1eb-4664-8d25-c13fe3ac9f0e,2010-11-27,,999-28-9385,,,,Evita885,Doyle959,,,,white,irish,F,Hingham,782 Murray Row,Boston,Massachusetts,02108 +fb8fa5ea-59df-4a14-a195-21c7e53a5f0f,2006-02-13,,999-43-5898,,,,Elizabeth24,Pouros728,,,,white,american,F,Springfield,561 McDermott Dale,Clinton,Massachusetts,01510 +253e4a36-51fe-405a-a013-aeaf0bd5fa76,1934-10-21,,999-12-7406,S99969038,X67212608X,Ms.,Beth967,Sipes176,,,S,white,polish,F,Boston,611 Abernathy Avenue Apt 4,Dedham,Massachusetts,02026 +3dd17bae-5fa3-40d7-9221-769e6bc15345,1975-05-05,,999-39-9983,S99925818,X63919837X,Mrs.,Grisel924,Boyer713,,Kiehn525,M,black,african,F,Boston,298 Torphy Camp,Framingham,Massachusetts,01701 +09e7a96a-d3e6-42b0-95d7-0b6054bbce2a,1987-01-15,,999-52-1568,S99962536,X59988382X,Mr.,Jerome176,Kub800,,,M,white,german,M,Needham,1003 Schiller Harbor Suite 64,New Marlborough,Massachusetts, +0adef127-4b45-4daa-8834-92b3de6347e6,1967-09-05,,999-38-9245,S99976145,X69780632X,Mr.,Errol226,Schamberger479,,,M,white,french_canadian,M,Cambridge,941 Bauch Mews Apt 51,Middleborough,Massachusetts,02346 +a6452d01-2610-43bd-bfba-3b7b09d97d7a,1979-05-25,,999-65-3151,S99938949,X1388418X,Mr.,Elton404,Hayes766,,,M,white,portuguese,M,Boston,781 Mills Underpass Unit 14,Halifax,Massachusetts,02338 +d1125dcc-3318-415e-8546-db95b5d67823,1965-07-29,,999-24-2424,S99962862,X33126822X,Ms.,Arvilla101,Upton904,,,S,white,irish,F,Lancaster,979 McKenzie Fort Suite 88,Boston,Massachusetts,02108 +9b2d07aa-4447-42b0-bc18-9dcf6a7ff4da,1997-07-05,,999-31-2374,S99984857,X72666467X,Ms.,Dagny669,Wolff180,,,,white,irish,F,Milton,796 Jacobi Loaf Suite 41,Warren,Massachusetts,01083 +3cb871f5-3fb9-4754-9fac-698dabb87cd4,2008-09-20,,999-24-4236,,,,Geraldine667,Schultz619,,,,white,french,F,Plymouth,382 Batz Gate,Brockton,Massachusetts,02301 +87e70e3b-9910-4493-9a01-06b130d859ff,1954-12-04,,999-14-5822,S99963343,X33119829X,Mr.,Allen322,Reinger292,,,M,white,italian,M,Medford,248 Daugherty Arcade Unit 52,Lynn,Massachusetts,01901 +41b78ade-9061-4018-af0f-d35cbcd2076c,1966-11-02,,999-59-2581,S99924751,X75382544X,Ms.,Shakira391,Gerlach374,,,S,white,italian,F,Salem,272 Koelpin Walk,Arlington,Massachusetts,02474 +035f549c-c2cb-4428-a856-2b0e1fadeb84,1939-05-29,2011-09-19,999-72-3411,S99999184,X77155419X,Mr.,Vicente970,Zboncak558,,,M,white,french_canadian,M,Lawrence,949 Kuhn Trace Suite 12,Worcester,Massachusetts,01545 +b3d2e30c-1257-4e2c-9c74-81a58cbf15bf,1942-03-29,1990-05-27,999-45-2729,S99919263,X87189307X,Mr.,Anton902,Cronin387,,,M,white,swedish,M,Burlington,628 Rutherford Rue Suite 16,Danvers,Massachusetts,01923 +eeb60d05-767e-4ee4-94d5-20a209018b9e,1997-07-01,,999-64-7553,S99947335,X23093041X,Mr.,Phillip440,Padberg411,,,,white,irish,M,Brockton,654 Jenkins Loaf Apt 1,Boston,Massachusetts,02108 +b9424bc3-5ec7-4485-8858-ef1eb5c2c3dd,2010-06-11,,999-57-7924,,,,Noma845,Ziemann98,,,,white,german,F,North Attleborough,414 Wiegand Neck,Dedham,Massachusetts,02026 +560c60de-4aec-4ec1-9daf-c20fe020da70,1956-02-13,,999-73-2002,S99930731,X6939039X,Mr.,Theo630,Mante251,,,M,white,french_canadian,M,Millbury,1059 Torphy Port,Worcester,Massachusetts,01545 +966005a6-2b31-44ff-a7f9-73f23fbff57c,1994-12-14,,999-52-3439,S99932798,X55561926X,Ms.,Debra128,Breitenberg711,,,,white,italian,F,Marshfield,422 Morissette Flat,Agawam Town,Massachusetts,01001 +cc6b347f-5bbb-469b-8304-fa384963818d,1999-05-23,,999-92-5631,S99998291,,Mr.,Timoteo39,Arroyo916,,,,hispanic,puerto_rican,M,Whitman,589 Gulgowski Lock,Springfield,Massachusetts,01013 +b257c786-b470-489d-96d0-16f96fae4513,1992-11-06,,999-46-8350,S99936972,X17840402X,Mr.,Amos720,Doyle959,,,,white,american,M,Chelmsford,653 Bins Park,Dartmouth,Massachusetts,02714 +ffa2bb9e-038e-4460-8ece-010a76d785e5,1967-08-12,,999-44-8140,S99913244,X39765260X,Mr.,Sheldon401,Hahn503,,,M,hispanic,puerto_rican,M,Boston,474 Gorczany Mews,Newton,Massachusetts,02458 +b530a685-2d4f-4983-8fe4-feea61726eb3,1965-01-08,,999-76-6019,S99981142,X19242803X,Mrs.,Buena501,Simonis280,,Pagac496,M,white,english,F,Shrewsbury,624 Gutmann Pathway Apt 8,Quincy,Massachusetts,02169 +7a839433-d077-47f9-af60-a5dd2fa1d447,2009-10-07,,999-12-2055,,,,Buford910,Morar593,,,,white,english,M,Westport,343 Veum Way Suite 49,Milton,Massachusetts,02186 +55498d3e-ece1-4d5a-97a0-142eea0ac337,1966-01-18,,999-62-6816,S99915365,X4570570X,Mr.,Millard193,Keeling57,,,M,white,american,M,Sharon,570 Pacocha Drive Unit 82,Adams,Massachusetts,01220 +5e3975b5-6c40-4712-9e05-40e6bbcba27d,1942-03-29,,999-28-9928,S99982747,X87164418X,Mr.,Sylvester827,Feeney44,,,M,white,swedish,M,Lawrence,240 Friesen Annex,Danvers,Massachusetts,01923 +40b0ee48-448b-44e1-910e-732bd71642e4,1939-05-29,,999-87-7292,S99938960,X62414415X,Mr.,Cedrick207,Wilkinson796,,,M,white,french_canadian,M,Arlington,1024 Fisher Passage Unit 89,Worcester,Massachusetts,01545 +c234dcef-4c2f-41f3-9865-af8d9468749f,1965-10-18,2018-11-05,999-54-5934,S99993217,X21301723X,Mr.,Donte636,Abernathy524,,,M,white,irish,M,Randolph,685 Mitchell Trace,Leominster,Massachusetts,01420 +c3480d48-aed7-4687-85f8-26c9019b9267,1971-07-20,,999-36-5043,S99924583,X89314663X,Mrs.,Diana207,Salcedo309,,Treviño536,M,hispanic,puerto_rican,F,Revere,421 Baumbach Corner,Holyoke,Massachusetts,01040 +5c384643-110e-44e6-a4b6-58d19f21d414,2002-07-03,,999-16-6471,S99953668,,,Kellie778,Rolfson709,,,,white,irish,F,Middleborough,888 McKenzie Haven,Brockton,Massachusetts,02301 +695459a0-0b2b-47b9-bec8-53cc4b820ecb,1990-03-19,,999-55-6989,S99988182,X508967X,Mrs.,Jenniffer979,Marks830,,Little434,M,white,polish,F,Marlborough,391 Steuber Wynd Unit 88,Acushnet,Massachusetts,02743 +8133ac1c-799a-4653-85e7-cc4822cfe0e5,1961-05-10,,999-67-6689,S99931409,X84699301X,Ms.,Cecilia788,Montez99,,,S,black,west_indian,F,Needham,267 Bernhard Knoll,Boston,Massachusetts,02108 +92a63ca6-dbd4-45f0-9d80-414ae987ad67,1951-03-18,2012-01-22,999-84-6341,S99920631,X35300173X,Mr.,Forrest301,Koch169,,,M,white,french,M,Northampton,209 Osinski View,Boston,Massachusetts,02108 +9f93b11d-4755-424a-a720-1c0269b82b57,1962-09-09,,999-90-2333,S99976249,X66121907X,Mr.,Bennett146,Ruecker817,,,M,white,english,M,Barnstable Town,412 Mertz Road,Peabody,Massachusetts,01940 +7872ecec-c619-4669-b210-6aa815cdb97a,2004-05-16,,999-56-3202,,,,Sadie426,Hermann103,,,,white,german,F,Boston,583 Howell Bypass Apt 65,Barnstable Town,Massachusetts,02601 +1b3765f1-7db7-4504-b655-8a9fa2955364,1953-12-08,1978-07-05,999-97-9791,S99950339,X27903652X,Ms.,Leesa210,Krajcik437,,,,white,american,F,Brockton,100 Lang Gateway,Revere,Massachusetts,02151 +b1dad898-24a7-4c4b-b957-8b80ed8eb636,1965-10-18,,999-31-3372,S99924283,X28504445X,Mr.,Bradly656,Batz141,,,S,white,irish,M,Somerville,1091 Medhurst Gardens Apt 86,Leominster,Massachusetts,01420 +297c31d8-c155-4a4c-b39d-6481f92b0acc,1989-03-19,,999-24-5110,S99995789,X34707517X,Mrs.,Robena997,Johns824,,Osinski784,M,asian,chinese,F,Boston,1005 Sanford Pathway,Boston,Massachusetts,02108 +ad7fb4ed-7d79-4afb-84e5-4883b285094b,1950-10-29,1984-05-13,999-88-6123,S99952363,X15952074X,Mrs.,Cindie288,McLaughlin530,,Marks830,M,black,west_indian,F,Essex,764 Willms Esplanade,Waltham,Massachusetts,02451 +09cf2469-4fa0-434b-90cd-9351025a43b5,1957-03-25,,999-35-5267,S99941096,X54367406X,Ms.,Majorie11,Heller342,,,S,white,italian,F,Lawrence,873 Moen Crossing Apt 94,Bourne,Massachusetts,02532 +f7ae2d8b-99b4-4aa8-967f-7e415b21d37e,1942-07-08,1951-02-21,999-47-9415,,,,Junior695,Kulas532,,,,white,american,M,Gloucester,619 Hickle Arcade Unit 11,Dracut,Massachusetts,01826 +4ea98bae-5713-472e-bd1b-67cd7abce8fb,1967-03-26,,999-16-9395,S99998738,X29793845X,Mr.,Ariel183,Lynch190,,,M,white,french,M,Boston,356 Auer Drive Apt 35,Southwick,Massachusetts,01077 +4bedffc2-8f5a-48de-a509-d5e6f94f7794,1949-11-07,,999-89-9146,S99943531,X21610728X,Mrs.,Onita767,Trantow673,,Towne435,M,white,english,F,Buckland,374 Conroy Course,Dartmouth,Massachusetts,02714 +8061f533-7f7f-4023-b147-59c26936eaf3,2014-05-25,,999-13-7845,,,,Christie481,Quitzon246,,,,white,irish,F,Quincy,619 Herzog Street,Dracut,Massachusetts,01826 +c0b3190f-859e-4ee6-baa5-d4eaec9bcf9a,1945-07-29,,999-76-6403,S99936804,X9580357X,Mrs.,Shane235,Streich926,,Nicolas769,M,white,french_canadian,F,Norton,347 Jones Highlands,Middleborough,Massachusetts,02346 +8a7c9ab0-3160-4d77-ae1b-03ad2ddcc2e2,1950-10-29,,999-28-4398,S99929283,X82987570X,Ms.,Joni720,MacGyver246,,,S,black,west_indian,F,Worcester,308 O'Hara Junction,Waltham,Massachusetts,02451 +44d2e32b-34db-4baf-b34d-9e43139658dc,2008-06-13,,999-75-7721,,,,Marshall526,Schaden604,,,,white,polish,F,Seekonk,554 Beahan Parade Apt 10,Milford,Massachusetts,01757 +14d5aeb0-6fcc-4a22-a191-58decb9d5516,1951-03-18,,999-28-4246,S99910379,X67807360X,Mr.,Marlin805,Jakubowski832,,,M,white,french,M,Ashland,722 Welch Ville,Boston,Massachusetts,02108 +c8c55f01-dc75-4ece-a1fd-fe1f20098db7,1953-12-08,,999-93-5297,S99969058,X41836859X,Mrs.,Carisa395,Hilpert278,,Glover433,M,white,american,F,Brookline,582 Reynolds Green Unit 21,Revere,Massachusetts,02151 +d99c1be8-fbcb-43e2-ab32-f50407456378,1947-10-08,,999-91-4470,S99954957,X22223489X,Mrs.,Verlie371,Kling921,,Hilpert278,M,white,portuguese,F,Worcester,882 Kilback Corner Unit 69,Woburn,Massachusetts,01801 +aca6f2eb-8d62-4781-ae25-9ebba6369512,2002-08-02,,999-25-6087,S99930952,,,Fritz267,Schamberger479,,,,asian,chinese,M,Boston,852 Borer Branch Unit 89,Needham,Massachusetts,02492 +2b20f942-74a4-4e42-8135-0951afbdeeee,1942-07-08,2005-03-30,999-28-3252,S99951557,X7480796X,Mr.,Dario75,Harvey63,,,M,white,american,M,East Bridgewater,1095 Hansen Junction,Dracut,Massachusetts,01826 +e5697bb1-3acc-4885-b74f-283d06eedce4,1995-11-07,,999-81-4680,S99997480,X44507283X,Ms.,Olinda137,Zulauf375,,,,white,italian,F,Worcester,228 Kunde Frontage road Apt 4,Everett,Massachusetts,02148 +8f73c721-4fec-431c-b85d-8a1af54395ab,1989-10-24,,999-54-4950,S99991736,X41697071X,Mr.,Adrian111,Macejkovic424,,,M,white,german,M,Fall River,900 Hammes Promenade Suite 76,Lynn,Massachusetts,01901 +3d506b9b-4574-4e50-8a14-11bf1154740d,1978-11-21,,999-66-7909,S99960581,X56128088X,Ms.,Ebony669,Stark857,,,S,hispanic,south_american,F,Weston,740 Kovacek Ferry Apt 16,Malden,Massachusetts,02148 +31b9d9b9-3587-415a-b3a8-ecedd8f75e2c,1941-11-18,2006-01-14,999-98-2445,S99999693,X55321610X,Mr.,Lorenzo669,Montañez267,,,S,hispanic,central_american,M,Bedford,143 Ebert Lock Suite 28,Westfield,Massachusetts,01085 +d48b8dd7-0064-4cfa-9d61-d38797693ec8,1988-11-03,,999-48-8480,S99959163,X55571719X,Mrs.,Nedra260,Abernathy524,,Lubowitz58,M,black,west_indian,F,Barnstable Town,1053 Hintz Fort,North Attleborough,Massachusetts, +d70b9606-3618-483d-a593-d19174ddc5f6,1951-11-29,,999-84-5353,S99982434,X85322789X,Ms.,Eura647,Wisozk929,,,S,white,polish,F,North Reading,722 Bins Way Apt 47,Quincy,Massachusetts,02169 +90b14673-8e90-49e7-895e-918cee477792,2005-09-23,,999-37-4631,,,,Clayton230,Stanton715,,,,white,english,M,Harvard,488 DuBuque Esplanade,Cambridge,Massachusetts,02138 +2a684907-c42a-4413-8792-0b741909a7cb,2012-08-10,,999-98-6224,,,,Antony83,Ledner144,,,,white,italian,M,Worcester,769 Jenkins Village,Plymouth,Massachusetts,02360 +5b06d1ea-8735-4275-b080-e49db16b8cc8,1948-01-28,,999-75-6302,S99973664,X68149844X,Mr.,Everette494,Lesch175,,,S,white,swedish,M,Amherst,991 Koepp Trace Suite 35,New Bedford,Massachusetts,02740 +913b0920-f37f-401c-9adb-fc4db66bdeb6,1942-07-08,,999-44-5259,S99935602,X41539723X,Mr.,Dick869,Mitchell808,,,M,white,american,M,Fitchburg,864 Feeney Mews,Dracut,Massachusetts,01826 +cdc2a737-20a7-4381-bc49-54642d3302d3,2013-11-23,,999-25-3558,,,,Kasie673,Pfannerstill264,,,,white,irish,F,Worcester,137 Schaefer Branch,Lynn,Massachusetts,01901 +9ab7c2fb-98f8-4fee-9930-5caf1a4fa1eb,1941-11-18,,999-69-8497,S99980303,X56594729X,Mr.,Martín25,Correa904,,,M,hispanic,central_american,M,Georgetown,431 Bradtke Crossroad,Westfield,Massachusetts,01085 +4102e0cb-b306-4e7b-8457-7eba68348509,1958-11-03,,999-30-1795,S99938068,X56727210X,Mrs.,Crystle668,Daugherty69,,Prohaska837,M,white,scottish,F,Newburyport,836 Kutch Trail Apt 41,Somerville,Massachusetts,02138 +076dc338-f5e9-4fca-a2be-ef6f6b8467cf,1961-12-05,,999-19-8446,S99969797,X35125278X,Ms.,Minerva230,Smitham825,,,S,white,irish,F,Dedham,617 Roberts Trafficway,Swampscott,Massachusetts,01907 +4f1e041c-83ac-4137-85f3-afd468f2d20b,1983-09-19,,999-47-1878,S99949251,X36821796X,Mrs.,Dortha70,Conn188,,Braun514,M,white,irish,F,Boston,674 Dare Path,Dartmouth,Massachusetts,02714 +be5a90c2-210c-4a3c-a22c-4944a404cffe,1967-04-23,,999-51-4535,S99926032,X25325239X,Mrs.,Earnestine14,Ryan260,,Dibbert990,M,white,german,F,Boston,566 Schimmel Alley,Eastham,Massachusetts,02642 +449296ea-d4b1-4865-819e-0cfbee74e382,2016-11-14,,999-54-3795,,,,Jackie93,Gutkowski940,,,,white,polish,M,Quincy,968 Dooley Dale Apt 31,Walpole,Massachusetts,02081 +3960fa52-cfec-412e-98e3-f30ab5c5b75f,1956-06-08,,999-43-6539,S99953796,X11853766X,Mrs.,Janina163,Smith67,,Cassin499,M,white,american,F,Boston,333 Larson Mission,Boston,Massachusetts,02108 +f55ecbee-c608-4e6e-bab4-983dd5c791ee,1976-07-13,,999-70-6755,S99963104,X84840839X,Mr.,Wilfredo622,Kutch271,,,M,white,polish,M,Boston,848 Larkin Knoll,Lowell,Massachusetts,01850 +d8a96736-e2f0-4244-8042-e4de8c273227,2000-06-11,,999-14-3644,S99911174,,Mr.,Cristopher265,Dibbert990,,,,native,american_indian,M,Stoughton,318 Conroy Well,Boston,Massachusetts,02108 +b7ebb051-79ab-4d6b-9166-b8283c4f88c8,1997-01-12,,999-56-5953,S99999242,X70980349X,Mr.,Weldon459,Nader710,,,,white,english,M,Boston,371 Ernser Avenue Unit 91,Hopkinton,Massachusetts,01748 +d1e427c7-4197-4011-896b-3467642dc1b9,1995-10-19,,999-27-9433,S99989994,X23243696X,Ms.,Adele475,Schulist381,,,,white,irish,F,Blackstone,820 Anderson Tunnel Suite 93,Boston,Massachusetts,02108 +f99af284-d3ea-4852-9773-7c4301a72c37,1969-09-27,,999-90-5319,S99947721,X76942788X,Mrs.,Afton574,Eichmann909,,Kuhlman484,M,white,polish,F,Weston,447 Treutel Center Suite 69,West Springfield Town,Massachusetts,01089 +856dcc1c-d70e-45a2-9724-4a2c143fba8a,1975-11-20,,999-26-3743,S99943098,X20929056X,Mrs.,Susana117,Patiño436,,Pagan507,M,hispanic,mexican,F,Andover,1059 Senger Bridge Suite 18,Springfield,Massachusetts,01013 +b90b6679-bb79-4121-a47b-407b04eecf80,2018-09-15,,999-65-8465,,,,Amie520,MacGyver246,,,,white,irish,F,Melrose,673 Harris Annex Suite 90,Belchertown,Massachusetts,01007 +bab58370-921a-4e15-ae88-f3ea5198ec6d,1980-07-26,,999-77-4745,S99952192,X70526171X,Mr.,Adolph80,O'Connell601,,,M,white,scottish,M,Montague,207 Schimmel Gardens,Burlington,Massachusetts,01803 +c414e90a-12cb-4ceb-9895-4728161f46d8,1973-06-22,,999-22-1045,S99956570,X78703903X,Ms.,Selma398,Boyer713,,,S,white,english,F,Worcester,773 Bergnaum Extension Suite 40,Bellingham,Massachusetts,02019 +91925053-fab9-4a1f-b8c4-8356e99ef07b,1945-07-02,,999-55-6581,S99920469,X67476645X,Mrs.,Audrey678,Hermann103,,Heathcote539,M,white,italian,F,Plainville,853 Larson Passage,Upton,Massachusetts,01568 +6977c817-a296-434f-9184-703d650f25b8,2007-05-15,,999-15-3094,,,,Ellen406,Welch179,,,,black,african,F,Hopkinton,1094 Treutel Gardens Suite 75,North Andover,Massachusetts,01845 +6c9cdda0-68f2-4abb-a705-1f5bb37a9409,1954-10-23,,999-69-6293,S99956276,X80496858X,Ms.,Demetria799,Walsh511,,,S,white,irish,F,Taunton,554 Schumm Skyway,Newbury,Massachusetts,01951 +9a4124d9-2a5c-4da7-851d-5eb6582b561a,1975-05-10,,999-93-6612,S99929448,X86996489X,Mrs.,Lois157,Kris249,,Waters156,M,white,french_canadian,F,Lynn,1083 Okuneva Road Apt 4,Worcester,Massachusetts,01545 +6107e913-3dc3-46e0-a6c9-0bba951056ef,1969-03-30,,999-37-2712,S99951101,X44384575X,Mr.,Jessie665,Jacobson885,,,M,white,italian,M,Bellingham,853 Steuber Wall Unit 29,Holyoke,Massachusetts,01040 +d0974e32-cca1-4cd6-8682-57cc1e8f7a56,1986-12-01,,999-72-4832,S99970187,X24096990X,Mrs.,Lael572,Wisoky380,,Williamson769,M,white,french_canadian,F,Bourne,485 Emard Promenade Suite 27,Everett,Massachusetts,02148 +1b20244e-0e83-444a-be1e-52dc50dc7ed3,2016-02-04,,999-83-3977,,,,Myra819,McDermott739,,,,white,swedish,F,Sandwich,349 Hilpert Fork,Milton,Massachusetts,02186 +e84b0a8c-4c38-4569-abf6-8a048021c9d0,2003-11-24,,999-45-8628,,,,Ofelia194,Streich926,,,,white,german,F,Arlington,602 Sanford Frontage road Apt 85,New Bedford,Massachusetts,02740 +ece6e259-95ce-49c5-a655-286f3a24ae3e,2003-01-24,,999-93-1108,,,,Elden718,Ferry570,,,,white,italian,M,Quincy,765 Raynor Loaf,Berkley,Massachusetts,02779 +a9735ef8-298c-45e8-a30c-39439a308b45,1996-10-16,,999-99-4662,S99920471,X15438682X,Mr.,Scotty190,Aufderhar910,,,,white,french_canadian,M,Waltham,709 Cummings Tunnel Unit 19,Hanson,Massachusetts,02341 +0d2a2b34-97a2-4e11-83eb-e20992d98288,1988-10-31,,999-85-2683,S99962296,X13772251X,Mr.,Michal596,Hudson301,,,M,black,west_indian,M,Malden,838 Wunsch Club,Boston,Massachusetts,02108 +fb61bf0e-19ae-4fe2-8178-8f2adb2c58c1,1974-07-19,,999-83-5198,S99978874,X5342732X,Mr.,Tom274,Dickens475,,,M,white,italian,M,Taunton,775 Shanahan Trace Unit 41,East Longmeadow,Massachusetts,01028 +89ba1c0e-32a0-4127-8677-51d3887f84bd,1966-08-31,,999-42-8984,S99945453,X60827604X,Mrs.,Hettie215,Feest103,,Sawayn19,M,black,dominican,F,Paxton,478 Fadel Bridge,Leominster,Massachusetts,01420 +6ed237a4-4c38-4d6e-8eb4-afb5c75e69eb,1995-09-16,,999-27-9806,S99984245,X80436831X,Mr.,Ernesto186,Narváez57,,,,hispanic,puerto_rican,M,Boston,1072 Goodwin Arcade,Westfield,Massachusetts,01085 +60903e8c-d0a7-4cae-ba3d-4688a9f12071,1972-01-13,,999-18-2477,S99981760,X30903426X,Ms.,Jerrie417,Pagac496,,,S,white,french,F,Ware,676 Beatty Parade,Swansea,Massachusetts,02777 +4f20b7ec-9e3a-4ee9-98ba-333498ec7071,1969-08-12,,999-42-9831,S99970552,X29659451X,Ms.,Linn541,Daugherty69,,,S,white,english,F,Fall River,501 Stracke Arcade Apt 59,Revere,Massachusetts,02151 +8a4941cf-833f-4de9-9c3d-78c3ecc7756b,1998-12-13,,999-66-7838,S99978161,,Mr.,Terence292,Balistreri607,,,,white,portuguese,M,Boston,308 Miller Street,Wellesley,Massachusetts,02457 +1948fabe-3f86-4dcc-b6db-bcbdf59008e1,1963-08-27,,999-96-8622,S99992992,X88171620X,Ms.,Shandra823,Dicki44,,,S,white,portuguese,F,Sharon,184 Hyatt Street Unit 48,Brockton,Massachusetts,02301 +5cd3124f-607e-4c86-9b2f-895dcb2a460b,1962-03-25,,999-68-3897,S99960152,X1853060X,Mr.,Miguel815,Pagan507,,,M,hispanic,central_american,M,Lynnfield,168 Zboncak Drive,Holyoke,Massachusetts,01040 +97afae76-0ad5-4f08-ab13-26bc22e1d6fc,1980-05-14,,999-89-8151,S99950484,X54693886X,Mr.,Gerardo48,Ortega866,,,M,hispanic,puerto_rican,M,Norwood,381 Bogisich Gateway,Boston,Massachusetts,02108 +bff94f8a-1ae0-4efa-892d-948e2618df05,2001-04-09,,999-63-9308,S99957235,,,Mel236,White193,,,,white,italian,M,Ashland,855 Monahan Route,Lowell,Massachusetts,01850 +11167859-c42e-4bfd-86af-2ba265128539,1953-12-29,,999-36-4240,S99977082,X2953522X,Mr.,Anderson154,Mohr916,,,S,white,portuguese,M,Northampton,951 MacGyver Track,Falmouth,Massachusetts,02540 +336a960e-4c69-4f5e-8a40-e587da4c1151,1975-09-09,,999-49-3783,S99939384,X85464340X,Mr.,Mohammad578,Adams676,,,M,white,german,M,Ashburnham,741 Ullrich Light Unit 83,Middleborough,Massachusetts,02346 +6688db46-0c22-4b88-88d4-a67cef203f53,1989-07-25,,999-88-4840,S99925446,X49991472X,Mrs.,Susy776,Kreiger457,,Strosin214,M,white,irish,F,Stoughton,542 Dicki Divide Suite 64,Waltham,Massachusetts,02451 +70e0ebc4-bbd5-43c4-9d95-e568b92ab9e6,1977-12-21,2003-07-30,999-56-7970,S99998601,X69582963X,Mr.,Jaime666,Nicolas769,,,,white,portuguese,M,Southbridge Town,102 Miller Bypass Apt 55,Lunenburg,Massachusetts,01462 +3f8736e7-0528-4dd8-881a-fabc25fc2f6c,1971-05-25,,999-10-5041,S99941941,X76335431X,Mr.,Elvis145,D'Amore443,,,M,white,portuguese,M,Billerica,215 Predovic Branch Apt 14,Wakefield,Massachusetts,01880 +c839236b-02d9-4cb7-aa5e-ceebbdd4b932,1963-10-23,,999-99-8952,S99996101,X41320816X,Mrs.,Jenette717,Wuckert783,,Beahan375,M,white,irish,F,Lancaster,692 Bergstrom Drive Unit 25,Amherst,Massachusetts,01002 +bd1bd343-858b-433a-b8e2-5e3611f0fa01,1990-02-15,,999-10-5813,S99973426,X25894092X,Mrs.,Lakita48,Crona259,,Marvin195,M,white,italian,F,Salem,448 Connelly Approach Apt 96,Boston,Massachusetts,02108 +d28a6a2e-4996-4ce0-ba48-0166b6bdf9e9,2001-10-28,,999-83-6341,S99990082,,,Troy560,Zieme486,,,,white,polish,M,Worcester,483 Homenick Glen,Lowell,Massachusetts,01850 +72c848e9-0a4c-46f7-95eb-e04a3c311b41,1992-06-08,,999-32-1473,S99915685,X27316542X,Mr.,Riley817,Denesik803,,,,white,italian,M,Cambridge,757 O'Keefe Stravenue,Dedham,Massachusetts,02026 +e7088334-69bb-415b-a224-05b3e8850388,1977-12-21,,999-28-5798,S99964320,X33086716X,Mr.,Boyd728,Sawayn19,,,M,white,portuguese,M,Melrose,1021 McClure Manor,Lunenburg,Massachusetts,01462 +b1bd2a20-42b5-46b0-a3dc-ad3076302b19,2002-05-21,,999-34-7486,S99935991,,,Tyree261,Upton904,,,,white,irish,M,Lowell,1024 Bogan Trail Suite 11,Mansfield,Massachusetts,02048 +35ca7a59-22ce-4cce-85de-3151ca91fc6c,1972-02-21,,999-62-5622,S99912674,X2293746X,Mrs.,Alejandra902,Balderas66,,Hernádez343,M,hispanic,puerto_rican,F,Plymouth,570 Schinner Divide,Boston,Massachusetts,02108 +9de6abe9-2a8e-4b54-bcc9-d4275409bf41,1995-10-11,,999-74-7443,S99946324,X79043071X,Mr.,Margarito178,Bednar518,,,,white,english,M,Springfield,441 Berge Divide Unit 38,Boston,Massachusetts,02108 +f3a7a45a-6aec-42bd-9bbd-cbef69ed34b0,2015-03-01,,999-39-3297,,,,Dominick530,Orn563,,,,white,italian,M,Amherst,520 Hartmann Trail,Norwood,Massachusetts,02062 +f0e8064f-712b-49c0-9010-390db927f1ee,1961-09-11,,999-38-5614,S99921429,X75482020X,Mr.,Henry768,Kertzmann286,,,M,white,italian,M,Weymouth Town,838 Haley Overpass,Hingham,Massachusetts,02043 +7d076212-d6a3-491f-8153-ec43e20874e9,1938-01-14,2018-08-20,999-13-6264,S99949837,X59697250X,Mr.,Monte325,Lebsack687,,,M,white,italian,M,Spencer,1092 Marks Frontage road Apt 14,Brockton,Massachusetts,02301 +02d0bd01-4c89-41e8-bbdc-1aa919278c12,1975-07-23,,999-36-9007,S99930359,X70996857X,Mrs.,Chanda935,Blanda868,,Wisozk929,M,white,french,F,Chester,748 Kassulke Port Unit 42,Quincy,Massachusetts,02169 +f18172e8-b3e4-4a22-b083-a49ba1aeb882,1975-08-10,,999-57-9611,S99979359,X52710700X,Mrs.,Lovie151,Stiedemann542,,Cartwright189,M,white,scottish,F,Boston,258 Reichert Walk,Sharon,Massachusetts,02067 +ce6290fb-44a4-462e-bdf0-902acf257add,1973-07-26,,999-23-3206,S99946695,X10463960X,Mrs.,Sparkle906,Lakin515,,Cummerata161,M,asian,asian_indian,F,Springfield,861 Kulas Branch Apt 63,Boston,Massachusetts,02108 +0f882b76-ef94-4ae1-8b41-581d8d724f1f,1983-10-13,,999-68-4367,S99975222,X58709549X,Mr.,Delbert384,Graham902,,,M,white,irish,M,Middleborough,1018 Predovic Mall,Newton,Massachusetts,02458 +a8c6ec39-2d34-4dc5-b0db-bb1e781cd994,1959-05-20,2004-01-21,999-40-1923,S99945352,X48163636X,Mr.,Stefan297,Abshire638,,,M,white,french_canadian,M,Holden,758 Corkery Grove Apt 46,Lawrence,Massachusetts,01840 +9cb7eae5-053c-4778-86fe-0dd7b13df567,1968-08-13,,999-17-7210,S99997628,X78336098X,Mrs.,Darcie474,Connelly992,,Lehner980,M,white,irish,F,Wrentham,319 Jones Knoll Unit 75,Fall River,Massachusetts,02720 +33398d81-879d-4768-a752-ec57052526bd,1964-10-13,,999-35-1005,S99955874,X83245765X,Mr.,Brent147,Aufderhar910,,,M,white,american,M,Boston,992 Hand Approach,Somerville,Massachusetts,02138 +82d6b5f8-2888-421a-9015-b38a57705a19,1998-03-25,2014-02-26,999-88-3416,,,,Richie600,Reichel38,,,,white,scottish,M,Medford,1058 Auer Ville,Brockton,Massachusetts,02301 +c5a84ba5-2b9f-4d46-a4d2-a56c38d3b009,1976-01-01,,999-42-9629,S99923626,X12862723X,Mr.,Gary33,Fadel536,,,M,white,american,M,Brockton,976 Auer Highlands Apt 98,Holliston,Massachusetts,01746 +e6d88a16-75d2-464e-92f2-3ece0ab6bf92,1990-05-03,,999-89-1698,S99957918,X51615284X,Mr.,Paris331,Goldner995,,,S,asian,chinese,M,Natick,292 Kris Junction,Beverly,Massachusetts,01915 +1fd17389-c788-4054-b3f2-efbb2df33d67,1998-03-25,,999-78-4685,S99947432,X83515991X,Mr.,Asa127,Tromp100,,,,white,scottish,M,Swansea,913 Volkman Pathway Suite 45,Brockton,Massachusetts,02301 +41175c22-69b8-48e5-b21b-73e885a4a78e,2000-12-03,,999-97-9810,S99970923,,,Christoper325,Abbott774,,,,white,french,M,Berlin,975 Maggio Frontage road,Barnstable Town,Massachusetts,02601 +cfbece0e-dd8e-4d37-a51b-8080c9862076,1977-09-16,,999-59-9131,S99973243,X9635054X,Ms.,Marita360,Lubowitz58,,,S,white,irish,F,Billerica,372 Lang Row Unit 66,Somerville,Massachusetts,02138 +108363ee-a5b3-40da-ad44-ed04221267da,1961-08-24,,999-62-3622,S99926172,X22310659X,Ms.,Quyen270,Dooley940,,,S,white,american,F,Methuen Town,344 Spencer Meadow Suite 86,Pittsfield,Massachusetts,01201 +8d6c3373-7908-4816-88b9-c6ba82efe35b,1994-02-09,,999-38-5061,S99917254,X70808449X,Ms.,Teresa94,Riojas420,,,,hispanic,puerto_rican,F,Orleans,258 Barton Gate Unit 99,Salem,Massachusetts,01907 +56b20908-5b24-4882-b2c0-51ed70631724,1970-07-30,,999-83-8116,S99960182,X63483590X,Mr.,Chauncey770,Senger904,,,M,white,irish,M,Quincy,888 Treutel Throughway,Fitchburg,Massachusetts,01420 +d4f8dbc1-63a1-492c-b356-fdf8c2ea291e,1977-09-01,,999-78-6140,S99919066,X59597316X,Mr.,Wiley422,Monahan736,,,M,white,italian,M,Adams,1084 Kunde Dale Suite 25,Seekonk,Massachusetts,02771 +bdab90cb-af41-4709-aee4-213ba9495bfe,1938-01-14,,999-20-2543,S99999073,X21192292X,Mr.,Hong136,Hermann103,,,M,white,italian,M,Braintree Town,493 Hauck Frontage road Apt 86,Brockton,Massachusetts,02301 +83291dc7-dd52-4770-9932-0d03c299b103,2016-12-29,,999-74-7958,,,,Makeda237,Bauch723,,,,white,russian,F,Boston,519 Goodwin Common,Brockton,Massachusetts,02301 +6f5085d9-b87f-4b64-a794-03cbae6b55ca,1995-02-04,,999-47-7357,S99916878,X14467765X,Mr.,Porter490,Deckow585,,,,white,english,M,Melrose,229 Turcotte Run,Brockton,Massachusetts,02301 +fb64ab0e-de00-45bd-aa81-36045713933c,1975-06-08,,999-84-3195,S99993223,X17240708X,Mr.,Antone63,Glover433,,,M,white,irish,M,Pittsfield,805 Wolf Plaza,Westford,Massachusetts,01886 +ba079af8-af85-4b05-999a-81b06b747207,1959-05-20,,999-38-8300,S99921434,X27002763X,Mr.,Earnest658,Nikolaus26,,,M,white,french_canadian,M,Cambridge,190 Schaden Orchard Unit 87,Lawrence,Massachusetts,01840 +206166f8-cf61-49c1-a0db-44be27bd9f82,1972-09-05,,999-92-1145,S99946274,X88510847X,Mr.,Len277,Hagenes547,,,M,black,dominican,M,Wellesley,425 Howell Junction,Adams,Massachusetts,01220 +9ed54393-d881-4712-88ae-f98f9c3a2777,1973-06-25,,999-87-7303,S99931967,X53475000X,Mr.,Arron144,Fay398,,,M,white,italian,M,Kingston,875 Cronin Passage,Dartmouth,Massachusetts,02714 +7af07d6f-9fab-41da-8574-9da7707ac47d,1986-04-29,,999-23-9266,S99989408,X1806864X,Mr.,Gustavo235,Rosario163,,,M,black,west_indian,M,Lexington,786 Kunde Frontage road Suite 20,Southbridge Town,Massachusetts,01550 +8990262b-2293-4f11-89e4-314b9d24c4e1,2013-08-21,,999-32-9768,,,,Darren774,MacGyver246,,,,white,french,M,Springfield,884 Little Wall Apt 53,Peabody,Massachusetts,01940 +87e905ba-7956-4888-84a9-89e1bd2f0afc,1990-11-08,,999-47-3794,S99943390,X85759597X,Mr.,Edgardo196,Lebsack687,,,M,white,irish,M,Middleborough,424 Flatley Club,Cambridge,Massachusetts,02138 +a03745ed-f1b6-4afb-80fd-56ea0b6a70f2,1996-09-09,,999-17-8441,S99968594,X51750393X,Mr.,Josiah310,Wintheiser220,,,,white,italian,M,Montgomery,861 Carroll Crossroad Apt 38,Brockton,Massachusetts,02301 +8f106311-2bbd-4cb5-81d1-e7513361dd6a,2001-07-25,,999-95-3557,S99964582,,,Lyndsey828,Haag279,,,,white,english,F,Walpole,158 Fisher Lane Apt 45,Marlborough,Massachusetts,01752 +5ce0bc3b-2e6c-455e-b1ff-c3d228a23a8c,1956-09-24,,999-91-8105,S99946130,X33362422X,Mrs.,Roslyn469,Hilll811,,Nienow652,M,white,english,F,Holbrook,230 Glover Dale,Nantucket,Massachusetts,02554 +9f88476d-1a58-44e4-a588-c935b38247bc,1976-06-06,,999-87-6573,S99916256,X35725936X,Mr.,Fredrick998,Reichel38,,,S,white,french,M,Boston,854 Watsica Mill,Canton,Massachusetts,02021 +c68d667e-a3cc-4f48-b647-042bf0db2961,1973-11-24,,999-82-2089,S99986138,X14971720X,Mrs.,Chloe501,Wisoky380,,Grimes165,M,black,west_indian,F,Boston,135 Lemke Burg Suite 48,Chelsea,Massachusetts,02149 +5d383fe4-598d-4ca0-9105-34bb04b19294,2003-07-07,,999-94-3135,,,,Charity776,Smitham825,,,,white,italian,F,Boston,619 Jacobs Common,Randolph,Massachusetts,02368 +5d2ad201-106f-4ba4-8c03-35d75c282248,1987-12-22,,999-40-2360,S99911457,X46107356X,Ms.,Mabel261,Leffler128,,,S,white,english,F,Northbridge,588 Kemmer Village,Somerville,Massachusetts,02138 +9452c1f3-9672-4be5-a88b-aa0e6a7e9d9c,1995-10-23,,999-12-5059,S99956523,X19487850X,Ms.,Joya53,Huels583,,,,white,irish,F,Fall River,346 Barton Frontage road Apt 64,Westford,Massachusetts,01886 +1696d6e6-80fe-457d-8f7c-8eb475a4303e,2003-01-12,,999-47-5866,,,,Colby655,Carter549,,,,white,polish,M,Norfolk,546 Morissette Quay,West Springfield Town,Massachusetts,01089 +6fd3d6b6-c605-44d6-95e7-3558dab77cdf,1974-11-06,,999-97-4398,S99910618,X58398065X,Mrs.,Georgene966,Crist667,,Lowe577,M,white,swedish,F,Boston,1010 Bartell Street Suite 24,Fall River,Massachusetts,02720 +4541263a-8c5c-43f5-98c1-0c1a718eb382,1981-09-23,,999-38-3018,S99913621,X48656095X,Mr.,Reuben327,Green467,,,M,white,portuguese,M,Boston,952 Hermiston Frontage road Unit 38,Agawam Town,Massachusetts,01001 +d0fcf479-e737-4ac5-8c9c-c0a430dfe509,1958-08-02,,999-25-9664,S99978992,X37999612X,Mr.,Blake449,Tremblay80,,,M,white,french,M,Hatfield,806 McKenzie Grove Apt 19,Boston,Massachusetts,02108 +6173fcb2-6287-4193-9c96-b6a8ba947454,1959-02-27,,999-94-7257,S99927795,X76900279X,Mrs.,Margarita164,Morales679,,Martínez540,M,hispanic,puerto_rican,F,Hudson,907 Towne Highlands Unit 38,Wilbraham,Massachusetts,01095 +bbb35050-036b-401d-bf6c-430c67e8ec24,1960-05-14,,999-30-9483,S99966645,X14592961X,Mrs.,Francene766,Sawayn19,,Koepp521,M,white,italian,F,Peabody,485 McLaughlin Flat,Lynn,Massachusetts,01901 +8e334de8-9a29-4f5b-afdf-ce47eb2ce75c,1963-05-25,2018-08-25,999-45-1449,S99987398,X31454450X,Mrs.,Melvin857,Barrows492,,Muller251,M,white,irish,F,Agawam Town,185 Stanton Ranch,Attleboro,Massachusetts,02703 +553d89c8-7bbe-4bcd-9f06-67c0a6a70cb0,1994-11-06,,999-80-7869,S99938746,X80993395X,Mr.,Virgil85,Frami345,,,,white,irish,M,Bridgewater,203 Mohr Flat Suite 29,Norwood,Massachusetts,02062 +2cdf9aeb-3515-4f69-a146-69fa2843beff,1942-09-12,,999-30-5031,S99911639,X249698X,Mr.,Erik495,Hegmann834,,,S,white,english,M,Beverly,631 Rau Orchard Unit 96,Westford,Massachusetts,01886 +08210a84-b6da-453c-8eb7-6d730e3a0019,1958-12-17,,999-94-9595,S99917959,X19804613X,Ms.,Stella203,Mosciski958,,,S,white,english,F,Leominster,777 Littel Quay,Waltham,Massachusetts,02451 +3adb0f3f-8917-4aff-a1ce-c26c94eaf4b3,1999-06-29,,999-14-3279,S99990292,,Ms.,Zada604,Bogisich202,,,,white,irish,F,Longmeadow,923 Lesch Road Unit 64,Boston,Massachusetts,02108 +3c518010-d2f8-426f-ab5c-716632ee1430,2015-12-11,,999-97-2853,,,,Randee35,Von197,,,,white,english,F,Lowell,729 Collins Pathway Suite 27,Winchendon,Massachusetts,01475 +62f0709d-4757-47d0-8e0e-68fa85cd56bd,1982-02-25,,999-83-2073,S99939267,X40888653X,Mr.,Bryant814,Cummerata161,,,S,white,russian,M,Norfolk,646 Keeling Road,East Bridgewater,Massachusetts,02333 +f587dcbc-2f06-4016-b5ad-c3283a52a899,1959-05-13,,999-36-3659,S99926626,X18258077X,Ms.,Laverna97,Hessel84,,,S,white,swedish,F,Westwood,447 Kuhic Station Unit 34,Walpole,Massachusetts,02081 +ad20de68-64dd-4a07-b762-5772815427bf,1991-07-27,,999-17-3170,S99926099,X76122273X,Mrs.,Shizue554,Monahan736,,Nikolaus26,M,white,irish,F,Mendon,472 Nienow Trafficway,Fall River,Massachusetts,02720 +e2f25fc0-95f3-4de3-9be1-edaea5040c6f,2005-06-17,,999-46-2131,,,,Wai719,Greenholt190,,,,white,irish,F,New Bedford,199 Dietrich Parade,Adams,Massachusetts,01220 +62f0c765-8793-4209-8e61-f8d2564f764d,1999-12-01,,999-64-8006,S99955421,,Mr.,Miguel Ángel46,Lebrón484,,,,black,west_indian,M,Worcester,617 Green Rest Unit 0,Hanson,Massachusetts,02341 +6aea5ea6-120c-4e39-9ae7-0218f9323c7d,1963-05-25,,999-80-5742,S99968543,X10823602X,Mrs.,Nia310,Krajcik437,,Romaguera67,M,white,irish,F,Needham,854 Welch Bypass,Attleboro,Massachusetts,02703 +78b73b75-3832-4daf-ba34-6b731ead8cbf,1995-11-21,,999-54-8645,S99957829,X86278382X,Mr.,Diego848,Brakus656,,,,white,irish,M,Medford,993 Dietrich Trail,Haverhill,Massachusetts,01830 +6ed48f9f-027b-4abc-90e6-def85d23237f,1994-04-20,,999-13-8088,S99956995,X54461513X,Mr.,William805,Muller251,,,,hispanic,puerto_rican,M,Haverhill,392 Howell Route Apt 71,Tisbury,Massachusetts, +2c43f880-7381-4be8-8f7a-f9b256014abd,2005-12-11,,999-73-6681,,,,Anibal473,McKenzie376,,,,white,english,M,Weymouth Town,275 Schinner Hollow Unit 7,Boston,Massachusetts,02108 +26efb4a2-1c52-4d6c-8482-9b70b418a49f,1984-01-19,,999-12-4290,S99976565,X78229952X,Mrs.,Marlena558,Fisher429,,Tremblay80,M,white,french,F,Easton,734 Koelpin Tunnel Suite 32,Wilbraham,Massachusetts,01095 +09db8b3f-0ef3-4dc8-96d8-874d04cf4cd7,1947-03-03,,999-67-8391,S99964043,X45783347X,Mr.,Chris95,Wehner319,,,M,white,irish,M,Springfield,499 Turner Bypass,Needham,Massachusetts,02492 +a5c34969-17c1-4ccc-8bee-e9b4c09d1b6f,2008-04-19,,999-21-3483,,,,Perry780,Mueller846,,,,white,italian,M,Westfield,665 Reichert Throughway,Somerville,Massachusetts,02138 +7ffefd3e-93b1-4346-bc97-9eb36b56b3b2,1966-06-29,,999-75-2708,S99944050,X6750945X,Mrs.,Sharlene906,Farrell962,,Nolan344,M,white,irish,F,Oakham,543 Schiller Pathway Suite 87,Franklin Town,Massachusetts,02038 +91e277c8-7dba-419a-9d63-1fa03e784f24,1992-03-26,,999-46-4607,S99931957,X178756X,Ms.,Sue491,Stokes453,,,,white,irish,F,New Bedford,330 Kub Trail,Cambridge,Massachusetts,02138 +53a12113-dbbd-45d1-90fa-409b53c90619,2009-03-15,,999-93-8892,,,,Sari509,Brown30,,,,hispanic,mexican,F,Franklin Town,1069 Wisozk Highlands,Gardner,Massachusetts,01440 +3ca5962d-54f6-46d2-b8e7-d6c33730a426,2001-07-26,,999-20-9282,S99993574,,,Sharie942,Hansen121,,,,white,polish,F,Walpole,357 Mosciski Orchard Apt 52,Revere,Massachusetts,02151 +999242b4-d418-4764-93bf-1a100d48c9cd,1971-05-16,,999-32-6984,S99943439,X19478047X,Ms.,Breanne585,Kiehn525,,,S,white,english,F,Winthrop Town,680 Nader Gateway,Dartmouth,Massachusetts,02714 +e8b7cd8c-b0e5-4afc-b95f-7fc5a71acfe3,1933-02-10,2013-10-08,999-55-6815,S99920164,X88196208X,Mrs.,Jeana169,Littel644,,Macejkovic424,M,white,french_canadian,F,Haverhill,845 Kuphal Heights Suite 27,Malden,Massachusetts,02148 +4b697365-e4c8-4df4-bf3a-06cf9c7b73e6,2000-10-17,,999-44-5478,S99982483,,Ms.,Maryanna659,Barton704,,,,white,polish,F,Wakefield,774 Rempel Station Apt 53,Belchertown,Massachusetts,01007 +841bab7a-db3e-485f-a454-9e8bab18f761,1955-06-21,,999-41-7085,S99979478,X21999291X,Mrs.,Dolores502,Oquendo599,,Armendáriz135,M,black,west_indian,F,Waltham,792 Braun Grove,Ashburnham,Massachusetts,01430 +9b951264-7ba9-44c0-8b9a-16ba3e9ab58e,1970-03-23,,999-61-8168,S99984377,X86035389X,Mr.,Víctor493,Aguirre875,,,S,hispanic,puerto_rican,M,Boston,130 Russel Rapid Suite 23,Boston,Massachusetts,02108 +6fa2db8a-2df4-42f8-82d8-59a4e3440539,2016-12-03,,999-23-4126,,,,Lashawna733,Mitchell808,,,,white,english,F,Bourne,987 Ankunding Spur Apt 61,Quincy,Massachusetts,02169 +2a22ceb5-fb4e-49a2-b65a-1bda4527ddc5,1975-12-14,,999-10-4504,S99916650,X62396768X,Mrs.,Christinia886,Rutherford999,,Sipes176,M,white,english,F,Wakefield,954 Jacobs Trafficway Apt 57,Malden,Massachusetts,02148 +34ddc0c7-2212-4cc1-8a02-d82fefb23a9c,1948-01-30,2018-05-25,999-36-6960,S99959504,X65930403X,Ms.,Angelica442,Mosciski958,,,S,white,portuguese,F,Waltham,131 Rowe Bay,Grafton,Massachusetts,01519 +2fd6f720-137e-4b55-a2d9-c6de485f55c2,1963-10-24,,999-26-8212,S99975979,X65891090X,Mrs.,Kym935,Feeney44,,Douglas31,M,white,french,F,Phillipston,647 Herzog Ranch Suite 74,Easthampton Town,Massachusetts,01027 +2711430a-fbf0-4a72-833b-fafde403c941,1968-11-09,,999-60-1659,S99985635,X30163210X,Mr.,Zack583,Senger904,,,M,hispanic,puerto_rican,M,Brookline,522 Roberts Harbor Unit 10,Holyoke,Massachusetts,01040 +85391606-b449-4522-93dd-03a16c1ceb70,2007-01-17,,999-65-1602,,,,Janessa317,Stamm704,,,,white,italian,F,Raynham,915 D'Amore Gardens,Shrewsbury,Massachusetts,01545 +1ae96255-ea3f-40fa-aafb-5aa232c3bd33,2009-09-05,,999-56-2726,,,,Kathy623,Kuhlman484,,,,asian,chinese,F,Easthampton Town,547 Hoppe Plaza,Walpole,Massachusetts,02081 +e3c9bba2-c444-4499-bd26-3c88d3bb0424,1953-04-15,1956-08-29,999-64-4202,,,,Rivka589,Armstrong51,,,,white,german,F,Marion,758 O'Hara Alley Unit 81,Cohasset,Massachusetts,02025 +2f41abe3-3126-4afd-bb28-2c82deb44e70,1987-12-31,,999-60-9633,S99934220,X40460125X,Mrs.,Marion502,Stracke611,,Zemlak964,M,white,german,F,Athol,700 Dach Pathway Suite 78,Sudbury,Massachusetts,01776 +05bf0f2e-1a55-4b31-ab6a-8df9e5a71aa3,2014-12-11,,999-61-4045,,,,Yong583,Hayes766,,,,white,american,M,Harwich,616 Cremin Mall,Franklin Town,Massachusetts,02038 +2b29e584-422f-4c60-84aa-82ad8929943e,1933-02-10,1983-10-21,999-35-1529,S99952096,X7636586X,Mrs.,Coral377,Waelchi213,,Emard19,M,white,french_canadian,F,Revere,338 Barton Dale,Malden,Massachusetts,02148 +9fd50a53-4244-45be-a7c4-9289a5796240,2007-06-12,,999-33-6143,,,,Celinda332,Gusikowski974,,,,hispanic,south_american,F,Tewksbury,819 Stokes Skyway,Leominster,Massachusetts,01420 +d3e6285d-f433-4a94-a581-6e7e7a955b01,2013-07-05,,999-90-8441,,,,Rickie717,Bahringer146,,,,white,french,M,Newton,459 Braun Lock,Newton,Massachusetts,02458 +4937b072-e9e6-49f4-871b-acdef27a38d0,2016-08-07,,999-50-4418,,,,Tasia358,Howe413,,,,white,italian,F,Attleboro,449 Wilkinson Burg,Watertown Town,Massachusetts,02472 +e9cb074c-d2b7-448a-a605-73ff132897f9,1941-12-29,,999-28-7457,S99967945,X46561543X,Mrs.,Elza246,Boyle917,,Romaguera67,M,white,russian,F,Chatham,434 Fritsch Byway Suite 12,Easton,Massachusetts,02334 +f53fcf3c-6d8c-49af-ba3d-414342b69b24,1997-09-21,,999-73-6809,S99964233,X52634494X,Ms.,Glenn0,Abshire638,,,,white,irish,F,Melrose,800 Corwin Ville,Plymouth,Massachusetts,02360 +8d8bc022-4fcd-46ff-8b33-24dd6ff79ecf,1952-08-10,,999-20-3779,S99986193,X28940490X,Mr.,Monroe732,Fay398,,,M,white,irish,M,Leominster,631 Mosciski Drive,New Bedford,Massachusetts,02740 +fc93478b-15bd-4246-be7e-81257a8df006,2000-02-08,,999-41-8860,S99942538,,Mr.,Ezekiel373,Hintz995,,,,white,french_canadian,M,Andover,506 Okuneva Heights,Somerset,Massachusetts,02725 +0cba6a52-b731-42be-95c3-d334a0c3051e,2017-11-26,,999-39-3579,,,,Guy979,Bogisich202,,,,white,irish,M,Swampscott,875 Miller Skyway,Swampscott,Massachusetts,01907 +449b328a-7a3e-4007-b6ed-efc006a3748a,1948-01-30,,999-48-1604,S99991094,X5610309X,Mrs.,Toccara373,Zieme486,,Rodriguez71,M,white,portuguese,F,Framingham,665 Monahan Promenade,Grafton,Massachusetts,01519 +b5ea3bc5-2ab3-47b0-b85e-86aafc0eba10,1974-02-26,,999-78-7415,S99965960,X88041094X,Mrs.,Cordia574,Heller342,,Quigley282,M,white,french,F,Grafton,278 Stark Drive Suite 45,Hull,Massachusetts,02045 +b2c75b85-0980-42ce-9886-93b6299e0ff6,1956-05-03,,999-71-8126,S99964887,X69682764X,Mr.,Vincent299,Connelly992,,,M,white,italian,M,Quincy,478 Boehm Route Suite 73,Amherst,Massachusetts,01002 +3638a741-4336-4e29-a9b8-a2a0ff72ca9a,2010-05-12,,999-78-9771,,,,Tobias236,Friesen796,,,,white,italian,M,Dennis,475 Cruickshank Lane Unit 74,Bridgewater,Massachusetts,02324 +09156a7b-4635-4baa-902f-6daba6537687,1953-04-15,,999-93-7572,S99997671,X1221110X,Mrs.,Lilla884,Bartoletti50,,Homenick806,M,white,german,F,Worcester,191 Borer Byway,Cohasset,Massachusetts,02025 +5563c3b2-f436-437c-8736-0d81fa4cb636,1988-08-27,,999-11-8716,S99987895,X66265989X,Ms.,Vivian245,Buckridge80,,,S,hispanic,central_american,F,Boston,950 Langworth Avenue,Westborough,Massachusetts,01581 +9d912781-7478-4d51-90b5-cb61e9ef12c2,1979-05-29,,999-51-8964,S99965833,X10233193X,Mr.,Scottie437,Mitchell808,,,M,black,west_indian,M,Worcester,228 Schulist Rue Unit 42,Milton,Massachusetts,02186 +07c54c00-ef73-4075-bcfb-161c3bf61622,1989-07-05,,999-28-4715,S99970887,X83972612X,Mrs.,Tiesha180,Stanton715,,Herman763,M,asian,chinese,F,Weymouth Town,993 Fritsch Track Suite 46,Cambridge,Massachusetts,02138 +4acc684d-3256-4546-9073-f39bca8d018d,1962-05-06,,999-81-3568,S99941269,X42141865X,Ms.,Keisha459,McClure239,,,S,white,irish,F,Boston,193 Hammes Gate,Worcester,Massachusetts,01545 +baabc196-a7f7-4687-b185-80ee81ded829,2008-10-30,,999-21-8121,,,,Cora299,Johns824,,,,white,italian,F,Auburn,685 Ortiz Crossing,Cambridge,Massachusetts,02138 +d130c876-595c-4151-831b-0bd305c7a423,1995-06-28,,999-50-2283,S99967538,X27061726X,Ms.,Cristina921,Casanova632,,,,hispanic,south_american,F,Weston,141 Schuster Trafficway Apt 38,Gloucester,Massachusetts,01930 +d1e6d52d-472e-471d-b731-4a1409eea715,1999-01-14,,999-65-9965,S99983307,,Ms.,Verdie59,Parker433,,,,white,irish,F,Somerville,595 Murazik Crossroad,Lanesborough,Massachusetts, +80317aa2-5370-4f56-9d1b-5b757f8f5617,2005-01-26,,999-28-6741,,,,Kisha966,Effertz744,,,,white,irish,F,Mansfield,876 Brown Grove,Holbrook,Massachusetts,02343 +3e3209f6-1c03-4015-a28c-3698bd6ab355,2017-06-11,,999-23-9406,,,,Johnson679,Ernser583,,,,white,german,M,Fall River,207 Cole Village Apt 90,Salem,Massachusetts,01907 +9ed97125-fc80-40cb-8290-fc184542aec5,2018-08-10,,999-56-8184,,,,Maranda920,Cartwright189,,,,white,polish,F,Brockton,228 Wisoky Crossing,Middleton,Massachusetts,01949 +24d58bba-c707-4d31-b9cf-228b2be6490b,2003-11-02,,999-11-5543,,,,Berta524,Walsh511,,,,white,german,F,Methuen Town,276 Kihn Tunnel Apt 32,Lexington,Massachusetts,02420 +66ce6979-b9f4-4c13-90e3-a715f4b503c0,1958-03-02,,999-86-1767,S99989578,X5693093X,Mrs.,Joanie498,Berge125,,Hegmann834,M,asian,asian_indian,F,Gloucester,437 Simonis Highlands Apt 71,Chelmsford,Massachusetts,01824 +e1dbbeb8-634e-4c79-8136-3f8a4de73493,1944-11-09,,999-37-3155,S99934012,X43647795X,Mr.,Vaughn909,Koelpin146,,,M,white,italian,M,Athol,263 Johnson Course Unit 44,Worcester,Massachusetts,01545 +fd06c9a8-d4ea-432d-938c-c6740a76ac63,1991-04-25,,999-60-9782,S99962097,X72975968X,Mr.,Matt836,Robel940,,,M,white,german,M,Sandwich,676 Runte Lodge,Chelmsford,Massachusetts,01824 +b53f2edb-db7a-4bd4-b3e3-26ada9992f3d,2016-06-12,,999-27-3900,,,,Paige606,Cronin387,,,,white,polish,F,Cambridge,593 Pfannerstill Harbor,Greenfield Town,Massachusetts,01301 +f240ab65-2803-4f2e-835f-06051fecae36,1991-01-27,,999-59-1087,S99989787,X1234736X,Ms.,Nadene309,Anderson154,,,S,white,irish,F,Swampscott,1001 Nitzsche Quay Apt 32,Lawrence,Massachusetts,01840 +2edf4dc3-2f5f-470a-9026-6629634ca6a8,1933-02-10,,999-79-1382,S99910320,X59661219X,Mrs.,Nona876,Klocko335,,Kuphal363,M,white,french_canadian,F,New Bedford,300 O'Conner Underpass Apt 79,Malden,Massachusetts,02148 +4b255e15-056f-40ab-abe0-90d1660672fb,1997-09-15,,999-23-6686,S99914072,X56606733X,Ms.,Larry532,Braun514,,,,white,italian,F,North Attleborough,996 Carter Avenue,Somerville,Massachusetts,02138 +c986fe55-2dff-4d17-9f06-4cfa2ca7598c,1960-03-04,,999-52-8369,S99935748,X81814722X,Mr.,Jamey282,Runolfsdottir785,,,M,white,english,M,Quincy,675 Barrows Manor,North Andover,Massachusetts,01845 +8c00b0ff-e7b8-4780-b6a2-a44926dcdd41,1936-11-06,,999-64-8058,S99986693,X20849331X,Mrs.,Marx778,Wilkinson796,,Satterfield305,M,white,american,F,Tewksbury,237 Quitzon Parade,Dalton,Massachusetts,01226 +26d603e3-1609-4afd-9bc4-beb177d6ece0,1966-12-17,2007-05-12,999-93-1868,S99976011,X69642107X,Ms.,Jen355,Kreiger457,,,S,white,irish,F,Methuen Town,321 Gutkowski Approach,Boston,Massachusetts,02108 +7ef9d404-9d1b-4e7d-88c5-2818a1f0fd1a,1914-07-19,,999-37-7798,S99970712,X35927138X,Mrs.,Amalia471,Sánchez310,,Ozuna605,M,hispanic,puerto_rican,F,Springfield,280 Hartmann Rest,Harwich,Massachusetts,02645 +8ce04e03-3ff1-4824-8e70-fa9931d97dbd,1973-01-09,,999-41-4755,S99947861,X83968855X,Mr.,Elwood28,Cormier289,,,S,white,irish,M,West Springfield Town,377 Gleason Dale Unit 0,Upton,Massachusetts,01568 +3df22f8d-8551-48f3-b1d6-f98bbfd5129e,1981-06-05,,999-33-8414,S99933883,X79682471X,Mrs.,Earlie274,Kiehn525,PhD,Quigley282,M,white,polish,F,Watertown Town,463 Schmitt Center Suite 25,West Bridgewater,Massachusetts,02379 +7c92db41-8391-49fa-b8cd-9801c7ef1aa3,1958-04-10,,999-22-1750,S99960429,X13517514X,Mrs.,Yolanda648,Solorzano931,,Saucedo620,M,black,dominican,F,Boston,1045 Herman Flat,Woburn,Massachusetts,01801 +45db569f-502c-4d42-88ea-67932e1d0855,1959-12-11,,999-99-4524,S99922020,X70124831X,Mr.,Ruben688,Little434,,,M,white,english,M,Belmont,598 Wuckert Brook,Haverhill,Massachusetts,01830 +db5ed19b-8833-4c1c-96f0-224b14fce972,1988-07-03,,999-45-9456,S99991705,X45473769X,Mrs.,Star250,Schinner682,,Howell947,M,white,english,F,Orleans,446 Greenholt Underpass Suite 33,Melrose,Massachusetts,02176 +67a6a31b-46b7-47d6-b059-bdeb63c58c4d,1994-07-17,,999-99-1661,S99931980,X68811327X,Mr.,Valentin929,Kub800,,,,asian,asian_indian,M,Lowell,803 Willms Key,Peabody,Massachusetts,01940 +1545cc43-22fe-414f-9293-313dc2c0e0e1,1966-12-17,,999-92-4914,S99985430,X40703338X,Mrs.,Ferne426,Beer512,,Glover433,M,white,irish,F,Easton,996 Frami View Unit 96,Boston,Massachusetts,02108 +4439443a-210e-4923-a94b-d5a3b2d9d7fa,1955-08-29,,999-15-8088,S99970289,X44890893X,Mr.,Raymond398,McCullough561,,,S,white,american,M,Lynn,632 Harvey Well,Shirley,Massachusetts,01464 +23ceb5b3-1e4e-46f2-a4f2-c86ba7516e1a,1942-11-28,,999-83-6473,S99929100,X16361747X,Mrs.,Rosenda12,Greenfelder433,,Jerde200,M,white,irish,F,Somerville,556 Feeney Camp Unit 36,Brookline,Massachusetts,02215 +17f4a8a8-ba61-4cbc-b8e9-8d61da490a26,2004-08-21,,999-54-6820,,,,Dortha70,Bernhard322,,,,white,french,F,Palmer Town,235 Turcotte Walk Suite 48,Lexington,Massachusetts,02420 +a05d6c48-c7e4-4fae-8121-002608be4b85,1968-06-26,,999-80-1392,S99925182,X59853896X,Mr.,Jaime666,Spencer878,,,M,asian,asian_indian,M,Framingham,1009 Reinger Gate,Newburyport,Massachusetts,01950 +cb0de3d0-86ad-4b8c-b69e-ad49be162778,1947-03-26,,999-43-2845,S99939572,X49641488X,Mrs.,Shae705,Murray856,,Barton704,M,white,irish,F,Falmouth,168 Heller Pathway Unit 81,Taunton,Massachusetts,02718 +83235026-8e63-4a49-88ac-59bbaea6b582,1956-01-04,,999-79-3429,S99913327,X72681557X,Ms.,Dania217,Pollich983,,,S,white,irish,F,Westborough,816 Bruen Mews,Salem,Massachusetts,01907 +40953a83-1f52-4646-a45e-254290d2906a,1947-03-02,,999-57-8024,S99998916,X40122151X,Mr.,Stevie682,Medhurst46,,,M,native,american_indian,M,Granby,1087 Jacobi Lane,Billerica,Massachusetts,01821 +5cd17f8e-ab86-42bd-96a9-4177c5efb48c,1959-03-19,,999-83-8873,S99996834,X30529215X,Mrs.,Julieta402,Doyle959,,Douglas31,M,white,french,F,Brockton,742 Kulas Divide,Belmont,Massachusetts,02138 +2633d9be-3a51-4d50-ad5e-e70c35c84009,1977-01-31,,999-62-3167,S99984446,X65083944X,Mrs.,Shasta644,Lynch190,,Adams676,M,asian,chinese,F,Framingham,184 Kerluke Terrace Suite 80,Somerville,Massachusetts,02138 +1cd9cb17-e45f-4220-85bb-5863d91a7847,1969-01-10,,999-94-5473,S99952604,X59968861X,Mr.,Efren426,Howell947,,,M,white,english,M,Medford,624 Pacocha Trace,Worcester,Massachusetts,01545 +61384133-caac-4351-add7-c27d310943de,1948-09-27,,999-71-3821,S99984694,X46321289X,Ms.,Emilie407,Pacocha935,,,S,white,irish,F,Gloucester,722 McLaughlin Rapid,West Tisbury,Massachusetts,02575 +7dce6e68-10ce-4d89-b971-83d2c4445ddf,1961-07-03,,999-72-7312,S99921093,X65599668X,Mrs.,Tangela812,Bartell116,,Wolf938,M,white,english,F,Holyoke,1031 Littel Parade Apt 19,Weston,Massachusetts,02493 +3a846aa3-cc84-4ea0-9bf5-81299ee73a41,1978-06-24,,999-74-4131,S99991674,X734134X,Ms.,Evelynn217,Cassin499,,,S,white,italian,F,Amherst,958 Cummerata Fort,Peabody,Massachusetts,01940 +c628e120-bf0a-409f-a217-d847a75ca382,1969-03-01,,999-12-4495,S99938207,X8621164X,Ms.,Marty115,Stiedemann542,,,S,white,swedish,F,Mansfield,764 Feil Common,Danvers,Massachusetts,01923 +4063e00f-ee68-46b8-8632-11ac723f476a,1980-03-02,,999-36-4702,S99997401,X51105520X,Mr.,Modesto621,Moen819,,,M,white,french,M,Easton,662 Predovic Village,Worcester,Massachusetts,01545 +abe565cc-1932-484c-bf34-652fcf762a2c,1967-10-26,,999-95-6451,S99993187,X25401066X,Ms.,Jen355,Cummings51,,,S,black,west_indian,F,Woburn,761 Nader Dam Apt 6,West Springfield Town,Massachusetts,01089 +fd857b34-4350-49f0-a3bc-1f4e06dba337,1959-07-30,,999-93-7852,S99959258,X16685841X,Mr.,Warner493,Senger904,,,M,white,portuguese,M,Maynard,988 Rogahn Boulevard Unit 49,Attleboro,Massachusetts,02703 +01d0861e-b29d-4582-8bf1-d114ce21434a,1968-03-25,,999-71-9465,S99972609,X78050578X,Mr.,Minh326,Stroman228,,,M,white,german,M,Gloucester,534 Prohaska Extension,Sandwich,Massachusetts,02563 +985e80d9-6350-4983-91cd-da00a0528e41,1976-09-07,,999-52-1896,S99990155,X80733259X,Ms.,Leann224,Reinger292,,,S,white,french,F,Haverhill,150 Greenfelder Track,Attleboro,Massachusetts,02703 +637e7bda-83ff-46b6-bfd0-376e363a3b29,2015-03-14,,999-52-8921,,,,Felipe97,Carrillo204,,,,hispanic,mexican,M,Pittsfield,287 Aufderhar Quay Apt 36,Framingham,Massachusetts,01701 +224328be-693f-4b2e-84b8-e0c7f7087735,1944-12-04,,999-43-4264,S99910129,X26322163X,Mr.,Josiah310,Fisher429,,,S,white,french,M,Easton,781 Hoppe Junction Unit 40,Avon,Massachusetts,02322 +cf92de26-39d7-4344-b191-da5e22864213,1983-02-14,,999-60-1224,S99989624,X1291106X,Mrs.,Cathleen724,Kris249,,Cole117,M,white,english,F,Westport,376 Gaylord Ville Apt 80,Holyoke,Massachusetts,01040 +4e171efd-1d60-4e4e-be91-418f98c92c9a,1953-05-23,,999-98-8345,S99975080,X24708669X,Mr.,Valentin929,Gibson10,,,M,white,italian,M,Stoneham,164 Cummerata View Unit 45,Lowell,Massachusetts,01850 +ca72cc66-567f-4662-a581-983cbab4ee2c,2013-04-20,,999-23-3960,,,,Letisha598,Bradtke547,,,,white,french,F,Framingham,394 Heathcote Lodge Suite 53,Leicester,Massachusetts,01524 +53ef1dca-26ef-4f04-938f-bc20311a89d7,1985-05-04,,999-30-7564,S99934272,X15872233X,Mrs.,Altagracia629,Wuckert783,,Roberts511,M,white,english,F,Walpole,482 Nikolaus Bridge,Webster,Massachusetts,01570 +0f5377f3-28f7-40da-8a76-25f9e5e8ec82,2010-10-27,,999-13-9876,,,,Javier97,Russel238,,,,white,irish,M,Worcester,432 Langosh Mission,Chatham,Massachusetts,02633 +b2b590b6-143c-4d8a-8c23-a055f00f8309,2017-05-09,,999-55-2737,,,,Brittany443,Wilderman619,,,,white,french_canadian,F,Lowell,966 Renner Row,Sharon,Massachusetts,02067 +6756f56d-83be-4fea-b631-4655be60714f,1976-02-06,,999-71-9208,S99931369,X14874700X,Mrs.,Luise714,Jerde200,,Howell947,M,white,irish,F,Marshfield,814 Mohr Common,Shrewsbury,Massachusetts,01545 +317b1cdf-3d3d-4a96-9b3a-028400418e36,1946-04-15,,999-98-1138,S99912784,X68851549X,Mrs.,Marguerita493,Schuster709,,Thiel172,M,white,german,F,Hanson,668 Rau Bridge Suite 61,Cambridge,Massachusetts,02138 +ffade8c8-f76c-4387-81d1-892f4735fc85,1990-11-24,,999-68-2890,S99971800,X54822804X,Mr.,Benjamin360,Crist667,,,M,white,irish,M,Boston,196 Gottlieb Drive Unit 87,Lee,Massachusetts,01238 +14d5618f-6d7b-4fc9-9120-00662e06f86a,1976-02-20,,999-40-5063,S99972693,X72306274X,Ms.,Laraine204,Bahringer146,,,S,white,polish,F,Springfield,502 Kassulke Lane Suite 87,Springfield,Massachusetts,01013 +037321f6-ac26-4037-92d3-d574fc373568,2004-11-16,,999-15-9143,,,,Juan88,Weber641,,,,white,english,F,Worcester,215 Lubowitz Road,Somerville,Massachusetts,02138 +e2d05014-d925-4a60-8a35-2fc615ca3de9,1949-07-15,,999-74-7168,S99912602,X14839296X,Mrs.,Flor713,Wuckert783,,Koch169,M,white,italian,F,West Springfield Town,836 Altenwerth Key Apt 28,Westport,Massachusetts,02790 +f66ad784-ca0f-4314-8c30-50321e05e35c,1973-08-16,,999-10-6365,S99996872,X77917180X,Mrs.,Tam840,Effertz744,,Runolfsdottir785,M,white,american,F,Somerville,242 Wilderman Rest,Pittsfield,Massachusetts,01201 +16fa8236-aee2-48d3-ac0e-aab8da772f04,1983-04-27,,999-38-7345,S99983562,X89188079X,Mrs.,Carla633,Ward668,,Greenfelder433,M,asian,chinese,F,West Newbury,331 Medhurst Mews,Malden,Massachusetts,02148 +04a399c3-6335-4707-8584-744308a78356,2005-04-23,,999-56-2314,,,,Louie190,Reichel38,,,,white,english,M,Haverhill,811 Barton Drive,Holden,Massachusetts,01520 +8583b020-2518-487a-a0fa-dc99dd2b9017,1977-08-04,,999-34-7504,S99959746,X47341292X,Mrs.,Lydia759,Kiehn525,,Lynch190,M,asian,chinese,F,Hinsdale,500 Haag Ramp,Longmeadow,Massachusetts,01106 +34a5fa8a-4b44-4c3a-9d93-c0e2a842d5e4,1946-06-15,,999-77-8139,S99992071,X65422243X,Mrs.,Loise968,Hoppe518,,Wiza601,M,white,irish,F,Hopedale,1013 Murazik View Suite 27,Northbridge,Massachusetts,01534 +d6e1feaa-598e-49ca-9049-96c5b12c6efe,1981-08-02,,999-82-6622,S99986200,X23122606X,Ms.,Lilian665,Bashirian201,,,S,asian,chinese,F,Hamilton,447 Raynor Vale,Haverhill,Massachusetts,01830 +d3046cc2-2d8f-4678-99d6-5389a483ec88,1948-05-21,,999-19-8235,S99996864,X27845750X,Mrs.,Shantae970,Corwin846,,Durgan499,M,white,english,F,Granby,738 Smitham Row,Holden,Massachusetts,01520 +eb94d62d-2856-4025-a90e-94223538385d,1970-07-19,,999-80-3075,S99993079,X61222263X,Mr.,Sergio619,Ziemann98,,,M,white,english,M,Marshfield,657 Carroll Rapid,Boylston,Massachusetts,01505 +e6d1fda2-713a-45ce-be79-8b7484a0107e,2004-12-17,,999-15-4273,,,,Alonso270,Stark857,,,,white,irish,M,West Springfield Town,116 Reinger Trafficway,Sharon,Massachusetts,02067 +088acbb9-f0ee-4393-b267-80b48c3ad420,1994-03-27,,999-85-2901,S99918150,X85392706X,Ms.,Kanisha187,Stracke611,,,,white,english,F,Sandwich,126 Kris Well Apt 14,Cambridge,Massachusetts,02138 +7808e1c7-fbf9-4cb0-a4a2-1320c718eed2,1909-11-11,1998-05-02,999-95-7008,S99926168,X29666714X,Mrs.,Matilde468,Turcotte120,,Corkery305,M,white,italian,F,Woburn,432 Stiedemann Arcade,Brookline,Massachusetts,02215 +771b6bcc-27ab-49c3-9ff7-b50ae6488e3d,1970-01-31,,999-56-6364,S99982413,X6624441X,Mrs.,Manuela585,Ocampo729,,Merino448,M,hispanic,puerto_rican,F,Boston,222 Armstrong Neck Unit 69,Wilbraham,Massachusetts,01095 +097680eb-a109-4bfa-a784-94aebb0724c0,1972-04-16,,999-80-7882,S99914650,X42623886X,Mr.,Alton320,Kulas532,,,M,white,irish,M,Hadley,1079 Roberts Gateway Apt 1,Pittsfield,Massachusetts,01201 +7152a674-5328-4961-8508-92256c27cb7d,1956-10-15,2016-10-24,999-47-4215,S99951663,X46274351X,Mrs.,Chery887,Johnson679,,VonRueden376,M,hispanic,puerto_rican,F,Townsend,383 Bailey Arcade,Westfield,Massachusetts,01085 +1e78b90e-1f3d-46df-80cf-ea59c0b63ff5,1976-08-19,,999-31-2210,S99935195,X6440178X,Mrs.,Thersa321,Torp761,,Reinger292,M,white,italian,F,Uxbridge,392 Kertzmann Well Suite 44,South Hadley,Massachusetts,01075 +902775c2-b0b4-43f1-b791-b7e15e1bb84b,1970-12-12,,999-73-7528,S99984043,X7781284X,Mrs.,Migdalia164,Considine820,,Bins636,M,white,irish,F,Pittsfield,220 Mayert Mews Suite 56,Pembroke,Massachusetts,02359 +ba6bf616-c6b1-481e-a812-6c8a7e3c1658,1992-07-26,,999-38-8857,S99979559,X54458779X,Ms.,Charity776,Lubowitz58,,,,white,english,F,Revere,892 Crooks Bypass,Boston,Massachusetts,02108 +6a8c03bb-cdee-4e2c-a33c-a1e44f85dc60,1945-04-06,,999-33-7700,S99967448,X29375744X,Mr.,Antonio44,Little434,,,S,white,polish,M,Boston,908 Jakubowski Plaza,Shutesbury,Massachusetts,01072 +0e6e1538-4b92-4aff-88e9-62b767bfbfe7,1982-12-23,,999-51-1686,S99975588,X46887482X,Mr.,Randolph418,Gerlach374,,,M,white,french_canadian,M,Boston,170 Marks Path Apt 44,Braintree Town,Massachusetts,02184 +0c5213db-6ac3-45b4-bf57-dadaf5436fdd,1967-10-17,,999-22-6493,S99915585,X44240263X,Mr.,Brendon298,Kilback373,,,M,white,german,M,Waltham,540 Towne Overpass Suite 31,Brockton,Massachusetts,02301 +8a13f613-87cd-43e2-9cd7-9431328c84f4,1965-05-31,,999-51-2227,S99917386,X70240935X,Mrs.,Jacqualine965,Welch179,,Langosh790,M,white,italian,F,Fairhaven,800 Stoltenberg Gardens,Methuen Town,Massachusetts,01841 +793b4686-ff16-4aff-be33-76f5a936975c,1953-06-22,,999-97-6183,S99976762,X20330270X,Mr.,Fidel864,Wunsch504,,,S,asian,chinese,M,Taunton,928 Luettgen Union Suite 74,Peabody,Massachusetts,01940 +b18f1915-68a2-40a5-b41c-be89f772a4cb,1998-10-18,,999-95-4373,S99962372,X594890X,Mr.,Harley673,Trantow673,,,,white,russian,M,Boston,541 Yost Key Unit 96,Brockton,Massachusetts,02301 +667440dd-2795-4cf1-a0e4-7bf5b113833d,1956-10-15,,999-14-6740,S99998934,X7596761X,Mrs.,Arianna984,Rohan584,,Swaniawski813,M,hispanic,puerto_rican,F,Taunton,982 Flatley Club Apt 55,Westfield,Massachusetts,01085 +3f77d320-5470-4426-b99d-a68151a09c19,1969-04-21,,999-96-9369,S99986159,X56427278X,Mrs.,Rutha66,Green467,,Lang846,M,white,french_canadian,F,Boston,913 Bahringer Extension,Gardner,Massachusetts,01440 +ac940ad3-5773-497a-b8a2-ce35e652d1dd,1951-07-31,,999-33-3974,S99961558,X48174873X,Mr.,Angelo118,Hyatt152,,,M,white,polish,M,Cambridge,263 Murazik Gateway,Townsend,Massachusetts,01469 +e9da34f6-170b-4ad4-afe4-79eceb08550e,1967-06-06,,999-72-5457,S99973509,X70017861X,Mrs.,Helena807,Bechtelar572,,Durgan499,M,white,american,F,Falmouth,324 Stiedemann Dale Suite 61,Townsend,Massachusetts,01469 +b27a0a33-5c51-4aed-af2c-c1819299ff99,1909-11-11,,999-32-4716,S99920457,X15161589X,Mrs.,Alina705,Grant908,,Dietrich576,M,white,italian,F,Brockton,975 Satterfield Rapid Suite 3,Brookline,Massachusetts,02215 +b28b5a4d-a41c-494b-a006-96a78b5f1fd0,1954-06-07,,999-32-3583,S99973052,X5234257X,Mr.,Len277,Howell947,,,M,white,portuguese,M,Boston,415 Tillman Bay Unit 88,North Attleborough,Massachusetts, +41cb8909-e761-4c87-ac3e-8ee070d3bf0a,1977-10-31,,999-61-6858,S99930890,X86850963X,Mrs.,Deb577,Lemke654,,Kessler503,M,white,english,F,Medford,121 Runolfsdottir Common,Westfield,Massachusetts,01085 +85f35901-2fd8-4c4e-b8a0-f44d4270ed6a,2011-08-03,,999-22-2574,,,,Justin359,Harris789,,,,white,portuguese,M,Shrewsbury,552 Effertz Wynd Unit 46,Weymouth Town,Massachusetts,02188 +33960bf5-510e-4753-b2f4-3151dea2f009,1961-01-14,1993-02-06,999-46-9224,S99927085,X47705959X,Mr.,Dirk334,Rowe323,,,M,white,english,M,Sharon,493 Walsh Vale,Montague,Massachusetts,01351 +cfc9940c-c5f1-47d3-acbb-3c1da5fdccb9,1963-06-23,,999-26-1035,S99958514,X12980921X,Mrs.,Sara501,Rosas160,,Prieto999,M,black,dominican,F,Chelsea,987 Tremblay Approach Apt 6,Newton,Massachusetts,02458 +3d07d9e4-f24d-4cc8-98ca-21ce3412ae03,2007-05-10,,999-30-6011,,,,Vincenzo126,Wilderman619,,,,white,french_canadian,M,Attleboro,146 Runolfsson Bypass,Brookline,Massachusetts,02215 +3e35a4bd-723f-4263-b197-bf63bef06e51,1958-09-03,,999-49-4391,S99916757,X73066800X,Mr.,Wilbur107,Rempel203,,,M,hispanic,south_american,M,New Bedford,261 Renner Hollow,Milford,Massachusetts,01757 +498f155a-b7a3-4a83-8e85-b8e22aa0d667,2006-01-30,,999-85-4281,,,,Veola813,Heidenreich818,,,,white,french_canadian,F,Easthampton Town,997 Senger Well Unit 54,New Bedford,Massachusetts,02740 +1569e405-fb11-4278-846b-95e85e72c565,1985-05-23,,999-79-8040,S99987130,X54707175X,Mr.,Shad704,Witting912,,,M,black,african,M,Walpole,628 Kutch Trafficway Unit 69,Acton,Massachusetts,01720 +a8ffcdb4-20fb-4e02-b215-23ca22b8397e,2011-09-15,,999-38-7036,,,,Blair400,Boyer713,,,,white,irish,M,West Springfield Town,313 Rau Trailer Suite 97,Framingham,Massachusetts,01701 +fa6da5ff-3f88-4139-a19d-aaad976ba53a,1996-04-01,,999-44-6037,S99957790,X46732927X,Mr.,Raymundo71,Cassin499,,,,white,german,M,Chicopee,773 Stracke Flat Unit 54,Worcester,Massachusetts,01545 +4aeffaff-56ec-4489-a3f8-a75d326ffa2b,1961-01-14,,999-69-9973,S99917745,X87543456X,Mr.,Len277,Runolfsson901,,,M,white,english,M,Sturbridge,516 Kertzmann Mission Apt 78,Montague,Massachusetts,01351 +d1d49ce5-84a4-4fa1-a4b0-8eb29cdcf69c,1991-02-10,,999-52-3971,S99910358,X33831665X,Mr.,Cristian531,Peres371,,,M,hispanic,puerto_rican,M,Canton,711 Turcotte Center,Medford,Massachusetts,02145 +7ca32b52-ed9e-4541-ac15-73961601f835,1978-01-08,,999-89-6295,S99934634,X51543853X,Mr.,Raymond398,Huel628,,,M,white,portuguese,M,Salem,613 Douglas Frontage road Suite 66,Harwich,Massachusetts,02645 +0f624bd7-5a7c-4702-b45f-ffba5c032c5b,1979-10-28,,999-70-8796,S99910579,X89483722X,Mr.,Tyler508,Kutch271,,,M,white,french,M,Hudson,226 Grimes Meadow Apt 14,Ashburnham,Massachusetts,01430 +310bd843-7d7e-4856-8161-ef8d526a1b02,2009-11-30,,999-68-8692,,,,Iola859,Hamill307,,,,white,english,F,Springfield,1045 McGlynn Walk Apt 28,Milford,Massachusetts,01757 +0123ba99-6759-47a1-a044-acf2e63eba44,2018-05-07,,999-68-8297,,,,Tyrell880,Schneider199,,,,white,italian,M,New Bedford,325 Mante Manor,Brockton,Massachusetts,02301 +2a819807-aaee-47de-9694-470dae3d24ed,1953-07-29,,999-12-5558,S99925341,X1089166X,Mr.,Wally311,Beatty507,,,M,white,portuguese,M,Revere,299 Hoeger Corner Suite 38,West Boylston,Massachusetts,01583 +e6e4bf31-4faa-4318-b578-6c540cf732f7,1977-04-10,,999-69-5966,S99996831,X37289916X,Mr.,Humberto482,Daugherty69,,,M,white,french_canadian,M,Worcester,946 Beer Throughway,Westwood,Massachusetts,02090 +ad102b39-2e4a-4262-9049-1ee717b0b22c,1971-12-20,,999-84-6934,S99971203,X55080955X,Mr.,Son314,Schneider199,,,S,white,american,M,Walpole,118 Conroy Branch Suite 91,East Bridgewater,Massachusetts,02333 +8bb6473a-7936-4dff-99f5-8697cef47580,2010-01-03,,999-33-4255,,,,Benedict104,Greenfelder433,,,,asian,chinese,M,Boston,955 Ziemann Camp,Dedham,Massachusetts,02026 +3256e91c-c72f-474f-86df-5ef61cbc35eb,1914-03-24,2001-02-13,999-10-1715,S99969220,X45797296X,Ms.,Sana377,Streich926,,,S,white,scottish,F,Boston,468 Barton Fork,Pittsfield,Massachusetts,01201 +ba43e702-32d7-40d5-9061-896b93819acd,1970-06-27,,999-87-6230,S99988146,X51452519X,Mr.,Ronny764,Harber290,,,M,white,irish,M,Amherst,898 Walter Promenade Suite 58,Beverly,Massachusetts,01915 +3e79f4df-21cf-42bb-ba1c-45e5363c3d3a,1997-04-13,,999-21-1167,S99959170,X4244989X,Ms.,Romaine793,Corwin846,,,,white,italian,F,Chicopee,649 Upton Trailer Suite 88,Easthampton Town,Massachusetts,01027 +c6e4efb5-3718-4431-92f7-4dddb2eff9e5,1992-09-17,,999-91-3532,S99962664,X52812228X,Mr.,Geoffrey157,Beatty507,,,,white,french,M,Chicopee,158 Dickinson Junction,Lynn,Massachusetts,01901 +5c2501b4-5eaa-4f10-9277-56beb07e53d4,1955-06-19,,999-79-7380,S99970151,X53359150X,Mrs.,Eladia866,Haley279,,Huel628,M,white,french,F,Chicopee,331 Heidenreich Orchard Suite 50,Winthrop Town,Massachusetts,02128 +109a2a08-9928-497c-8186-89cc104e6a9c,2012-06-15,,999-19-3757,,,,Garry927,Jaskolski867,,,,white,american,M,Boston,773 Goodwin Park,Barre,Massachusetts,01005 +8fc9c162-1a19-418b-bb11-ca673a841a6e,1937-12-31,,999-45-1020,S99999580,X55409845X,Mrs.,Annamarie398,Macejkovic424,,Muller251,M,white,german,F,Barnstable Town,339 Abshire Camp,Rockland,Massachusetts,02370 +a3d17992-481a-43b9-9867-cf67df302ac1,1968-08-10,,999-82-8836,S99938165,X1025323X,Mr.,Elden718,Schaden604,,,S,white,scottish,M,Avon,461 Zemlak Boulevard,Paxton,Massachusetts,01612 +6e7b6cbb-f8b7-495f-9181-d3898e028938,1974-07-24,,999-40-2138,S99988082,X50692309X,Mr.,Lamar193,Hackett68,,,S,white,french_canadian,M,Ware,1057 Rohan Loaf,Dighton,Massachusetts,02715 +f08c5239-1d94-4c8f-aec2-4c50e5cae848,1953-09-22,,999-74-1431,S99932118,X37742571X,Ms.,Eloisa55,Bustamante966,,,S,hispanic,mexican,F,Boston,189 Little Walk Unit 66,Lowell,Massachusetts,01850 +b1c5be19-7178-4f08-85ef-07519b8e9dcc,1994-09-06,,999-74-3126,S99986796,X33563887X,Mr.,Jonathon205,Dicki44,,,,white,english,M,Boston,656 Conroy Alley Suite 9,Randolph,Massachusetts,02368 +0236c03b-9ecb-4166-b064-49519a04aa18,1945-12-09,2018-04-29,999-97-5987,S99961062,X88806866X,Mr.,Val761,Altenwerth646,,,M,white,polish,M,Stoneham,605 Boyle Corner,Braintree Town,Massachusetts,02184 +66744797-2ad2-4c7d-9be6-79f66cfa7822,1978-10-03,,999-15-3704,S99943641,X4357103X,Mrs.,Eboni653,Balistreri607,,Ratke343,M,white,german,F,Kingston,692 Cormier Club Apt 51,Lynn,Massachusetts,01901 +0819d807-4822-4aa6-80d1-220822e4ec6c,1914-03-24,1990-02-11,999-86-8779,S99923706,X67944557X,Mrs.,Kimiko714,Legros616,,Harris789,M,white,scottish,F,Dudley,657 Reichert Tunnel,Pittsfield,Massachusetts,01201 +0f4f1601-a557-42f5-959a-bfde58a04987,2000-12-23,,999-91-3122,S99977591,,,Orpha286,Christiansen251,,,,white,italian,F,Westford,178 Bogisich Esplanade Suite 94,Springfield,Massachusetts,01013 +8f9177d0-c454-4ce4-9c81-8d62910ef5b3,1965-10-28,,999-14-5526,S99957727,X60924368X,Mr.,Malcolm243,Bradtke547,,,M,white,english,M,Lynnfield,566 Schneider Mall,Somerville,Massachusetts,02138 +9110e62a-9ef3-4d76-ad88-b5b3c57e3ace,2007-10-01,,999-95-3498,,,,Esteban536,Gollum504,,,,hispanic,puerto_rican,M,Winchester,453 Lubowitz Lodge,Bellingham,Massachusetts,02019 +26d35146-d5d6-42a7-9bf8-47302f87f434,1958-01-06,,999-73-1480,S99975900,X11670638X,Ms.,Krishna674,Schamberger479,,,S,white,french,F,Andover,379 Tillman Dam Apt 53,Lancaster,Massachusetts,01523 +bea9bfab-a046-4dc6-986d-893f5210fe2f,2015-03-18,,999-64-9629,,,,Lane844,Wuckert783,,,,asian,chinese,M,Natick,415 Hintz Port,Winthrop Town,Massachusetts,02128 +1f007a4f-fa96-4760-a163-4c07aeb4a053,1969-04-18,,999-52-4091,S99965939,X20089435X,Mrs.,Donnette259,Lebsack687,,Lang846,M,white,italian,F,Chelmsford,189 Daniel Skyway Apt 26,Springfield,Massachusetts,01013 +4648ee77-713c-49e9-af00-6aad0c2e0447,2009-06-02,,999-27-1657,,,,Tequila897,Boyle917,,,,white,french_canadian,F,Peabody,247 Runte Glen Apt 17,Burlington,Massachusetts,01803 +93cdcb5f-f48b-4746-ac05-eac361cce148,1945-12-09,,999-80-4441,S99989041,X672658X,Mr.,Dwayne786,Quigley282,,,M,white,polish,M,Lexington,984 Langworth Port Suite 9,Braintree Town,Massachusetts,02184 +c168b090-e78f-4e03-8825-b85936409f0d,2011-04-28,,999-53-1031,,,,Jacquie940,Dach178,,,,white,italian,F,Brockton,776 Denesik Walk,Quincy,Massachusetts,02169 +20577026-1077-4637-9e7b-62d3589ac39f,1970-03-02,,999-70-2454,S99916980,X31092985X,Ms.,Jenae263,Kunde533,,,S,white,portuguese,F,Attleboro,830 Hickle Viaduct,Peabody,Massachusetts,01940 +0587f3e1-c6e1-490c-a8f6-8978fe0a9e05,1936-09-04,,999-68-9171,S99986104,X38557057X,Mrs.,Venus149,Rau926,,Doyle959,M,white,russian,F,North Attleborough,142 Lynch Dam,Tewksbury,Massachusetts,01876 +4d32fcfc-6f3d-4a57-8ae7-ba67b65ca1be,1980-09-03,,999-25-1869,S99988955,X71077466X,Mr.,Leandro563,Klein929,,,S,white,polish,M,Dartmouth,938 Gorczany Esplanade,Plymouth,Massachusetts,02360 +5cbeabbd-6502-4e82-a30e-fd646a80817e,2009-12-02,,999-60-3373,,,,Vern731,Aufderhar910,,,,white,english,M,Brookline,1036 Harber Club,Foxborough,Massachusetts,02035 +1e3e4efb-bb92-4c36-86cf-3d0cc81ae5c0,1955-07-21,,999-26-6464,S99951762,X15153282X,Mr.,Pierre431,Lesch175,,,M,white,irish,M,Medford,763 Murray Track,Belmont,Massachusetts,02138 +9a191324-65e8-43ca-a896-c58ad72263a4,1914-03-24,1997-05-11,999-41-9280,S99982911,X76971397X,Mrs.,Myrle831,Ankunding277,,Russel238,M,white,scottish,F,Winthrop Town,1065 Abshire Mall,Pittsfield,Massachusetts,01201 +c4b9da99-9a33-4945-b20f-90e7a2326249,1967-02-10,,999-92-1244,S99937693,X81547503X,Mrs.,Ulrike696,O'Keefe54,,Bauch723,M,white,irish,F,Somerville,330 Green Trailer,Bourne,Massachusetts,02532 +3ef34359-38d6-41c3-84c9-1d02ad9c19ec,1981-02-04,,999-96-1502,S99993421,X28216931X,Mr.,Noel608,Hickle134,,,S,white,english,M,Wilmington,1043 Moen Lock,Bridgewater,Massachusetts,02324 +bfc8d1d0-bfdc-4ef4-826e-ec1c494ded87,1994-06-01,,999-94-3744,S99983441,X29993394X,Mr.,Asa127,Crona259,,,,white,portuguese,M,Milford,189 Orn Green,Dartmouth,Massachusetts,02714 +81dbe679-584a-44ce-a23a-16385b4fc540,1933-09-23,2002-01-05,999-10-9955,S99931812,X18208872X,Mrs.,Tona622,Berge125,,Gleichner915,M,white,french,F,Whitman,794 Eichmann Underpass Unit 6,Orleans,Massachusetts,02653 +391d1c9a-aefa-40b9-a493-aba2b745c155,1997-08-04,,999-41-5350,S99990909,X36277881X,Ms.,Neoma676,Greenholt190,,,,white,polish,F,Mansfield,1042 Kautzer Key Apt 55,Cohasset,Massachusetts,02025 +cf4c96a7-1f78-4ca8-9ffd-73ea1b857259,1987-02-05,,999-29-8087,S99914269,X34316006X,Mrs.,Wen848,Quigley282,,Schinner682,M,white,italian,F,Newton,1008 Schinner Skyway,Ashburnham,Massachusetts,01430 +787f064b-c20b-4099-a543-48cdbd757475,2013-03-30,,999-27-7082,,,,Carlos172,Schaden604,,,,white,american,M,Milton,779 Watsica Track Apt 5,Milford,Massachusetts,01757 +64aebd8c-01a7-4014-84e0-968bc06b13dc,1956-09-24,,999-89-5030,S99911472,X84449557X,Mr.,Lincoln623,Klein929,,,M,white,italian,M,Westport,694 Jast Arcade,Chelmsford,Massachusetts,01824 +743ebc83-9418-4c8f-a1f2-f6a81aeadc63,1954-08-16,1955-02-14,999-29-9510,,,,Domenic627,White193,,,,white,italian,M,Carver,731 Heathcote Road Apt 1,Methuen Town,Massachusetts,01841 +11e64e60-f8d3-4abc-85b6-77e7bc4f3522,1939-01-26,,999-24-1215,S99938755,X22285433X,Mrs.,Bertie593,Stiedemann542,,Collins926,M,white,irish,F,Marlborough,898 Lakin Park,Brockton,Massachusetts,02301 +6444ff2d-45fb-441d-926a-4f22061647eb,1975-04-11,,999-20-7225,S99927598,X89512681X,Mrs.,Ethel888,Nader710,,Feil794,M,white,irish,F,Plymouth,742 Considine Byway,West Bridgewater,Massachusetts,02379 +b47e5407-6bdf-4672-917f-6e30160cffb0,1914-03-24,,999-45-1448,S99933544,X76693037X,Mrs.,Kittie678,Gleichner915,,Hamill307,M,white,scottish,F,Holyoke,152 Gerhold Plaza,Pittsfield,Massachusetts,01201 +5163e819-99e2-4ba9-a004-2a01af356eb6,1990-04-22,,999-94-7962,S99921369,X82109511X,Mr.,Ernesto186,Adams676,,,M,hispanic,south_american,M,Bernardston,1052 Douglas Crossroad,Boston,Massachusetts,02108 +6d163ae9-9d23-41e0-877a-0805aa436e6c,1991-07-30,,999-54-5207,S99922951,X79220736X,Mrs.,Bula88,McKenzie376,,Ferry570,M,white,french,F,Cambridge,190 Boyle Frontage road,Brockton,Massachusetts,02301 +41b0ee37-9ec2-4923-a4ee-fff6d52e1afd,1972-08-25,,999-46-5122,S99998783,X3242936X,Mr.,Otis335,Bayer639,,,M,white,german,M,Agawam Town,807 Monahan Knoll,Uxbridge,Massachusetts,01569 +e5cb0b24-accf-4b2d-b82e-712447a560b6,1969-09-12,1983-08-12,999-33-7399,,,,Bryan958,Kemmer137,,,,white,english,M,Agawam Town,388 Huel Club Apt 6,Tewksbury,Massachusetts,01876 +0d10428f-4a7d-48b2-80e0-12ee072d9401,1933-09-23,,999-95-4854,S99987004,X20651942X,Mrs.,Frances376,Shanahan202,,Berge125,M,white,french,F,Worcester,180 Schmitt Wall,Orleans,Massachusetts,02653 +83a2665c-051e-41c6-a5c5-fc65f0f6d03e,1954-08-16,,999-20-6304,S99995089,X54262554X,Mr.,Terry864,Simonis280,,,M,white,italian,M,Millville,1054 Rosenbaum Path,Methuen Town,Massachusetts,01841 +ead58477-571b-48c9-84b2-8b6806949db0,2008-06-24,,999-52-8891,,,,Lissa828,Stoltenberg489,,,,white,polish,F,Somerville,438 Murray Route Suite 75,Lunenburg,Massachusetts,01462 +2321c335-2b0b-4972-9c55-aa7b27bf071b,1982-12-10,,999-52-8507,S99986619,X87797534X,Mrs.,Kali995,Goldner995,,Koepp521,M,white,irish,F,Boston,747 Parisian Grove,Dartmouth,Massachusetts,02714 +572e7e40-fcaf-4bc1-9090-28d5fd4f45dc,1980-11-13,,999-72-9139,S99967398,X48908969X,Mr.,Branden904,Witting912,,,M,white,portuguese,M,Kingston,458 Kuhic Pathway,Cambridge,Massachusetts,02138 +4e92e277-0721-4294-b5d8-969978832c58,1994-06-13,,999-83-3488,S99950981,X89138068X,Ms.,Ilona639,Jacobs452,,,,white,italian,F,Longmeadow,274 Runolfsson Fort Apt 67,Belmont,Massachusetts,02138 +2f375fe2-a0dd-4bcb-9fb7-f8cae29aeb6e,1952-03-22,,999-59-4001,S99974232,X47772725X,Mr.,Jefferson174,Hodkiewicz467,,,M,white,french_canadian,M,Danvers,688 Quitzon Branch,Norton,Massachusetts,02766 +c47d5475-3d04-4f93-9fec-2072121f9031,1969-09-12,,999-67-3930,S99974994,X35206976X,Mr.,Terrell212,Nienow652,,,S,white,english,M,Kingston,453 Wisoky Landing,Tewksbury,Massachusetts,01876 +7824b0bb-392a-47ba-95c8-81ad76c80f40,1964-12-26,,999-46-4545,S99913018,X55274036X,Mrs.,Aurora248,Gleason633,,Wilderman619,M,white,english,F,Chelmsford,170 Ledner Loaf,Westfield,Massachusetts,01085 +74778ca7-c893-4a32-9195-d6eaef3fc14f,1983-08-26,,999-50-9196,S99910261,X89303819X,Mrs.,Khadijah960,Herman763,,Kuphal363,M,white,irish,F,Boston,359 O'Hara Parade,Boston,Massachusetts,02108 +6677a2c5-ea20-4fdf-8b70-4f88f01ad27d,1994-07-16,,999-62-7367,S99988911,X3577977X,Mr.,Tommy814,Zemlak964,,,,white,italian,M,Westford,524 Macejkovic Bay,Attleboro,Massachusetts,02703 +c94fbaf4-0214-4b89-8183-f145823bce8a,1974-02-16,,999-27-6012,S99943367,X49722955X,Mrs.,Emerald468,O'Kon634,,Moore224,M,other,arab,F,Fall River,625 Bode Park,Haverhill,Massachusetts,01830 +18f33199-0d77-4adc-9727-52aca35c27fc,1967-08-02,,999-31-4129,S99981070,X58654575X,Mr.,Travis723,Wiegand701,,,M,white,irish,M,Boston,533 Prosacco Boulevard,Springfield,Massachusetts,01013 +f1f19590-cddc-46a9-a878-5bdf17c835a3,2017-05-21,,999-62-8731,,,,Ricardo560,Baeza53,,,,hispanic,puerto_rican,M,Boston,938 Abbott Trace Unit 99,Dracut,Massachusetts,01826 +51e59f91-e705-45a0-9a19-15647b70b771,1957-07-22,,999-32-3499,S99936678,X13602695X,Mr.,Mickey576,O'Hara248,,,M,white,irish,M,Hanover,448 Hintz Grove,Worcester,Massachusetts,01545 +8274fe0d-768f-4574-af96-6ce2f33b3bb8,1960-07-22,,999-86-7240,S99952619,X37177753X,Mr.,Hilario934,Jacobson885,,,M,white,irish,M,Peabody,400 Hickle Arcade,Marshfield,Massachusetts,02050 +ec6c5ada-812e-46e9-bac4-2f0c419566e2,1954-02-05,,999-75-9177,S99945159,X19227291X,Mr.,Lamar193,Koepp521,,,M,white,irish,M,Quincy,850 Blanda Rest,Waltham,Massachusetts,02451 +871666b9-2a04-4dcf-a57d-e765e154f179,2015-01-15,,999-14-4519,,,,Arden380,Champlin946,,,,white,german,M,Lakeville,207 Eichmann Gateway,Fairhaven,Massachusetts,02719 +0f70922d-c491-49d0-843f-532c890f22e6,1997-05-31,,999-42-3238,S99949354,X74160426X,Mr.,Clyde817,Sauer652,,,,white,french,M,Wilbraham,287 Rosenbaum Throughway,Amherst,Massachusetts,01002 +a0f67c11-0541-400f-b60a-93cda035232b,1953-05-31,,999-94-6114,S99939962,X51776072X,Mrs.,Lanelle105,Wiza601,,Weber641,M,white,english,F,Foxborough,1072 Rice Trace,Waltham,Massachusetts,02451 +e6ee0147-fa26-4f71-9cb7-5c2ca483862d,2005-09-27,,999-30-3818,,,,Deane47,McLaughlin530,,,,white,american,F,Plainfield,1068 Simonis Trailer Unit 88,Holliston,Massachusetts,01746 +af328d03-8232-4dec-80cc-16ce599be236,2014-11-23,,999-43-5207,,,,Britteny287,Bode78,,,,white,italian,F,Bridgewater,792 Harber Track,Northampton,Massachusetts,01053 +ac708acf-724a-4438-a48c-081fc3a7cac1,2009-05-07,,999-84-5276,,,,Melonie209,Hauck852,,,,white,italian,F,Middleborough,1081 Upton Hollow Suite 84,Newton,Massachusetts,02458 +b0853259-3c6a-48e9-b400-ca4b315cf64e,1973-09-29,,999-33-3895,S99968735,X40806300X,Mr.,Philip822,Bayer639,,,M,white,irish,M,Concord,700 O'Keefe Haven Apt 0,Cambridge,Massachusetts,02138 +3b8b4cbe-4693-4dc1-8fe6-1ad8856e4c8a,1938-04-10,,999-71-3631,S99984116,X45592477X,Mr.,Rafael239,Almanza534,,,M,hispanic,central_american,M,New Bedford,423 Steuber Mill,Middleton,Massachusetts,01949 +a28a15f9-16a3-4507-93cc-09d70e1e9c97,1978-11-03,,999-97-8604,S99941027,X74855679X,Mr.,Burt293,Nitzsche158,,,M,white,french,M,Falmouth,602 Stokes Junction,Sudbury,Massachusetts,01776 +3d546e5a-ca15-4fab-8c5e-18f7371c440a,1989-10-05,,999-33-9668,S99995435,X75309609X,Mr.,Herman763,Kiehn525,,,M,white,english,M,Revere,841 O'Conner Track,Groton,Massachusetts,01450 +cb880d8c-c569-4ae4-83e9-cf7bb2a47e71,1961-07-07,,999-14-3688,S99980052,X18253956X,Mrs.,Reiko946,Connelly992,,Schoen8,M,white,scottish,F,Medford,454 Hamill Well Suite 67,Cambridge,Massachusetts,02138 +f2a35c3b-1162-439c-a34a-3353415abe77,1968-06-30,,999-52-1131,S99947340,X26296176X,Mr.,Martin117,Stanton715,,,M,asian,chinese,M,Holbrook,307 Fisher Junction Suite 51,Cambridge,Massachusetts,02138 +008def58-c7d0-4a1c-a450-c98c6952c740,2012-07-24,,999-61-6056,,,,Mica978,Zboncak558,,,,white,scottish,F,Canton,311 Emmerich Lock,Worcester,Massachusetts,01545 +4a024b05-9b2c-4435-8d6b-6601d0716ed8,1938-06-11,,999-82-5776,S99958280,X48455022X,Mr.,Eldon28,MacGyver246,,,M,white,german,M,Mansfield,859 Paucek Trail,Wellesley,Massachusetts,02457 +d0dbfe9d-a2c0-464b-a081-5cb3cf6e2292,1911-02-09,2015-08-01,999-21-8597,S99932671,X73777525X,Mr.,Monty345,Runolfsson901,,,M,white,scottish,M,Boxborough,659 Muller Corner Unit 78,Somerville,Massachusetts,02138 +b974784d-7707-4795-8123-7bc5d1ea33ec,1950-11-22,,999-65-8578,S99987980,X20603602X,Mr.,Gail741,Koch169,,,M,hispanic,puerto_rican,M,Lowell,740 Klein Street Unit 68,Haverhill,Massachusetts,01830 +888bc6e2-c09f-44e0-8525-b80e2194d951,2011-09-02,,999-75-8185,,,,Royal919,Will178,,,,white,french_canadian,M,Stoughton,201 Parker View Apt 92,Wayland,Massachusetts,01778 +65c8535c-0611-4176-ac5c-0b3262021ab0,1999-01-14,,999-29-5092,S99942134,,Ms.,Elvira561,Sáenz811,,,,hispanic,puerto_rican,F,Boston,210 Schultz Run,Boston,Massachusetts,02108 +d3152249-59a6-49a2-a7ca-cde2f609ef95,1980-09-05,,999-80-8985,S99995961,X69677566X,Mrs.,Dannielle300,Hahn503,,Fay398,M,white,english,F,Millis,543 Koelpin Drive Apt 93,Boston,Massachusetts,02108 +298cbef0-e31f-458c-b3f3-a8f2cd099129,1959-06-27,,999-65-9592,S99938764,X70951941X,Mrs.,Albert312,Runte676,,McLaughlin530,M,white,english,F,Milford,934 Streich Forge,New Bedford,Massachusetts,02740 +eeab5ee7-6f6c-45c2-b79f-c3c6cdd75c2c,1993-12-27,,999-83-6847,S99914715,X55849473X,Mr.,Adalberto916,Shields502,,,,hispanic,south_american,M,Wareham,881 Hartmann Tunnel,Georgetown,Massachusetts,01833 +a8a32790-91cb-4f0e-9093-4f0505402e6a,2000-07-26,,999-23-3179,S99986774,,Ms.,Penelope500,Herman763,,,,white,irish,F,Peabody,257 Hermiston Grove,Needham,Massachusetts,02492 +b3ad41a2-32b8-4472-86cd-4adaaa3f64fb,1989-11-24,,999-52-9492,S99948019,X21646370X,Mrs.,Jeanelle736,Walsh511,,Welch179,M,white,english,F,Auburn,1016 Oberbrunner Stravenue Apt 33,Hatfield,Massachusetts,01038 +997bae88-2645-4566-9b76-4736cd48a28a,1990-07-12,,999-65-9200,S99939036,X28133282X,Mr.,Rick943,Kunze215,,,M,white,irish,M,Tewksbury,490 Doyle Course,Plymouth,Massachusetts,02360 +a91d7245-6dba-4431-8c33-f3edf7ca44c9,1964-08-13,,999-44-5649,S99911459,X68049033X,Mrs.,Dannette613,Grady603,,Fritsch593,M,white,american,F,Norwell,664 Altenwerth Viaduct,Brookline,Massachusetts,02215 +ee52fa98-9aef-43b4-9a87-10f368edf8d3,1980-01-27,,999-17-9374,S99970471,X84237019X,Mr.,Demetrius568,Roberts511,,,M,white,italian,M,Cambridge,518 McCullough Row,Scituate,Massachusetts,02066 +4d6e1c1e-b02c-432b-8c8c-16663392137c,2009-07-10,,999-26-2818,,,,Markita319,Berge125,,,,white,french,F,Plymouth,762 Mante Gateway,Haverhill,Massachusetts,01830 +b31be8ef-03ba-489d-b531-b27ebbd2f262,1963-12-08,,999-52-8924,S99959147,X10056775X,Mrs.,Cristen212,Gutkowski940,,Jacobs452,M,white,italian,F,Paxton,779 Lockman Rue Unit 14,Rockland,Massachusetts,02370 +57566d03-c787-4b58-a1f0-f28afb2f2f00,1961-05-20,,999-93-9790,S99938964,X19176101X,Mr.,Harvey63,Schroeder447,,,M,white,french,M,Springfield,675 Erdman Dam Unit 9,Taunton,Massachusetts,02718 +b3e9c17c-df22-4ab9-b28e-cd1bed1d061c,2009-01-13,,999-90-8235,,,,Sindy229,Douglas31,,,,white,portuguese,F,Boston,540 Murazik Gate,Quincy,Massachusetts,02169 +e1c534fa-4398-44f5-bada-4b058224bfbe,2005-01-22,,999-28-9449,,,,Tonita173,Morissette863,,,,white,irish,F,Marblehead,824 Bauch Glen,Norfolk,Massachusetts,02056 +baa83ca7-fe97-4825-9245-5f12bd2578a7,1994-06-08,,999-84-3682,S99989408,X78111221X,Mr.,Alphonso102,Fritsch593,,,,white,german,M,Boston,617 Stanton Union Unit 40,Medford,Massachusetts,02145 +754714be-5bcb-4f4a-8f8d-510b9c4ed996,2006-06-13,,999-39-1128,,,,Keira502,Kuhic920,,,,white,english,F,Framingham,704 Braun Viaduct,Framingham,Massachusetts,01701 +772ba03a-4e5d-47e0-8e04-489ed10a4ee2,1971-08-05,,999-24-6463,S99948234,X80679932X,Mr.,Buford910,Lakin515,,,M,white,italian,M,Athol,339 Jenkins Passage Unit 48,Lynn,Massachusetts,01901 +f41ae851-606e-4d93-bdfe-cd55e009bde3,1995-12-12,,999-91-8733,S99999224,X6948903X,Ms.,Princess223,Haley279,,,,white,french,F,Somerville,387 Smith Path Suite 50,Randolph,Massachusetts,02368 +1ac6bad7-52ae-431b-9856-8e6960e48384,1984-07-22,,999-25-3582,S99918724,X57843486X,Mr.,Arden380,Rosenbaum794,,,M,white,swedish,M,Medford,635 Swift Overpass,Springfield,Massachusetts,01013 +4617ad4a-4ce4-4203-8ae9-6605c66d4637,1911-02-09,,999-43-8820,S99959039,X2715911X,Mr.,Austin578,Maggio310,,,M,white,scottish,M,Pittsfield,682 Carroll Byway Suite 64,Somerville,Massachusetts,02138 +70052a80-404f-46c8-8ae7-e61f387b1b66,1940-09-19,,999-36-2051,S99943390,X9591880X,Mr.,Columbus656,Stark857,,,S,white,english,M,Peabody,127 McLaughlin View Apt 88,Milford,Massachusetts,01757 +419dfce5-3a1d-4cb8-b13b-a1975a5a83e1,1912-09-17,,999-57-6618,S99946020,X83316780X,Mrs.,Andrea7,Altamirano540,,Hernádez343,M,hispanic,puerto_rican,F,Quincy,864 Muller Lock,Lynn,Massachusetts,01901 +73b64e67-b98e-409e-ab57-b5eaa6bb0cb1,1954-04-16,1976-03-19,999-85-8585,S99943351,X51879447X,Mr.,Newton741,Waelchi213,,,,white,english,M,Westwood,733 Boyle Annex Suite 69,Newton,Massachusetts,02458 +66c67449-2537-4097-8fcf-2c958445d435,1947-02-23,,999-96-2422,S99970118,X3105061X,Mr.,Luther918,Christiansen251,,,S,white,irish,M,Leominster,847 Mertz Run,Marlborough,Massachusetts,01752 +f07eab61-8381-4ce1-b69e-5c93a4fe63df,1963-12-17,,999-16-8420,S99919673,X87318456X,Mrs.,Diann220,Kemmer137,,Bogisich202,M,white,italian,F,Worcester,713 Denesik Gardens,Plymouth,Massachusetts,02360 +8569757e-9402-4cc6-b427-ad2f266f37bd,1968-07-15,,999-16-2902,S99965068,X12390076X,Mr.,Delmar187,Hackett68,,,M,white,portuguese,M,Brookline,132 Johns Stravenue Suite 35,Groton,Massachusetts,01450 +f101a269-dc54-4757-b7ca-acfdf5d5cb52,2001-03-31,,999-67-3299,S99997060,,,Rebeca548,Valdés907,,,,hispanic,mexican,F,Boston,920 Kirlin Port Suite 25,Salem,Massachusetts,01907 +15bbabae-5509-48ec-b13a-be930ca2c219,1983-07-06,,999-24-7140,S99960328,X24448617X,Mr.,Fernando603,Pabón228,,,M,black,dominican,M,Petersham,801 Kreiger Approach,Boston,Massachusetts,02108 +0fb88a47-fcf1-4062-83cc-78dac269f20b,2017-06-20,,999-77-4345,,,,Yong583,Langosh790,,,,white,english,M,Boston,966 Zboncak Ville Unit 66,Lynn,Massachusetts,01901 +98b32b73-c48d-44b6-90ce-d50902c5b4a2,2003-05-15,,999-92-5761,,,,Kelsi424,Marks830,,,,white,french,F,Boston,742 Douglas Club Unit 28,Bridgewater,Massachusetts,02324 +ceb3a732-a3a8-409d-90c0-7cf73f5d60a1,2003-11-18,,999-89-7184,,,,Chase54,Reynolds644,,,,white,french_canadian,M,Hingham,244 Wyman Walk Suite 24,Plymouth,Massachusetts,02360 +5d884748-09ac-40fb-befe-67630166cd23,1990-08-20,,999-77-3867,S99966506,X17187326X,Mrs.,Ora550,Yundt842,,Rosenbaum794,M,white,irish,F,Cambridge,792 Beatty Boulevard Suite 18,Randolph,Massachusetts,02368 +2e85ce41-673d-4213-8e95-16c4672a3580,2016-09-15,,999-71-6501,,,,Missy373,Shanahan202,,,,white,english,F,Weymouth Town,608 Crooks Fort Unit 7,Athol,Massachusetts,01331 +fdef7671-2fcd-42c2-a6b6-c6d4cbb53b74,1945-10-25,1999-03-23,999-96-7431,S99993324,X40434605X,Mrs.,Rosalia943,Mesa630,,Banda20,M,hispanic,puerto_rican,F,Quincy,731 Osinski Wynd,Natick,Massachusetts,01760 +8a575725-13ee-4f8b-a938-e41e403e992f,1979-09-14,,999-37-6002,S99912937,X84104699X,Mr.,Tyrone215,Grant908,,,S,white,polish,M,Hanson,1084 Lindgren Glen Suite 89,Oxford,Massachusetts,01540 +6d9f14c9-2dfd-4ed9-a008-6e26bcebdae9,1958-07-06,,999-70-5773,S99983911,X16516272X,Ms.,Mei233,Oberbrunner298,,,S,white,french,F,Woburn,928 Williamson Union,Pittsfield,Massachusetts,01201 +11fdbcd3-87c8-4ec6-8186-6bd25de3403a,1950-06-28,,999-77-5795,S99915972,X47444450X,Ms.,Ray930,Bechtelar572,,,S,white,italian,F,Rutland,1033 White Park Suite 21,Springfield,Massachusetts,01013 +a295d348-5a43-4cb7-8a1e-fd85ffc8290b,1954-04-16,,999-38-8920,S99939689,X41205702X,Mr.,Toby274,Thompson596,,,M,white,english,M,Chelmsford,170 Adams Bridge,Newton,Massachusetts,02458 +2cff127a-e111-4a86-81ca-b2a3299f8de5,1988-08-02,,999-80-4590,S99988144,X42095041X,Mrs.,Gudrun69,Schimmel440,,Aufderhar910,M,black,african,F,Chelmsford,985 Considine Byway Apt 97,Duxbury,Massachusetts,02332 +8d4ba2d5-d3af-4ae7-85c1-ebc511dd1889,1973-07-07,2015-06-27,999-73-4700,S99910160,X74590785X,Mr.,Graham902,Lynch190,,,S,white,french_canadian,M,Westford,534 Bernhard Arcade Apt 98,Marblehead,Massachusetts,01945 +a0a9794a-4591-4ab2-83e5-feb804a79e4b,1976-03-19,,999-69-3562,S99962121,X47584454X,Ms.,Farah862,Hammes673,,,S,white,portuguese,F,Newton,586 Cassin Knoll Unit 16,Salem,Massachusetts,01907 +91d0889f-ba7f-4b43-a3f8-1889c3abd5cd,2011-04-26,,999-15-8601,,,,Dannie881,Hamill307,,,,hispanic,central_american,F,Grafton,941 Schuster Gardens Suite 15,Boston,Massachusetts,02108 +77354df1-ddd2-4d5c-b3ee-ae8f8d344378,1980-02-14,,999-53-5026,S99966350,X70831042X,Mr.,Kieth891,Rice937,,,M,white,english,M,Quincy,889 Leannon Port,Easton,Massachusetts,02334 +3dd3c913-2d97-4941-b0ed-70af938b2b92,1993-12-13,,999-64-3740,S99953412,X56793366X,Ms.,Tula326,Pfannerstill264,,,,white,irish,F,Westfield,223 O'Kon Village Apt 4,Boston,Massachusetts,02108 +dadb8f9f-bd73-4184-984e-c0fa93173685,1988-09-07,,999-77-7222,S99919131,X7489458X,Mr.,Graig740,Kautzer186,,,M,white,swedish,M,Springfield,684 Rogahn Green,Boston,Massachusetts,02108 +3565e9c0-4ce8-4c5b-baca-714afd5cc6cf,1989-06-13,,999-85-8426,S99971011,X23924624X,Mr.,Carmine137,Grimes165,,,M,white,italian,M,Billerica,541 Trantow Extension,Canton,Massachusetts,02021 +71962399-d05c-46b8-9016-3c12df120597,1973-07-07,,999-46-3104,S99952477,X56677718X,Mr.,Abel832,Hansen121,,,M,white,french_canadian,M,Tewksbury,882 Haley Tunnel Unit 83,Marblehead,Massachusetts,01945 +9cdaf86f-54f5-49f8-ae20-cc9eacbe2c03,1945-10-25,,999-16-3012,S99972987,X82220872X,Mrs.,María José279,Jaime666,,Crespo500,M,hispanic,puerto_rican,F,Boylston,1080 Koch Pathway Unit 85,Natick,Massachusetts,01760 +a6d5f923-783f-409e-96e5-64012d550b2a,1982-02-19,,999-84-3247,S99996441,X82362932X,Mr.,Luke971,Jaskolski867,,,S,asian,chinese,M,Leominster,215 Conroy Center,Southampton,Massachusetts,01073 +de7d53d9-d12b-4acb-8ef1-b7ebd784e1a5,1993-03-12,,999-46-9124,S99947900,X26879232X,Ms.,Jenette717,O'Keefe54,,,,white,italian,F,Oxford,329 Medhurst Ramp Unit 88,Fall River,Massachusetts,02720 +e04ccc9b-e469-41ca-a6bc-92809b9a3e33,1971-01-27,,999-56-3756,S99953828,X55051477X,Mr.,Jorge203,West559,,,M,white,irish,M,Norton,262 Harber Arcade,Amesbury Town,Massachusetts,01913 +d3419440-171f-422c-8c20-38ac30075b61,2011-04-14,,999-75-4922,,,,Kai187,Halvorson124,,,,white,irish,F,Quincy,778 Corwin Key Unit 57,Boston,Massachusetts,02108 +7f3e0267-36b6-4b13-be2b-77d5f459ef26,1954-09-30,,999-50-1592,S99943167,X66115595X,Mr.,Alphonso102,Wisozk929,,,M,white,german,M,Georgetown,202 Moen Overpass Unit 57,Sharon,Massachusetts,02067 +0ddff537-c57a-4b5c-9587-8706b1a7047a,1993-08-09,,999-70-6685,S99968542,X60494349X,Ms.,Clemencia569,Turner526,,,,white,italian,F,Newton,105 Borer Passage,Wareham,Massachusetts,02571 +6bb38b8e-aa69-4cc7-97e1-9b24764078bb,1964-01-31,2007-05-04,999-93-9424,S99981339,X83694664X,Mr.,John539,Armstrong51,,,M,white,irish,M,Boston,430 Langosh Lock Suite 79,Worcester,Massachusetts,01545 +a9d330b6-f0d8-460d-b35b-5a40e06483e2,1954-09-07,,999-33-9551,S99925330,X39289743X,Mr.,Harlan808,Mann644,,,M,white,irish,M,Weymouth Town,696 Fisher Junction,North Attleborough,Massachusetts, +2848c852-3c86-4fbb-81ed-d301da6ed3b7,2005-04-10,,999-32-5429,,,,Tobias236,Adams676,,,,asian,chinese,M,Lunenburg,363 Rath View Unit 65,Quincy,Massachusetts,02169 +b1223959-3e81-4d49-88d5-d742433d7d04,2009-10-11,,999-93-9727,,,,Samuel331,Sierra982,,,,hispanic,puerto_rican,M,Grafton,262 Rowe Meadow,Saugus,Massachusetts,01906 +afdc0d39-ef76-429d-bf2a-c86ed0351871,1964-01-31,1971-04-23,999-56-1664,,,,King743,Daugherty69,,,,white,irish,M,Melrose,831 Kub Trace Apt 40,Worcester,Massachusetts,01545 +9ee78e98-ff2a-4db0-bec4-0b6a010c2f03,1967-04-14,,999-82-1334,S99965695,X11547124X,Mr.,Tad831,Harvey63,,,M,white,irish,M,Brookline,1011 Anderson Parade Unit 86,Worcester,Massachusetts,01545 +ff4bad07-c5ed-48e0-82ea-abdc777d3bd6,1962-12-24,,999-87-4625,S99981172,X89278501X,Ms.,Leticia253,Espinoza81,,,S,hispanic,south_american,F,Kingston,486 Tillman Bay,Newton,Massachusetts,02458 +c6ee29e2-de47-495e-8f20-25163f2590ba,1966-11-26,,999-87-1603,S99989968,X7416507X,Ms.,Taylor21,Huel628,,,S,white,american,F,Lancaster,482 Jenkins Bridge Unit 81,Woburn,Massachusetts,01801 +5301e5ec-149d-4847-8e56-f4c352efda7b,1959-02-07,2005-12-10,999-50-5756,S99976299,X1875497X,Mr.,Julio César525,Sisneros410,,,M,black,west_indian,M,Boston,416 Fritsch Way,Cambridge,Massachusetts,02138 +552c5c99-736d-4200-86e7-86ca50aca56c,2011-05-13,,999-30-1877,,,,Bryce11,Botsford977,,,,white,french,M,Worcester,398 Skiles Bridge,Fall River,Massachusetts,02720 +ae496916-057b-4a44-9e24-8e940d52ecf4,2007-09-15,,999-72-2967,,,,Ezra452,Ward668,,,,white,scottish,M,Waltham,547 Hyatt Route Unit 86,Framingham,Massachusetts,01701 +833c0b16-e27a-4344-afa0-319c833fcc41,2013-12-11,,999-99-4460,,,,Rosamaria757,Turcotte120,,,,white,english,F,Springfield,202 Kutch Gardens Unit 59,Cambridge,Massachusetts,02138 +a39ba7d0-769a-4687-b632-0189ed5744a1,1999-12-31,,999-49-1086,S99926115,,Mr.,Joaquín233,Fernández399,,,,black,dominican,M,Great Barrington,713 Schiller Crossing,Springfield,Massachusetts,01013 +0dbdaaf4-c3f2-45e2-859a-4f1462df2738,2003-01-02,,999-51-3501,,,,Van763,Lockman863,,,,white,english,M,West Springfield Town,511 Bins Divide,Boston,Massachusetts,02108 +0c20c437-0433-4791-8ac9-dd670acf936b,2006-08-14,,999-41-2627,,,,Thelma273,Aufderhar910,,,,white,italian,F,Boston,1083 Hickle Dale,Methuen Town,Massachusetts,01841 +3e604069-2a2e-428a-9b81-37fe12c9faa3,2002-01-03,,999-63-8776,S99986218,,,William805,Daugherty69,,,,white,irish,M,Cambridge,466 Considine Mall,South Hadley,Massachusetts,01075 +6903adc2-026c-4171-9bd0-02e3dc2c481d,1999-05-29,,999-84-3069,S99936715,,Ms.,Joane83,Witting912,,,,other,arab,F,Chicopee,780 Sanford Path,Andover,Massachusetts,01810 +c7b829f3-d986-48a5-ad0c-09e9c1c90ced,1964-01-31,,999-28-9749,S99986532,X54705687X,Mr.,Heriberto162,Turcotte120,,,M,white,irish,M,Weston,495 Nitzsche Fort Unit 94,Worcester,Massachusetts,01545 +34efd41c-52d5-4f37-b09a-aa828333c555,1961-03-14,,999-27-7763,S99927961,X44305088X,Mrs.,Glennie916,Schaden604,,MacGyver246,M,white,english,F,Somerville,385 Reinger View,Lawrence,Massachusetts,01840 +69f4e305-572b-4081-b3b1-2b9b3cd1f7dd,1944-03-12,,999-54-8018,S99972328,X40860648X,Mr.,Tom274,Nicolas769,,,M,white,irish,M,Hopkinton,509 Cruickshank Crossroad Suite 44,Springfield,Massachusetts,01013 +3e6e481b-dfa4-400d-be18-36451a50b661,2009-03-26,,999-67-5975,,,,Yelena240,Spinka232,,,,white,french,F,Lawrence,823 Mueller Trail Unit 11,Boston,Massachusetts,02108 +9ab57c13-9814-4140-8bcf-7903f83ddf01,1959-02-07,,999-69-4673,S99999229,X81334646X,Mr.,Gonzalo160,Valdés907,,,M,black,west_indian,M,Medford,777 Feil Underpass Suite 94,Cambridge,Massachusetts,02138 +a1d7e798-b3d5-4f42-8017-b10506aec403,1983-04-19,,999-84-4189,S99970224,X2144640X,Mr.,Bill567,Kris249,,,M,hispanic,south_american,M,Boston,304 Tremblay Port Unit 97,Springfield,Massachusetts,01013 +d370855b-18f0-445f-a503-bf24b982a5f5,1978-04-12,,999-70-7324,S99955104,X77185410X,Mr.,Shayne60,Swift555,,,M,white,italian,M,Somerset,1067 Hoeger Haven Unit 22,Boston,Massachusetts,02108 +b56bb8a5-da93-4452-a3b1-42dca7fdf8ed,2015-07-05,,999-76-2324,,,,Andera917,Aufderhar910,,,,white,italian,F,Winchester,404 Wisoky Promenade,Danvers,Massachusetts,01923 +75ee7b8f-a06f-47fd-a0db-188469b9bb1d,1985-10-13,,999-42-2877,S99923448,X66825956X,Mrs.,Joella167,Becker968,,Nienow652,M,white,french,F,Boston,908 Schamberger Byway,East Bridgewater,Massachusetts,02333 +c1e07787-7d4c-44fd-b813-89a1a1781a58,1998-09-17,,999-29-5545,S99947021,X54014471X,Ms.,Carmella421,Kertzmann286,,,,asian,chinese,F,Salem,523 Runte Well Unit 77,North Andover,Massachusetts,01845 +852342cd-1425-4b1f-be40-fb961351630e,1981-03-03,,999-87-4071,S99986981,X29591161X,Mr.,Adán600,Maya972,,,M,hispanic,puerto_rican,M,Arlington,146 Weber Mews,Danvers,Massachusetts,01923 +64fdc7b5-ce82-4641-8423-46f1d9f1d044,1964-04-22,,999-94-1484,S99944204,X31390794X,Mr.,Thomas756,Kshlerin58,,,M,white,english,M,Worcester,822 Krajcik View,Greenfield Town,Massachusetts,01301 +b4b85723-fec2-4385-8055-217da50594e0,1972-07-16,,999-15-1373,S99941226,X46582249X,Mr.,Merrill415,Schoen8,,,M,white,polish,M,Lowell,870 Turcotte Well,North Andover,Massachusetts,01845 +e85969fd-40f8-4601-b7b1-818f6db7e99b,1951-02-22,,999-90-2140,S99952317,X11776471X,Ms.,Glennis930,Abernathy524,,,S,native,american_indian,F,Natick,347 Luettgen Arcade Suite 84,Monson,Massachusetts,01057 +3f313bab-b827-4b5b-8f1b-38dbafe66411,1974-01-31,,999-26-5932,S99972209,X81349869X,Mr.,Tuan998,Dickens475,,,M,white,english,M,Watertown Town,594 Lubowitz Frontage road Suite 68,Millbury,Massachusetts,01527 +b717cbc3-8bb1-4fe2-8db0-5ecaaadadd87,1948-03-18,,999-96-1862,S99949600,X71613641X,Mr.,Martin117,Botsford977,,,M,white,swedish,M,Dedham,858 Goodwin Rue Unit 30,Hanover,Massachusetts,02339 +f5efb91b-2c3a-4578-8a75-b2811e247b9c,1943-12-29,,999-91-5705,S99977585,X47681739X,Mr.,Hunter736,Kuhic920,,,M,white,italian,M,Holden,1016 Jerde Common,Springfield,Massachusetts,01013 +e146a9c4-7152-4408-b7a4-9e725857ea1f,1969-12-25,,999-50-5420,S99967769,X23287128X,Mrs.,Dianna917,Wintheiser220,,Schuppe920,M,black,african,F,Needham,871 Schoen Landing Unit 2,Boston,Massachusetts,02108 +49c41d7e-7b6c-4f9f-9f11-fcf23f4ef879,1994-10-23,,999-51-6688,S99933064,X79639530X,Mr.,Damian46,MacGyver246,,,,white,german,M,Middleton,533 Krajcik Boulevard,Weston,Massachusetts,02493 +7a87ff9d-31e6-4000-90c8-967d1b511abb,2015-04-29,,999-33-7283,,,,Eliseo499,Cremin516,,,,hispanic,mexican,M,Brookline,778 Hessel Bypass,Boston,Massachusetts,02108 +865ba27b-77e8-4f9e-bbad-2ecf5c7e45cd,1979-08-25,,999-71-7511,S99967922,X29119125X,Mrs.,Madelaine318,Lesch175,,Abshire638,M,white,english,F,Agawam Town,1057 Rolfson Fork Unit 94,Bourne,Massachusetts,02532 +db631855-a166-47da-ab88-e7cef03ed791,1955-03-24,2018-05-31,999-84-9303,S99982317,X71076668X,Mr.,Mario764,Domínquez36,,,M,hispanic,central_american,M,Medfield,831 Greenholt Bridge,Boylston,Massachusetts,01505 +a66c8445-0cbe-43c2-a8bb-0a9dcb00e027,1952-11-02,1967-09-15,999-30-9976,,,,Randolph418,Waelchi213,,,,white,irish,M,Reading,905 Huels Boulevard Suite 36,Foxborough,Massachusetts,02035 +e6ffe6c0-094b-469a-956f-0b693005e005,2000-10-15,,999-39-8012,S99999880,,Ms.,Augustina561,Kiehn525,,,,white,polish,F,Millbury,190 Labadie Junction Unit 58,Boston,Massachusetts,02108 +3259cfc0-be63-4eb3-8db4-c783367bc15f,1967-05-09,,999-68-1860,S99978405,X33207674X,Ms.,Aimee901,McDermott739,,,S,white,irish,F,Ludlow,780 Hilpert Path Suite 71,Wareham,Massachusetts,02571 +c2b5753c-fb11-401b-ac05-f1f83e9f24a2,1990-10-05,,999-62-2253,S99926718,X74957573X,Mrs.,Shara355,Grady603,,Grimes165,M,white,italian,F,Barre,248 Daugherty Station,Brookline,Massachusetts,02215 +ea56ed6b-f78f-4acf-b201-cf9f49679d85,1987-02-19,,999-23-8616,S99993505,X82120916X,Mr.,Frankie174,Swift555,,,M,hispanic,puerto_rican,M,Salisbury,783 Hyatt Port,Boston,Massachusetts,02108 +f6c2acf0-663b-48a1-8a41-7295eadaa85a,1978-02-12,,999-46-6212,S99990403,X60095387X,Mr.,Teddy976,Kozey370,,,S,white,irish,M,Chicopee,808 Reinger Light Apt 20,Everett,Massachusetts,02148 +71a92e54-c54e-4cb9-9e5d-c1ab5bbe56b0,1982-07-27,,999-57-3976,S99940586,X14212838X,Mrs.,Tai836,Heaney114,,Stark857,M,white,french,F,Malden,1084 Ernser Bypass Apt 90,Needham,Massachusetts,02492 +f659c465-04a9-4885-bab5-0b745b7d0a8b,1972-07-05,,999-49-3411,S99974376,X16426569X,Mrs.,Kiyoko456,Will178,,Swift555,M,white,french,F,Franklin Town,353 Beer Skyway,Easthampton Town,Massachusetts,01027 +1ae69fcd-6937-48a8-ad40-51e635470a0f,1959-06-29,,999-43-1952,S99941301,X36525881X,Mrs.,Christy428,Jerde200,,Bergstrom287,M,white,irish,F,Stoughton,251 Macejkovic Dam Suite 9,Worcester,Massachusetts,01545 +53c423ae-b48d-4bb6-b8a0-b2182be8dc12,2005-02-10,,999-36-5180,,,,Elijah719,West559,,,,white,english,M,Quincy,498 Maggio Mall,Boston,Massachusetts,02108 +65c778bb-2c8a-4123-9457-7ba59df2f21d,1952-11-02,,999-46-6696,S99972077,X48350781X,Mr.,Rolland302,West559,,,M,white,irish,M,Amherst,246 Kuvalis Terrace Suite 54,Foxborough,Massachusetts,02035 +a86567ac-3a25-4b9a-a068-76da314e6817,1955-03-24,,999-64-6423,S99911314,X60517568X,Mr.,Pablo44,Partida347,,,M,hispanic,central_american,M,West Boylston,884 Jacobi Mall Unit 37,Boylston,Massachusetts,01505 +b21bb107-1d4f-4bc0-a5d1-9b005df697b9,2005-11-15,,999-33-4137,,,,Francis500,Schmeler639,,,,white,english,F,Wilbraham,1090 Mills Trail,Somerville,Massachusetts,02138 +0ea7036e-7c77-435a-902c-09730d5527fe,1980-10-07,,999-76-3768,S99996378,X45837904X,Mr.,Dong972,Becker968,,,M,white,english,M,Milford,883 Jacobs Glen Unit 98,Framingham,Massachusetts,01701 +3b048896-9e45-4032-924b-542662c9258d,1986-05-23,,999-41-6563,S99961804,X57020001X,Ms.,Ngan798,Rutherford999,,,S,white,irish,F,Wellesley,396 Kemmer Landing,Watertown Town,Massachusetts,02472 +68031c6f-3cad-4bba-8351-7787235ce685,1934-03-16,,999-15-1259,S99999248,X5748271X,Ms.,Carolina179,Peralta301,,,S,black,west_indian,F,Springfield,1027 Macejkovic Approach,Haverhill,Massachusetts,01830 +021e1afa-a0af-4cdc-b827-b2315c3439d0,1996-10-01,,999-84-9635,S99984907,X11758771X,Ms.,Margot418,Dicki44,,,,white,french_canadian,F,Somerville,611 Heidenreich Village,Mansfield,Massachusetts,02048 +5faf421a-7cb9-4edb-af15-f5fee03102f3,1950-03-29,,999-64-6623,S99985569,X25711145X,Mr.,Martín25,Palacios784,,,S,hispanic,puerto_rican,M,Burlington,748 Ortiz Mill Suite 15,Revere,Massachusetts,02151 +20abf122-2cca-4580-bf6b-f7979d72d346,1989-10-05,,999-75-4559,S99920406,X16016300X,Mr.,Jonah176,Treutel973,,,M,white,italian,M,Boston,667 Wiza Forge,Brookline,Massachusetts,02215 +909e20cd-171e-42e2-90c9-851218753209,1993-02-11,,999-77-9303,S99931910,X77278044X,Ms.,Wilhemina814,Deckow585,,,,white,german,F,Shirley,533 Wolf Boulevard,Cambridge,Massachusetts,02138 +00c9ba05-3e11-4c62-a64c-2405c9f2f100,1958-10-14,,999-33-6691,S99954107,X38934131X,Mr.,Arturo47,Spinka232,,,M,white,irish,M,Boston,416 Wilkinson Rest Apt 35,Manchester-by-the-Sea,Massachusetts, +0fa04dc8-0b18-442a-8412-26ebc0b600cd,2011-05-30,,999-63-9248,,,,Bret7,Hirthe744,,,,white,irish,M,Quincy,504 Ullrich Burg,Springfield,Massachusetts,01013 +eb1eddba-37a5-4939-914f-c4fee0d74471,1978-01-15,,999-72-4418,S99975291,X87514088X,Mr.,Ronny764,Moen819,,,M,white,polish,M,Lynn,624 Torp Trail Unit 0,Somerville,Massachusetts,02138 +89678447-98cd-4b04-8c74-f11697b6f6ae,2016-05-28,,999-52-5284,,,,Buck819,Corwin846,,,,white,english,M,Belmont,308 Rath Esplanade Suite 97,Boston,Massachusetts,02108 +1ea67905-61f7-4173-bbc9-eff4003fddd8,1971-12-02,,999-25-4621,S99999360,X69695589X,Mr.,Karl184,Dach178,,,M,white,english,M,Springfield,712 Baumbach Extension,Spencer,Massachusetts,01562 +847398b9-1f80-4bc4-b2ee-d00f82d35771,2016-05-17,,999-16-8197,,,,Lissa828,Hauck852,,,,hispanic,mexican,F,Berkley,148 Gleason Dam,Chelmsford,Massachusetts,01824 +16e02fcf-2ed9-4970-a29c-b66c28cf07ae,1969-04-28,,999-92-3983,S99998154,X43586482X,Mrs.,Mercedes82,Gracia333,,Sanches349,M,black,dominican,F,Middleton,612 Oberbrunner Road Suite 91,Reading,Massachusetts,01801 +6d350e31-cde3-457a-a961-222f5031ce38,1958-12-20,,999-69-5689,S99933093,X13510108X,Mr.,Buddy254,Lakin515,,,S,white,irish,M,Medford,649 Zemlak Burg,Boston,Massachusetts,02108 +db1e9330-e841-4c35-a7b9-e8cb25066d43,1985-02-15,,999-49-3215,S99970549,X68033304X,Mr.,Pasquale620,Crona259,,,M,white,french_canadian,M,Maynard,824 Parker Bypass,Fall River,Massachusetts,02720 +dfd4b039-31a2-4405-9faa-7b2491f4c933,1980-02-05,,999-59-6915,S99972483,X31582380X,Mr.,Ronnie7,Stoltenberg489,,,M,white,scottish,M,Andover,1032 Emmerich Knoll Unit 93,Wilbraham,Massachusetts,01095 +707496e9-6e8d-4bd6-b88d-0db3886b5ee2,1955-08-22,,999-60-7240,S99967093,X21716857X,Mrs.,Lennie123,Thiel172,,Gerhold939,M,white,irish,F,Dartmouth,1040 Klein Well Unit 59,Southborough,Massachusetts,01772 +b4c7b397-1759-4e7f-b53b-e65b8f3f1b1d,1959-03-21,,999-75-1968,S99991241,X61806986X,Ms.,Alex454,Jakubowski832,,,S,white,english,F,Beverly,574 Romaguera Stravenue Unit 69,Danvers,Massachusetts,01923 +d0a22d35-d10a-4f3b-9d6e-7dced011a647,2002-11-02,,999-50-1058,S99944711,,,Willow678,Beer512,,,,white,italian,F,Billerica,863 Brakus Frontage road,Orange,Massachusetts,01364 +898c2ff3-40b0-4240-a595-2897e6ba882b,1982-03-08,,999-36-1718,S99998893,X29518030X,Mrs.,Simone657,Gaylord332,,Raynor401,M,white,irish,F,Springfield,113 Kiehn Hollow Unit 66,Braintree Town,Massachusetts,02184 +03c89501-658f-4065-8917-2e25b6ba63d7,1970-11-19,,999-52-3266,S99915300,X27173018X,Mrs.,Shawnna218,Douglas31,,McLaughlin530,M,white,english,F,Leominster,221 Pfannerstill Loaf,Chicopee,Massachusetts,01013 +19533f35-8519-4422-8e21-d247984c3a16,1961-06-11,,999-30-9961,S99983405,X46402726X,Mrs.,Cathie710,Towne435,,Rau926,M,white,portuguese,F,Acushnet,825 Abshire Harbor,Lunenburg,Massachusetts,01462 +61d2786f-9e96-4a8b-b1bf-4638da6e6e19,1963-02-12,,999-56-9309,S99984876,X69748761X,Mr.,Federico589,Guzmán14,,,M,hispanic,puerto_rican,M,Lawrence,891 Durgan Spur,Worcester,Massachusetts,01545 +a66eb7a5-14fb-4d84-b22a-821405ba045b,1994-08-11,,999-86-1989,S99989827,X35117554X,Ms.,Olympia319,Murphy561,,,,white,french_canadian,F,Belmont,1084 Morar Light Apt 21,Hopkinton,Massachusetts,01748 +e0576415-96a3-4b12-a654-3764fe9a490a,1957-01-07,1986-01-10,999-37-1966,S99993904,X41310622X,Mrs.,Selene142,O'Keefe54,,Hamill307,M,white,french,F,Boston,728 Gottlieb Burg Apt 76,Boston,Massachusetts,02108 +7c238550-fdfd-49e5-a1bd-eeb7ffb72b52,1991-04-24,,999-36-7166,S99952701,X9037323X,Mr.,Freeman822,Zemlak964,,,M,white,irish,M,Clinton,647 Larson Corner,Worcester,Massachusetts,01545 +33f86d99-44b9-4f95-a68d-945aafb51bea,1976-12-03,,999-71-9368,S99926719,X89534490X,Mrs.,Beatriz277,Sierra982,,Villagómez416,M,black,dominican,F,Great Barrington,291 Metz Frontage road,Agawam Town,Massachusetts,01001 +fe43e25e-2550-467c-b050-ceef691b0325,1990-06-21,,999-74-8544,S99943948,X43211223X,Ms.,Love546,Blick895,,,S,white,scottish,F,Peabody,734 Kautzer Dam Unit 73,Gloucester,Massachusetts,01930 +4d33addc-569e-42f6-917c-bc988125ad3f,1968-11-23,,999-34-2614,S99912341,X37110751X,Mrs.,Yvonne357,Kessler503,,Breitenberg711,M,white,french,F,Boston,691 Oberbrunner Key,Cambridge,Massachusetts,02138 +f9d8a001-dfc2-4543-ab02-eda5728d6cb2,1939-02-27,,999-55-3751,S99958155,X5839660X,Mr.,Arron144,Nitzsche158,,,M,white,french,M,Boston,793 Hamill Pathway Unit 40,Holbrook,Massachusetts,02343 +a2114f1c-19ea-4e22-862d-d6d709680d4b,2001-04-28,,999-42-7180,S99921284,,,Caroll955,Bashirian201,,,,white,english,F,Springfield,211 Abshire Mill Unit 17,Randolph,Massachusetts,02368 +3f66c1c3-4438-4e69-9af4-213e280e4fef,1958-03-10,,999-44-9656,S99971499,X13278772X,Mrs.,Annette105,Stamm704,,Schinner682,M,black,west_indian,F,Everett,1016 Crona Key,Blackstone,Massachusetts,01504 +12366ade-49d0-4df5-8430-7050f5c853d3,1957-01-07,,999-57-1671,S99967720,X51078895X,Mrs.,Tonisha838,Herman763,,Wisoky380,M,white,french,F,Sudbury,859 Mitchell Union Apt 83,Boston,Massachusetts,02108 +82d17b91-fa8d-4747-869e-df014d1bcc2e,1962-02-17,,999-70-1077,S99918842,X53995793X,Mr.,Derrick232,Kuhic920,,,M,white,english,M,Worcester,356 Bednar Well Unit 91,Dalton,Massachusetts,01226 +263e1ad9-0cb2-4794-acd4-10f05e062c49,1908-12-10,1993-04-27,999-56-1101,S99912395,X66874972X,Ms.,Janell58,Dare640,,,S,white,english,F,Boston,946 O'Conner Orchard Suite 63,Shrewsbury,Massachusetts,01545 +1de85e25-d7eb-4299-bd6f-ecb669d3f52d,1960-12-19,,999-93-3412,S99964262,X29684877X,Mrs.,Sumiko254,Gaylord332,,Leannon79,M,white,irish,F,Natick,876 Schmeler Brook Suite 87,Revere,Massachusetts,02151 +9632b4d9-7e06-47fe-bef0-faf8bca01101,1991-01-07,,999-51-3135,S99931713,X35402244X,Mr.,Wallace647,Simonis280,,,M,white,russian,M,Chicopee,428 Cremin Key,Attleboro,Massachusetts,02703 +75b1970d-04bb-415a-8e91-9e0d10e5cb7f,1989-07-03,,999-44-5917,S99947587,X26333520X,Mr.,Winston220,Reynolds644,,,M,white,french,M,Worcester,923 Rutherford Estate,Taunton,Massachusetts,02718 +79ea4649-4726-4d68-a65f-f7304e5db537,1999-06-20,,999-63-5000,S99978456,,Ms.,Patricia625,Kautzer186,,,,white,italian,F,Longmeadow,492 Homenick Rest Unit 23,Natick,Massachusetts,01760 +6be50243-6b54-46f4-aee0-8b03bc6374c0,1961-09-12,,999-27-9772,S99976331,X73527045X,Mrs.,Ettie537,Schmidt332,,Roob72,M,white,irish,F,Waltham,1002 Reinger Well,Reading,Massachusetts,01801 +5652ea5d-76ae-4bda-ad35-b105b185df3f,1961-01-28,,999-19-9013,S99992695,X85688422X,Mrs.,Jeane173,Casper496,,Abbott774,M,white,irish,F,Fairhaven,974 Lang Tunnel,Mashpee,Massachusetts,02649 +a4d63449-3262-4155-8589-9a64b44bdf4b,1973-06-07,,999-66-7682,S99928898,X12770127X,Mrs.,Omega729,Ziemann98,MD,Davis923,M,white,irish,F,Boston,376 Schneider Manor,Medford,Massachusetts,02145 +df8d2b86-e0fc-464e-9f02-372097abe4de,1973-01-24,,999-71-1234,S99924193,X54941206X,Ms.,Ja391,Ryan260,,,S,white,english,F,Milford,703 Pfannerstill Rue,Boston,Massachusetts,02108 +22337d9f-7a08-480e-a228-958ddde1996d,1977-12-16,,999-90-6501,S99957672,X7573460X,Mr.,Raúl937,Cadena322,,,M,hispanic,puerto_rican,M,Carver,425 Schowalter Lock Apt 1,Saugus,Massachusetts,01906 +71905c43-84dd-4f14-9545-fa8ee971fdad,2003-02-02,,999-88-9363,,,,Marica887,Metz686,,,,white,english,F,Springfield,420 Rowe Knoll Apt 95,Sharon,Massachusetts,02067 +8684391e-5f9a-4c70-bfae-c30e3e9dc1d9,1967-03-26,,999-56-1928,S99920176,X27994472X,Mrs.,Marica887,Hickle134,,Marvin195,M,white,polish,F,Boston,379 Raynor Throughway Unit 56,Hanover,Massachusetts,02339 +1c6df473-5318-46f0-a95c-4b8e0ff97a3f,1961-02-14,,999-29-8422,S99999100,X49881553X,Mr.,Will178,Wehner319,,,M,hispanic,mexican,M,Boston,143 Mayer Course Unit 87,Fairhaven,Massachusetts,02719 +a75ba9f3-d3e3-4de1-8031-0d421b89ac67,1959-11-12,,999-26-5386,S99933428,X52201170X,Mrs.,Wilma646,Schmidt332,,Shields502,M,white,italian,F,Easthampton Town,671 Fisher Spur Unit 50,Lynn,Massachusetts,01901 +1f121b4a-4a85-4015-aa9e-0b46eb6d3bf2,1948-06-07,,999-86-9721,S99996680,X25702123X,Ms.,Valencia279,Beatty507,,,S,white,scottish,F,Sudbury,839 Kemmer Arcade,Hudson,Massachusetts,01749 +58b6146a-f310-4a4e-ad40-c0b6160e0f35,2000-03-14,,999-22-8093,S99926918,,Ms.,Ila598,Leannon79,,,,white,english,F,Southampton,581 Kutch Wynd,Framingham,Massachusetts,01701 +e0ee935c-4058-49a4-9630-9896f4f3baee,1986-06-09,,999-28-9320,S99959589,X45190480X,Mr.,Everette494,Gutmann970,,,M,white,french,M,Boston,518 Rutherford Crossroad,Brimfield,Massachusetts,01010 +5467159d-887e-4de6-8926-c389e3a91d87,1908-12-10,,999-70-5501,S99971272,X8509744X,Mrs.,Kristle148,Strosin214,,Farrell962,M,white,english,F,Somerville,518 Bogisich Ville,Shrewsbury,Massachusetts,01545 +57c7f120-96e9-449c-9797-78f6b441f93b,1961-06-01,,999-28-7462,S99978841,X41227547X,Mr.,Tommy814,Cassin499,,,M,white,polish,M,Norwood,428 Upton Mews Apt 92,Lawrence,Massachusetts,01840 +6862e551-86d4-45fe-a449-eacd6e9ffa6c,1989-10-27,,999-73-1832,S99947203,X23128276X,Mr.,Stuart913,Krajcik437,,,M,white,russian,M,Franklin Town,230 Schoen Wall,Boston,Massachusetts,02108 +2097af7b-83b0-48c6-b917-546e5d65e263,1982-09-13,,999-32-4328,S99976874,X23981604X,Mr.,Juan88,Guzmán14,,,M,hispanic,mexican,M,Eastham,231 Mante Wall Unit 31,Methuen Town,Massachusetts,01841 +d14af6cc-9654-4a5c-8d97-148f7e1aa690,1966-06-25,,999-73-7246,S99962622,X33896992X,Mrs.,Colby655,Steuber698,,Rippin620,M,white,irish,F,Holyoke,641 Cremin Light,Boston,Massachusetts,02108 +b6d749f4-8afa-43c0-8d8e-d9e61e9a1bf0,1934-05-31,,999-68-2783,S99991503,X71143692X,Mrs.,Cynthia180,Marvin195,,Witting912,M,hispanic,puerto_rican,F,Lee,408 Dietrich View,Winthrop Town,Massachusetts,02128 +59395ead-ce1b-4bab-b44e-fbb7b1272d75,1998-06-12,,999-25-8405,S99968383,X86093774X,Ms.,Malia984,Welch179,,,,white,german,F,Bellingham,101 Greenfelder Track,Fitchburg,Massachusetts,01420 +c0eef548-24c2-4bbe-ab72-407ff05bfdd6,1993-09-05,,999-24-5523,S99937010,X2746875X,Ms.,Dena356,Barrows492,,,,white,irish,F,Worcester,314 Harvey Camp Unit 75,Springfield,Massachusetts,01013 +9e73b7e3-4d64-429d-8c9c-8968df3e5627,1959-12-12,,999-71-4256,S99993007,X74724529X,Mr.,Reinaldo138,Dooley940,,,M,white,irish,M,Walpole,145 Schowalter Annex Unit 58,Wareham,Massachusetts,02571 +34646246-55af-4115-9421-00b60f55b6b0,1979-01-23,,999-98-5852,S99929824,X48667896X,Mrs.,Micaela928,Valencia279,,Longoria249,M,black,dominican,F,Boston,571 Price Course,Quincy,Massachusetts,02169 +cc6cc715-08ca-46d8-a007-05eaf740555a,2001-05-22,,999-32-7377,S99957966,,,Cindie288,Johns824,,,,white,italian,F,Taunton,805 Hegmann Haven,Belmont,Massachusetts,02138 +c87d1bef-b9b4-4d98-a53c-8fb55f109758,1982-01-03,,999-78-1420,S99952386,X27138951X,Mr.,Isiah14,Kunde533,,,M,white,irish,M,Winchendon,801 DuBuque Annex Unit 1,Cambridge,Massachusetts,02138 +40d71591-53c9-46d1-8d94-1f921ebcaabf,2000-12-29,,999-63-7470,S99942529,,,Randall756,Heidenreich818,,,,white,irish,M,Worcester,873 Upton Gate,Bourne,Massachusetts,02532 +f5a8e40a-e214-4433-bc83-9f6f6918f57b,2013-01-27,,999-90-1156,,,,Leroy603,Zemlak964,,,,white,american,M,Ashland,874 Krajcik Port,Stoughton,Massachusetts,02072 +4fd850d2-046e-4e05-ad25-95910640767b,1999-11-26,,999-29-4626,S99948703,,Ms.,Luciana251,Kunde533,,,,asian,chinese,F,Needham,737 Mayert Camp Apt 21,Ashby,Massachusetts,01431 +cbee5f13-f295-4ec7-b0f9-ff4826d4214d,2007-01-02,,999-94-2380,,,,Samual455,Schumm995,,,,white,american,M,Taunton,955 Kreiger Quay Apt 71,Dedham,Massachusetts,02026 +7d6add6f-707d-412e-bbc5-f26f93525335,2002-06-14,,999-83-7351,S99959065,,,Giuseppe872,Auer97,,,,white,italian,M,Lynn,948 Hodkiewicz Brook Unit 88,Plymouth,Massachusetts,02360 +f4cd1b75-9687-4f88-88e9-90a3053a1b4f,1973-02-15,,999-42-9743,S99964800,X15941584X,Mrs.,Sommer719,Waters156,,Breitenberg711,M,white,french,F,Brookline,324 Predovic Overpass,Chicopee,Massachusetts,01013 +e68cc5b1-8d55-41dd-841a-ff9eb50d781f,2014-01-06,,999-83-1491,,,,Kenton313,Kuhlman484,,,,white,english,M,Franklin Town,637 Will Annex Suite 19,Falmouth,Massachusetts,02540 +7c7889ed-ce7c-490d-bc35-e1c6f2415102,1943-12-08,,999-51-8388,S99967693,X31083860X,Mr.,Logan497,Schmeler639,,,M,white,polish,M,Amherst,156 Reichert Mews Suite 44,Norwood,Massachusetts,02062 +c033366a-0bef-490c-aa5f-bd2097a7c310,1944-03-05,,999-32-1012,S99944794,X87282700X,Mrs.,Candace369,Kub800,,Fahey393,M,white,german,F,Attleboro,720 McDermott Parade,Hanover,Massachusetts,02339 +e0573ff3-cf70-4aea-81f3-9bd5c2f3ec23,1925-12-29,2004-08-20,999-20-4105,S99918547,X58594537X,Mr.,Howard613,Parker433,,,M,white,irish,M,Weymouth Town,885 Ebert Branch Suite 27,Malden,Massachusetts,02148 +ec73dca1-74f2-4fde-bf96-db8de705089e,1954-08-28,2006-09-19,999-40-9826,S99910239,X65821734X,Mr.,Octavio643,Abshire638,,,M,hispanic,south_american,M,Boston,995 McCullough Passage,Westfield,Massachusetts,01085 +e9dfc67e-7021-453a-8f56-e2a9cc90a279,1948-10-03,,999-51-9777,S99964175,X88759280X,Mrs.,Leonore418,Schimmel440,,Daniel959,M,black,dominican,F,Mansfield,496 Hartmann Quay Apt 92,Tewksbury,Massachusetts,01876 +108c26bf-bf80-4ec8-82a7-16ae87ee6516,1991-01-18,,999-92-6553,S99996564,X71696282X,Mr.,Emanuel231,Predovic534,,,S,white,french_canadian,M,Haverhill,127 Roob Run Suite 57,Pepperell,Massachusetts,01463 +f550d51d-b662-46ce-8254-0c69b4048264,1952-04-12,,999-86-7311,S99998684,X52892512X,Mr.,Davis923,Bahringer146,,,M,white,portuguese,M,Fall River,602 Purdy Rapid Unit 72,Beverly,Massachusetts,01915 +e6cab610-7f0d-4414-a224-e35f45037c9d,1988-03-01,,999-48-2480,S99957336,X86414974X,Mr.,Brooks264,Smith67,,,M,white,french,M,Brookline,765 Gerhold Loaf Unit 96,Easthampton Town,Massachusetts,01027 +50ed3719-92fb-48da-b8a9-edd59f88ba92,1989-08-20,,999-91-8656,S99914379,X83882821X,Mr.,Morris740,Veum823,,,M,black,african,M,Danvers,797 Hyatt Boulevard,Cambridge,Massachusetts,02138 +71a13e09-de79-4f33-9fdd-e156fe2aa459,1967-04-09,,999-12-8410,S99959347,X60512406X,Ms.,Shanika235,Lang846,,,S,white,scottish,F,Salem,483 Grady Gate Unit 18,Montague,Massachusetts,01351 +1933baa0-80f6-4e9d-960e-f0893a0b35ac,2011-09-15,,999-53-2084,,,,Esteban536,Shanahan202,,,,white,polish,M,Worcester,210 McKenzie Row Unit 72,Waltham,Massachusetts,02451 +4903d283-f3cb-4120-9798-ade1641f972b,1988-05-15,,999-57-9109,S99991789,X89832325X,Mr.,Trevor374,DuBuque211,,,S,white,english,M,Quincy,803 Brakus Fort,Lowell,Massachusetts,01850 +9455eddd-58dd-493f-a41b-30712f5835f1,2015-05-07,,999-53-1452,,,,Brent147,Kris249,,,,white,german,M,Sandwich,479 Prosacco Quay Unit 6,Great Barrington,Massachusetts,01230 +10b8faf4-f4f7-47bd-b7ca-bb01a22f1b44,1983-08-30,,999-10-9705,S99929452,X60111172X,Mr.,Faustino767,Schuster709,,,M,white,italian,M,Lawrence,751 Weimann Trafficway Suite 24,Fitchburg,Massachusetts,01420 +53170a40-f2ee-42c3-81b7-493f1cf07752,1986-03-08,,999-32-9054,S99991194,X74752403X,Mr.,Earle679,Marquardt819,,,M,white,irish,M,Waltham,955 Farrell Drive Suite 42,Peabody,Massachusetts,01940 +f08a589a-966d-4358-bd24-a55379f221a1,1976-12-24,,999-14-2402,S99990139,X85568579X,Mr.,Lonny638,Kilback373,,,M,white,english,M,Westfield,101 Stokes Wall Suite 21,South Hadley,Massachusetts,01075 +644c9ade-80cf-438d-9037-6916f6282451,2012-12-05,,999-42-8134,,,,Asa127,Miller503,,,,white,english,M,Hanson,233 Beahan Viaduct,Sheffield,Massachusetts,01257 +8a707150-cf4a-47ed-a74e-b51104c4633f,1954-08-28,,999-85-8357,S99969955,X45472538X,Mr.,Jordon466,O'Connell601,,,M,hispanic,south_american,M,Dennis,909 Lind Parade Suite 71,Westfield,Massachusetts,01085 +a1779c5a-0f4b-416b-919e-ecfe935204bc,2010-02-21,,999-16-1040,,,,Bernardo699,Lebsack687,,,,hispanic,puerto_rican,M,Boston,462 Boehm Street Suite 55,Ipswich,Massachusetts,01938 +0d7dcb1f-11dc-4640-b6e7-a57e4b104f3f,1993-04-29,,999-21-8489,S99930277,X50039030X,Mr.,Normand813,Russel238,,,,white,swedish,M,Salem,557 Ritchie Drive,Pepperell,Massachusetts,01463 +0253bb94-94bc-45ca-9e23-8ec90ef5c02f,2005-05-04,,999-10-8299,,,,Audria778,Paucek755,,,,hispanic,mexican,F,Duxbury,280 Zemlak Hollow,Boston,Massachusetts,02108 +2ff8dd1c-316e-47e4-b252-9ca6beaf049c,2002-10-04,,999-99-8244,S99966159,,,Delmer311,Price929,,,,white,irish,M,Worcester,351 Schultz Walk Unit 4,Dartmouth,Massachusetts,02714 +e0521e39-ebd1-4162-b61a-053e7c47ab26,1925-12-29,1995-08-08,999-62-6561,S99915714,X76268867X,Mr.,Angel97,Osinski784,,,M,white,irish,M,Peabody,872 Schuppe Wynd,Malden,Massachusetts,02148 +40672241-7583-4f38-9f71-6a86124b6b1e,1996-01-15,,999-81-9523,S99944420,X48692627X,Ms.,Suanne858,Bruen238,,,,native,american_indian,F,Wilbraham,665 Bins Club,Braintree Town,Massachusetts,02184 +0ba481c7-f75a-473f-ae69-421a53b02908,2017-01-25,,999-91-3292,,,,Damien170,McCullough561,,,,black,dominican,M,Westwood,136 Strosin Ranch Apt 85,Boston,Massachusetts,02108 +14ffcfa2-4c4d-48f0-a147-fd92aa40d6c7,1987-03-29,,999-27-5037,S99931337,X14181043X,Mrs.,Sonya602,Murray856,,Klocko335,M,asian,chinese,F,Winchester,326 Kuvalis Meadow Unit 19,Quincy,Massachusetts,02169 +adfc6ed3-a5cf-47bb-9127-eb3d670298c7,1988-03-05,,999-87-1151,S99926586,X52346263X,Mrs.,Drusilla108,Murray856,,Waters156,M,white,french_canadian,F,Andover,185 Berge Dam,Lawrence,Massachusetts,01840 +c6847fe1-fd6d-4317-ad90-e58ecb2f6d1c,2006-04-09,,999-90-9885,,,,Bradford382,Lowe577,,,,white,italian,M,Barnstable Town,353 Emmerich Knoll,Sharon,Massachusetts,02067 +2532635d-7b6e-46ba-8c9f-77df9bcecbd8,1979-06-16,,999-64-4334,S99984054,X74936570X,Mr.,Nicky270,Hauck852,,,M,white,irish,M,Malden,301 Auer Approach,Acushnet,Massachusetts,02743 +58d23e7c-4d65-4dbe-9f5a-941246e557ba,1994-02-17,,999-80-5022,S99935339,X10535112X,Mr.,Manuel446,Reinger292,,,,white,italian,M,Southwick,634 Tremblay Underpass Suite 45,Taunton,Massachusetts,02718 +e1fbcd7c-5227-4c76-867b-50227f54542c,1975-09-26,,999-25-2480,S99954737,X79649658X,Mr.,Wilfred787,Dooley940,,,M,asian,chinese,M,Sterling,111 Mante Run Suite 20,Woburn,Massachusetts,01801 +7157b241-205b-449d-9cb0-929b9399c744,1970-07-02,,999-12-1427,S99954196,X83619476X,Mrs.,Annelle169,Rippin620,,Cremin516,M,white,italian,F,Clinton,1048 Lebsack Track Suite 11,Blackstone,Massachusetts,01504 +ba80e273-b2f8-4be0-8fa7-ef9a544f04de,2009-06-16,,999-46-1284,,,,Roderick835,Zemlak964,,,,white,italian,M,Southwick,299 Runolfsson Promenade,Randolph,Massachusetts,02368 +b062e4ff-82ab-48c8-b401-faaba5a2cb31,2001-09-10,,999-98-1997,S99979666,,,Gregg522,Rogahn59,,,,white,german,M,Middleton,739 Prohaska Estate,Sudbury,Massachusetts,01776 +11a32324-b213-4e06-a744-c71610a485a4,2005-09-24,,999-35-2367,,,,Kortney212,Bechtelar572,,,,white,italian,F,Worcester,277 Waelchi Rue,Boston,Massachusetts,02108 +e5e15289-6b0d-48b9-a8c5-6c19a6a223e7,1960-06-29,,999-93-6603,S99943777,X73456683X,Mr.,Mitchel812,Schultz619,,,M,white,italian,M,Sutton,564 Gorczany Harbor,Edgartown,Massachusetts,02539 +2f4e623d-663a-4730-b452-86b96d386459,2017-04-13,,999-45-8661,,,,Rosamaria757,Dicki44,,,,white,irish,F,Somerville,930 Schneider Station Unit 66,Acton,Massachusetts,01720 +d615573f-a36a-46b4-b5a4-12cb8a2dafad,2007-04-14,,999-46-8136,,,,Kali995,Lebsack687,,,,white,irish,F,Springfield,998 Hirthe Parade,Palmer Town,Massachusetts,01009 +5a10e37a-4ba6-428c-8755-4fd7c7f97902,1963-10-09,,999-66-2562,S99984842,X18812724X,Mr.,Ramiro608,Piña753,,,M,black,dominican,M,North Reading,515 Towne Heights,Boston,Massachusetts,02108 +b183a567-d780-4ff1-a783-e0ae08861b5c,2014-06-08,,999-39-2034,,,,Joslyn677,Hirthe744,,,,white,russian,F,Waltham,302 Wisoky Lane,Lowell,Massachusetts,01850 +17ea92fa-cd48-4dfe-a982-3c5a27daa10f,2016-04-06,,999-42-9738,,,,Madlyn383,Hegmann834,,,,white,irish,F,Worcester,260 Towne Road Suite 77,Lowell,Massachusetts,01850 +26517724-f94c-4c75-93cf-3f02f9a4b150,1950-04-24,,999-48-3139,S99919235,X29027883X,Ms.,Brigitte394,Daugherty69,,,S,white,german,F,Whitman,569 Kuphal Parade,Malden,Massachusetts,02148 +36b0f941-f942-4b93-96bd-8d06f71d8601,1925-12-29,2007-01-28,999-72-1515,S99993427,X43145899X,Mr.,Brett333,Botsford977,,,S,white,irish,M,Mendon,1060 Blanda Divide Apt 48,Malden,Massachusetts,02148 +557df0f2-53d2-4420-9f6f-45f7e1f2751b,1995-06-27,,999-15-8062,S99965304,X48750780X,Ms.,Ula130,Altenwerth646,,,,white,american,F,Wilbraham,489 Lueilwitz Stravenue,Bridgewater,Massachusetts,02324 +f419f5a4-037d-4d7e-99e7-0d19c4d71905,1952-09-26,,999-29-1425,S99925745,X11710132X,Mrs.,Santina680,Nicolas769,,Bednar518,M,white,swedish,F,Boston,473 Schiller Track Unit 76,Lowell,Massachusetts,01850 +de0c0a49-9522-475d-ba5d-64bc3988dde1,1966-02-01,,999-84-4243,S99935342,X24932877X,Mrs.,Latanya388,Skiles927,,Hickle134,M,white,irish,F,Quincy,650 Streich Crossing,Barnstable Town,Massachusetts,02601 +807d3033-fe12-4f70-b770-ee3e83dcf943,1976-07-11,,999-80-5610,S99915223,X82781435X,Mr.,Carol737,Hane680,,,M,asian,asian_indian,M,Holliston,1066 Kris Gate,Northborough,Massachusetts,01532 +a425544c-3915-4e79-ab6e-16df804bdac1,2005-11-11,,999-68-2618,,,,Violet769,Parisian75,,,,white,irish,F,Boston,732 Effertz Pathway,Somerville,Massachusetts,02138 +1d840197-99c5-4a5e-b7b3-559a0864657b,1925-12-29,1945-07-17,999-87-5863,S99931657,,Mr.,Terry864,Huel628,,,,white,irish,M,Pittsfield,218 Bogisich Vale Apt 55,Malden,Massachusetts,02148 +3edbbf1d-1406-48a4-8055-17aee2535554,1966-06-29,2011-06-15,999-83-7476,S99912284,X43566224X,Ms.,Rocio28,Pineda243,,,S,hispanic,central_american,F,Brockton,338 Morissette Union,Lawrence,Massachusetts,01840 +dc34fc5d-e6bc-416e-9135-2d8f3c27d252,1997-12-25,,999-24-5744,S99946003,X20442857X,Ms.,Emerald468,Hessel84,,,,white,swedish,F,Barre,547 Abernathy Arcade Unit 50,Salem,Massachusetts,01907 +825c48db-b91a-48f0-be8d-2becb97796b4,1964-04-14,,999-23-2090,S99984929,X9061173X,Mrs.,Kyung736,Roberts511,,Boehm581,M,black,african,F,Boston,890 Spinka Quay Apt 56,Saugus,Massachusetts,01906 +68ec1024-e421-4685-a440-bfca89052d00,1979-12-16,,999-36-7250,S99969254,X39710096X,Mr.,Esteban536,Jurado563,,,M,hispanic,mexican,M,Hatfield,733 Stanton Rue,Springfield,Massachusetts,01013 +cfd39027-19f3-44f9-9d2d-95951980474b,1992-12-02,,999-25-4865,S99982608,X43291601X,Ms.,Cary869,Medhurst46,,,,white,english,F,Somerville,753 Glover Loaf,Southampton,Massachusetts,01073 +011fac1c-10e0-449c-8805-39476f0460fa,1963-09-08,,999-23-1906,S99985362,X35740485X,Mr.,Markus389,Barrows492,,,S,white,english,M,Deerfield,767 Wolf Rapid Suite 5,Beverly,Massachusetts,01915 +3e333051-73b3-4048-a383-47af995945af,1966-06-29,,999-98-2471,S99967363,X65878854X,Mrs.,Olivia294,Lugo857,,Escobedo608,M,hispanic,central_american,F,Grafton,589 Schimmel Bridge Suite 93,Lawrence,Massachusetts,01840 +ff0621e1-6349-4d94-83f2-0d6b71d64dbf,1925-12-29,1990-03-13,999-62-1065,S99924467,X14693961X,Mr.,Deon400,Hermann103,,,M,white,irish,M,Revere,987 Bogan Loaf,Malden,Massachusetts,02148 +9f412f49-f6f2-4f47-8587-b3041ccfd52f,1991-04-14,,999-68-1296,S99910372,X27876540X,Mr.,Cortez851,Hegmann834,,,M,white,english,M,West Springfield Town,593 Ruecker Route,Abington,Massachusetts,02351 +59ae063c-e1dd-4911-973f-2b6189174b83,1981-07-12,,999-64-1493,S99987110,X78520003X,Mrs.,Rosa195,Wuckert783,,Schumm995,M,white,french,F,Boston,247 Funk Forge Suite 94,Watertown Town,Massachusetts,02472 +c435fb10-32e4-4b6a-9844-540836005a72,1987-04-02,1993-04-05,999-88-2082,,,,Virgil85,Waters156,,,,white,italian,M,Revere,742 Jenkins Park Suite 17,Northborough,Massachusetts,01532 +b5a68ee9-7a9f-4bc0-a64a-b7de3f4488e2,1915-01-09,2000-03-15,999-60-4446,S99936394,X5889332X,Mrs.,Anastasia959,Hessel84,,Torphy630,M,white,italian,F,Boston,249 Romaguera Mall Suite 83,Newton,Massachusetts,02458 +74bd8040-20ab-4032-9b52-8dd181f3d0e1,1960-01-17,,999-73-3445,S99930014,X4414961X,Mr.,Cory323,Bauch723,,,S,white,american,M,Charlton,795 Runte Byway,Reading,Massachusetts,01801 +88330fad-efa6-49cd-a983-c1fcd3174435,1965-11-05,,999-99-6753,S99939840,X38226137X,Mr.,Carey440,Beahan375,,,M,white,french,M,Boston,605 O'Conner Overpass Unit 79,Milton,Massachusetts,02186 +f0c71f4f-60ee-4f9f-afe6-1b597a92e8e1,2018-08-13,,999-53-8983,,,,Graig740,Buckridge80,,,,white,american,M,Brookline,934 Huel Estate Apt 45,Wilbraham,Massachusetts,01095 +d6e44979-c640-4698-92d5-cbe369af7909,1996-07-02,,999-69-7369,S99980191,X55330678X,Mr.,Gus973,Medhurst46,,,,white,polish,M,Marshfield,541 Flatley Approach,Framingham,Massachusetts,01701 +d013995a-e587-42fd-b8fe-d4d7387861f1,1986-04-02,,999-32-3907,S99956637,X31900801X,Mr.,Jeffrey461,Blick895,,,M,white,french,M,Holyoke,525 Windler Harbor Apt 32,Lawrence,Massachusetts,01840 +b0acf286-860e-46ee-b1c9-b8ce82366b95,1990-06-25,,999-88-9094,S99967360,X32621673X,Mr.,Ronald408,Dickinson688,,,S,white,irish,M,Westminster,1072 Borer Avenue,Quincy,Massachusetts,02169 +e8d02152-5fbc-447f-9d99-87166732e12c,1987-06-26,,999-63-3893,S99915868,X71496291X,Mr.,Irwin931,Anderson154,,,M,white,american,M,Boston,750 Goyette Divide,Westborough,Massachusetts,01581 +7e6f2480-9a31-4351-a0b9-16c989a5fea4,1987-04-02,,999-74-2324,S99930024,X33952125X,Mr.,Ismael683,Hintz995,,,M,white,italian,M,Bourne,329 Collier Trailer,Northborough,Massachusetts,01532 +35eddfc8-f182-4179-bf28-d9d91a332835,1964-06-03,,999-55-1360,S99984645,X57744326X,Mr.,Elton404,Sauer652,,,S,white,scottish,M,Northampton,682 Koelpin Bridge Suite 39,Springfield,Massachusetts,01013 +d6f3f2e8-8094-452f-b03e-4441928baa05,1979-12-24,,999-20-6270,S99990274,X62617147X,Mr.,Lester513,Hermann103,,,M,black,west_indian,M,Bridgewater,422 Hermann Boulevard,Townsend,Massachusetts,01469 +325f1abd-fc6f-484d-80b1-1a3ce99c8951,1925-12-29,,999-43-3873,S99939131,X17979199X,Mr.,Chung121,Larson43,,,M,white,irish,M,Plymouth,473 Lockman Alley,Malden,Massachusetts,02148 +29341b53-ecfa-4f25-94af-8b5505f8a62f,1995-10-29,,999-50-3564,S99993641,X76916783X,Mr.,Gregorio366,Brakus656,,,,white,scottish,M,Saugus,861 Homenick Lane,Boston,Massachusetts,02108 +e4c148ac-39eb-4491-be2a-f2f530289df2,2006-08-20,,999-33-7523,,,,Tula326,Fadel536,,,,white,irish,F,Revere,644 Hirthe Rue Apt 93,Shrewsbury,Massachusetts,01545 +06d19787-a6a5-4deb-b37d-e984310023eb,1968-07-16,,999-51-5076,S99997802,X56569633X,Ms.,Rozanne215,Kuvalis369,,,S,white,irish,F,Westborough,224 Wisozk Viaduct,Concord,Massachusetts,01742 +3dd1ec7e-26fc-463f-ac43-3bd95754f59d,1984-05-21,,999-41-3019,S99917331,X57113659X,Mrs.,Un745,Lebsack687,,Rau926,M,white,irish,F,Falmouth,895 Klocko Row Suite 49,Brockton,Massachusetts,02301 +21fd65ca-ad05-4aae-8afa-663acad8a782,1962-12-16,,999-66-2689,S99999470,X36888967X,Mr.,Luther918,Bauch723,,,S,hispanic,puerto_rican,M,Revere,880 Rath Mission,Danvers,Massachusetts,01923 +5c829582-6904-4e0d-a1b0-e387ed73fb3a,1950-07-02,,999-82-6355,S99982393,X41761340X,Mrs.,Dimple273,Kuhic920,,Boyle917,M,asian,chinese,F,Waltham,155 Beatty Ranch,Boston,Massachusetts,02108 +093548c9-cd2c-47c4-87f7-931800b1d93c,1945-06-28,,999-94-6026,S99915456,X886019X,Mr.,Mckinley734,Wilderman619,,,M,hispanic,south_american,M,Boston,1024 Blick Wynd Apt 64,Yarmouth,Massachusetts, +73b746ba-4b92-460a-828a-2253558b3c56,2013-12-25,,999-53-3123,,,,Devona405,Jenkins714,,,,white,polish,F,Springfield,603 MacGyver Park Apt 51,Natick,Massachusetts,01760 +b5973848-68ac-4a8f-b5dd-cee56c666a0a,2015-11-25,,999-46-6774,,,,Nickolas58,Boyle917,,,,black,african,M,Bourne,1002 Langworth Bay Suite 60,Haverhill,Massachusetts,01830 +9249acae-2b8d-4850-8715-93628fcea018,2017-08-18,,999-22-1990,,,,Dino214,Hintz995,,,,white,irish,M,Egremont,283 Kessler Bridge,Wareham,Massachusetts,02571 +179ca24f-fb4b-4abd-8932-60d5730f349a,1915-01-09,,999-21-8417,S99944221,X44164277X,Mrs.,Candis134,Schuppe920,,Kemmer137,M,white,italian,F,North Andover,300 Torphy Rapid,Newton,Massachusetts,02458 +cdb9ff60-1a09-4a3f-b47c-18fcd00073df,2010-06-15,,999-78-8059,,,,Mariano761,Moen819,,,,white,irish,M,Dunstable,668 Mohr Knoll,Rutland,Massachusetts,01543 +16d7c906-33da-4734-ae11-f450ec2ffd9b,2007-11-10,2018-10-06,999-82-7978,,,,Giuseppe872,West559,,,,white,greek,M,Dracut,631 Mante Union Unit 94,Worcester,Massachusetts,01545 From dd080abd19ea6d9b22e9d8ffa2107947c1c88c62 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Mon, 4 Feb 2019 14:43:31 -0800 Subject: [PATCH 09/22] formatting change --- .../test/scala/org/apache/spark/sql/store/BugTest.scala | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index b280478bf2..3d82f3ae03 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -480,13 +480,10 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { val path1 = getClass.getResource("/patients1000.csv").getPath val df1 = snc.read.format("csv").option("header", "true").load(path1) df1.registerTempTable("patients") - val path2 = getClass.getResource("/careplans1000.csv").getPath val df2 = snc.read.format("csv").option("header", "true").load(path2) df2.registerTempTable("careplans") - - snc.sql("select p.first, p.last from (select patient from ( select *, " + "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + @@ -494,17 +491,14 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { "join patients p on id = patient ").show df1.createOrReplaceTempView("patients_v") - df2.createOrReplaceTempView("careplans_v") - - snc.sql("select p.first, p.last from (select patient from ( select *, " + "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + "from careplans_v )c group by patient having sum(coverage) = 0)q " + "join patients_v p on id = patient ").show - + snc.dropTempTable("patients") snc.dropTempTable("careplans") snc.sql("drop view patients_v") From eb6cb8ec5282df92ac89391c7f97066c04978db5 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Mon, 4 Feb 2019 17:02:05 -0800 Subject: [PATCH 10/22] replaced show function by collect in the test --- .../src/test/scala/org/apache/spark/sql/store/BugTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index 3d82f3ae03..d278721bb7 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -488,7 +488,7 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + "from careplans )c group by patient having sum(coverage) = 0)q " + - "join patients p on id = patient ").show + "join patients p on id = patient ").collect df1.createOrReplaceTempView("patients_v") df2.createOrReplaceTempView("careplans_v") @@ -497,7 +497,7 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { "case when description in ('Anti-suicide psychotherapy', 'Psychiatry care plan', " + "'Major depressive disorder clinical management plan') then 1 else 0 end as coverage " + "from careplans_v )c group by patient having sum(coverage) = 0)q " + - "join patients_v p on id = patient ").show + "join patients_v p on id = patient ").collect snc.dropTempTable("patients") snc.dropTempTable("careplans") From f4036f48bd6e9390862d1d0cfba8c1cec9bdd4ae Mon Sep 17 00:00:00 2001 From: vatsal mevada Date: Tue, 5 Feb 2019 15:08:15 +0530 Subject: [PATCH 11/22] SNAP-2719 and SNAP-2457 - falling back to uncached SQL flow for streaming queries and applying plan caching only for JDBC queries (#1205) - SNAP-2719 - falling back to uncached SQL flow for streaming queries - SNAP-2719 renaming sqlCached method to sqlInternal as sqlCached is misleading considering the fact that disabling plan caching can still make that method behave in the uncached manor. Also making the method private. - [SNAP-2457] Apply plan caching only for JDBC queries (#1119) - updating tests failing with plan caching disabled - changes in test frameworks to run tests with a random value of plan caching - removing planCachingAll property as its behavior was misleading and not required after keeping plan caching default value to false. --- .../cluster/ClusterManagerTestBase.scala | 6 ++ .../cluster/SplitSnappyClusterDUnitTest.scala | 3 + .../gemxd/SparkSQLExecuteImpl.scala | 12 +++- .../org/apache/spark/sql/NorthWindTest.scala | 30 ++++++++ .../spark/sql/SnappySQLQuerySuite.scala | 6 +- .../sql/execution/benchmark/TAQTest.scala | 12 +++- .../spark/sql/store/SQLMetadataTest.scala | 3 +- .../apache/spark/sql/SnappyStreamSuite.scala | 4 -- .../sql/test/SharedSnappySessionContext.scala | 9 ++- .../cluster/SplitClusterDUnitTestBase.scala | 23 ++++--- .../main/scala/io/snappydata/Literals.scala | 6 +- .../org/apache/spark/sql/SnappySession.scala | 15 +++- .../apache/spark/sql/collection/Utils.scala | 3 + .../sql/internal/SnappySessionState.scala | 8 --- .../scala/io/snappydata/SnappyFunSuite.scala | 2 + .../io/snappydata/core/LocalTestData.scala | 4 ++ .../sql/store/DisableTokenizationTest.scala | 7 +- .../apache/spark/sql/store/MetadataTest.scala | 69 ++++++++++++------- .../spark/sql/store/TokenizationTest.scala | 17 ++--- .../io/snappydata/examples/SampleApp.scala | 11 --- 20 files changed, 169 insertions(+), 81 deletions(-) delete mode 100644 examples/src/main/scala/io/snappydata/examples/SampleApp.scala diff --git a/cluster/src/dunit/scala/io/snappydata/cluster/ClusterManagerTestBase.scala b/cluster/src/dunit/scala/io/snappydata/cluster/ClusterManagerTestBase.scala index fa3286cc16..364e0623ad 100644 --- a/cluster/src/dunit/scala/io/snappydata/cluster/ClusterManagerTestBase.scala +++ b/cluster/src/dunit/scala/io/snappydata/cluster/ClusterManagerTestBase.scala @@ -21,6 +21,7 @@ import java.util.Properties import scala.language.postfixOps import scala.sys.process._ +import scala.util.Random import com.gemstone.gemfire.internal.shared.NativeCalls import com.pivotal.gemfirexd.internal.engine.Misc @@ -70,6 +71,7 @@ abstract class ClusterManagerTestBase(s: String) bootProps.setProperty("critical-heap-percentage", "95") bootProps.setProperty("gemfirexd.max-lock-wait", "60000") bootProps.setProperty("member-timeout", "5000") + bootProps.setProperty("snappydata.sql.planCaching", random.nextBoolean().toString) // reduce startup time // sysProps.setProperty("p2p.discoveryTimeout", "1000") @@ -112,6 +114,9 @@ abstract class ClusterManagerTestBase(s: String) override def beforeClass(): Unit = { super.beforeClass() + val logger = LoggerFactory.getLogger(getClass) + logger.info("Boot properties:" + bootProps) + doSetUp() val locNetPort = locatorNetPort val locNetProps = locatorNetProps @@ -251,6 +256,7 @@ abstract class ClusterManagerTestBase(s: String) object ClusterManagerTestBase extends Logging { final def locatorPort: Int = DistributedTestBase.getDUnitLocatorPort final lazy val locPort: Int = locatorPort + private val random = new Random() /* SparkContext is initialized on the lead node and hence, this can be used only by jobs running on Lead node */ diff --git a/cluster/src/dunit/scala/io/snappydata/cluster/SplitSnappyClusterDUnitTest.scala b/cluster/src/dunit/scala/io/snappydata/cluster/SplitSnappyClusterDUnitTest.scala index 5f30b65151..c1b4096812 100644 --- a/cluster/src/dunit/scala/io/snappydata/cluster/SplitSnappyClusterDUnitTest.scala +++ b/cluster/src/dunit/scala/io/snappydata/cluster/SplitSnappyClusterDUnitTest.scala @@ -548,6 +548,9 @@ object SplitSnappyClusterDUnitTest .set("spark.testing.reservedMemory", "0") .set("spark.sql.autoBroadcastJoinThreshold", "-1") .set("snappydata.connection", connectionURL) + .set("snapptdata.sql.planCaching", random.nextBoolean().toString) + + logInfo("Spark conf:" + conf.getAll.toString) val sc = SparkContext.getOrCreate(conf) // sc.setLogLevel("DEBUG") diff --git a/cluster/src/main/scala/io/snappydata/gemxd/SparkSQLExecuteImpl.scala b/cluster/src/main/scala/io/snappydata/gemxd/SparkSQLExecuteImpl.scala index bf104423e5..fdfe1edc1f 100644 --- a/cluster/src/main/scala/io/snappydata/gemxd/SparkSQLExecuteImpl.scala +++ b/cluster/src/main/scala/io/snappydata/gemxd/SparkSQLExecuteImpl.scala @@ -23,6 +23,7 @@ import scala.collection.JavaConverters._ import scala.collection.mutable.ArrayBuffer import com.gemstone.gemfire.DataSerializer +import com.gemstone.gemfire.cache.CacheClosedException import com.gemstone.gemfire.internal.shared.{ClientSharedUtils, Version} import com.gemstone.gemfire.internal.{ByteArrayDataInput, InternalDataSerializer} import com.pivotal.gemfirexd.Attribute @@ -36,7 +37,7 @@ import com.pivotal.gemfirexd.internal.iapi.types.{DataValueDescriptor, SQLChar} import com.pivotal.gemfirexd.internal.impl.sql.execute.ValueRow import com.pivotal.gemfirexd.internal.shared.common.StoredFormatIds import com.pivotal.gemfirexd.internal.snappy.{LeadNodeExecutionContext, SparkSQLExecute} -import io.snappydata.{Constant, QueryHint} +import io.snappydata.{Constant, Property, QueryHint} import org.apache.spark.serializer.{KryoSerializerPool, StructTypeSerializer} import org.apache.spark.sql.catalyst.expressions @@ -78,7 +79,7 @@ class SparkSQLExecuteImpl(val sql: String, session.setPreparedQuery(preparePhase = false, pvs) - private[this] val df = session.sql(sql) + private[this] val df = Utils.sqlInternal(session, sql) private[this] val thresholdListener = Misc.getMemStore.thresholdListener() @@ -481,7 +482,12 @@ object SnappySessionPerConnection { val session = connectionIdMap.get(connectionID) if (session != null) session else { - val session = SnappyContext().snappySession + val session = SnappyContext.globalSparkContext match { + // use a CancelException to force failover by client to another lead if available + case null => throw new CacheClosedException("No SparkContext ...") + case sc => new SnappySession(sc) + } + Property.PlanCaching.set(session.sessionState.conf, true) val oldSession = connectionIdMap.putIfAbsent(connectionID, session) if (oldSession == null) session else oldSession } diff --git a/cluster/src/test/scala/org/apache/spark/sql/NorthWindTest.scala b/cluster/src/test/scala/org/apache/spark/sql/NorthWindTest.scala index d5b2925e8d..69ad197a5a 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/NorthWindTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/NorthWindTest.scala @@ -16,6 +16,7 @@ */ package org.apache.spark.sql +import io.snappydata.Property.PlanCaching import io.snappydata.SnappyFunSuite import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} @@ -57,6 +58,35 @@ class NorthWindTest validatePartitionedColumnTableQueries(snc) } + // enable if transformations are supported in plan-caching. + test("SNAP-2451"){ + val planCaching = PlanCaching.get(snc.sessionState.conf) + PlanCaching.set(snc.sessionState.conf, false) + try { + createAndLoadColumnTables(snc) + + val df1 = snc.sql("SELECT ShipCountry, Sum(Order_Details.UnitPrice * Quantity * Discount)" + + " AS ProductSales FROM Orders INNER JOIN Order_Details ON" + + " Orders.OrderID = Order_Details.OrderID" + + " where orders.OrderID > 11000 GROUP BY ShipCountry") + + val result1 = df1.repartition(1).collect() + assert(result1.length == 22) + + + val df2 = snc.sql("SELECT ShipCountry, Sum(Order_Details.UnitPrice * Quantity * Discount)" + + " AS ProductSales FROM Orders INNER JOIN Order_Details ON" + + " Orders.OrderID = Order_Details.OrderID" + + " where orders.OrderID > 11070 GROUP BY ShipCountry") + + val result2 = df2.repartition(1).collect() + assert(result2.length == 7) + } finally { + PlanCaching.set(snc.sessionState.conf, planCaching) + } + + } + test("Test colocated tables queries") { createAndLoadColocatedTables(snc) validateColocatedTableQueries(snc) diff --git a/cluster/src/test/scala/org/apache/spark/sql/SnappySQLQuerySuite.scala b/cluster/src/test/scala/org/apache/spark/sql/SnappySQLQuerySuite.scala index c17fcdaa75..400bffbe8e 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/SnappySQLQuerySuite.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/SnappySQLQuerySuite.scala @@ -35,6 +35,7 @@ package org.apache.spark.sql +import io.snappydata.Property.PlanCaching import io.snappydata.{Property, SnappyFunSuite} import org.scalatest.Matchers._ @@ -433,6 +434,9 @@ class SnappySQLQuerySuite extends SnappyFunSuite { test("Push down TPCH Q19") { session.sql("set spark.sql.autoBroadcastJoinThreshold=-1") + session.sql("set snappydata.sql.planCaching=true").collect() + val planCaching = PlanCaching.get(snc.sessionState.conf) + PlanCaching.set(snc.sessionState.conf, true) try { // this loop exists because initial implementation had a problem // in RefParamLiteral.hashCode() that caused it to fail once in 2-3 runs @@ -441,6 +445,7 @@ class SnappySQLQuerySuite extends SnappyFunSuite { } } finally { session.sql(s"set spark.sql.autoBroadcastJoinThreshold=${10L * 1024 * 1024}") + PlanCaching.set(snc.sessionState.conf, planCaching) } } @@ -469,7 +474,6 @@ class SnappySQLQuerySuite extends SnappyFunSuite { | +- SubqueryAlias CT2 | +- Relation[ID#0,DATA#0] ColumnFormatRelation[APP.CT2] |""".stripMargin - assert(idPattern.replaceAllIn(ds.queryExecution.analyzed.treeString, "#0") === expectedTree) assert(ds.collect() === Array(Row(100L, "data100"))) diff --git a/cluster/src/test/scala/org/apache/spark/sql/execution/benchmark/TAQTest.scala b/cluster/src/test/scala/org/apache/spark/sql/execution/benchmark/TAQTest.scala index e0f4d4c550..6281c7520e 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/execution/benchmark/TAQTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/execution/benchmark/TAQTest.scala @@ -19,12 +19,15 @@ package org.apache.spark.sql.execution.benchmark import java.sql.{Date, DriverManager, Timestamp} import java.time.{ZoneId, ZonedDateTime} +import scala.util.Random + import com.typesafe.config.Config import io.snappydata.SnappyFunSuite import org.scalatest.Assertions import org.apache.spark.memory.SnappyUnifiedMemoryManager import org.apache.spark.sql._ +import org.apache.spark.sql.collection.Utils import org.apache.spark.sql.execution.benchmark.TAQTest.CreateOp import org.apache.spark.sql.internal.SQLConf import org.apache.spark.sql.types.{Decimal, DecimalType, StringType, StructField, StructType} @@ -133,7 +136,7 @@ class TAQTestJob extends SnappySQLJob with Logging { for (_ <- 1 to numRuns) { val start = System.nanoTime() for (_ <- 1 to numIters) { - session.sql("select * from citi_order where id=1000 " + + Utils.sqlInternal(session, "select * from citi_order where id=1000 " + "--GEMFIREXD-PROPERTIES executionEngine=Spark").collectInternal() } val end = System.nanoTime() @@ -267,6 +270,8 @@ object TAQTest extends Logging with Assertions { System.runFinalization() } + private val random = new Random() + def newSparkConf(addOn: SparkConf => SparkConf = null): SparkConf = { val cores = math.min(16, Runtime.getRuntime.availableProcessors()) val conf = new SparkConf() @@ -277,8 +282,9 @@ object TAQTest extends Logging with Assertions { conf.set("snappydata.store.memory-size", "1200m") } conf.set("spark.memory.manager", classOf[SnappyUnifiedMemoryManager].getName) - conf.set("spark.serializer", "org.apache.spark.serializer.PooledKryoSerializer") - conf.set("spark.closure.serializer", "org.apache.spark.serializer.PooledKryoSerializer") + .set("spark.serializer", "org.apache.spark.serializer.PooledKryoSerializer") + .set("spark.closure.serializer", "org.apache.spark.serializer.PooledKryoSerializer") + .set("snappydata.sql.planCaching", random.nextBoolean().toString) if (addOn != null) { addOn(conf) } diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/SQLMetadataTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/SQLMetadataTest.scala index 68d9812f98..8fac8798a9 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/SQLMetadataTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/SQLMetadataTest.scala @@ -19,6 +19,7 @@ package org.apache.spark.sql.store import java.sql.DriverManager import com.pivotal.gemfirexd.TestUtil +import io.snappydata.Property.PlanCaching import io.snappydata.SnappyFunSuite /** @@ -59,7 +60,7 @@ class SQLMetadataTest extends SnappyFunSuite { try { val stmt = conn.createStatement() MetadataTest.testDescribeShowAndExplain(SnappyFunSuite.resultSetToDataset(session, stmt), - usingJDBC = true) + usingJDBC = true, PlanCaching.get(session.sessionState.conf)) stmt.close() } finally { conn.close() diff --git a/compatibilityTests/src/test/scala/org/apache/spark/sql/SnappyStreamSuite.scala b/compatibilityTests/src/test/scala/org/apache/spark/sql/SnappyStreamSuite.scala index ec27254728..24797e0468 100644 --- a/compatibilityTests/src/test/scala/org/apache/spark/sql/SnappyStreamSuite.scala +++ b/compatibilityTests/src/test/scala/org/apache/spark/sql/SnappyStreamSuite.scala @@ -21,8 +21,4 @@ import org.apache.spark.sql.test.{SharedSnappySessionContext, SnappySparkTestUti class SnappyStreamSuite extends StreamSuite with SharedSnappySessionContext with SnappySparkTestUtil { - - override def ignored: Seq[String] = Seq( - "sql queries" - ) } diff --git a/compatibilityTests/src/test/scala/org/apache/spark/sql/test/SharedSnappySessionContext.scala b/compatibilityTests/src/test/scala/org/apache/spark/sql/test/SharedSnappySessionContext.scala index 95cb3bf8f3..9ba7b623ee 100644 --- a/compatibilityTests/src/test/scala/org/apache/spark/sql/test/SharedSnappySessionContext.scala +++ b/compatibilityTests/src/test/scala/org/apache/spark/sql/test/SharedSnappySessionContext.scala @@ -16,8 +16,11 @@ */ package org.apache.spark.sql.test +import scala.util.Random + import org.apache.spark.DebugFilesystem import org.apache.spark.sql.SnappySession +import org.apache.spark.sql.test.SharedSnappySessionContext.random /** * Extension to use SnappySession instead of SparkSession in spark-sql-core tests. @@ -26,8 +29,12 @@ trait SharedSnappySessionContext extends SharedSQLContext { override protected def createSparkSession: SnappySession = { val session = new TestSnappySession(sparkConf.set("spark.hadoop.fs.file.impl", - classOf[DebugFilesystem].getName)) + classOf[DebugFilesystem].getName).set("snappydata.sql.planCaching.", random.nextBoolean().toString)) session.setCurrentSchema("default") session } } + +object SharedSnappySessionContext { + val random = new Random() +} diff --git a/core/src/dunit/scala/io/snappydata/cluster/SplitClusterDUnitTestBase.scala b/core/src/dunit/scala/io/snappydata/cluster/SplitClusterDUnitTestBase.scala index cf435524e9..c9d9fbf296 100644 --- a/core/src/dunit/scala/io/snappydata/cluster/SplitClusterDUnitTestBase.scala +++ b/core/src/dunit/scala/io/snappydata/cluster/SplitClusterDUnitTestBase.scala @@ -29,6 +29,7 @@ import scala.util.control.NonFatal import com.pivotal.gemfirexd.Attribute import com.pivotal.gemfirexd.internal.engine.Misc +import io.snappydata.Property.PlanCaching import io.snappydata.test.dunit.{SerializableRunnable, VM} import io.snappydata.test.util.TestException import io.snappydata.util.TestUtils @@ -226,6 +227,8 @@ trait SplitClusterDUnitTestBase extends Logging { trait SplitClusterDUnitTestObject extends Logging { + protected val random = new Random() + val props = Map.empty[String, String] def getConnection(netPort: Int, props: Properties = new Properties()): Connection = @@ -291,7 +294,8 @@ trait SplitClusterDUnitTestObject extends Logging { // first test metadata using session MetadataTest.testSYSTablesAndVTIs(session.sql, hostName = "localhost", netServers, locatorId, locatorNetServer, servers, leadId) - MetadataTest.testDescribeShowAndExplain(session.sql, usingJDBC = false) + val planCaching = PlanCaching.get(session.sessionState.conf) + MetadataTest.testDescribeShowAndExplain(session.sql, usingJDBC = false, planCaching) MetadataTest.testDSIDWithSYSTables(session.sql, netServers, locatorId, locatorNetServer, servers, leadId) // next test metadata using JDBC connection @@ -299,7 +303,7 @@ trait SplitClusterDUnitTestObject extends Logging { MetadataTest.testSYSTablesAndVTIs(SnappyFunSuite.resultSetToDataset(session, stmt), hostName = "localhost", netServers, locatorId, locatorNetServer, servers, leadId) MetadataTest.testDescribeShowAndExplain(SnappyFunSuite.resultSetToDataset(session, stmt), - usingJDBC = true) + usingJDBC = true , planCaching) MetadataTest.testDSIDWithSYSTables(SnappyFunSuite.resultSetToDataset(session, stmt), netServers, locatorId, locatorNetServer, servers, leadId) @@ -366,13 +370,14 @@ trait SplitClusterDUnitTestObject extends Logging { // val connectionURL = "jdbc:snappydata://localhost:" + locatorClientPort + "/" val connectionURL = s"localhost:$locatorClientPort" logInfo(s"Starting spark job using spark://$hostName:7077, connectionURL=$connectionURL") - val conf = new SparkConf() - .setAppName("test Application") - .setMaster(s"spark://$hostName:7077") - .set("spark.executor.cores", TestUtils.defaultCores.toString) - .set("spark.executor.extraClassPath", - getEnvironmentVariable("SNAPPY_DIST_CLASSPATH")) - .set("snappydata.connection", connectionURL) + val conf = new SparkConf() + .setAppName("test Application") + .setMaster(s"spark://$hostName:7077") + .set("spark.executor.cores", TestUtils.defaultCores.toString) + .set("spark.executor.extraClassPath", + getEnvironmentVariable("SNAPPY_DIST_CLASSPATH")) + .set("snappydata.connection", connectionURL) + .set("snapptdata.sql.planCaching", random.nextBoolean().toString) if (props != null) { val user = props.getProperty(Attribute.USERNAME_ATTR, "") diff --git a/core/src/main/scala/io/snappydata/Literals.scala b/core/src/main/scala/io/snappydata/Literals.scala index 65cfcb962f..8625565b9f 100644 --- a/core/src/main/scala/io/snappydata/Literals.scala +++ b/core/src/main/scala/io/snappydata/Literals.scala @@ -195,11 +195,7 @@ object Property extends Enumeration { val PlanCaching: SQLValue[Boolean] = SQLVal[Boolean]( s"${Constant.PROPERTY_PREFIX}sql.planCaching", - "Property to set/unset plan caching", Some(true)) - - val PlanCachingAll: SQLValue[Boolean] = SQLVal[Boolean]( - s"${Constant.PROPERTY_PREFIX}sql.planCachingAll", - "Property to set/unset plan caching on all sessions", Some(true)) + "Property to set/unset plan caching", Some(false)) val Tokenize: SQLValue[Boolean] = SQLVal[Boolean]( s"${Constant.PROPERTY_PREFIX}sql.tokenize", diff --git a/core/src/main/scala/org/apache/spark/sql/SnappySession.scala b/core/src/main/scala/org/apache/spark/sql/SnappySession.scala index 9e37e7cf85..e1173c795e 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappySession.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappySession.scala @@ -173,8 +173,21 @@ class SnappySession(_sc: SparkContext) extends SparkSession(_sc) { Dataset.ofRows(self, LogicalRDD(attributeSeq, rowRDD)(self)) } - override def sql(sqlText: String): CachedDataFrame = + override def sql(sqlText: String): DataFrame = { + try { + sqInternal(sqlText) + } catch { + // fallback to uncached flow for streaming queries + case ae: AnalysisException + if ae.message.contains( + "Queries with streaming sources must be executed with writeStream.start()" + ) => sqlUncached(sqlText) + } + } + + private[sql] def sqInternal(sqlText: String): CachedDataFrame = { snappyContextFunctions.sql(SnappySession.sqlPlan(this, sqlText)) + } @DeveloperApi def sqlUncached(sqlText: String): DataFrame = { diff --git a/core/src/main/scala/org/apache/spark/sql/collection/Utils.scala b/core/src/main/scala/org/apache/spark/sql/collection/Utils.scala index 1cd653ee96..e0c4bd9c8d 100644 --- a/core/src/main/scala/org/apache/spark/sql/collection/Utils.scala +++ b/core/src/main/scala/org/apache/spark/sql/collection/Utils.scala @@ -845,6 +845,9 @@ object Utils { } def getActiveSession: Option[SparkSession] = SparkSession.getActiveSession + + def sqlInternal(snappy: SnappySession, sqlText: String): CachedDataFrame = + snappy.sqInternal(sqlText) } class ExecutorLocalRDD[T: ClassTag](_sc: SparkContext, blockManagerIds: Seq[BlockManagerId], diff --git a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala index 1e0d1080ef..5b65a4b72c 100644 --- a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala +++ b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala @@ -820,14 +820,6 @@ class SnappyConf(@transient val session: SnappySession) case None => session.planCaching = Property.PlanCaching.defaultValue.get } - case Property.PlanCachingAll.name => - value match { - case Some(boolVal) => - val clearCache = !boolVal.toString.toBoolean - if (clearCache) SnappySession.getPlanCache.asMap().clear() - case None => - } - case Property.Tokenize.name => value match { case Some(boolVal) => session.tokenize = boolVal.toString.toBoolean diff --git a/core/src/test/scala/io/snappydata/SnappyFunSuite.scala b/core/src/test/scala/io/snappydata/SnappyFunSuite.scala index 9361e16db7..442fc68669 100644 --- a/core/src/test/scala/io/snappydata/SnappyFunSuite.scala +++ b/core/src/test/scala/io/snappydata/SnappyFunSuite.scala @@ -153,6 +153,8 @@ abstract class SnappyFunSuite } override def beforeAll(): Unit = { + log.info("Snappy Config:" + snc.sessionState.conf.getAllConfs.toString()) + baseCleanup() } diff --git a/core/src/test/scala/io/snappydata/core/LocalTestData.scala b/core/src/test/scala/io/snappydata/core/LocalTestData.scala index 4d01ef3ba9..49fa5eb641 100644 --- a/core/src/test/scala/io/snappydata/core/LocalTestData.scala +++ b/core/src/test/scala/io/snappydata/core/LocalTestData.scala @@ -17,6 +17,7 @@ package io.snappydata.core import scala.reflect.io.Path +import scala.util.Random import org.apache.spark.SparkConf @@ -77,10 +78,13 @@ object FileCleaner { /** Default SparkConf used for local testing. */ object LocalSparkConf { + private val random = new Random() + def newConf(addOn: (SparkConf) => SparkConf = null): SparkConf = { val conf = new SparkConf() .setIfMissing("spark.master", "local[4]") .setIfMissing("spark.memory.debugFill", "true") + .set("snappydata.sql.planCaching", random.nextBoolean().toString) .setAppName(getClass.getName) if (addOn != null) { addOn(conf) diff --git a/core/src/test/scala/org/apache/spark/sql/store/DisableTokenizationTest.scala b/core/src/test/scala/org/apache/spark/sql/store/DisableTokenizationTest.scala index a44944afbb..3565cdea04 100644 --- a/core/src/test/scala/org/apache/spark/sql/store/DisableTokenizationTest.scala +++ b/core/src/test/scala/org/apache/spark/sql/store/DisableTokenizationTest.scala @@ -16,8 +16,9 @@ */ package org.apache.spark.sql.store + import io.snappydata.core.Data -import io.snappydata.{SnappyFunSuite, SnappyTableStatsProviderService} +import io.snappydata.{Property, SnappyFunSuite, SnappyTableStatsProviderService} import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} import org.apache.spark.Logging @@ -33,14 +34,18 @@ class DisableTokenizationTest with BeforeAndAfterAll { val table = "my_table" + var planCaching : Boolean = false override def beforeAll(): Unit = { snc.sql(s"set snappydata.sql.tokenize = false") + planCaching = Property.PlanCaching.get(snc.sessionState.conf) + Property.PlanCaching.set(snc.sessionState.conf, true) super.beforeAll() } override def afterAll(): Unit = { snc.sql(s"set snappydata.sql.tokenize = true") + Property.PlanCaching.set(snc.sessionState.conf, true) super.afterAll() } diff --git a/core/src/test/scala/org/apache/spark/sql/store/MetadataTest.scala b/core/src/test/scala/org/apache/spark/sql/store/MetadataTest.scala index c922e40b95..dfe6c12899 100644 --- a/core/src/test/scala/org/apache/spark/sql/store/MetadataTest.scala +++ b/core/src/test/scala/org/apache/spark/sql/store/MetadataTest.scala @@ -42,7 +42,8 @@ class MetadataTest extends SnappyFunSuite { test("DESCRIBE, SHOW and EXPLAIN") { val session = this.snc.snappySession - MetadataTest.testDescribeShowAndExplain(session.sql, usingJDBC = false) + val planCaching = io.snappydata.Property.PlanCaching.get(session.sessionState.conf) + MetadataTest.testDescribeShowAndExplain(session.sql, usingJDBC = false, planCaching) } test("DSID joins with SYS tables") { @@ -366,7 +367,7 @@ object MetadataTest extends Assertions { } def testDescribeShowAndExplain(executeSQL: String => Dataset[Row], - usingJDBC: Boolean): Unit = { + usingJDBC: Boolean, planCachingEnabled: Boolean): Unit = { var ds: Dataset[Row] = null var expectedColumns: List[String] = null var rs: Array[Row] = null @@ -646,8 +647,19 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } - assert(matches(plan, ".*Physical Plan.*Partitioned Scan RowFormatRelation\\[APP" + - ".ROWTABLE1\\].*numBuckets = 1 numPartitions = 1.*ID.* > ParamLiteral:0,[0-9#]*,10.*")) + + def literalString(value: String): String = { + if (planCachingEnabled || usingJDBC) { + s"ParamLiteral:0,[0-9#]*,$value" + } else { + value + } + } + + var expectedPattern = ".*Physical Plan.*Partitioned Scan RowFormatRelation\\[APP" + + ".ROWTABLE1\\].*numBuckets = 1 numPartitions = 1.*ID.* > " + literalString("10") + ".*" + + assert(matches(plan, expectedPattern)) // ----- check EXPLAIN for row tables no routing ----- @@ -663,8 +675,9 @@ object MetadataTest extends Assertions { assert(plan.contains("REGION-GET")) } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) - assert(matches(plan, ".*Physical Plan.*Partitioned Scan RowFormatRelation\\[APP" + - ".ROWTABLE1\\].*numBuckets = 1 numPartitions = 1.*ID.* = ParamLiteral:0,[0-9#]*,10.*")) + expectedPattern = ".*Physical Plan.*Partitioned Scan RowFormatRelation\\[APP" + + ".ROWTABLE1\\].*numBuckets = 1 numPartitions = 1.*ID.* = " + literalString("10") + ".*" + assert(matches(plan, expectedPattern)) } // explain extended will route with JDBC since its not supported by store ds = executeSQL("explain extended select * from rowTable1 where id = 10") @@ -677,12 +690,13 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } - assert(matches(plan, ".*Parsed Logical Plan.*Filter.*ID = ParamLiteral:0,[0-9#]*,10" + - ".*Analyzed Logical Plan.*Filter.*ID#[0-9]* = ParamLiteral:0,[0-9#]*,10" + - ".*Optimized Logical Plan.*Filter.*ID#[0-9]* = ParamLiteral:0,[0-9#]*,10" + + expectedPattern = s".*Parsed Logical Plan.*Filter.*ID = " + literalString("10") + "" + + ".*Analyzed Logical Plan.*Filter.*ID#[0-9]* = " + literalString("10") + + ".*Optimized Logical Plan.*Filter.*ID#[0-9]* = " + literalString("10") + ".*RowFormatRelation\\[APP.ROWTABLE1\\].*Physical Plan.*Partitioned Scan" + " RowFormatRelation\\[APP.ROWTABLE1\\].*numBuckets = 1 numPartitions = 1" + - ".*ID.* = ParamLiteral:0,[0-9#]*,10.*")) + ".*ID.* = " + literalString("10") + ".*" + assert(matches(plan, expectedPattern)) // ----- check EXPLAIN for column tables ----- @@ -696,9 +710,10 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } - assert(matches(plan, ".*Physical Plan.*Partitioned Scan ColumnFormatRelation" + + expectedPattern = ".*Physical Plan.*Partitioned Scan ColumnFormatRelation" + "\\[APP.COLUMNTABLE2\\].*numBuckets = [0-9]* numPartitions = [0-9]*" + - ".*ID#[0-9]*L = DynExpr\\(ParamLiteral:0,[0-9#]*,10\\).*")) + s".*ID#[0-9]*L = DynExpr\\(" + literalString("10") + "\\).*" + assert(matches(plan, expectedPattern)) ds = executeSQL("explain extended select * from columnTable2 where id > 20") rs = ds.collect() @@ -710,12 +725,13 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } - assert(matches(plan, ".*Parsed Logical Plan.*Filter.*ID > ParamLiteral:0,[0-9#]*,20" + - ".*Analyzed Logical Plan.*Filter.*ID#[0-9]*L > cast\\(ParamLiteral:0,[0-9#]*,20 as bigint" + - ".*Optimized Logical Plan.*Filter.*ID#[0-9]*L > DynExpr\\(ParamLiteral:0,[0-9#]*,20\\)" + + expectedPattern = s".*Parsed Logical Plan.*Filter.*ID > ${literalString("20")}" + + s".*Analyzed Logical Plan.*Filter.*ID#[0-9]*L > cast\\(${literalString("20")} as bigint" + + s".*Optimized Logical Plan.*Filter.*ID#[0-9]*L > DynExpr\\(${literalString("20")}\\)" + ".*ColumnFormatRelation\\[APP.COLUMNTABLE2\\].*Physical Plan.*Partitioned Scan" + " ColumnFormatRelation\\[APP.COLUMNTABLE2\\].*numBuckets = [0-9]* numPartitions = [0-9]*" + - ".*ID#[0-9]*L > DynExpr\\(ParamLiteral:0,[0-9#]*,20\\).*")) + s".*ID#[0-9]*L > DynExpr\\(${literalString("20")}\\).*" + assert(matches(plan, expectedPattern)) // ----- check EXPLAIN for DDLs ----- @@ -821,9 +837,10 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } - assert(matches(plan, ".*Physical Plan.*Partitioned Scan RowFormatRelation" + + expectedPattern = ".*Physical Plan.*Partitioned Scan RowFormatRelation" + "\\[SCHEMA2.ROWTABLE2\\].*numBuckets = 8 numPartitions = [0-9]*" + - ".*ID.* > ParamLiteral:0,[0-9#]*,10.*")) + ".*ID.* > " + literalString("10") + ".*" + assert(matches(plan, expectedPattern)) // ----- check EXPLAIN for row tables no routing ----- @@ -840,9 +857,10 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) // no pruning for row tables yet - assert(matches(plan, ".*Physical Plan.*Partitioned Scan RowFormatRelation" + + expectedPattern = ".*Physical Plan.*Partitioned Scan RowFormatRelation" + "\\[SCHEMA2.ROWTABLE2\\].*numBuckets = 8 numPartitions = [0-9]*" + - ".*ID.* = ParamLiteral:0,[0-9#]*,15.*")) + ".*ID.* = " + literalString("15") + ".*" + assert(matches(plan, expectedPattern)) } // ----- check EXPLAIN for column tables ----- @@ -859,7 +877,7 @@ object MetadataTest extends Assertions { } assert(matches(plan, ".*Physical Plan.*Partitioned Scan ColumnFormatRelation" + "\\[SCHEMA1.COLUMNTABLE1\\].*numBuckets = [0-9]* numPartitions = 1" + - ".*ID#[0-9]* = ParamLiteral:0,[0-9#]*,15.*")) + ".*ID#[0-9]* = " + literalString("15") + ".*")) ds = executeSQL("explain extended select * from schema1.columnTable1 where id = 20") rs = ds.collect() @@ -871,13 +889,14 @@ object MetadataTest extends Assertions { } else { assert(ds.schema === StructType(Array(StructField("plan", StringType, nullable = true)))) } + // should prune to a single partition - assert(matches(plan, ".*Parsed Logical Plan.*Filter.*ID = ParamLiteral:0,[0-9#]*,20" + - ".*Analyzed Logical Plan.*Filter.*ID#[0-9]* = ParamLiteral:0,[0-9#]*,20" + - ".*Optimized Logical Plan.*Filter.*ID#[0-9]* = ParamLiteral:0,[0-9#]*,20" + + assert(matches(plan, s".*Parsed Logical Plan.*Filter.*ID = ${literalString("20")}" + + ".*Analyzed Logical Plan.*Filter.*ID#[0-9]* = " + literalString("20") + + ".*Optimized Logical Plan.*Filter.*ID#[0-9]* = " + literalString("20") + ".*ColumnFormatRelation\\[SCHEMA1.COLUMNTABLE1\\].*Physical Plan.*Partitioned Scan" + " ColumnFormatRelation\\[SCHEMA1.COLUMNTABLE1\\].*numBuckets = [0-9]* numPartitions = 1" + - ".*ID#[0-9]* = ParamLiteral:0,[0-9#]*,20.*")) + ".*ID#[0-9]* = " + literalString("20") + ".*")) // ----- cleanup ----- diff --git a/core/src/test/scala/org/apache/spark/sql/store/TokenizationTest.scala b/core/src/test/scala/org/apache/spark/sql/store/TokenizationTest.scala index 1e26c5a5dc..7a6abfb596 100644 --- a/core/src/test/scala/org/apache/spark/sql/store/TokenizationTest.scala +++ b/core/src/test/scala/org/apache/spark/sql/store/TokenizationTest.scala @@ -19,7 +19,7 @@ package org.apache.spark.sql.store import scala.collection.mutable.ArrayBuffer import io.snappydata.core.{Data, TestData2} -import io.snappydata.{SnappyFunSuite, SnappyTableStatsProviderService} +import io.snappydata.{Property, SnappyFunSuite, SnappyTableStatsProviderService} import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} import org.apache.spark.Logging @@ -39,11 +39,14 @@ class TokenizationTest val table = "my_table" val table2 = "my_table2" val all_typetable = "my_table3" + var planCaching : Boolean = false override def beforeAll(): Unit = { // System.setProperty("org.codehaus.janino.source_debugging.enable", "true") System.setProperty("spark.sql.codegen.comments", "true") System.setProperty("spark.testing", "true") + planCaching = Property.PlanCaching.get(snc.sessionState.conf) + Property.PlanCaching.set(snc.sessionState.conf, true) super.beforeAll() } @@ -51,6 +54,7 @@ class TokenizationTest // System.clearProperty("org.codehaus.janino.source_debugging.enable") System.clearProperty("spark.sql.codegen.comments") System.clearProperty("spark.testing") + Property.PlanCaching.set(snc.sessionState.conf, planCaching) super.afterAll() } @@ -397,7 +401,6 @@ class TokenizationTest val cacheMap = SnappySession.getPlanCache.asMap() assert(cacheMap.size() == 1) - newSession.sql(s"set snappydata.sql.planCaching=false").collect() assert(cacheMap.size() == 1) @@ -413,8 +416,7 @@ class TokenizationTest var res2 = newSession.sql(query).collect() assert(cacheMap.size() == 1) - newSession.sql(s"set snappydata.sql.planCachingAll=false").collect() - assert(cacheMap.size() == 0) + cacheMap.clear() q.zipWithIndex.foreach { case (x, i) => var result = newSession.sql(x).collect() @@ -428,8 +430,7 @@ class TokenizationTest cacheMap.clear() val newSession2 = new SnappySession(snc.sparkSession.sparkContext) - newSession2.sql(s"set snappydata.sql.planCachingAll=true").collect() - + Property.PlanCaching.set(newSession2.sessionState.conf, true) assert(cacheMap.size() == 0) q.zipWithIndex.foreach { case (x, i) => @@ -440,14 +441,14 @@ class TokenizationTest }) } - assert(cacheMap.size() == 1) + assert(SnappySession.getPlanCache.asMap().size() == 1) newSession.clear() newSession2.clear() cacheMap.clear() val newSession3 = new SnappySession(snc.sparkSession.sparkContext) newSession3.sql(s"set snappydata.sql.tokenize=false").collect() - + Property.PlanCaching.set(newSession3.sessionState.conf, true) assert(cacheMap.size() == 0) q.zipWithIndex.foreach { case (x, i) => diff --git a/examples/src/main/scala/io/snappydata/examples/SampleApp.scala b/examples/src/main/scala/io/snappydata/examples/SampleApp.scala deleted file mode 100644 index 40942942b5..0000000000 --- a/examples/src/main/scala/io/snappydata/examples/SampleApp.scala +++ /dev/null @@ -1,11 +0,0 @@ -package io.snappydata.examples - -import org.apache.spark.sql.SnappyContext -import org.apache.spark.{SparkConf, SparkContext} - - -object SampleApp { - def main (args: Array[String]) { - // TODO: Code to be added later. - } -} From 4db068d7b2c4129d669132c13c3b9502bf98c25d Mon Sep 17 00:00:00 2001 From: Lizy Geogy <31404069+lizygeogy@users.noreply.github.com> Date: Wed, 6 Feb 2019 15:17:55 +0530 Subject: [PATCH 12/22] Docv1.0.3 temp (#1257) * Include spark.context-settings in List of properties + Add respective properties for Leads, Locators and Servers configuration. + Checked consistency, language, grammar etc in the topic. * Incorporated corrections for SWAP file as suggested by Trilok. * Change the percentage for -critical-heap-percentage and -eviction-heap-percentage. * Update Create table section for compression, Buckets, and Redundancy * Change odbc installer version. * Included section about auto-configuring off-heap. --- docs/best_practices/important_settings.md | 13 ++-- docs/best_practices/memory_management.md | 18 ++--- .../configuring_cluster.md | 52 +++++++++++--- .../property_description.md | 43 +++++++----- docs/howto/connect_using_odbc_driver.md | 6 +- docs/howto/export_hdfs.md | 2 +- .../load_data_from_external_data_stores.md | 4 +- docs/howto/start_snappy_cluster.md | 3 +- docs/howto/stop_snappy_cluster.md | 51 +++++++++++++- docs/install/building_from_source.md | 6 +- docs/install/system_requirements.md | 6 +- .../programming_guide/spark_jdbc_connector.md | 2 +- docs/quickstart/snappydataquick_start.md | 9 ++- .../modify_disk_store.md | 38 ++++++++++ docs/reference/sql_reference/create-table.md | 70 +++++++++++++++---- docs/reference/sql_reference/select.md | 2 +- mkdocs.yml | 2 +- 17 files changed, 247 insertions(+), 80 deletions(-) create mode 100644 docs/reference/command_line_utilities/modify_disk_store.md diff --git a/docs/best_practices/important_settings.md b/docs/best_practices/important_settings.md index fb4096a5b6..c774564583 100644 --- a/docs/best_practices/important_settings.md +++ b/docs/best_practices/important_settings.md @@ -88,14 +88,19 @@ These settings lower the OS cache buffer sizes which reduce the long GC pauses d **Swap File**
Since modern operating systems perform lazy allocation, it has been observed that despite setting `-Xmx` and `-Xms` settings, at runtime, the operating system may fail to allocate new pages to the JVM. This can result in the process going down.
-It is recommended to set swap space on your system using the following commands. +It is recommended to set swap space on your system using the following commands: ``` # sets a swap space of 32 GB -sudo dd if=/dev/zero of=/var/swapfile.1 bs=1M count=32768 + +## If fallocate is available, run the following command: +sudo sh -c "fallocate -l 32G /var/swapfile && chmod 0600 /var/swapfile && mkswap /var/swapfile && swapon /var/swapfile" +## fallocate is recommended since it is much faster, although not supported by some filesystems such as ext3 and zfs. +## In case fallocate is not available, use dd: +sudo dd if=/dev/zero of=/var/swapfile bs=1M count=32768 sudo chmod 600 /var/swapfile.1 -sudo mkswap /var/swapfile.1 -sudo swapon /var/swapfile.1 +sudo mkswap /var/swapfile +sudo swapon /var/swapfile ``` diff --git a/docs/best_practices/memory_management.md b/docs/best_practices/memory_management.md index 4c2951760f..21a51922a5 100644 --- a/docs/best_practices/memory_management.md +++ b/docs/best_practices/memory_management.md @@ -63,8 +63,8 @@ You can set the following configuration parameters to control the pools: |--------|--------|--------| |`heap-size`|4GB in SnappyData Embedded mode cluster|Max heap size which can be used by the JVM| |`spark.memory.storageFraction`|50|Fraction of workable memory allocated for storage pool and the remaining memory is allocated to the execution pool. It is recommended that you do not change this setting.| -|`critical-heap-percentage`|90| The heap percent beyond which the system considers itself in a critical state. This is to safeguard the system from crashing due to an OutOfMemoryException. Beyond this point, SnappyData starts canceling all jobs and queries and a LowMemoryException is reported.
This means (100 minus `critical-heap-percent`) memory is not allocated to any pool and is unused.| -|`eviction-heap-percentage`|81|Initially, the amount of memory that is available for storage pool is 50% of the total workable memory. This can however grow up to `eviction-heap-percentage` (default 81%). On reaching this threshold it starts evicting table data as per the eviction clause that was specified when creating the table.| +|`critical-heap-percentage`|95| The heap percent beyond which the system considers itself in a critical state. This is to safeguard the system from crashing due to an OutOfMemoryException. Beyond this point, SnappyData starts canceling all jobs and queries and a LowMemoryException is reported.
This means (100 minus `critical-heap-percent`) memory is not allocated to any pool and is unused.| +|`eviction-heap-percentage`|85.5|Initially, the amount of memory that is available for storage pool is 50% of the total workable memory. This can however grow up to `eviction-heap-percentage` (default 85.5%). On reaching this threshold it starts evicting table data as per the eviction clause that was specified when creating the table.| |`spark.memory.fraction`|0.97|Total workable memory for execution and storage. This fraction is applied after removing reserved memory (100 minus `critical-heap-percentage`). This gives a cushion before the system reaches a critical state. It is recommended that you do not change this setting. At the start, each of the two pools is assigned a portion of the available memory. This is driven by `spark.memory.storageFraction` property (default 50%). However, SnappyData allows each pool to "balloon" into the other if capacity is available subject to following rules: @@ -81,17 +81,17 @@ At the start, each of the two pools is assigned a portion of the available memor **Example**: Configuration for memory (typically configured in **conf/leads** or **conf/servers**) ```scala --heap-size=20g -critical-heap-percentage=90 -eviction-heap-percentage=81 +-heap-size=20g -critical-heap-percentage=95 -eviction-heap-percentage=85.5 ``` **Example**: Depicts how SnappyData derives different memory region sizes ```scala -Reserved_Heap_Memory => 20g * (1 - 0.9) = 2g ( 0.9 being derived from critical_heap_percentage) +Reserved_Heap_Memory => 20g * (1 - 0.95) = 1g ( 0.9 being derived from critical_heap_percentage) Heap_Memory_Fraction => (20g - Reserved_Memory) *(0.97) = 17.4 ( 0.97 being derived from spark.memory.fraction) Heap_Storage_Pool_Size => 17.4 * (0.5) = 8.73 ( 0.5 being derived from spark.memory.storageFraction) Heap_Execution_Pool_Size => 17.4 * (0.5) = 8.73 -Heap_Max_Storage_pool_Size => 17.4 * 0.81 = 14.1 ( 0.81 derived from eviction_heap_percentage) +Heap_Max_Storage_pool_Size => 17.4 * 0.85 = 14.7 ( 0.85 derived from eviction_heap_percentage) ``` ## SnappyData Off-Heap Memory @@ -102,7 +102,7 @@ In addition to heap memory, SnappyData can also be configured with off-heap memo | Parameter Name | Default Value | Description | |--------|--------|--------| -|memory-size|0 ( OFF_HEAP not used by default) |Total off-heap memory size| +|memory-size|The default value is either 0 or it gets auto-configured in [specific scenarios](../configuring_cluster/configuring_cluster.md#autoconfigur_offheap).|Total off-heap memory size| Similar to heap pools, off-heap pools are also divided between off-heap storage pool and off-heap execution pool. The rules of borrowing memory from each other also remains same. @@ -111,17 +111,17 @@ Similar to heap pools, off-heap pools are also divided between off-heap storage **Example**: Off-heap configuration: ```scala --heap-size = 4g -memory-size=16g -critical-heap-percentage=90 -eviction-heap-percentage=81 +-heap-size = 4g -memory-size=16g -critical-heap-percentage=95 -eviction-heap-percentage=85.5 ``` **Example**: How SnappyData derives different memory region sizes. ```scala -Reserved_Memory ( Heap Memory) => 4g * (1 - 0.9) = 400m ( 0.9 being derived from critical_heap_percentage) +Reserved_Memory ( Heap Memory) => 4g * (1 - 0.95) = 200m ( 0.95 being derived from critical_heap_percentage) Memory_Fraction ( Heap Memory) => (4g - Reserved_Memory) *(0.97) = 3.5g Heap Storage_Pool_Size => 3.5 * (0.5) = 1.75 Heap Execution_Pool_Size => 3.5 * (0.5) = 1.75 -Max_Heap_Storage_pool_Size => 3.5g * 0.81 = 2.8 ( 0.81 derived from eviction_heap_percentage) +Max_Heap_Storage_pool_Size => 3.5g * 0.85 = 2.9 ( 0.85 derived from eviction_heap_percentage) Off-Heap Storage_Pool_Size => 16g * (0.5) = 8g diff --git a/docs/configuring_cluster/configuring_cluster.md b/docs/configuring_cluster/configuring_cluster.md index a9ef862b7e..8e46600a60 100644 --- a/docs/configuring_cluster/configuring_cluster.md +++ b/docs/configuring_cluster/configuring_cluster.md @@ -39,9 +39,9 @@ Refer to the [SnappyData properties](property_description.md) for the complete l |-dir|The working directory of the server that contains the SnappyData Server status file and the default location for the log file, persistent files, data dictionary, and so forth (defaults to the current directory).| |-heap-size| Sets the maximum heap size for the Java VM, using SnappyData default resource manager settings.
For example, -heap-size=1024m.
If you use the `-heap-size` option, by default SnappyData sets the critical-heap-percentage to 95% of the heap size, and the `eviction-heap-percentage` to 85.5% of the `critical-heap-percentage`.
SnappyData also sets resource management properties for eviction and garbage collection if the JVM supports them.| |-J|JVM option passed to the spawned SnappyData server JVM.
For example, use -J-Xmx1024m to set the JVM heap to 1GB.| -|-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.| +|-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default, this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.| |-locators|List of locators as comma-separated host:port values used to communicate with running locators in the system and thus discover other peers of the distributed system.
The list must include all locators in use and must be configured consistently for every member of the distributed system.| -|-log-file|Path of the file to which this member writes log messages. Default is **snappylocator.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| +|-log-file|Path of the file to which this member writes log messages. The default is **snappylocator.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| |-member-timeout|Uses the [member-timeout](../best_practices/important_settings.md#member-timeout) server configuration, specified in milliseconds, to detect the abnormal termination of members. The configuration setting is used in two ways:
1) First, it is used during the UDP heartbeat detection process. When a member detects that a heartbeat datagram is missing from the member that it is monitoring after the time interval of 2 * the value of member-timeout, the detecting member attempts to form a TCP/IP stream-socket connection with the monitored member as described in the next case.
2) The property is then used again during the TCP/IP stream-socket connection. If the suspected process does not respond to the are you alive datagram within the period specified in member-timeout, the membership coordinator sends out a new membership view that notes the member's failure.
Valid values are in the range 1000..600000.| |-peer-discovery-address|Use this as value for the port in the "host:port" value of "-locators" property | |-peer-discovery-port|The port on which the locator listens for peer discovery (includes servers as well as other locators).
Valid values are in the range 1-65535, with a default of 10334.| @@ -74,19 +74,30 @@ Refer to the [SnappyData properties](property_description.md) for the complete l |-classpath|Location of user classes required by the SnappyData Server.
This path is appended to the current classpath.| |-critical-heap-percentage|Sets the Resource Manager's critical heap threshold in percentage of the old generation heap, 0-100.
If you set `-heap-size`, the default value for `critical-heap-percentage` is set to 95% of the heap size.
Use this switch to override the default.
When this limit is breached, the system starts canceling memory-intensive queries, throws low memory exceptions for new SQL statements, and so forth, to avoid running out of memory.| |-dir|The working directory of the lead that contains the SnappyData Lead status file and the default location for the log file, persistent files, data dictionary, and so forth (defaults to the current directory).| -|-eviction-heap-percentage|Sets the memory usage percentage threshold (0-100) that the Resource Manager will use to start evicting data from the heap. By default, the eviction threshold is 85.5% of whatever is set for `-critical-heap-percentage`.
Use this switch to override the default.
| +|-eviction-heap-percentage|Sets the memory usage percentage threshold (0-100) that the Resource Manager uses to evict data from the heap. By default, the eviction threshold is 85.5% of whatever is set for `-critical-heap-percentage`.
Use this switch to override the default.
| |-heap-size| Sets the maximum heap size for the Java VM, using SnappyData default resource manager settings.
For example, -heap-size=1024m.
If you use the `-heap-size` option, by default SnappyData sets the critical-heap-percentage to 95% of the heap size, and the `eviction-heap-percentage` to 85.5% of the `critical-heap-percentage`.
SnappyData also sets resource management properties for eviction and garbage collection if the JVM supports them. | -|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is 0 (OFF_HEAP is not used by default)| |-J|JVM option passed to the spawned SnappyData Lead JVM.
For example, use -J-Xmx1024m to set the JVM heap to 1GB.| |-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default, this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.| +|-J-Dsnappydata.RESTRICT_TABLE_CREATION|Applicable when security is enabled in the cluster. If true, users cannot execute queries (including DDLs and DMLs) even in their default or own schema unless cluster admin explicitly grants them the required permissions using GRANT command. The default is false. | +|jobserver.waitForInitialization|When this property is set to true, the cluster startup waits for the Spark jobserver to be fully initialized before marking the lead node as **RUNNING**. The default is false.| |-locators|List of locators as comma-separated host:port values used to communicate with running locators in the system and thus discover other peers of the distributed system.
The list must include all locators in use and must be configured consistently for every member of the distributed system.| -|-log-file|Path of the file to which this member writes log messages. Default is **snappyleader.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| +|-log-file|Path of the file to which this member writes log messages. The default **snappyleader.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| |-member-timeout|Uses the [member-timeout](../best_practices/important_settings.md#member-timeout) configuration, specified in milliseconds, to detect the abnormal termination of members. The configuration setting is used in two ways:
1) First, it is used during the UDP heartbeat detection process. When a member detects that a heartbeat datagram is missing from the member that it is monitoring after the time interval of 2 * the value of member-timeout, the detecting member attempts to form a TCP/IP stream-socket connection with the monitored member as described in the next case.
2) The property is then used again during the TCP/IP stream-socket connection. If the suspected process does not respond to the are you alive datagram within the period specified in member-timeout, the membership coordinator sends out a new membership view that notes the member's failure.
Valid values are in the range 1000..600000.| +|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is either 0 or it gets auto-configured in [specific scenarios](../configuring_cluster/configuring_cluster.md#autoconfigur_offheap).| |-snappydata.column.batchSize|The default size of blocks to use for storage in the SnappyData column store. The default value is 24M.| -|-spark.driver.maxResultSize|Limit of the total size of serialized results of all partitions for each action (for example, collect). The value should be at least 1MB or 0 for unlimited. Jobs will be aborted if the total size of the results is above this limit. Having a high limit may cause out-of-memory errors in the lead. The default max size is 1GB| -|-spark.executor.cores|The number of cores to use on each server. | -|-spark.network.timeout|The default timeout for all network interactions while running queries. | +|spark.context-settings.num-cpu-cores| The number of cores that can be allocated. The default is 4. | +|spark.context-settings.memory-per-node| The executor memory per node (-Xmx style. For example: 512m, 1G). The default is 512m. | +|spark.context-settings.streaming.batch_interval| The batch interval for Spark Streaming contexts in milliseconds. The default is 1000.| +|spark.context-settings.streaming.stopGracefully| If set to true, the streaming stops gracefully by waiting for the completion of processing of all the received data. The default is true.| +|spark.context-settings.streaming.stopSparkContext| if set to true, the SparkContext is stopped along with the StreamingContext. The default is true.| +|-spark.driver.maxResultSize|Limit of the total size of serialized results of all partitions for each action (for example, collect). The value should be at least 1MB or 0 for unlimited. Jobs are aborted if the total size of the results is above this limit. Having a high limit may cause out-of-memory errors in the lead. The default max size is 1GB| +|-spark.executor.cores|The number of cores to use on each server.| +|-spark.jobserver.port|The port on which to run the jobserver. Default port is 8090.| +|-spark.jobserver.bind-address|The address on which the jobserver listens. Default address is 0.0.0.| +|-spark.jobserver.job-result-cache-size|The number of job results to keep per JobResultActor/context. The default is 5000.| +|-spark.jobserver.max-jobs-per-context|The number of jobs that can be run simultaneously in the context. The default is 8.| |-spark.local.dir|Directory to use for "scratch" space in SnappyData, including map output files and RDDs that get stored on disk. This should be on a fast, local disk in your system. It can also be a comma-separated list of multiple directories on different disks.| +|-spark.network.timeout|The default timeout for all network interactions while running queries. | |-spark.sql.codegen.cacheSize|Size of the generated code cache that is used by Spark, in the SnappyData Spark distribution, and by SnappyData. The default is 2000.| |-spark.ui.port|Port for your SnappyData Pulse, which shows tables, memory and workload data. The default is 5050| @@ -133,13 +144,16 @@ Refer to the [SnappyData properties](property_description.md) for the complete l |-eviction-heap-percentage|Sets the memory usage percentage threshold (0-100) that the Resource Manager will use to start evicting data from the heap. By default, the eviction threshold is 85.5% of whatever is set for `-critical-heap-percentage`.
Use this switch to override the default.
| |-eviction-off-heap-percentage|Sets the off-heap memory usage percentage threshold, 0-100, that the Resource Manager uses to start evicting data from off-heap memory.
By default, the eviction threshold is 85.5% of the value that is set for `-critical-off-heap-percentage`.
Use this switch to override the default.| |-heap-size| Sets the maximum heap size for the Java VM, using SnappyData default resource manager settings.
For example, -heap-size=1024m.
If you use the `-heap-size` option, by default SnappyData sets the critical-heap-percentage to 95% of the heap size, and the `eviction-heap-percentage` to 85.5% of the `critical-heap-percentage`.
SnappyData also sets resource management properties for eviction and garbage collection if the JVM supports them. | -|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is 0 (OFF_HEAP is not used by default)| +|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is either 0 or it gets auto-configured in [specific scenarios](../configuring_cluster/configuring_cluster.md#autoconfigur_offheap).| |-J|JVM option passed to the spawned SnappyData server JVM.
For example, use **-J-XX:+PrintGCDetails** to print the GC details in JVM logs.| |-J-Dgemfirexd.hostname-for-clients|The IP address or host name that this server/locator sends to the JDBC/ODBC/thrift clients to use for the connection. The default value causes the `client-bind-address` to be given to clients.
This value can be different from `client-bind-address` for cases where the servers/locators are behind a NAT firewall (AWS for example) where `client-bind-address` needs to be a private one that gets exposed to clients outside the firewall as a different public address specified by this property. In many cases, this is handled by the hostname translation itself, that is, the hostname used in `client-bind-address` resolves to the internal IP address from inside and to the public IP address from outside, but for other cases, this property is required| |-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default, this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.| -|-log-file|Path of the file to which this member writes log messages. Default is **snappyserver.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| +|-J-Dsnappydata.RESTRICT_TABLE_CREATION|Applicable when security is enabled in the cluster. If true, users cannot execute queries (including DDLs and DMLs) even in their default or own schema unless cluster admin explicitly grants them the required permissions using GRANT command. The default is false.| +|-locators|List of locators as comma-separated host:port values used to communicate with running locators in the system and thus discover other peers of the distributed system.
The list must include all locators in use and must be configured consistently for every member of the distributed system.| +|-log-file|Path of the file to which this member writes log messages. The default is **snappyserver.log** in the working directory. In case logging is set via log4j, the default log file is **snappydata.log**.| |-member-timeout|Uses the [member-timeout](../best_practices/important_settings.md#member-timeout) server configuration, specified in milliseconds, to detect the abnormal termination of members. The configuration setting is used in two ways:
1) First, it is used during the UDP heartbeat detection process. When a member detects that a heartbeat datagram is missing from the member that it is monitoring after the time interval of 2 * the value of member-timeout, the detecting member attempts to form a TCP/IP stream-socket connection with the monitored member as described in the next case.
2) The property is then used again during the TCP/IP stream-socket connection. If the suspected process does not respond to the are you alive datagram within the period specified in member-timeout, the membership coordinator sends out a new membership view that notes the member's failure.
Valid values are in the range 1000..600000.| |-rebalance|Causes the new member to trigger a rebalancing operation for all partitioned tables in the system.
The system always tries to satisfy the redundancy of all partitioned tables on new member startup regardless of this option. Usually rebalancing is triggered when the overall capacity is increased or reduced through member startup, shut down, or failure.| +|-spark.local.dir|Directory to use for "scratch" space in SnappyData, including map output files and RDDs that get stored on disk. This should be on a fast, local disk in your system. It can also be a comma-separated list of multiple directories on different disks.| |-thrift-ssl|Specifies if you want to enable or disable SSL. Values: true or false| |-thrift-ssl-properties|Comma-separated SSL properties including:
`protocol`: default "TLS",
`enabled-protocols`: enabled protocols separated by ":"
`cipher-suites`: enabled cipher suites separated by ":"
`client-auth`=(true or false): if client also needs to be authenticated
`keystore`: path to key store file
`keystore-type`: the type of key-store (default "JKS")
`keystore-password`: password for the key store file
`keymanager-type`: the type of key manager factory
`truststore`: path to trust store file
`truststore-type`: the type of trust-store (default "JKS")
`truststore-password`: password for the trust store file
`trustmanager-type`: the type of trust manager factory
| @@ -177,7 +191,7 @@ LEAD_STARTUP_OPTIONS=”$SECURITY_ARGS” ## Configuring SnappyData Smart Connector -Spark applications run as independent sets of processes on a cluster, coordinated by the SparkContext object in your main program (called the driver program). In Smart connector mode, a Spark application connects to SnappyData cluster to store and process data. SnappyData currently works with Spark version 2.1.1. To work with SnappyData cluster, a Spark application has to set the `snappydata.connection` property while starting. +Spark applications run as independent sets of processes on a cluster, coordinated by the SparkContext object in your main program (called the driver program). In Smart connector mode, a Spark application connects to SnappyData cluster to store and process data. SnappyData currently works with Spark version 2.1.1. To work with SnappyData cluster, a Spark application must set the `snappydata.connection` property while starting. | Property |Description | |--------|--------| @@ -219,3 +233,19 @@ log4j.logger.org.apache.spark.scheduler.TaskSetManager=DEBUG ``` !!! Note For a set of applicable class names and default values see the file **conf/log4j.properties.template**, which can be used as a starting point. Consult the [log4j 1.2.x documentation](http://logging.apache.org/log4j/) for more details on the configuration file. + + +## Auto-Configuring Off-Heap Memory Size + +Off-Heap memory size is auto-configured by default in the following scenarios: + +* **When the lead, locator, and server are setup on different host machines:**
+ In this case, off-heap memory size is configured by default for the host machines with the server setup. The total size of heap and off-heap memory does not exceed more than 75% of the total RAM. For example, if the RAM is greater than 8GB, the heap memory is between 4-8 GB and the remaining becomes the off-heap memory. + + +* **When leads and one of the server node are on the same host:**
+In this case, off-heap memory size is configured by default and is adjusted based on the number of leads that are present. The total size of heap and off-heap memory does not exceed more than 75% of the total RAM. However, here the heap memory is the total heap size of the server as well as that of the lead. + +!!! Note + The off-heap memory size is not auto-configured when the heap memory and the off-heap memory are explicitly configured through properties or when multiple servers are on the same host machine. + diff --git a/docs/configuring_cluster/property_description.md b/docs/configuring_cluster/property_description.md index 81503e6a30..ab976d7ed8 100644 --- a/docs/configuring_cluster/property_description.md +++ b/docs/configuring_cluster/property_description.md @@ -6,6 +6,7 @@ The following list of commonly used properties can be set to configure the clust |-|-|-| |-bind-address|IP address on which the member is bound. The default behavior is to bind to all local addresses.|Server
Lead
Locator| |-classpath|Location of user classes required by the SnappyData Server.
This path is appended to the current classpath.|Server
Lead
Locator| +|-client-port| The port that the network controller listens for client connections in the range of 1 to 65535. The default value is 1527.|Locator
Server| |-critical-heap-percentage|Sets the Resource Manager's critical heap threshold in percentage of the old generation heap, 0-100.
If you set `-heap-size`, the default value for `critical-heap-percentage` is set to 95% of the heap size.
Use this switch to override the default.
When this limit is breached, the system starts canceling memory-intensive queries, throws low memory exceptions for new SQL statements, and so forth, to avoid running out of memory.|Server
Lead| |-critical-off-heap-percentage|Sets the critical threshold for off-heap memory usage in percentage, 0-100.
When this limit is breached, the system starts canceling memory-intensive queries, throws low memory exceptions for new SQL statements, and so forth, to avoid running out of off-heap memory.|Server| |-dir|Working directory of the member that contains the SnappyData Server status file and the default location for the log file, persistent files, data dictionary, and so forth (defaults to the current directory).| Server
Lead
Locator
| @@ -14,25 +15,32 @@ The following list of commonly used properties can be set to configure the clust |-heap-size| Sets the maximum heap size for the Java VM, using SnappyData default resource manager settings.
For example, -heap-size=1GB.
If you use the `-heap-size` option, by default SnappyData sets the critical-heap-percentage to 95% of the heap size, and the `eviction-heap-percentage` to 85.5% of the `critical-heap-percentage`.
SnappyData also sets resource management properties for eviction and garbage collection if they are supported by the JVM. |Server
Lead
Locator| |-J|JVM option passed to the spawned SnappyData server JVM.
For example, use -J-Xmx1GB to set the JVM heap to 1GB.|Server
Lead
Locator| |-J-Dgemfirexd.hostname-for-clients|Set the IP address or host name that this server/locator sends to JDBC/ODBC/thrift clients to use for connection. The default value causes the client-bind-address to be given to clients. This value can be different from client-bind-address for cases where locators, servers are behind a NAT firewall (AWS for example) where client-bind-address needs to be a private one that gets exposed to clients outside the firewall as a different public address specified by this property. In many cases this is handled by hostname translation itself, i.e. hostname used in client-bind-address resolves to internal IP address from inside but to public IP address from outside, but for other cases this property will be required.|Server| -|-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.| -|-J-Dsnappydata.RESTRICT_TABLE_CREATION|Applicable when security is enabled in the cluster. If true, users cannot execute queries (including DDLs and DMLs) even in their default or own schema unless cluster admin explicitly grants them the required permissions using GRANT command. Default is false. |Server
Lead
Locator| -|jobserver.waitForInitialization|When this property is set to **true**, the cluster startup waits for the Spark jobserver to be fully initialized before marking the lead node as **RUNNING**. The default is **false**.|| -|-locators|List of locators as comma-separated host:port values used to communicate with running locators in the system and thus discover other peers of the distributed system.
The list must include all locators in use and must be configured consistently for every member of the distributed system.|Server
Lead
Locator| +|-J-Dsnappydata.enable-rls|Enables the system for row level security when set to true. By default this is off. If this property is set to true, then the Smart Connector access to SnappyData fails.|Server
Lead
Locator +|-J-Dsnappydata.RESTRICT_TABLE_CREATION|Applicable when security is enabled in the cluster. If true, users cannot execute queries (including DDLs and DMLs) even in their default or own schema unless cluster admin explicitly grants them the required permissions using GRANT command. The default is false. |Server
Lead
Locator| +|jobserver.waitForInitialization|When this property is set to true, the cluster startup waits for the Spark jobserver to be fully initialized before marking the lead node as **RUNNING**. The default is false.|Lead| +|-locators|List of locators as comma-separated host:port values used to communicate with running locators in the system and thus discover other peers of the distributed system.
The list must include all locators in use and must be configured consistently for every member of the distributed system. This property should be configured for all the nodes in the respective configuration files, if there are multiple locators.|Server
Lead
Locator| |-log-file|Path of the file to which this member writes log messages (default is snappy[member].log in the working directory. For example, **snappylocator.log**, **snappyleader.log**,**snappyserver.log**. In case logging is set via log4j, the default log file is **snappydata.log** for each of the SnappyData member.)|Server
Lead
Locator| -|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is 0 (OFF_HEAP is not used by default)|Server
Lead| -|-member-timeout|Uses the member-timeout server configuration, specified in milliseconds, to detect the abnormal termination of members. The configuration setting is used in two ways:
1) First, it is used during the UDP heartbeat detection process. When a member detects that a heartbeat datagram is missing from the member that it is monitoring after the time interval of 2 * the value of member-timeout, the detecting member attempts to form a TCP/IP stream-socket connection with the monitored member as described in the next case.
2) The property is then used again during the TCP/IP stream-socket connection. If the suspected process does not respond to the are you alive datagram within the time period specified in member-timeout, the membership coordinator sends out a new membership view that notes the member's failure.
Valid values are in the range 1000-600000 milliseconds.|Server
Locator
Lead| +|-memory-size|Specifies the total memory that can be used by the node for column storage and execution in off-heap. The default value is either 0 or it gets auto-configured in [specific scenarios](../configuring_cluster/configuring_cluster.md#autoconfigur_offheap). |Server
Lead| +|-member-timeout|Uses the member-timeout server configuration, specified in milliseconds, to detect the abnormal termination of members. The configuration setting is used in two ways:
1) First, it is used during the UDP heartbeat detection process. When a member detects that a heartbeat datagram is missing from the member that it is monitoring after the time interval of 2 * the value of member-timeout, the detecting member attempts to form a TCP/IP stream-socket connection with the monitored member as described in the next case.
2) The property is then used again during the TCP/IP stream-socket connection. If the suspected process does not respond to the are you alive datagram within the time period specified in member-timeout, the membership coordinator sends out a new membership view that notes the member's failure.
Valid values are in the range 1000-600000 milliseconds.|Server
Lead
Locator| |-peer-discovery-address|Use this as value for the port in the "host:port" value of "-locators" property |Locator| |-peer-discovery-port|Port on which the locator listens for peer discovery (includes servers as well as other locators).
Valid values are in the range 1-65535, with a default of 10334.|Locator| |-rebalance|Triggers a rebalancing operation for all partitioned tables in the system.
The system always tries to satisfy the redundancy of all partitioned tables on new member startup regardless of this option.|Server| -|-spark.sql.codegen.cacheSize|Size of the generated code cache. This effectively controls the maximum number of query plans whose generated code (Classes) is cached. Default is 2000. |Lead| -|-spark.jobserver.port|The port on which to run the jobserver. Default port is 8090.|| -|-spark.jobserver.bind-address|The address on which the jobserver listens. Default address is 0.0.0.|| -|-spark.jobserver.job-result-cache-size|The number of job results to keep per JobResultActor/context. The default is 5000.|| -|-spark.jobserver.max-jobs-per-context|The number of jobs that can be run simultaneously in the context. The Default is 8.|| |-spark.driver.maxResultSize|Limit of the total size of serialized results of all partitions for each action (e.g. collect). The value should be at least 1MB or 0 for unlimited. Jobs will be aborted if the total size of results is above this limit. Having a high limit may cause out-of-memory errors in the lead. The default max size is 1GB. |Lead| |-spark.executor.cores|The number of cores to use on each server. |Lead| -|-spark.local.dir|Directory to use for "scratch" space in SnappyData, including map output files and RDDs that get stored on disk. This should be on a fast, local disk in your system. It can also be a comma-separated list of multiple directories on different disks.|Lead| +|spark.context-settings.num-cpu-cores| The number of cores that can be allocated. The default is 4. |Lead| +|spark.context-settings.memory-per-node| The executor memory per node (-Xmx style. For example: 512m, 1G). The default is 512m. |Lead| +|spark.context-settings.streaming.batch_interval| The batch interval for Spark Streaming contexts in milliseconds. The default is 1000.|Lead| +|spark.context-settings.streaming.stopGracefully| If set to true, the streaming stops gracefully by waiting for the completion of processing of all the received data. The default is true.|Lead| +|spark.context-settings.streaming.stopSparkContext| if set to true, the SparkContext is stopped along with the StreamingContext. The default is true. |Lead| +|-spark.jobserver.bind-address|The address on which the jobserver listens. Default address is 0.0.0.|Lead| +|-spark.jobserver.job-result-cache-size|The number of job results to keep per JobResultActor/context. The default is 5000.|Lead| +|-spark.jobserver.max-jobs-per-context|The number of jobs that can be run simultaneously in the context. The default is 8.|Lead| +|-spark.jobserver.port|The port on which to run the jobserver. Default port is 8090.|Lead| +|-spark.local.dir|Directory to use for "scratch" space in SnappyData, including map output files and RDDs that get stored on disk. This should be on a fast, local disk in your system. It can also be a comma-separated list of multiple directories on different disks.|Lead
Server| |-spark.network.timeout|The default timeout for all network interactions while running queries.|Lead| +|-spark.sql.codegen.cacheSize|Size of the generated code cache. This effectively controls the maximum number of query plans whose generated code (Classes) is cached. The default is 2000. |Lead| +|-spark.ui.port|Port for your SnappyData Pulse, which shows tables, memory and workload data. The default is 5050|Lead| +|-thrift-ssl|Specifies if you want to enable or disable SSL. Values are true or false.| |-thrift-ssl-properties|Comma-separated SSL properties including:
`protocol`: default "TLS",
`enabled-protocols`: enabled protocols separated by ":"
`cipher-suites`: enabled cipher suites separated by ":"
`client-auth`=(true or false): if client also needs to be authenticated
`keystore`: Path to key store file
`keystore-type`: The type of key-store (default "JKS")
`keystore-password`: Password for the key store file
`keymanager-type`: The type of key manager factory
`truststore`: Path to trust store file
`truststore-type`: The type of trust-store (default "JKS")
`truststore-password`: Password for the trust store file
`trustmanager-type`: The type of trust manager factory
|Server| Other than the above properties, you can also refer the [Configuration Parameters section](/reference/configuration_parameters/config_parameters.md#property-names) for properties that are used in special cases. @@ -58,15 +66,14 @@ node-l -heap-size=4096m -spark.ui.port=9090 -locators=node-b:8888,node-a:9999 -s | Property | Description| |--------|--------| -|-snappydata.column.batchSize |The default size of blocks to use for storage in SnappyData column and store. When inserting data into the column storage this is the unit (in bytes or k/m/g suffixes for unit) that is used to split the data into chunks for efficient storage and retrieval.
This property can also be set for each table in the `create table` DDL. Maximum allowed size is 2GB. Default is 24m.| -|-snappydata.column.maxDeltaRows|The maximum number of rows that can be in the delta buffer of a column table. The size of delta buffer is already limited by `ColumnBatchSize` property, but this allows a lower limit on the number of rows for better scan performance. So the delta buffer is rolled into the column store whichever of `ColumnBatchSize` and this property is hit first. It can also be set for each table in the `create table` DDL, else this setting is used for the `create table`| +|-snappydata.column.batchSize |The default size of blocks to use for storage in SnappyData column and store. When inserting data into the column storage this is the unit (in bytes or k/m/g suffixes for unit) that is used to split the data into chunks for efficient storage and retrieval.
This property can also be set for each table in the `create table` DDL. Maximum allowed size is 2GB. The default is 24m.| +|-snappydata.column.maxDeltaRows|The maximum number of rows that can be in the delta buffer of a column table. The size of the delta buffer is already limited by `ColumnBatchSize` property, but this allows a lower limit on the number of rows for better scan performance. So the delta buffer is rolled into the column store whichever of `ColumnBatchSize` and this property is hit first. It can also be set for each table in the `create table` DDL, else this setting is used for the `create table`| |-snappydata.sql.hashJoinSize|The join would be converted into a hash join if the table is of size less than the `hashJoinSize`. The limit specifies an estimate on the input data size (in bytes or k/m/g/t suffixes for unit). The default value is 100MB.| -|-snappydata.sql.hashAggregateSize|Aggregation uses optimized hash aggregation plan but one that does not overflow to disk and can cause OOME if the result of aggregation is large. The limit specifies the input data size (in bytes or k/m/g/t suffixes for unit) and not the output size. Set this only if there are queries that can return large number of rows in aggregation results. The default value is set to 0 which means, no limit is set on the size, so the optimized hash aggregation is always used.| +|-snappydata.sql.hashAggregateSize|Aggregation uses optimized hash aggregation plan but one that does not overflow to disk and can cause OOME if the result of aggregation is large. The limit specifies the input data size (in bytes or k/m/g/t suffixes for unit) and not the output size. Set this only if there are queries that can return a large number of rows in aggregation results. The default value is set to 0 which means, no limit is set on the size, so the optimized hash aggregation is always used.| |-snappydata.sql.planCacheSize|Number of query plans that will be cached.| |-spark.sql.autoBroadcastJoinThreshold|Configures the maximum size in bytes for a table that is broadcast to all server nodes when performing a join. By setting this value to **-1** broadcasting can be disabled. | -|-snappydata.sql.hashJoinSize|The join would be converted into a hash join if the table is of a size that is less than the **hashJoinSize**. The limit specifies an estimate on the input data size (in bytes or k/m/g/t suffixes for a unit). The default value is 100MB.| -|-snappydata.linkPartitionsToBuckets|When this property is set to **true**, each bucket is always treated as a separate partition in column/row table scans. When this is set to **false**, SnappyData creates only as many partitions as executor cores by clubbing multiple buckets into each partition when possible. The default is **false**.| -|-snappydata.preferPrimaries|Use this property to configure your preference to use primary buckets in queries. This reduces the scalability of queries in the interest of reduced memory usage for secondary buckets. The default is **false**.| +|-snappydata.linkPartitionsToBuckets|When this property is set to true, each bucket is always treated as a separate partition in column/row table scans. When this is set to false, SnappyData creates only as many partitions as executor cores by clubbing multiple buckets into each partition when possible. The default is false.| +|-snappydata.preferPrimaries|Use this property to configure your preference to use primary buckets in queries. This reduces the scalability of queries in the interest of reduced memory usage for secondary buckets. The default is false.| |-snappydata.sql.partitionPruning|Use this property to set/unset the partition pruning of queries.| |-snappydata.sql.tokenize|Use this property to enable/disable tokenization.| |snappydata.cache.putIntoInnerJoinResultSize| Use this property with extreme limits such as 1K and 10GB. The default is 100 MB.| diff --git a/docs/howto/connect_using_odbc_driver.md b/docs/howto/connect_using_odbc_driver.md index 102df9c2e7..9462f07c81 100644 --- a/docs/howto/connect_using_odbc_driver.md +++ b/docs/howto/connect_using_odbc_driver.md @@ -25,9 +25,9 @@ To download and install the ODBC driver: | Version | ODBC Driver | |--------|--------| - |32-bit for 32-bit platform|snappydata-1.0.0-odbc32.zip| - |32-bit for 64-bit platform|snappydata-1.0.0-odbc32_64.zip| - |64-bit for 64-bit platform|snappydata-1.0.0-odbc64.zip| + |32-bit for 32-bit platform|snappydata-1.0.2-odbc32.zip| + |32-bit for 64-bit platform|snappydata-1.0.2-odbc32_64.zip| + |64-bit for 64-bit platform|snappydata-1.0.2-odbc64.zip| 4. Double-click on the **SnappyDataODBCDriverInstaller.msi** file, and follow the steps to complete the installation. diff --git a/docs/howto/export_hdfs.md b/docs/howto/export_hdfs.md index 869a9b91f2..74d9c13a58 100644 --- a/docs/howto/export_hdfs.md +++ b/docs/howto/export_hdfs.md @@ -31,7 +31,7 @@ Or by using APIs (as a part of SnappyData job). Refer to [How to Run Spark Code // create a DataFrame using parquet val df2 = snappySession.read.parquet("hdfs://127.0.0.1:9000/customer") // insetert the data into table -df2.write.mode(SaveMode.Append)saveAsTable("APP.CUSTOMER") +df2.write.mode(SaveMode.Append).saveAsTable("APP.CUSTOMER") ``` diff --git a/docs/howto/load_data_from_external_data_stores.md b/docs/howto/load_data_from_external_data_stores.md index 4b68ff672f..36c15b501b 100644 --- a/docs/howto/load_data_from_external_data_stores.md +++ b/docs/howto/load_data_from_external_data_stores.md @@ -22,7 +22,7 @@ CREATE TABLE CUSTOMER using column options() as (select * from CUSTOMER_STAGING_ The example below demonstrates how you can read CSV files from HDFS using an API: ```pre -val dataDF=snc.read.option("header","true").csv ("../../quickstart/src/main/resources/customer_with_headers.csv") +val dataDF=snc.read.option("header","true").csv ("hdfs://namenode-uri:port/path/to/customer_with_headers.csv") // Drop table if it exists snc.sql("drop table if exists CUSTOMER") @@ -36,7 +36,7 @@ dataDF.write.format("column").saveAsTable("CUSTOMER") The example below demonstrates how you can load and enrich CSV Data from HDFS: ```pre val dataDF = snappy.read.option("header", "true") - .csv("../examples/src/main/resources/customer_with_headers.csv") + .csv("hdfs://namenode-uri:port/path/to/customers.csv") // Drop table if it exists and create it with only required fields snappy.sql("drop table if exists CUSTOMER") diff --git a/docs/howto/start_snappy_cluster.md b/docs/howto/start_snappy_cluster.md index 784daae39a..db65181cb8 100644 --- a/docs/howto/start_snappy_cluster.md +++ b/docs/howto/start_snappy_cluster.md @@ -46,7 +46,6 @@ To start the cluster on multiple hosts: !!! Note It is recommended that you set up passwordless SSH on all hosts in the cluster. Refer to the documentation for more details on [installation](../install/install_on_premise.md) and [cluster configuration](../configuring_cluster/configuring_cluster.md). - ## Starting Individual Components Instead of starting SnappyData cluster using the `snappy-start-all.sh` script, individual components can be started on a system locally using the following commands: @@ -62,4 +61,4 @@ $ ./bin/snappy server start -dir=/node-b/server1 -locators=localhost[10334] -h $ ./bin/snappy leader start -dir=/node-c/lead1 -locators=localhost[10334] -spark.executor.cores=32 ``` !!!Note - The path mentioned for `-dir` should exist. Otherwise, the command will fail with **FileNotFoundException**. + The path mentioned for `-dir` should exist. Otherwise, the command will fail with **FileNotFoundException**. \ No newline at end of file diff --git a/docs/howto/stop_snappy_cluster.md b/docs/howto/stop_snappy_cluster.md index 8544ea0f36..2ba360f693 100644 --- a/docs/howto/stop_snappy_cluster.md +++ b/docs/howto/stop_snappy_cluster.md @@ -12,8 +12,7 @@ The SnappyData Locator has stopped. ``` !!! Note Ensure that all write operations on column table have finished execution when you stop a cluster, else it can lead to a partial write. - - + ## Stopping Individual Components Instead of stopping the SnappyData cluster using the `snappy-stop-all.sh` script, individual components can be stopped on a system locally using the following commands: @@ -26,3 +25,51 @@ $ ./bin/snappy locator stop -dir=/node-a/locator1 $ ./bin/snappy server stop -dir=/node-b/server1 $ ./bin/snappy leader stop -dir=/node-c/lead1 ``` + + + + diff --git a/docs/install/building_from_source.md b/docs/install/building_from_source.md index 7dd3af4b89..613b7db045 100644 --- a/docs/install/building_from_source.md +++ b/docs/install/building_from_source.md @@ -101,12 +101,14 @@ The default build directory is _build-artifacts/scala-2.11_ for projects. An exc The usual Gradle test run targets (_test_, _check_) work as expected for JUnit tests. Separate targets have been provided for running Scala tests (_scalaTest_) while the _check_ target runs both the JUnit and ScalaTests. One can run a single Scala test suite class with _singleSuite_ option while running a single test within some suite works with the `--tests` option: ```pre -> ./gradlew core:scalaTest -PsingleSuite=**.ColumnTableTest # run all tests in the class -> ./gradlew core:scalaTest \ +> ./gradlew snappy-core:scalaTest -PsingleSuite=**.ColumnTableTest # run all tests in the class +> ./gradlew snappy-core:scalaTest \ > --tests "Test the creation/dropping of table using SQL" # run a single test (use full name) ``` Running individual tests within some suite works using the `--tests` argument. +All ScalaTest build targets can be found by running the following command (case sensitive): +`./gradlew tasks --all | grep scalaTest` ## Setting up IntelliJ IDEA with Gradle diff --git a/docs/install/system_requirements.md b/docs/install/system_requirements.md index 18b2708a3f..7d42fab440 100644 --- a/docs/install/system_requirements.md +++ b/docs/install/system_requirements.md @@ -55,15 +55,15 @@ Requirements for each host: ## VSD Requirements - Install 32-bit libraries on 64-bit Linux:
- "yum install glibc.i686 libX11.i686" on RHEL/CentOS
- "apt-get install libc6:i386 libx11-6:i386" on Ubuntu/Debian like systems
+ `yum install glibc.i686 libX11.i686` on RHEL/CentOS
+ `apt-get install libc6:i386 libx11-6:i386` on Ubuntu/Debian like systems
- Locally running X server. For example, an X server implementation like, XQuartz for Mac OS, Xming for Windows OS, and Xorg which is installed by default for Linux systems. ## Python Integration using pyspark - The Python pyspark module has the same requirements as in Apache Spark. The numpy package is required by many modules of pyspark including the examples shipped with SnappyData. On recent Red Hat based systems, it can be installed using `sudo yum install numpy` or `sudo yum install python2-numpy` commands. Whereas, on Debian/Ubuntu based systems, you can install using the `sudo apt-get install python-numpy` command. -- Some of the python APIs can use SciPy to optimize some algorithms (in linalg package), and some others need Pandas. On recent Red Hat based systems SciPy can be installed using `sudo yum install scipy` command. Whereas, on Debian/Ubuntu based systems you can install using the `sudo apt-get install python-scipy` command.. Likewise, Pandas on recent Red Hat based systems can be installed using `sudo yum installed python-pandas` command, while on Debian/Ubuntu based systems it can be installed using the `sudo apt-get install python-pandas` command. +- Some of the python APIs can use SciPy to optimize some algorithms (in linalg package), and some others need Pandas. On recent Red Hat based systems SciPy can be installed using `sudo yum install scipy` command. Whereas, on Debian/Ubuntu based systems you can install using the `sudo apt-get install python-scipy` command. Likewise, Pandas on recent Red Hat based systems can be installed using `sudo yum installed python-pandas` command, while on Debian/Ubuntu based systems it can be installed using the `sudo apt-get install python-pandas` command. - On Red Hat based systems, some of the above Python packages may be available only after enabling the **EPEL** repository. If these are not available in the repositories for your OS version or if using **EPEL** is not an option, then you can use **pip**. Refer to the respective project documentation for details and alternative options such as Anaconda. diff --git a/docs/programming_guide/spark_jdbc_connector.md b/docs/programming_guide/spark_jdbc_connector.md index e6f7309039..c655eaab3d 100644 --- a/docs/programming_guide/spark_jdbc_connector.md +++ b/docs/programming_guide/spark_jdbc_connector.md @@ -9,7 +9,7 @@ Spark SQL supports reading and writing to databases using a built-in **JDBC data All you need is a JDBC driver from the database vendor. Likewise, applications can use the Spark [DataFrameWriter](/reference/API_Reference/apireference_guide.md#dataframewriter) to insert, append, or replace a dataset in the database. !!!Note -The usage model for the Spark JDBC data source is described [here](https://spark.apache.org/docs/2.1.1/sql-programming-guide.html#jdbc-to-other-databases). We strongly recommend you to go through this section in case you are not familiar with how Spark works with data sources. + The usage model for the Spark JDBC data source is described [here](https://spark.apache.org/docs/2.1.1/sql-programming-guide.html#jdbc-to-other-databases). We strongly recommend you to go through this section in case you are not familiar with how Spark works with data sources. ### Pushing Entire Query into the Database When Spark queries are executed against external data sources, the current Spark model can only push down filters and projections in the query down to the database. If you are running an expensive aggregation on a large data set, then the entire data set is fetched into the Spark partitions, and the query is executed inside your Spark cluster. diff --git a/docs/quickstart/snappydataquick_start.md b/docs/quickstart/snappydataquick_start.md index a393f5306c..0ec57ed31e 100644 --- a/docs/quickstart/snappydataquick_start.md +++ b/docs/quickstart/snappydataquick_start.md @@ -133,7 +133,7 @@ SnappyData contains various quickstart scripts that can be used to run some basi ./bin/snappy connect client '127.0.0.1:1527'; - run quickstart/scripts/create_and_load_column_table.sql; + RUN 'quickstart/scripts/create_and_load_column_table.sql'; # Use the following command to view the details of the external table. describe staging_airline; @@ -185,18 +185,17 @@ You can also try the following: * **Create and load a row table:** - run ./quickstart/scripts/create_and_load_row_table.sql; + RUN './quickstart/scripts/create_and_load_row_table.sql'; * **View the status of the system:** - run ./quickstart/scripts/status_queries.sql; + RUN './quickstart/scripts/status_queries.sql'; ## Create a Column Table Using an External Table Similarly as the quickstart scripts, you can try to create an external table named staging_airline to load the formatted data from a airlineParquetData file with inferSchema option as true. Later, you can create a column table named airline and pull data from the external table into this table. After pulling in the data, you can check the number of records in the table. - CREATE EXTERNAL TABLE STAGING_AIRLINE - USING parquet OPTIONS(path '../../quickstart/data/airlineParquetData', inferSchema 'true'); + CREATE EXTERNAL TABLE STAGING_AIRLINE USING parquet OPTIONS(path '../../quickstart/data/airlineParquetData', inferSchema 'true'); CREATE TABLE AIRLINE2 USING column AS (SELECT * FROM STAGING_AIRLINE); diff --git a/docs/reference/command_line_utilities/modify_disk_store.md b/docs/reference/command_line_utilities/modify_disk_store.md new file mode 100644 index 0000000000..93aef166dc --- /dev/null +++ b/docs/reference/command_line_utilities/modify_disk_store.md @@ -0,0 +1,38 @@ +# modify-disk-store + + +Modifies the content stored in a disk store. + +!!! Caution + This operation writes to the disk store files. Hence you must use this utility cautiously. + +## Syntax + +**For secured cluster** + +``` +Snappy>create region --name=regionName --type=PARTITION_PERSISTENT_OVERFLOW +``` + +**For non-secured cluster** + +The following table describes the options used for `snappy modify-disk-store`: + +| Items | Description | +|--------|--------| +| -region | Specify the name of the region. | +| -remove | This option removes the region from the disk store. All the data stored in the disk store for this region will no longer exist if you use this option. | +| -statisticsEnabled | Enables the region's statistics. Values are true or false. | + +!!! Note + The name of the disk store, the directories its files are stored in, and the region to target are all required arguments. + +## Description + +## Examples + +**Secured cluster** + +**Non-secured cluster** + + diff --git a/docs/reference/sql_reference/create-table.md b/docs/reference/sql_reference/create-table.md index 35b3cbfec9..eb2c7c4e8d 100644 --- a/docs/reference/sql_reference/create-table.md +++ b/docs/reference/sql_reference/create-table.md @@ -1,6 +1,6 @@ # CREATE TABLE -**To Create Row/Column Table:** +Following is the syntax used to create a Row/Column table: ```pre CREATE TABLE [IF NOT EXISTS] table_name @@ -9,8 +9,9 @@ CREATE TABLE [IF NOT EXISTS] table_name OPTIONS ( COLOCATE_WITH 'table-name', // Default none PARTITION_BY 'column-name', // If not specified, replicated table for row tables, and partitioned internally for column tables. - BUCKETS 'num-partitions', // Default 8. Must be an integer. - REDUNDANCY 'num-of-copies' , // Must be an integer + BUCKETS 'num-partitions', // Default 128. Must be an integer. + COMPRESSION 'NONE', //By default COMPRESSION is 'ON'. + REDUNDANCY 'num-of-copies' , // Must be an integer. By default, REDUNDANCY is set to 0 (zero). '1' is recommended value. Maximum limit is '3' EVICTION_BY 'LRUMEMSIZE integer-constant | LRUCOUNT interger-constant | LRUHEAPPERCENT', PERSISTENCE 'ASYNCHRONOUS | ASYNC | SYNCHRONOUS | SYNC | NONE’, DISKSTORE 'DISKSTORE_NAME', //empty string maps to default diskstore @@ -23,7 +24,15 @@ CREATE TABLE [IF NOT EXISTS] table_name [AS select_statement]; ``` -Refer to these sections for more information on [Creating Sample Table](create-sample-table.md), [Creating External Table](create-external-table.md), [Creating Temporary Table](create-temporary-table.md), [Creating Stream Table](create-stream-table.md). +Refer to the following sections for: + +* [Creating Sample Table](create-sample-table.md) +* [Creating External Table](create-external-table.md) +* [Creating Temporary Table](create-temporary-table.md) +* [Creating Stream Table](create-stream-table.md). + + +## Column Definition The column definition defines the name of a column and its data type. @@ -49,10 +58,11 @@ column-definition-for-row-table: column-name column-data-type [ column-constrain [ column-constraint ] * ``` -Refer to the [identity](#id-columns) section for more information on GENERATED.
-Refer to the [constraint](#constraint) section for more information on table-constraint and column-constraint. +* Refer to the [identity](#id-columns) section for more information on GENERATED.
+* Refer to the [constraint](#constraint) section for more information on table-constraint and column-constraint. `column-data-type` +The following data types are supported: ```pre column-data-type: @@ -80,11 +90,33 @@ column-data-type: VARCHAR | ``` -Column tables can also use ARRAY, MAP and STRUCT types.
-Decimal and numeric has default precision of 38 and scale of 18.
-In this release, LONG is supported only for column tables. It is recommended to use BIGINT for row tables instead. +Column tables can also use **ARRAY**, **MAP** and **STRUCT** types. + +Decimal and numeric has default precision of 38 and scale of 18. + +## Using + +You can specify if you want to create a row table or a column table. If this is not specified, a row table is created by default. -If no option is specified, default values are provided. +## Options + +You can specify the following options when you create a table: + ++ [COLOCATE_WITH](#colocate-with) ++ [PARTITION_BY](#partition-by) ++ [BUCKETS](#buckets) ++ [COMPRESSION](#compress) ++ [REDUNDANCY](#redundancy) ++ [EVICTION_BY](#eviction-by) ++ [PERSISTENCE](#persistence) ++ [DISKSTORE](#diskstore) ++ [OVERFLOW](#overflow) ++ [EXPIRE](#expire) ++ [COLUMN_BATCH_SIZE](#column-batch-size) ++ [COLUMN_MAX_DELTA_ROWS](#column-max-delta-rows) + +!!!Note + If options are not specified, then the default values are used to create the table. @@ -94,17 +126,25 @@ The COLOCATE_WITH clause specifies a partitioned table with which the new partit `PARTITION_BY`
Use the PARTITION_BY {COLUMN} clause to provide a set of column names that determine the partitioning.
-If not specified, for row table (mentioned further for case of column table) it is a 'replicated row table'.
+If not specified, for row table (mentioned further for the case of column table) it is a 'replicated row table'.
Column and row tables support hash partitioning on one or more columns. These are specified as comma-separated column names in the PARTITION_BY option of the CREATE TABLE DDL or createTable API. The hashing scheme follows the Spark Catalyst Hash Partitioning to minimize shuffles in joins. If no PARTITION_BY option is specified for a column table, then, the table is still partitioned internally.
The default number of storage partitions (BUCKETS) is 128 in cluster mode for column and row tables, and 11 in local mode for column and partitioned row tables. This can be changed using the BUCKETS option in CREATE TABLE DDL or createTable API. `BUCKETS`
-The optional BUCKETS attribute specifies the fixed number of "buckets" to use for the partitioned row or column tables. Each data server JVM manages one or more buckets. A bucket is a container of data and is the smallest unit of partitioning and migration in the system. For instance, in a cluster of 5 nodes and bucket count of 25 would result in 5 buckets on each node. But, if you configured the reverse - 25 nodes and a bucket count of 5, only 5 data servers hosts all the data for this table. If not specified, the number of buckets defaults to 128. See [best practices](../../best_practices/optimizing_query_latency.md#partition-scheme) for more information. +The optional BUCKETS attribute specifies the fixed number of "buckets" to use for the partitioned row or column tables. Each data server JVM manages one or more buckets. A bucket is a container of data and is the smallest unit of partitioning and migration in the system. For instance, in a cluster of five nodes and a bucket count of 25 would result in 5 buckets on each node. But, if you configured the reverse - 25 nodes and a bucket count of 5, only 5 data servers hosts all the data for this table. If not specified, the number of buckets defaults to 128. See [best practices](../../best_practices/optimizing_query_latency.md#partition-scheme) for more information. For row tables, `BUCKETS` must be created with the `PARTITION_BY` clause, else an error is reported. + +`COMPRESSION`
+Column tables use compression of data by default. This reduces the total storage footprint for large tables. SnappyData column tables encode data for compression and hence require memory that is less than or equal to the on-disk size of the uncompressed data. By default, compression is on for column tables. To disable data compression, you can set the COMPRESSION option to `none` when you create a table. For example: +``` +CREATE TABLE AIRLINE USING column OPTIONS(compression 'none') AS (select * from STAGING_AIRLINE); +``` +See [best practices](../../best_practicesmemory_management/#estimating-memory-size-for-column-and-row-tables) for more information. + `REDUNDANCY`
-Use the REDUNDANCY clause to specify the number of redundant copies that should be maintained for each partition, to ensure that the partitioned table is highly available even if members fail. It is important to note that a redundancy of '1' implies two physical copies of data. By default, REDUNDANCY is set to 0 (zero). See [best practices](../../best_practices/optimizing_query_latency.md#redundancy) for more information. +Use the REDUNDANCY clause to specify the number of redundant copies that should be maintained for each partition, to ensure that the partitioned table is highly available even if members fail. It is important to note that redundancy of '1' implies two physical copies of data. By default, REDUNDANCY is set to 0 (zero). A REDUNDANCY value of '1' is recommended. A large value for REDUNDANCY clause has an adverse impact on performance, network usage, and memory usage. A maximum limit of '3' can be set for REDUNDANCY. See [best practices](../../best_practices/optimizing_query_latency.md#redundancy) for more information. `EVICTION_BY`
@@ -232,7 +272,7 @@ With this alternate form of the CREATE TABLE statement, you specify the column n If no column names are specified for the new table, then all the columns in the result of the query expression are used to create same-named columns in the new table, of the corresponding data type(s). If one or more column names are specified for the new table, the same number of columns must be present in the result of the query expression; the data types of those columns are used for the corresponding columns of the new table. -Note that only the column names and datatypes from the queried table are used when creating the new table. Additional settings in the queried table, such as partitioning, replication, and persistence, are not duplicated. You can optionally specify partitioning, replication, and persistence configuration settings for the new table and those settings need not match the settings of the queried table. +Note that only the column names and data types from the queried table are used when creating the new table. Additional settings in the queried table, such as partitioning, replication, and persistence, are not duplicated. You can optionally specify partitioning, replication, and persistence configuration settings for the new table and those settings need not match the settings of the queried table. ### Example: Create Table using Spark DataFrame API @@ -296,7 +336,7 @@ Column and table constraints include: * UNIQUE— Specifies that values in the column must be unique. NULL values are not allowed. -* FOREIGN KEY— Specifies that the values in the columns must correspond to values in referenced primary key or unique columns or that they are NULL.
If the foreign key consists of multiple columns and any column is NULL, then the whole key is considered NULL. SnappyData permits the insert no matter what is in the non-null columns. +* FOREIGN KEY— Specifies that the values in the columns must correspond to values in the referenced primary key or unique columns or that they are NULL.
If the foreign key consists of multiple columns and any column is NULL, then the whole key is considered NULL. SnappyData permits the insert no matter what is in the non-null columns. * CHECK— Specifies rules for values in a column, or specifies a wide range of rules for values when included as a table constraint. The CHECK constraint has the same format and restrictions for column and table constraints. Column constraints and table constraints have the same function; the difference is where you specify them. Table constraints allow you to specify more than one column in a PRIMARY KEY, UNIQUE, CHECK, or FOREIGN KEY constraint definition. diff --git a/docs/reference/sql_reference/select.md b/docs/reference/sql_reference/select.md index 52c64086c7..debd94e6c4 100755 --- a/docs/reference/sql_reference/select.md +++ b/docs/reference/sql_reference/select.md @@ -119,7 +119,7 @@ AGGREGATION Group by a set of expressions using one or more aggregate functions. Common built-in aggregate functions include count, avg, min, max, and sum. `ROLLUP`
-Create a grouping set at each hierarchical level of the specified expressions. For instance, For instance, GROUP BY a, b, c WITH ROLLUP is equivalent to GROUP BY a, b, c GROUPING SETS ((a, b, c), (a, b), (a), ()). The total number of grouping sets will be N + 1, where N is the number of group expressions. +Create a grouping set at each hierarchical level of the specified expressions. For instance, GROUP BY a, b, c WITH ROLLUP is equivalent to GROUP BY a, b, c GROUPING SETS ((a, b, c), (a, b), (a), ()). The total number of grouping sets will be N + 1, where N is the number of group expressions. `CUBE`
Create a grouping set for each possible combination of a set of the specified expressions. For instance, GROUP BY a, b, c WITH CUBE is equivalent to GROUP BY a, b, c GROUPING SETS ((a, b, c), (a, b), (b, c), (a, c), (a), (b), (c), ()). The total number of grouping sets will be 2^N, where N is the number of group expressions. diff --git a/mkdocs.yml b/mkdocs.yml index 6035d40ff4..275030bbfa 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,4 +1,4 @@ -site_name: SnappyData Documentation
v.1.0.2.1 +site_name: SnappyData Documentation v.1.0.2.1 site_url: http://www.snappydata.io site_description: Project documentation for SnappyData site_author: SnappyData Team From 296560340ea1adb10b1092da90bfe536bb790a4d Mon Sep 17 00:00:00 2001 From: Lizy Date: Wed, 6 Feb 2019 15:51:05 +0530 Subject: [PATCH 13/22] Corrected dead link. --- docs/reference/sql_reference/create-table.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/sql_reference/create-table.md b/docs/reference/sql_reference/create-table.md index eb2c7c4e8d..7e6478f4f3 100644 --- a/docs/reference/sql_reference/create-table.md +++ b/docs/reference/sql_reference/create-table.md @@ -140,7 +140,7 @@ Column tables use compression of data by default. This reduces the total storage ``` CREATE TABLE AIRLINE USING column OPTIONS(compression 'none') AS (select * from STAGING_AIRLINE); ``` -See [best practices](../../best_practicesmemory_management/#estimating-memory-size-for-column-and-row-tables) for more information. +See [best practices](../../best_practices/memory_management.md#estimating-memory-size-for-column-and-row-tables) for more information. `REDUNDANCY`
From ec944c874dbd4a6f8ec0358f8e3d52652741912f Mon Sep 17 00:00:00 2001 From: ahshahid Date: Wed, 6 Feb 2019 09:40:17 -0800 Subject: [PATCH 14/22] =?UTF-8?q?Fix=20for=20SNAP-2887.=20Checking=20for?= =?UTF-8?q?=20primary=20key=20columns=20also=20to=20identify=20=E2=80=A6?= =?UTF-8?q?=20(#1252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix for SNAP-2887. Checking for primary key columns also to identify handled filters --- .../org/apache/spark/sql/store/BugTest.scala | 55 ++++++++++++++++++- .../sql/execution/row/RowFormatRelation.scala | 3 +- 2 files changed, 55 insertions(+), 3 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index d278721bb7..9204d396c3 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -475,6 +475,59 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { } + test("Bug SNAP-2887") { + snc + var serverHostPort2 = TestUtil.startNetServer() + var conn = DriverManager.getConnection(s"jdbc:snappydata://$serverHostPort2") + var stmt = conn.createStatement() + val snappy = snc.snappySession + snappy.sql("drop table if exists portfolio") + snappy.sql(s"create table portfolio (cid int not null, sid int not null, " + + s"qty int not null,availQty int not null, subTotal int, tid int, " + + s"constraint portf_pk primary key (cid, sid))") + + val insertStr = s"insert into portfolio values (?, ?, ?, ?, ? , ?)" + val ps = conn.prepareStatement(insertStr) + for (i <- 1 until 101) { + ps.setInt(1, i % 10) + ps.setInt(2, i * 10) + ps.setInt(3, i) + ps.setInt(4, i) + ps.setInt(5, i) + ps.setInt(6, 10) + ps.executeUpdate() + } + val query = s"select * from portfolio where cid = ? and Sid = ? and tid = ?" + val qps = conn.prepareStatement(query) + for (i <- 0 until 11) { + qps.setInt(1, 8) + qps.setInt(2, 20) + qps.setInt(3, 10) + val rs = qps.executeQuery() + var count = 0 + while (rs.next()) { + count += 1 + } + assert(count == 0) + } + snappy.sql(s"create index portfolio_sid on portfolio (sId )") + + for (i <- 0 until 11) { + qps.setInt(1, 8) + qps.setInt(2, 20) + qps.setInt(3, 10) + val rs = qps.executeQuery() + var count = 0 + while (rs.next()) { + + count += 1 + } + assert(count == 0) + } + stmt.execute("drop index if exists portfolio_sid") + stmt.execute("drop table if exists portfolio") + } + test("SNAP-2718") { snc val path1 = getClass.getResource("/patients1000.csv").getPath @@ -504,6 +557,4 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { snc.sql("drop view patients_v") snc.sql("drop view careplans_v") } - - } diff --git a/core/src/main/scala/org/apache/spark/sql/execution/row/RowFormatRelation.scala b/core/src/main/scala/org/apache/spark/sql/execution/row/RowFormatRelation.scala index 4a9627259c..03209d5c5a 100644 --- a/core/src/main/scala/org/apache/spark/sql/execution/row/RowFormatRelation.scala +++ b/core/src/main/scala/org/apache/spark/sql/execution/row/RowFormatRelation.scala @@ -113,7 +113,8 @@ class RowFormatRelation( override def buildUnsafeScan(requiredColumns: Array[String], filters: Array[Expression]): (RDD[Any], Seq[RDD[InternalRow]]) = { - val handledFilters = filters.flatMap(ExternalStoreUtils.handledFilter(_, indexedColumns)) + val handledFilters = filters.flatMap(ExternalStoreUtils.handledFilter(_, indexedColumns + ++ pushdownPKColumns(filters)) ) val session = sqlContext.sparkSession.asInstanceOf[SnappySession] val rdd = connectionType match { case ConnectionType.Embedded => From 59115324b13cca548849455fc8d7230cfb40bf5b Mon Sep 17 00:00:00 2001 From: kneeraj Date: Fri, 8 Feb 2019 15:25:52 +0530 Subject: [PATCH 15/22] A --config directory can be passed to the snappy-start-all script (#1258) * A --config directory can be passed to the snappy-start-all script now to take config files from that folder instead of default conf folder. Please note log4j.properties file is still taken from the default conf folder. Will be fixed as part of SNAP-2911 --- cluster/sbin/snappy-leads.sh | 12 ++++++++++-- cluster/sbin/snappy-locators.sh | 13 +++++++++++-- cluster/sbin/snappy-servers.sh | 11 +++++++++-- cluster/sbin/snappy-start-all.sh | 15 ++++++++++++--- cluster/sbin/snappy-stop-all.sh | 15 ++++++++++++--- 5 files changed, 54 insertions(+), 12 deletions(-) diff --git a/cluster/sbin/snappy-leads.sh b/cluster/sbin/snappy-leads.sh index 518231174b..d0a36f7cfb 100755 --- a/cluster/sbin/snappy-leads.sh +++ b/cluster/sbin/snappy-leads.sh @@ -30,10 +30,18 @@ sbin="$(dirname "$(absPath "$0")")" . "$SNAPPY_HOME/bin/load-spark-env.sh" . "$SNAPPY_HOME/bin/load-snappy-env.sh" +CONF_DIR_OPT= +# Check if --config is passed as an argument. It is an optional parameter. +if [ "$1" == "--config" ] +then + CONF_DIR=$2 + CONF_DIR_OPT="--config $CONF_DIR" + shift 2 +fi # Launch the slaves if echo $@ | grep -qw start; then - "$sbin/snappy-nodes.sh" lead cd "$SNAPPY_HOME" \; "$sbin/snappy-lead.sh" "$@" $LEAD_STARTUP_OPTIONS + "$sbin/snappy-nodes.sh" lead $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-lead.sh" "$@" $LEAD_STARTUP_OPTIONS else - "$sbin/snappy-nodes.sh" lead cd "$SNAPPY_HOME" \; "$sbin/snappy-lead.sh" "$@" + "$sbin/snappy-nodes.sh" lead $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-lead.sh" "$@" fi diff --git a/cluster/sbin/snappy-locators.sh b/cluster/sbin/snappy-locators.sh index c7d1e304a4..0898928bf8 100755 --- a/cluster/sbin/snappy-locators.sh +++ b/cluster/sbin/snappy-locators.sh @@ -31,9 +31,18 @@ sbin="$(dirname "$(absPath "$0")")" . "$SNAPPY_HOME/bin/load-spark-env.sh" . "$SNAPPY_HOME/bin/load-snappy-env.sh" +CONF_DIR_OPT= +# Check if --config is passed as an argument. It is an optional parameter. +if [ "$1" == "--config" ] +then + CONF_DIR=$2 + CONF_DIR_OPT="--config $CONF_DIR" + shift 2 +fi + # Launch the slaves if echo $@ | grep -qw start; then - "$sbin/snappy-nodes.sh" locator cd "$SNAPPY_HOME" \; "$sbin/snappy-locator.sh" "$@" $LOCATOR_STARTUP_OPTIONS $ENCRYPT_PASSWORD_OPTIONS + "$sbin/snappy-nodes.sh" locator $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-locator.sh" "$@" $LOCATOR_STARTUP_OPTIONS $ENCRYPT_PASSWORD_OPTIONS else - "$sbin/snappy-nodes.sh" locator cd "$SNAPPY_HOME" \; "$sbin/snappy-locator.sh" "$@" + "$sbin/snappy-nodes.sh" locator $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-locator.sh" "$@" fi diff --git a/cluster/sbin/snappy-servers.sh b/cluster/sbin/snappy-servers.sh index 9c72c2baf0..3f4278ded4 100755 --- a/cluster/sbin/snappy-servers.sh +++ b/cluster/sbin/snappy-servers.sh @@ -41,9 +41,16 @@ elif [ "$1" = "-fg" -o "$1" = "--foreground" ]; then shift fi +# Check for conf dir specification +CONF_DIR_OPT= +if [ "$1" = "--config" ]; then + CONF_DIR_OPT="--config $2" + shift 2 +fi + # Launch the slaves if echo $@ | grep -qw start; then - "$sbin/snappy-nodes.sh" server $BACKGROUND cd "$SNAPPY_HOME" \; "$sbin/snappy-server.sh" "$@" $SERVER_STARTUP_OPTIONS + "$sbin/snappy-nodes.sh" server $BACKGROUND $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-server.sh" "$@" $SERVER_STARTUP_OPTIONS else - "$sbin/snappy-nodes.sh" server $BACKGROUND cd "$SNAPPY_HOME" \; "$sbin/snappy-server.sh" "$@" + "$sbin/snappy-nodes.sh" server $BACKGROUND $CONF_DIR_OPT cd "$SNAPPY_HOME" \; "$sbin/snappy-server.sh" "$@" fi diff --git a/cluster/sbin/snappy-start-all.sh b/cluster/sbin/snappy-start-all.sh index fac132cdeb..dc3c0950b8 100755 --- a/cluster/sbin/snappy-start-all.sh +++ b/cluster/sbin/snappy-start-all.sh @@ -36,6 +36,7 @@ fi BACKGROUND=-bg clustermode= +CONF_DIR_ARG= while (( "$#" )); do param="$1" @@ -47,6 +48,14 @@ while (( "$#" )); do -fg | --foreground) BACKGROUND=-fg ;; + -conf | --config) + conf_dir="$2" + if [ ! -d $conf_dir ] ; then + echo "Conf directory $conf_dir does not exist" + exit 1 + fi + CONF_DIR_ARG="--config $conf_dir" + shift ;; rowstore) clustermode="rowstore" ;; @@ -58,12 +67,12 @@ done # Start Locators -"$sbin"/snappy-locators.sh start $clustermode "$@" +"$sbin"/snappy-locators.sh $CONF_DIR_ARG start $clustermode "$@" # Start Servers -"$sbin"/snappy-servers.sh $BACKGROUND start $clustermode "$@" +"$sbin"/snappy-servers.sh $BACKGROUND $CONF_DIR_ARG start $clustermode "$@" # Start Leads if [ "$clustermode" != "rowstore" ]; then - "$sbin"/snappy-leads.sh start + "$sbin"/snappy-leads.sh $CONF_DIR_ARG start fi diff --git a/cluster/sbin/snappy-stop-all.sh b/cluster/sbin/snappy-stop-all.sh index 520f68863a..dcca58f772 100755 --- a/cluster/sbin/snappy-stop-all.sh +++ b/cluster/sbin/snappy-stop-all.sh @@ -32,6 +32,7 @@ sbin="$(dirname "$(absPath "$0")")" BACKGROUND=-fg clustermode= +CONF_DIR_ARG= while (( "$#" )); do param="$1" @@ -43,6 +44,14 @@ while (( "$#" )); do -fg | --foreground) BACKGROUND=-fg ;; + -conf | --config) + conf_dir="$2" + if [ ! -d $conf_dir ] ; then + echo "Conf directory $conf_dir does not exists" + exit 1 + fi + CONF_DIR_ARG="--config $conf_dir" + shift ;; rowstore) clustermode="rowstore" ;; @@ -54,11 +63,11 @@ done # Stop Leads if [ "$clustermode" != "rowstore" ]; then - "$sbin"/snappy-leads.sh stop + "$sbin"/snappy-leads.sh $CONF_DIR_ARG stop fi # Stop Servers -"$sbin"/snappy-servers.sh $BACKGROUND stop +"$sbin"/snappy-servers.sh $BACKGROUND $CONF_DIR_ARG stop # Stop locators -"$sbin"/snappy-locators.sh stop +"$sbin"/snappy-locators.sh $CONF_DIR_ARG stop From c0274fc62c8d328a0c1a562c6da9bb933aa8f907 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Fri, 8 Feb 2019 09:28:29 -0800 Subject: [PATCH 16/22] Snap 2237 (#1253) * added bug test for SNAP-2237 * Fixing SNAP-2237 by putting a resolution rule in SnappySessionState & AQPSessionState --- .../org/apache/spark/sql/store/BugTest.scala | 20 +++++++++++++++++++ .../sql/internal/SnappySessionState.scala | 19 +++++++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index 9204d396c3..ec797a68a5 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -557,4 +557,24 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { snc.sql("drop view patients_v") snc.sql("drop view careplans_v") } + + test("SNAP-2237") { + snc + snc.sql("drop table if exists test1") + snc.sql("create table test1 (col1_1 int, col1_2 int, col1_3 int, col1_4 string) " + + "using column ") + val insertDF = snc.range(50).selectExpr("id", "id*2", "id * 3", + "cast (id as string)") + insertDF.write.insertInto("test1") + snc.sql("select col1_2, sum(col1_1) as summ from test1 group by col1_2 " + + "order by sum(col1_1)").collect + snc.sql("select col1_2, sum(col1_1) as summ from test1 " + + "group by col1_2 order by summ").collect + snc.sql("select lower(col1_2) as x, " + + "sum(col1_1) as summ from test1 group by lower(col1_2) ").collect + snc.sql("select lower(col1_2) as x, sum(col1_1) as summ from test1 " + + "group by x").collect + snc.dropTable("test1") + } + } diff --git a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala index 5b65a4b72c..c89e615ce5 100644 --- a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala +++ b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala @@ -36,7 +36,7 @@ import org.apache.spark.internal.config.{ConfigBuilder, ConfigEntry, TypedConfig import org.apache.spark.sql._ import org.apache.spark.sql.catalyst.analysis import org.apache.spark.sql.catalyst.analysis.TypeCoercion.PromoteStrings -import org.apache.spark.sql.catalyst.analysis.{Analyzer, EliminateSubqueryAliases, NoSuchTableException, Star, UnresolvedRelation} +import org.apache.spark.sql.catalyst.analysis.{Analyzer, EliminateSubqueryAliases, NoSuchTableException, Star, UnresolvedAttribute, UnresolvedOrdinal, UnresolvedRelation} import org.apache.spark.sql.catalyst.expressions.{And, EqualTo, In, ScalarSubquery, _} import org.apache.spark.sql.catalyst.optimizer.{Optimizer, ReorderJoin} import org.apache.spark.sql.catalyst.planning.ExtractEquiJoinKeys @@ -123,6 +123,7 @@ class SnappySessionState(val snappySession: SnappySession) AnalyzeCreateTable(snappySession) :: new PreprocessTable(this) :: ResolveRelationsExtended :: + ResolveAliasInGroupBy :: new FindDataSourceTable(snappySession) :: DataSourceAnalysis(conf) :: AnalyzeMutableOperations(snappySession, analyzer) :: @@ -413,6 +414,22 @@ class SnappySessionState(val snappySession: SnappySession) } } + object ResolveAliasInGroupBy extends Rule[LogicalPlan] { + def apply(plan: LogicalPlan): LogicalPlan = plan resolveOperators { + case p if !p.childrenResolved => p + case Aggregate(groups, aggs, child) if aggs.forall(_.resolved) && + groups.exists(_.isInstanceOf[UnresolvedAttribute]) => + val newGroups = groups.map { + case u@UnresolvedAttribute(nameParts) if nameParts.length == 1 => + aggs.collectFirst { + case Alias(exp, name) if name.equalsIgnoreCase(nameParts.head) => + exp + }.getOrElse(u.failAnalysis("unresolved group by alias")) + } + Aggregate(newGroups, aggs, child) + case o => o + } + } object RowLevelSecurity extends Rule[LogicalPlan] { // Y combinator From 052a8f53165ca30f4fd866228ef31e1b6ae6eec9 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Fri, 8 Feb 2019 10:28:02 -0800 Subject: [PATCH 17/22] =?UTF-8?q?Fix=20for=20SNAP-2368,=20handling=20the?= =?UTF-8?q?=20case=20when=20SnappyDataBaseDialect=20is=20us=E2=80=A6=20(#1?= =?UTF-8?q?255)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix for SNAP-2368, handling the case when SnappyDataBaseDialect is used to determine table schema with the table name not containing schema name * enhanced bug test * added enhanced test for SNAP-2368. Added ignored bug test for SNAP-2901 --- .../org/apache/spark/sql/store/BugTest.scala | 83 ++++++++++++++++++- .../spark/sql/sources/jdbcExtensions.scala | 16 ++-- 2 files changed, 93 insertions(+), 6 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala index ec797a68a5..a9150b5bf3 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/BugTest.scala @@ -18,10 +18,16 @@ package org.apache.spark.sql.store import java.io.{BufferedReader, FileReader} import java.sql.{DriverManager, SQLException} +import java.util.Properties import com.pivotal.gemfirexd.TestUtil import io.snappydata.SnappyFunSuite import org.scalatest.BeforeAndAfterAll +import org.junit.Assert._ + + +import org.apache.spark.sql.{Row, SaveMode, SparkSession} +import org.apache.spark.sql.types.{StringType, StructField, StructType} class BugTest extends SnappyFunSuite with BeforeAndAfterAll { @@ -558,6 +564,82 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { snc.sql("drop view careplans_v") } + test("SNAP-2368") { + snc + try { + var serverHostPort2 = TestUtil.startNetServer() + var conn = DriverManager.getConnection(s"jdbc:snappydata://$serverHostPort2") + val schema = StructType(List(StructField("name", StringType, nullable = true))) + val data = Seq( + Row("abc"), + Row("def") + ) + val stmt = conn.createStatement() + val sparkSession = SparkSession.builder.appName("test"). + sparkContext(snc.sparkContext).getOrCreate() + val namesDF = sparkSession.createDataFrame(snc.sparkContext.parallelize(data), schema) + namesDF.createOrReplaceTempView("names") + sparkSession.table("names"). + write.mode(SaveMode.Overwrite).jdbc( + s"jdbc:snappydata://$serverHostPort2/", "names", new Properties()) + var rs = stmt.executeQuery("select tabletype from sys.systables where tablename = 'NAMES'") + rs.next() + var tableType = rs.getString(1) + assertEquals("T", tableType) + stmt.execute("drop table names") + rs = stmt.executeQuery("select tabletype from sys.systables where tablename = 'NAMES'") + assertFalse(rs.next()) + val props = new Properties() + props.put("createTableOptions", " using column options( buckets '13')") + props.put("isolationLevel", "NONE") + sparkSession.table("names"). + write.mode(SaveMode.Overwrite).jdbc( + s"jdbc:snappydata://$serverHostPort2/", "names", props) + + rs = stmt.executeQuery("select tabletype from sys.systables where tablename = 'NAMES'") + rs.next() + tableType = rs.getString(1) + assertEquals("C", tableType) + stmt.execute("drop table if exists test") + } finally { + TestUtil.stopNetServer + } + } + + ignore("SNAP-2910") { + snc + try { + var serverHostPort2 = TestUtil.startNetServer() + var conn = DriverManager.getConnection(s"jdbc:snappydata://$serverHostPort2") + val schema = StructType(List(StructField("name", StringType, nullable = true))) + val data = Seq( + Row("abc"), + Row("def") + ) + + val stmt = conn.createStatement() + + val sparkSession = SparkSession.builder.appName("test"). + sparkContext(snc.sparkContext).getOrCreate() + val namesDF = sparkSession.createDataFrame(snc.sparkContext.parallelize(data), schema) + namesDF.createOrReplaceTempView("names") + + val props = new Properties() + props.put("createTableOptions", " using column options( buckets '13')") + sparkSession.table("names"). + write.mode(SaveMode.Overwrite).jdbc( + s"jdbc:snappydata://$serverHostPort2/", "names", props) + + val rs = stmt.executeQuery("select tabletype from sys.systables where tablename = 'NAMES'") + rs.next() + val tableType = rs.getString(1) + assertEquals("C", tableType) + stmt.execute("drop table if exists test") + } finally { + TestUtil.stopNetServer + } + } + test("SNAP-2237") { snc snc.sql("drop table if exists test1") @@ -576,5 +658,4 @@ class BugTest extends SnappyFunSuite with BeforeAndAfterAll { "group by x").collect snc.dropTable("test1") } - } diff --git a/jdbc/src/main/scala/org/apache/spark/sql/sources/jdbcExtensions.scala b/jdbc/src/main/scala/org/apache/spark/sql/sources/jdbcExtensions.scala index 4499fdccb4..3cbbbd419f 100644 --- a/jdbc/src/main/scala/org/apache/spark/sql/sources/jdbcExtensions.scala +++ b/jdbc/src/main/scala/org/apache/spark/sql/sources/jdbcExtensions.scala @@ -179,13 +179,14 @@ object JdbcExtendedUtils extends Logging { val schemaName = if (dotIndex > 0) { table.substring(0, dotIndex) } else session match { - case None => conn.getSchema + case None if conn != null => conn.getSchema // get the current schema case Some(s) => s.catalog.currentDatabase + case None => "" } val tableName = if (dotIndex > 0) table.substring(dotIndex + 1) else table // hive meta-store is case-insensitive - (toUpperCase(schemaName), toUpperCase(tableName)) + (if (!schemaName.isEmpty) toUpperCase(schemaName) else schemaName, toUpperCase(tableName)) } private def getTableMetadataResultSet(schemaName: String, tableName: String, @@ -338,11 +339,16 @@ object JdbcExtendedUtils extends Logging { val (schema, tableName) = getTableWithSchema(table, conn = null, None) if (escapeQuotes) { val sb = new java.lang.StringBuilder(schema.length + tableName.length + 9) - sb.append("\\\"").append(schema).append("\\\".\\\"") - .append(tableName).append("\\\"").toString + if (!schema.isEmpty) { + sb.append("\\\"").append(schema).append("\\\".") + } + sb.append("\\\"").append(tableName).append("\\\"").toString } else { val sb = new java.lang.StringBuilder(schema.length + tableName.length + 5) - sb.append('"').append(schema).append("\".\"").append(tableName).append('"').toString + if (!schema.isEmpty) { + sb.append('"').append(schema).append("\".") + } + sb.append('"').append(tableName).append('"').toString } } From b54f6ad5527f89a6c318555f3405bec9e9e81bdb Mon Sep 17 00:00:00 2001 From: Yogesh Mahajan Date: Mon, 11 Feb 2019 03:58:32 -0800 Subject: [PATCH 18/22] SNAP-2467 (#1168) --- .../apache/spark/sql/SnappyBaseParser.scala | 1 + .../org/apache/spark/sql/SnappyContext.scala | 10 +- .../apache/spark/sql/SnappyDDLParser.scala | 29 ++++- .../org/apache/spark/sql/SnappyParser.scala | 15 +-- .../org/apache/spark/sql/SnappySession.scala | 11 +- .../org/apache/spark/sql/execution/ddl.scala | 7 +- .../spark/sql/row/JDBCMutableRelation.scala | 15 ++- .../spark/sql/sources/StoreStrategy.scala | 2 +- .../apache/spark/sql/sources/interfaces.scala | 2 +- .../apache/spark/sql/store/RowTableTest.scala | 121 ++++++++++++++++++ 10 files changed, 183 insertions(+), 30 deletions(-) diff --git a/core/src/main/scala/org/apache/spark/sql/SnappyBaseParser.scala b/core/src/main/scala/org/apache/spark/sql/SnappyBaseParser.scala index eb915ef145..fa915c8492 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappyBaseParser.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappyBaseParser.scala @@ -481,6 +481,7 @@ object SnappyParserConsts { final val COMMENT: Keyword = nonReservedKeyword("comment") final val CROSS: Keyword = nonReservedKeyword("cross") final val CURRENT_USER: Keyword = nonReservedKeyword("current_user") + final val DEFAULT: Keyword = nonReservedKeyword("default") final val DEPLOY: Keyword = nonReservedKeyword("deploy") final val DESCRIBE: Keyword = nonReservedKeyword("describe") final val DISABLE: Keyword = nonReservedKeyword("disable") diff --git a/core/src/main/scala/org/apache/spark/sql/SnappyContext.scala b/core/src/main/scala/org/apache/spark/sql/SnappyContext.scala index 61f76e8c6f..ddb3f4b94c 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappyContext.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappyContext.scala @@ -142,10 +142,11 @@ class SnappyContext protected[spark](val snappySession: SnappySession) * @param tableName * @param isAddColumn * @param column + * @param defaultValue */ def alterTable(tableName: String, isAddColumn: Boolean, - column: StructField): Unit = { - snappySession.alterTable(tableName, isAddColumn, column) + column: StructField, defaultValue: Option[String] = None): Unit = { + snappySession.alterTable(tableName, isAddColumn, column, defaultValue) } /** @@ -154,10 +155,11 @@ class SnappyContext protected[spark](val snappySession: SnappySession) * @param tableIdent * @param isAddColumn * @param column + * @param defaultValue */ private[sql] def alterTable(tableIdent: TableIdentifier, isAddColumn: Boolean, - column: StructField): Unit = { - snappySession.alterTable(tableIdent, isAddColumn, column) + column: StructField, defaultValue: Option[String]): Unit = { + snappySession.alterTable(tableIdent, isAddColumn, column, defaultValue) } /** diff --git a/core/src/main/scala/org/apache/spark/sql/SnappyDDLParser.scala b/core/src/main/scala/org/apache/spark/sql/SnappyDDLParser.scala index 7b7d31a990..1b1856af9d 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappyDDLParser.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappyDDLParser.scala @@ -29,6 +29,8 @@ import io.snappydata.{Constant, QueryHint} import org.parboiled2._ import shapeless.{::, HNil} +import org.apache.spark.deploy.SparkSubmitUtils +import org.apache.spark.sql.SnappyParserConsts.plusOrMinus import org.apache.spark.sql.catalyst.analysis.UnresolvedRelation import org.apache.spark.sql.catalyst.catalog.{FunctionResource, FunctionResourceType} import org.apache.spark.sql.catalyst.expressions._ @@ -128,6 +130,7 @@ abstract class SnappyDDLParser(session: SparkSession) final def COMMENT: Rule0 = rule { keyword(Consts.COMMENT) } final def CROSS: Rule0 = rule { keyword(Consts.CROSS) } final def CURRENT_USER: Rule0 = rule { keyword(Consts.CURRENT_USER) } + final def DEFAULT: Rule0 = rule { keyword(Consts.DEFAULT) } final def DATABASE: Rule0 = rule { keyword(Consts.DATABASE) } final def DESCRIBE: Rule0 = rule { keyword(Consts.DESCRIBE) } final def DISABLE: Rule0 = rule { keyword(Consts.DISABLE) } @@ -281,6 +284,30 @@ abstract class SnappyDDLParser(session: SparkSession) } } + protected final def booleanLiteral: Rule1[Boolean] = rule { + TRUE ~> (() => true) | FALSE ~> (() => false) + } + + protected final def numericLiteral: Rule1[String] = rule { + capture(plusOrMinus.? ~ Consts.numeric. + ~ (Consts.exponent ~ + plusOrMinus.? ~ CharPredicate.Digit. +).? ~ Consts.numericSuffix.? ~ + Consts.numericSuffix.?) ~ delimiter ~> ((s: String) => s) + } + + protected final def defaultLiteral: Rule1[Option[String]] = rule { + stringLiteral ~> ((s: String) => Option(s)) | + numericLiteral ~> ((s: String) => Option(s)) | + booleanLiteral ~> ((b: Boolean) => Option(b.toString)) | + NULL ~> (() => None) + } + + protected final def defaultVal: Rule1[Option[String]] = rule { + (DEFAULT ~ defaultLiteral ~ ws).? ~> ((value: Any) => value match { + case Some(v) => v.asInstanceOf[Option[String]] + case None => None + }) + } + protected final def policyFor: Rule1[String] = rule { (FOR ~ capture(ALL | SELECT | UPDATE | INSERT | DELETE)).? ~> ((forOpt: Any) => forOpt match { @@ -481,7 +508,7 @@ abstract class SnappyDDLParser(session: SparkSession) protected def alterTable: Rule1[LogicalPlan] = rule { ALTER ~ TABLE ~ tableIdentifier ~ ( - ADD ~ COLUMN.? ~ column ~ EOI ~> AlterTableAddColumnCommand | + ADD ~ COLUMN.? ~ column ~ defaultVal ~ EOI ~> AlterTableAddColumnCommand | DROP ~ COLUMN.? ~ identifier ~ EOI ~> AlterTableDropColumnCommand | ANY. + ~ EOI ~> ((r: TableIdentifier) => DMLExternalTable(r, UnresolvedRelation(r), input.sliceString(0, input.length))) diff --git a/core/src/main/scala/org/apache/spark/sql/SnappyParser.scala b/core/src/main/scala/org/apache/spark/sql/SnappyParser.scala index 34e03a0609..9b5c90329e 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappyParser.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappyParser.scala @@ -191,21 +191,10 @@ class SnappyParser(session: SnappySession) } } - protected final def booleanLiteral: Rule1[Expression] = rule { - TRUE ~> (() => newTokenizedLiteral(true, BooleanType)) | - FALSE ~> (() => newTokenizedLiteral(false, BooleanType)) - } - - protected final def numericLiteral: Rule1[Expression] = rule { - capture(plusOrMinus.? ~ Consts.numeric. + ~ (Consts.exponent ~ - plusOrMinus.? ~ CharPredicate.Digit. +).? ~ Consts.numericSuffix.? ~ - Consts.numericSuffix.?) ~ delimiter ~> ((s: String) => toNumericLiteral(s)) - } - protected final def literal: Rule1[Expression] = rule { stringLiteral ~> ((s: String) => newTokenizedLiteral(UTF8String.fromString(s), StringType)) | - numericLiteral | - booleanLiteral | + numericLiteral ~> ((s: String) => toNumericLiteral(s)) | + booleanLiteral ~> ((b: Boolean) => newTokenizedLiteral(b, BooleanType)) | NULL ~> (() => Literal(null, NullType)) // no tokenization for nulls } diff --git a/core/src/main/scala/org/apache/spark/sql/SnappySession.scala b/core/src/main/scala/org/apache/spark/sql/SnappySession.scala index e1173c795e..7dc1e7f33d 100644 --- a/core/src/main/scala/org/apache/spark/sql/SnappySession.scala +++ b/core/src/main/scala/org/apache/spark/sql/SnappySession.scala @@ -1275,23 +1275,24 @@ class SnappySession(_sc: SparkContext) extends SparkSession(_sc) { } } - def alterTable(tableName: String, isAddColumn: Boolean, column: StructField): Unit = { + def alterTable(tableName: String, isAddColumn: Boolean, column: StructField, + defaultValue: Option[String]): Unit = { val tableIdent = tableIdentifier(tableName) if (sessionCatalog.caseSensitiveAnalysis) { - alterTable(tableIdent, isAddColumn, column) + alterTable(tableIdent, isAddColumn, column, defaultValue) } else { - alterTable(tableIdent, isAddColumn, sessionCatalog.normalizeField(column)) + alterTable(tableIdent, isAddColumn, sessionCatalog.normalizeField(column), defaultValue) } } private[sql] def alterTable(tableIdent: TableIdentifier, isAddColumn: Boolean, - column: StructField): Unit = { + column: StructField, defaultValue: Option[String]): Unit = { if (sessionCatalog.isTemporaryTable(tableIdent)) { throw new AnalysisException("ALTER TABLE not supported for temporary tables") } sessionCatalog.resolveRelation(tableIdent) match { case LogicalRelation(ar: AlterableRelation, _, _) => - ar.alterTable(tableIdent, isAddColumn, column) + ar.alterTable(tableIdent, isAddColumn, column, defaultValue) val metadata = sessionCatalog.getTableMetadata(tableIdent) sessionCatalog.alterTable(metadata.copy(schema = ar.schema)) case _ => diff --git a/core/src/main/scala/org/apache/spark/sql/execution/ddl.scala b/core/src/main/scala/org/apache/spark/sql/execution/ddl.scala index 858c994187..406b8f841a 100644 --- a/core/src/main/scala/org/apache/spark/sql/execution/ddl.scala +++ b/core/src/main/scala/org/apache/spark/sql/execution/ddl.scala @@ -196,11 +196,11 @@ case class TruncateManagedTableCommand(ifExists: Boolean, } case class AlterTableAddColumnCommand(tableIdent: TableIdentifier, - addColumn: StructField) extends RunnableCommand { + addColumn: StructField, defaultValue: Option[String]) extends RunnableCommand { override def run(session: SparkSession): Seq[Row] = { val snc = session.asInstanceOf[SnappySession] - snc.alterTable(tableIdent, isAddColumn = true, addColumn) + snc.alterTable(tableIdent, isAddColumn = true, addColumn, defaultValue) Nil } } @@ -221,7 +221,8 @@ case class AlterTableDropColumnCommand( override def run(session: SparkSession): Seq[Row] = { val snc = session.asInstanceOf[SnappySession] // drop column doesn't need anything apart from name so fill dummy values - snc.alterTable(tableIdent, isAddColumn = false, StructField(column, NullType)) + snc.alterTable(tableIdent, isAddColumn = false, + StructField(column, NullType), defaultValue = None) Nil } } diff --git a/core/src/main/scala/org/apache/spark/sql/row/JDBCMutableRelation.scala b/core/src/main/scala/org/apache/spark/sql/row/JDBCMutableRelation.scala index a44fda2e51..8ae012e34b 100644 --- a/core/src/main/scala/org/apache/spark/sql/row/JDBCMutableRelation.scala +++ b/core/src/main/scala/org/apache/spark/sql/row/JDBCMutableRelation.scala @@ -397,13 +397,24 @@ abstract case class JDBCMutableRelation( } override def alterTable(tableIdent: TableIdentifier, - isAddColumn: Boolean, column: StructField): Unit = { + isAddColumn: Boolean, column: StructField, defaultValue: Option[String]): Unit = { val conn = connFactory() try { val sql = if (isAddColumn) { + val defaultColumnValue = defaultValue match { + case Some(v) => + val defaultString = column.dataType match { + case StringType | DateType | TimestampType => s" default '$v'" + case _ => s" default $v" + } + defaultString + case None => "" + } + val nullable = if (column.nullable) "" else " NOT NULL" s"""alter table ${quotedName(table)} - add column "${column.name}" ${getDataType(column)}$nullable""" + | add column "${column.name}" + | ${getDataType(column)}$nullable$defaultColumnValue""".stripMargin } else { s"""alter table ${quotedName(table)} drop column "${column.name}"""" } diff --git a/core/src/main/scala/org/apache/spark/sql/sources/StoreStrategy.scala b/core/src/main/scala/org/apache/spark/sql/sources/StoreStrategy.scala index d1be298f55..4d86167d3e 100644 --- a/core/src/main/scala/org/apache/spark/sql/sources/StoreStrategy.scala +++ b/core/src/main/scala/org/apache/spark/sql/sources/StoreStrategy.scala @@ -178,4 +178,4 @@ private[sql] case class DeleteFromTable( DataType.equalsIgnoreCompatibleNullability(childAttr.dataType, tableAttr.dataType) } -} \ No newline at end of file +} diff --git a/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala b/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala index f1021ca10a..ff57dffb3e 100644 --- a/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala +++ b/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala @@ -291,7 +291,7 @@ trait AlterableRelation { * @param column Column to be added or dropped */ def alterTable(tableIdent: TableIdentifier, - isAddColumn: Boolean, column: StructField): Unit + isAddColumn: Boolean, column: StructField, defaultValue: Option[String]): Unit } trait RowLevelSecurityRelation { diff --git a/core/src/test/scala/org/apache/spark/sql/store/RowTableTest.scala b/core/src/test/scala/org/apache/spark/sql/store/RowTableTest.scala index b3c43197dc..1d9754632a 100644 --- a/core/src/test/scala/org/apache/spark/sql/store/RowTableTest.scala +++ b/core/src/test/scala/org/apache/spark/sql/store/RowTableTest.scala @@ -26,6 +26,12 @@ import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} import org.apache.spark.sql._ import org.apache.spark.sql.snappy._ +import org.apache.spark.sql.types.{DateType, FloatType, IntegerType, StringType, StructField, TimestampType} +import org.apache.spark.sql._ +import org.scalatest.{BeforeAndAfter, BeforeAndAfterAll} +import scala.util.{Failure, Success, Try} + +import org.apache.spark.sql.catalyst.analysis.NoSuchTableException import org.apache.spark.sql.types.{IntegerType, StructField} /** @@ -444,6 +450,121 @@ class RowTableTest assert(snc.sql("SELECT * FROM " + tableName).schema.fields.length == 3) } + test("Test alter table add column SQL with default value") { + snc.sql("drop table if exists employees") + snc.sql("create table employees(name string, surname string)") + snc.sql("insert into employees values ('Joe', 'Lamb')") + var df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 2) + assert(df1.collect().length == 1) + + snc.sql("alter table employees add column age int not null default 25") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 3) + var v = df1.select("age").collect() + assert(v(0).getInt(0) == 25) + + snc.sql("alter table employees add column state string default 'CA'") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 4) + v = df1.select("state").collect() + assert(v(0).getString(0) == "CA") + + + snc.sql("alter table employees add column address string default NULL") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 5) + v = df1.select("address").collect() + assert(v(0).getString(0) == null) + + snc.sql("alter table employees add column joiningDate date default '2000-08-03'") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 6) + v = df1.select("joiningDate").collect() + assert(v(0).getDate(0).toString == "2000-08-03") + + snc.sql("alter table employees add column timestampColumn" + + " timestamp default '2000-08-03 12:20:30.0'") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 7) + v = df1.select("timestampColumn").collect() + assert(v(0).getTimestamp(0).toString == "2000-08-03 12:20:30.0") + + + snc.sql("alter table employees add column floatColumn" + + " float default 2.4") + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 8) + v = df1.select("floatColumn").collect() + assert(v(0).getFloat(0) == 2.4f) + + // insert a row with non default values + snc.sql("insert into employees values ('James', 'Lee', 30, 'OR'," + + " 'High Street', '2000-09-06', '2012-08-03 12:20:30.0', 3.9)") + df1 = snc.sql("select * from employees where name like 'James'") + assert(df1.schema.fields.length == 8) + val result = df1.collect() + assert(result(0).getString(0) == "James") + assert(result(0).getInt(2) == 30) + assert(result(0).getString(3) == "OR") + assert(result(0).getString(4) == "High Street") + assert(result(0).getDate(5).toString == "2000-09-06") + assert(result(0).getTimestamp(6).toString == "2012-08-03 12:20:30.0") + assert(result(0).getFloat(7) == 3.9f) + } + + test("Test alter table add column API with default value") { + snc.sql("drop table if exists employees") + snc.sql("create table employees(name string, surname string)") + snc.sql("insert into employees values ('Joe', 'Lamb')") + var df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 2) + assert(df1.collect().length == 1) + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("age", IntegerType, nullable = false), Option("25")) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 3) + var v = df1.select("age").collect() + assert(v(0).getInt(0) == 25) + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("state", StringType, nullable = false), Option("CA")) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 4) + v = df1.select("state").collect() + assert(v(0).getString(0) == "CA") + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("address", StringType), None) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 5) + v = df1.select("address").collect() + assert(v(0).getString(0) == null) + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("joiningDate", DateType), Option("2000-08-03")) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 6) + v = df1.select("joiningDate").collect() + assert(v(0).getDate(0).toString == "2000-08-03") + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("timestampColumn", TimestampType), Option("2000-08-03 12:20:30.0")) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 7) + v = df1.select("timestampColumn").collect() + assert(v(0).getTimestamp(0).toString == "2000-08-03 12:20:30.0") + + snc.alterTable("EMPLOYEES", isAddColumn = true, + StructField("floatColumn", FloatType), Option("2.4")) + df1 = snc.sql("select * from employees") + assert(df1.schema.fields.length == 8) + v = df1.select("floatColumn").collect() + assert(v(0).getFloat(0) == 2.4f) + } + + test("SNAP-1825") { snc.sql("create table tabOne(id int, name String, address String)" + " USING row OPTIONS(partition_by 'id')") From e84f8f86cf6a92fbfff87260e024b7622556e316 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Tue, 12 Feb 2019 10:09:31 -0800 Subject: [PATCH 19/22] added bug test for SNAP-2827 (#1254) * added bug test for SNAP-2827 * enhanced the bug test for SNAP-2827 --- .../spark/sql/store/SecurityBugTest.scala | 48 ++++++++++++++++++- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/cluster/src/test/scala/org/apache/spark/sql/store/SecurityBugTest.scala b/cluster/src/test/scala/org/apache/spark/sql/store/SecurityBugTest.scala index 01005e1315..916366b114 100644 --- a/cluster/src/test/scala/org/apache/spark/sql/store/SecurityBugTest.scala +++ b/cluster/src/test/scala/org/apache/spark/sql/store/SecurityBugTest.scala @@ -16,7 +16,7 @@ */ package org.apache.spark.sql.store -import java.sql.DriverManager +import java.sql.{Connection, DriverManager} import java.util.Properties import com.pivotal.gemfirexd.{Attribute, TestUtil} @@ -30,9 +30,12 @@ import org.apache.spark.SparkConf class SecurityBugTest extends SnappyFunSuite with BeforeAndAfterAll { private val sysUser = "gemfire10" - + var serverHostPort: String = _ override def beforeAll(): Unit = { this.stopAll() + super.beforeAll() + snc + serverHostPort = TestUtil.startNetServer() } protected override def newSparkConf(addOn: (SparkConf) => SparkConf): SparkConf = { @@ -60,6 +63,7 @@ class SecurityBugTest extends SnappyFunSuite with BeforeAndAfterAll { override def afterAll(): Unit = { this.stopAll() + TestUtil.stopNetServer() val ldapServer = LdapTestServer.getInstance() if (ldapServer.isServerStarted) { ldapServer.stopService() @@ -102,4 +106,44 @@ class SecurityBugTest extends SnappyFunSuite with BeforeAndAfterAll { } } + test("Bug SNAP-2827 admin is unable to drop schema") { + val user1 = "gemfire1" + val adminSnc = snc.newSession() + adminSnc.snappySession.conf.set(Attribute.USERNAME_ATTR, sysUser) + adminSnc.snappySession.conf.set(Attribute.PASSWORD_ATTR, sysUser) + adminSnc.sql("create schema test_schema1 authorization ldapgroup:gemGroup1") + val snc1 = snc.newSession() + snc1.snappySession.conf.set(Attribute.USERNAME_ATTR, user1) + snc1.snappySession.conf.set(Attribute.PASSWORD_ATTR, user1) + snc1.sql(s"create table test_schema1.test (id integer," + + s" name STRING) using column") + adminSnc.sql("drop table test_schema1.test") + adminSnc.sql("drop schema test_schema1") + adminSnc.sql("create schema test_schema2 authorization ldapgroup:gemGroup1") + adminSnc.sql("drop schema test_schema2") + + val adminConn = getConnection(Some(sysUser)) + val adminStmt = adminConn.createStatement + adminStmt.execute("create schema test_schema3 authorization ldapgroup:gemGroup1") + val userConn = getConnection(Some(user1)) + val userStmt = userConn.createStatement + userStmt.execute("create table test_schema3.test (id integer, name STRING) using column") + adminStmt.execute("drop table test_schema3.test") + adminStmt.execute("drop schema test_schema3") + adminStmt.execute("create schema test_schema4 authorization ldapgroup:gemGroup1") + adminStmt.execute("drop schema test_schema4") + adminStmt.execute("create schema test_schema5 authorization ldapgroup:gemGroup1") + adminSnc.sql("drop schema test_schema5") + adminSnc.sql("create schema test_schema6 authorization ldapgroup:gemGroup1") + adminStmt.execute("drop schema test_schema6") + } + + private def getConnection(user: Option[String] = None): Connection = { + val props = new Properties() + if (user.isDefined) { + props.put(Attribute.USERNAME_ATTR, user.get) + props.put(Attribute.PASSWORD_ATTR, user.get) + } + DriverManager.getConnection(s"jdbc:snappydata://$serverHostPort", props) + } } From 27439b2c41bf5927117f1ced80ce1604b7cc12ce Mon Sep 17 00:00:00 2001 From: ahshahid Date: Tue, 12 Feb 2019 10:11:26 -0800 Subject: [PATCH 20/22] modified the store --- store | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store b/store index 7ee801f9f1..1d9061813c 160000 --- a/store +++ b/store @@ -1 +1 @@ -Subproject commit 7ee801f9f1725532c50401f0f87b9c2328f9a534 +Subproject commit 1d9061813c4bcaeb4987e47cf686b18f070aac55 From da799907ce0bfef9286f50c15bea5b5dbe6ff4c2 Mon Sep 17 00:00:00 2001 From: ahshahid Date: Tue, 12 Feb 2019 16:19:11 -0800 Subject: [PATCH 21/22] fixed the test failure caused by change for fixing SNAP-2237 --- .../org/apache/spark/sql/internal/SnappySessionState.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala index c89e615ce5..d3e31d21af 100644 --- a/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala +++ b/core/src/main/scala/org/apache/spark/sql/internal/SnappySessionState.scala @@ -424,7 +424,8 @@ class SnappySessionState(val snappySession: SnappySession) aggs.collectFirst { case Alias(exp, name) if name.equalsIgnoreCase(nameParts.head) => exp - }.getOrElse(u.failAnalysis("unresolved group by alias")) + }.getOrElse(u) + case x => x } Aggregate(newGroups, aggs, child) case o => o From 568b7e1face85d779b5a3d62492b678af21752cb Mon Sep 17 00:00:00 2001 From: Pradeep Surale Date: Wed, 13 Feb 2019 12:33:21 +0530 Subject: [PATCH 22/22] Branch 1.0.2.2 (#1231) * Fix for JDBC driver Jar running with Spark 2.3 + versions. ( java.lang.NoSuchFieldError: MAX_ROUNDED_ARRAY_LENGTH ) The Snappy JDBC driver jar contains a class org.apache.spark.unsafe.array.ByteArrayMethods which has been changed in Spark 2.3.1. When Snappy JDBC driver jar dependency is used, this class is loaded from the JDBC jar instead of Spark 2.3.1 jars (or later Spark version) and the program errors out as it expects a newer version of the class. We fixed it by relocating the org.apache.spark.unsafe to io.snappydata.org.apache.spark.unsafe in the build.gradle for the JDBC module. --- build.gradle | 2 +- jdbc/build.gradle | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 1b8f499a94..6d74360481 100644 --- a/build.gradle +++ b/build.gradle @@ -70,7 +70,7 @@ allprojects { apply plugin: "build-time-tracker" group = 'io.snappydata' - version = '1.0.2.1' + version = '1.0.2.2' // apply compiler options tasks.withType(JavaCompile) { diff --git a/jdbc/build.gradle b/jdbc/build.gradle index c18707bfd1..e281a6d63d 100644 --- a/jdbc/build.gradle +++ b/jdbc/build.gradle @@ -46,9 +46,9 @@ dependencies { } if (new File(rootDir, 'store/build.gradle').exists()) { - compile project(':snappy-store:snappydata-store-client') + compile project(':snappy-store:snappydata-store-client') } else { - compile group: 'io.snappydata', name: 'snappydata-store-client', version: snappyStoreVersion + compile group: 'io.snappydata', name: 'snappydata-store-client', version: snappyStoreVersion } } @@ -80,6 +80,7 @@ shadowJar { // avoid conflict with the 0.9.2 version in stock Spark relocate 'org.apache.thrift', 'io.snappydata.org.apache.thrift' + relocate 'org.apache.spark.unsafe', 'io.snappydata.org.apache.spark.unsafe' mergeServiceFiles() exclude 'log4j.properties'