diff --git a/content-api/collection-csv-actors/pom.xml b/content-api/collection-csv-actors/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..45e1060f94225aa53715cf3d9cce198cb59b4626 --- /dev/null +++ b/content-api/collection-csv-actors/pom.xml @@ -0,0 +1,145 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>content-api</artifactId> + <groupId>org.sunbird</groupId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>collection-csv-actors</artifactId> + + <dependencies> + <dependency> + <groupId>org.scala-lang</groupId> + <artifactId>scala-library</artifactId> + <version>${scala.version}</version> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>actor-core</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>kafka-client</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>graph-engine_2.11</artifactId> + <version>1.0-SNAPSHOT</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>mimetype-manager</artifactId> + <version>1.0-SNAPSHOT</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>import-manager</artifactId> + <version>1.0-SNAPSHOT</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.scalatest</groupId> + <artifactId>scalatest_${scala.maj.version}</artifactId> + <version>3.0.8</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.mashape.unirest</groupId> + <artifactId>unirest-java</artifactId> + <version>1.4.9</version> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>hierarchy-manager</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.scalamock</groupId> + <artifactId>scalamock_${scala.maj.version}</artifactId> + <version>4.4.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.typesafe.akka</groupId> + <artifactId>akka-testkit_${scala.maj.version}</artifactId> + <version>2.5.22</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>content-actors</artifactId> + <version>1.0-SNAPSHOT</version> + <type>jar</type> + <exclusions> + <exclusion> + <artifactId>slf4j-log4j12</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + + <build> + <sourceDirectory>src/main/scala</sourceDirectory> + <testSourceDirectory>src/test/scala</testSourceDirectory> + <plugins> + <plugin> + <groupId>net.alchim31.maven</groupId> + <artifactId>scala-maven-plugin</artifactId> + <version>4.4.0</version> + <configuration> + <scalaVersion>${scala.version}</scalaVersion> + <checkMultipleScalaVersions>false</checkMultipleScalaVersions> + </configuration> + <executions> + <execution> + <id>scala-compile-first</id> + <phase>process-resources</phase> + <goals> + <goal>add-source</goal> + <goal>compile</goal> + </goals> + </execution> + <execution> + <id>scala-test-compile</id> + <phase>process-test-resources</phase> + <goals> + <goal>testCompile</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.scalatest</groupId> + <artifactId>scalatest-maven-plugin</artifactId> + <version>2.0.0</version> + <executions> + <execution> + <id>test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.scoverage</groupId> + <artifactId>scoverage-maven-plugin</artifactId> + <version>${scoverage.plugin.version}</version> + <configuration> + <scalaVersion>${scala.version}</scalaVersion> + <aggregate>true</aggregate> + <highlighting>true</highlighting> + </configuration> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/actors/CollectionCSVActor.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/actors/CollectionCSVActor.scala new file mode 100644 index 0000000000000000000000000000000000000000..277cf3f6c322558aff6704d9ffc4c225bb0c0c69 --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/actors/CollectionCSVActor.scala @@ -0,0 +1,90 @@ +package org.sunbird.collectioncsv.actors + +import org.sunbird.actor.core.BaseActor +import org.sunbird.cloudstore.StorageService +import org.sunbird.collectioncsv.manager.CollectionCSVManager.{getCloudPath, readInputFile, updateCollection, validateCollection, validateInputData} +import org.sunbird.collectioncsv.util.CollectionTOCConstants +import org.sunbird.common.{JsonUtils, Platform} +import org.sunbird.common.dto.{Request, Response, ResponseParams} +import org.sunbird.common.exception.{ClientException, ServerException} +import org.sunbird.graph.OntologyEngineContext +import org.sunbird.graph.utils.ScalaJsonUtils +import org.sunbird.managers.HierarchyManager +import org.sunbird.telemetry.logger.TelemetryManager + +import javax.inject.Inject +import scala.collection.JavaConverters.mapAsJavaMapConverter +import scala.collection.immutable.{HashMap, Map} +import scala.concurrent.{ExecutionContext, Future} + +class CollectionCSVActor @Inject() (implicit oec: OntologyEngineContext, ss: StorageService) extends BaseActor { + + implicit val ec: ExecutionContext = getContext().dispatcher + + override def onReceive(request: Request): Future[Response] = { + request.getOperation match { + case CollectionTOCConstants.COLLECTION_IMPORT => importCollection(request) + case CollectionTOCConstants.COLLECTION_EXPORT => exportCollection(request) + case _ => ERROR(request.getOperation) + } + } + + private def importCollection(request:Request): Future[Response] = { + try { + val csvRecordsAndMode = readInputFile(request) + + updateRequestWithMode(request) + + HierarchyManager.getHierarchy(request).flatMap(getHierarchyResponse => { + val collectionHierarchy = getCollectionHierarchy(getHierarchyResponse) + TelemetryManager.log("CollectionCSVActor --> uploadTOC --> after fetching collection Hierarchy: " + collectionHierarchy) + + val linkedContentsDetails = validateInputData(csvRecordsAndMode._1, csvRecordsAndMode._2, csvRecordsAndMode._3, collectionHierarchy) + + // update the collection hierarchy + updateCollection(collectionHierarchy, csvRecordsAndMode._2, csvRecordsAndMode._3, linkedContentsDetails) + }) + } catch { + case e: ClientException => throw e + case e: Exception => throw new ServerException("SERVER_ERROR", "Something went wrong while processing the file") + } + } + + private def exportCollection(request: Request): Future[Response] = { + val fileExtension = "."+request.get("fileType").asInstanceOf[String].toLowerCase + + updateRequestWithMode(request) + + HierarchyManager.getHierarchy(request).map(getHierarchyResponse => { + val collectionHierarchy = getCollectionHierarchy(getHierarchyResponse) + TelemetryManager.log ("CollectionCSVActor:getTOCUrl -> collectionHierarchy: " + collectionHierarchy) + validateCollection(collectionHierarchy) + + val cloudPath = getCloudPath(fileExtension, collectionHierarchy) + TelemetryManager.log ("CollectionCSVActor:getTOCUrl -> Sending Response for Toc Download API for Collection | Id: " + request.get(CollectionTOCConstants.IDENTIFIER).asInstanceOf[String]) + exportResponse(cloudPath) + }) + + } + + private def exportResponse(cloudPath: String): Response = { + val collectionCSV = HashMap[String, AnyRef] (CollectionTOCConstants.TOC_URL -> cloudPath, CollectionTOCConstants.TTL -> Platform.getString("cloud_storage.upload.url.ttl", "86400") ) + + val response = new Response + val resParams = new ResponseParams + resParams.setStatus ("successful") + response.setParams (resParams) + response.put(CollectionTOCConstants.COLLECTION, collectionCSV.asJava) + } + + private def getCollectionHierarchy(getHierarchyResponse: Response): Map[String, AnyRef] = { + val collectionHierarchyDeSer = ScalaJsonUtils.deserialize[Map[String, AnyRef]](JsonUtils.serialize(getHierarchyResponse)) + collectionHierarchyDeSer(CollectionTOCConstants.RESULT).asInstanceOf[Map[String, AnyRef]](CollectionTOCConstants.CONTENT).asInstanceOf[Map[String, AnyRef]] + } + + private def updateRequestWithMode(request: Request) { + request.put("rootId",request.get(CollectionTOCConstants.IDENTIFIER).asInstanceOf[String]) + request.put("mode","edit") + } + +} \ No newline at end of file diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionCSVManager.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionCSVManager.scala new file mode 100644 index 0000000000000000000000000000000000000000..d61c39ad05eddf9d6127b5b54b2ab181163f6a2c --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionCSVManager.scala @@ -0,0 +1,434 @@ +package org.sunbird.collectioncsv.manager + +import org.apache.commons.codec.digest.DigestUtils +import org.apache.commons.csv.{CSVFormat, CSVPrinter, CSVRecord, QuoteMode} +import org.apache.commons.io.ByteOrderMark +import org.apache.commons.io.FileUtils.{deleteQuietly, touch} +import org.sunbird.cloudstore.StorageService +import org.sunbird.collectioncsv.util.CollectionTOCConstants +import org.sunbird.collectioncsv.util.CollectionTOCConstants.{COLLECTION_TOC_ALLOWED_MIMETYPE, CONTENT_TYPE} +import org.sunbird.collectioncsv.util.CollectionTOCUtil.linkDIALCode +import org.sunbird.collectioncsv.validator.CollectionCSVValidator.{allowedContentTypes, collectionNodeIdentifierHeader, collectionOutputTocHeaders, contentTypeToUnitTypeMapping, createCSVMandatoryHeaderCols, folderHierarchyHdrColumnsList, linkedContentHdrColumnsList, mappedTopicsHeader, maxFolderLevels} +import org.sunbird.common.{JsonUtils, Platform} +import org.sunbird.common.dto.{Request, Response} +import org.sunbird.common.exception.{ClientException, ServerException} +import org.sunbird.graph.OntologyEngineContext +import org.sunbird.managers.UpdateHierarchyManager +import org.sunbird.telemetry.logger.TelemetryManager +import org.sunbird.utils.HierarchyConstants +import org.sunbird.utils.HierarchyConstants.MIME_TYPE + +import java.io.{File, FileOutputStream, IOException, OutputStreamWriter} +import java.nio.charset.StandardCharsets +import java.util +import scala.collection.immutable.{ListMap, Map} +import scala.collection.JavaConversions._ +import scala.collection.JavaConverters.{asJavaIterableConverter, mapAsScalaMapConverter} +import scala.collection.mutable +import scala.collection.mutable.ListBuffer +import scala.concurrent.{ExecutionContext, Future} + +object CollectionCSVManager extends CollectionInputFileReader { + + private val CONTENT_FOLDER = "cloud_storage.content.folder" + + def getCode(code: String): String = {DigestUtils.md5Hex(code)} + + def validateInputData(inputFileExtension: String, csvRecords: util.List[CSVRecord], mode: String, collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[Map[String, AnyRef]] = { + // Validate if the mode is CREATE and children already exist in collection + val children = collectionHierarchy(CollectionTOCConstants.CHILDREN).asInstanceOf[List[AnyRef]] + if (mode.equals(CollectionTOCConstants.CREATE) && children.nonEmpty) + throw new ClientException("COLLECTION_CHILDREN_EXISTS", "Collection is already having children.") + + //Validate the data format of the input CSV records + validateRecordsDataFormat(inputFileExtension, csvRecords, mode) + + // if mode=UPDATE, validate the data authenticity of the input CSV records' - Mapped Topics, QR Codes, Linked Contents + if (mode.equals(CollectionTOCConstants.UPDATE)) validateRecordsDataAuthenticity(inputFileExtension, csvRecords, collectionHierarchy) else List.empty[Map[String, AnyRef]] + } + + def validateCollection(collection: Map[String, AnyRef]) { + if (!COLLECTION_TOC_ALLOWED_MIMETYPE.equalsIgnoreCase(collection(MIME_TYPE).toString) || !allowedContentTypes.contains(collection(CONTENT_TYPE).toString)) + throw new ClientException("INVALID_COLLECTION", "Invalid Collection. Please Provide Valid Collection Identifier.") + val children = collection(CollectionTOCConstants.CHILDREN).asInstanceOf[List[AnyRef]] + if (children.isEmpty) throw new ClientException("COLLECTION_CHILDREN_NOT_EXISTS", "No Children Exists for given Collection.") + } + + def updateCollection(collectionHierarchy: Map[String, AnyRef], csvRecords: util.List[CSVRecord], mode: String, linkedContentsDetails: List[Map[String, AnyRef]])(implicit oec: OntologyEngineContext, ec: ExecutionContext): Future[Response] = { + val folderInfoMap = scala.collection.mutable.Map.empty[String, AnyRef] + + //prepare Map(folderInfoMap) of each folder with its details from the csvRecords + populateFolderInfoMap(folderInfoMap, csvRecords, mode) + + // Prepare nodesMetadata and hierarchyMetadata using the folderInfoMap + val nodesMetadata = getNodesMetadata(folderInfoMap, mode, collectionHierarchy(CollectionTOCConstants.FRAMEWORK).toString, collectionHierarchy(CollectionTOCConstants.CONTENT_TYPE).toString) + val hierarchyMetadata = getHierarchyMetadata(folderInfoMap, mode, linkedContentsDetails, collectionHierarchy(CollectionTOCConstants.IDENTIFIER).toString, collectionHierarchy(CollectionTOCConstants.NAME).toString, collectionHierarchy(CollectionTOCConstants.CONTENT_TYPE).toString) + + // Invoke UpdateHierarchyManager to update the collection hierarchy + val updateHierarchyResponse = UpdateHierarchyManager.updateHierarchy(getUpdateHierarchyRequest(nodesMetadata, hierarchyMetadata)) + TelemetryManager.log("CollectionCSVManager:updateCollection --> after invoking updateHierarchyManager: " + updateHierarchyResponse) + + // Invoke DIAL code linking if mode=UPDATE + if(mode.equals(CollectionTOCConstants.UPDATE)) { + linkDIALCodes(folderInfoMap, collectionHierarchy(CollectionTOCConstants.CHANNEL).toString, collectionHierarchy(CollectionTOCConstants.IDENTIFIER).toString) + } + + updateHierarchyResponse + } + + def createCSVFileAndStore(collectionHierarchy: Map[String, AnyRef], collectionTocFileName: String)(implicit ss: StorageService): String = { + val collectionName = collectionHierarchy(CollectionTOCConstants.NAME).toString + val collectionType = collectionHierarchy(CollectionTOCConstants.CONTENT_TYPE).toString + val collectionUnitType = contentTypeToUnitTypeMapping(collectionType) + val childrenHierarchy = collectionHierarchy(CollectionTOCConstants.CHILDREN).asInstanceOf[List[Map[String, AnyRef]]] + val nodesInfoList = prepareNodeInfo(collectionUnitType, childrenHierarchy, Map.empty[String, AnyRef], "") + val nodesMap = ListMap(nodesInfoList.flatten.toMap[String, AnyRef].toSeq.sortBy(_._1):_*) + val maxAllowedContentSize = Platform.getInteger(CollectionTOCConstants.SUNBIRD_TOC_MAX_FIRST_LEVEL_UNITS,30) + + val csvFile: File = new File(collectionTocFileName) + var out: OutputStreamWriter = null + var csvPrinter: CSVPrinter = null + try{ + deleteQuietly(csvFile) + TelemetryManager.log("CollectionCSVManager:createFileAndStore -> Creating file for CSV at Location: " + csvFile.getAbsolutePath) + touch(csvFile) + + out = new OutputStreamWriter(new FileOutputStream(csvFile), StandardCharsets.UTF_8) + out.write(ByteOrderMark.UTF_BOM) + + val csvFormat = CSVFormat.DEFAULT.withFirstRecordAsHeader().withRecordSeparator(System.lineSeparator()).withQuoteMode(QuoteMode.NON_NUMERIC) + TelemetryManager.log("CollectionCSVManager:createFileAndStore -> Writing Headers to Output Stream for Collection | Id " + collectionHierarchy(CollectionTOCConstants.IDENTIFIER).toString) + csvPrinter = new CSVPrinter(out, csvFormat) + csvPrinter.printRecord(collectionOutputTocHeaders.asJava) + nodesMap.foreach(record => { + val nodeDepthIndex = record._1 + val nodeInfo = record._2.asInstanceOf[Map[String, AnyRef]] + if(nodeInfo(CollectionTOCConstants.CONTENT_TYPE).toString.equalsIgnoreCase(collectionUnitType)) { + val nodeID = nodeInfo(CollectionTOCConstants.IDENTIFIER).toString + val recordToWrite = ListBuffer.empty[String] + recordToWrite.append(collectionName) + recordToWrite.append(nodeID) + + val foldersLevel = nodeDepthIndex.split(":") + val foldersLevelId = StringBuilder.newBuilder + for (iCounter <- 0 until maxFolderLevels) { + if (iCounter < foldersLevel.size) { + if (iCounter == 0) + foldersLevelId ++= foldersLevel(iCounter) + else { + foldersLevelId ++= ":" + foldersLevelId ++= foldersLevel(iCounter) + } + val parentNode = nodesMap(foldersLevelId.toString).asInstanceOf[Map[String, AnyRef]] + recordToWrite.append(parentNode(CollectionTOCConstants.NAME).toString) + } + else { + recordToWrite.append(null) + } + } + + val mappedTopics = if (nodeInfo(CollectionTOCConstants.TOPIC).asInstanceOf[List[String]].nonEmpty) nodeInfo(CollectionTOCConstants.TOPIC).asInstanceOf[List[String]].mkString(",") else null + val keywords = if (nodeInfo(CollectionTOCConstants.KEYWORDS).asInstanceOf[List[String]].nonEmpty) nodeInfo(CollectionTOCConstants.KEYWORDS).asInstanceOf[List[String]].mkString(",") else null + val linkedContentsList = nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Seq[String]] + + recordToWrite.append(if (nodeInfo(CollectionTOCConstants.DESCRIPTION).toString.nonEmpty) nodeInfo(CollectionTOCConstants.DESCRIPTION).toString else null) + recordToWrite.append(mappedTopics) + recordToWrite.append(keywords) + recordToWrite.append(nodeInfo(CollectionTOCConstants.QR_CODE_REQUIRED).toString) + recordToWrite.append(if (nodeInfo(CollectionTOCConstants.QR_CODE).toString.nonEmpty) nodeInfo(CollectionTOCConstants.QR_CODE).toString else null) + + for (idx <- 0 until maxAllowedContentSize) { + if (idx < linkedContentsList.size) { + recordToWrite.append(linkedContentsList(idx)) + } + else { + recordToWrite.append(null) + } + } + + csvPrinter.printRecord(recordToWrite.toList.asJava) + } + }) + + csvPrinter.flush() + + val folder = Platform.getString(CONTENT_FOLDER, "content") + "/" + collectionHierarchy(CollectionTOCConstants.CONTENT_TYPE).toString.toLowerCase + "/toc" + TelemetryManager.log("CollectionCSVManager:createFileAndStore -> Writing CSV to Cloud Folder: " + folder) + val csvURL = ss.uploadFile(folder, csvFile) + TelemetryManager.log("CollectionCSVManager:createFileAndStore -> csvURL: " + csvURL.mkString("Array(", ", ", ")")) + + csvURL(1) + } + catch { + case ce: ClientException => throw ce + case e: Exception => + TelemetryManager.log("Error writing data to file | Collection Id:" + collectionHierarchy(CollectionTOCConstants.IDENTIFIER).toString + " - Version Key: " + + collectionHierarchy(CollectionTOCConstants.VERSION_KEY).toString + e) + throw new ServerException("ERROR_PROCESSING_REQUEST", "Something went wrong while Processing Request") + } finally { + try { + if (csvPrinter != null) csvPrinter.close() + if (out != null) out.close() + if (null != csvFile && csvFile.exists) deleteQuietly(csvFile.getCanonicalFile) + } catch { + case e: IOException => + TelemetryManager.log("Error writing data to file | Collection Id:" + collectionHierarchy(CollectionTOCConstants.IDENTIFIER) + " - Version Key: " + + collectionHierarchy(CollectionTOCConstants.VERSION_KEY) + e) + } + } + } + + def prepareNodeInfo(collectionUnitType: String, childrenHierarchy: List[Map[String, AnyRef]], nodesInfoMap: Map[String, AnyRef], parentDepthIndex: String): List[Map[String, AnyRef]] = { + val nodesInfoListMet: List[Map[String, AnyRef]] = { + childrenHierarchy.flatMap(record => { + val linkedContents = { + if (record.contains(CollectionTOCConstants.CHILDREN)) { + record(CollectionTOCConstants.CHILDREN).asInstanceOf[List[Map[String, AnyRef]]].map(childNode => { + if (!childNode(CollectionTOCConstants.CONTENT_TYPE).toString.equalsIgnoreCase(collectionUnitType)) childNode(CollectionTOCConstants.IDENTIFIER).toString + else "" + }).filter(nodeId => nodeId.nonEmpty).asInstanceOf[Seq[String]] + } + else Seq.empty[String] + } + + val nodeDepth = if (record.contains(CollectionTOCConstants.DEPTH)) record(CollectionTOCConstants.DEPTH).toString.toInt else 0 + val nodeIndex = if (record.contains(CollectionTOCConstants.INDEX)) record(CollectionTOCConstants.INDEX).toString.toInt else 0 + val nodeInfo = getNodeInfo(record, linkedContents, nodeDepth, nodeIndex) + + val appendedMap = { + if(nodeDepth == 1) nodesInfoMap ++ Map(nodeDepth + "."+ nodeIndex -> nodeInfo) + else nodesInfoMap ++ Map(parentDepthIndex + ":" + nodeDepth + "."+ nodeIndex -> nodeInfo) + } + + val fetchedList = { + if (record.contains(CollectionTOCConstants.CHILDREN)) + if(nodeDepth == 1) + prepareNodeInfo(collectionUnitType, record(CollectionTOCConstants.CHILDREN).asInstanceOf[List[Map[String, AnyRef]]], appendedMap, nodeDepth + "."+ nodeIndex) + else + prepareNodeInfo(collectionUnitType, record(CollectionTOCConstants.CHILDREN).asInstanceOf[List[Map[String, AnyRef]]], appendedMap, parentDepthIndex + ":" + + nodeDepth + "."+ nodeIndex) + else List(appendedMap) + } + fetchedList + }) + } + nodesInfoListMet + } + + private def getNodeInfo(record: Map[String, AnyRef], linkedContents: Seq[String], nodeDepth: Integer, nodeIndex: Integer): Map[String, AnyRef] = { + val nodeId = record(CollectionTOCConstants.IDENTIFIER).toString + val nodeName = record(CollectionTOCConstants.NAME).toString + val nodeDescription = if (record.contains(CollectionTOCConstants.DESCRIPTION)) record(CollectionTOCConstants.DESCRIPTION).toString else "" + val nodeKeywords = if (record.contains(CollectionTOCConstants.KEYWORDS)) record(CollectionTOCConstants.KEYWORDS).asInstanceOf[List[String]] else List.empty[String] + val nodeTopics = if (record.contains(CollectionTOCConstants.TOPIC)) record(CollectionTOCConstants.TOPIC).asInstanceOf[List[String]] else List.empty[String] + val nodeDialCodeRequired = if (record.contains(CollectionTOCConstants.DIAL_CODE_REQUIRED)) record(CollectionTOCConstants.DIAL_CODE_REQUIRED).toString else "No" + val nodeDIALCode = if (record.contains(CollectionTOCConstants.DIAL_CODES)) record(CollectionTOCConstants.DIAL_CODES).asInstanceOf[List[String]].head else "" + + Map(CollectionTOCConstants.IDENTIFIER -> nodeId, CollectionTOCConstants.NAME -> nodeName, CollectionTOCConstants.DESCRIPTION -> nodeDescription, + CollectionTOCConstants.KEYWORDS -> nodeKeywords, CollectionTOCConstants.TOPIC -> nodeTopics, CollectionTOCConstants.QR_CODE_REQUIRED -> nodeDialCodeRequired, CollectionTOCConstants.CONTENT_TYPE -> record(CollectionTOCConstants.CONTENT_TYPE).toString, + CollectionTOCConstants.QR_CODE -> nodeDIALCode, CollectionTOCConstants.DEPTH -> nodeDepth, CollectionTOCConstants.INDEX -> nodeIndex, CollectionTOCConstants.LINKED_CONTENT -> linkedContents) + } + + private def populateFolderInfoMap(folderInfoMap: mutable.Map[String, AnyRef], csvRecords: util.List[CSVRecord], mode: String): Unit = { + csvRecords.map(csvRecord => { + val csvRecordFolderHierarchyMap: Map[String, String] = csvRecord.toMap.asScala.toMap.filter(colData => { + folderHierarchyHdrColumnsList.contains(colData._1) && colData._2.nonEmpty + }) + + val sortedFolderHierarchyMap = Map(csvRecordFolderHierarchyMap.toSeq.sortWith(_._1 < _._1):_*) + val sortedFoldersDataKey = sortedFolderHierarchyMap.keys.toList + val sortedFoldersDataList = sortedFolderHierarchyMap.values.scan("")(_+_).filter(x => x.nonEmpty).toList + val finalSortedMap = (sortedFoldersDataKey zip sortedFoldersDataList).toMap + val csvRecordMap = csvRecord.toMap.asScala.toMap + + sortedFolderHierarchyMap.map(folderData => { + val folderDataHashCode = getCode(finalSortedMap(folderData._1)) + + if(folderInfoMap.contains(folderDataHashCode) && ((sortedFoldersDataKey.indexOf(folderData._1)+1) != sortedFoldersDataList.size)) { + val nodeInfoMap = folderInfoMap(folderDataHashCode).asInstanceOf[scala.collection.mutable.Map[String, AnyRef]] + if(nodeInfoMap.contains(CollectionTOCConstants.CHILDREN)) + { + var childrenSet = nodeInfoMap(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]] + childrenSet ++= Set(getCode(sortedFoldersDataList.get(sortedFoldersDataKey.indexOf(folderData._1)+1))) + nodeInfoMap(CollectionTOCConstants.CHILDREN) = childrenSet + } + else { + val childrenList = Set(getCode(sortedFoldersDataList.get(sortedFoldersDataKey.indexOf(folderData._1)+1))) + nodeInfoMap += (CollectionTOCConstants.CHILDREN -> childrenList) + } + folderInfoMap(folderDataHashCode) = nodeInfoMap + } + else { + val nodeInfo = { + if(folderData._1.equalsIgnoreCase(sortedFolderHierarchyMap.max._1)) { + if(mode.equals(CollectionTOCConstants.UPDATE)) { + val keywordsList = csvRecord.toMap.asScala.toMap.map(colData => { + if(CollectionTOCConstants.KEYWORDS.equalsIgnoreCase(colData._1) && colData._2.nonEmpty) + colData._2.trim.split(",").toList.map(x => x.trim) + else List.empty + }).filter(msg => msg.nonEmpty).flatten.toList + + val mappedTopicsList = csvRecord.toMap.asScala.toMap.map(colData => { + if(mappedTopicsHeader.contains(colData._1) && colData._2.nonEmpty) + colData._2.trim.split(",").toList.map(x => x.trim) + else List.empty + }).filter(msg => msg.nonEmpty).flatten.toList + + val dialCodeRequired = if(csvRecordMap(CollectionTOCConstants.QR_CODE_REQUIRED).nonEmpty && csvRecordMap(CollectionTOCConstants.QR_CODE_REQUIRED) + .equalsIgnoreCase(CollectionTOCConstants.YES)) CollectionTOCConstants.YES else CollectionTOCConstants.NO + + val dialCode = if(csvRecordMap(CollectionTOCConstants.QR_CODE).nonEmpty) csvRecordMap(CollectionTOCConstants.QR_CODE).trim else "" + + val csvLinkedContentsList: Set[String] = csvRecord.toMap.asScala.toMap.map(colData => { + if(linkedContentHdrColumnsList.contains(colData._1) && colData._2.nonEmpty) colData._2.trim.toLowerCase() else "" + }).filter(msg => msg.nonEmpty).toSet[String] + + scala.collection.mutable.Map(CollectionTOCConstants.IDENTIFIER -> csvRecordMap(collectionNodeIdentifierHeader.head), CollectionTOCConstants.NAME -> folderData._2, + CollectionTOCConstants.DESCRIPTION -> csvRecordMap("Description"), CollectionTOCConstants.KEYWORDS -> keywordsList, CollectionTOCConstants.TOPIC -> mappedTopicsList, + CollectionTOCConstants.DIAL_CODE_REQUIRED -> dialCodeRequired, CollectionTOCConstants.DIAL_CODES -> dialCode, CollectionTOCConstants.LINKED_CONTENT -> csvLinkedContentsList, + CollectionTOCConstants.LEVEL -> folderData._1) + } + else{ + scala.collection.mutable.Map(CollectionTOCConstants.NAME -> folderData._2, CollectionTOCConstants.DESCRIPTION -> csvRecordMap("Description"), CollectionTOCConstants.LEVEL -> folderData._1) + } + } + else { + val childrenList = { + if((sortedFoldersDataKey.indexOf(folderData._1)+1) != sortedFoldersDataList.size) + Set(getCode(sortedFoldersDataList.get(sortedFoldersDataKey.indexOf(folderData._1)+1))) + else Set.empty[String] + } + scala.collection.mutable.Map(CollectionTOCConstants.NAME -> folderData._2, CollectionTOCConstants.CHILDREN -> childrenList, CollectionTOCConstants.LEVEL -> folderData._1) + } + } + + folderInfoMap += (folderDataHashCode -> nodeInfo) + } + }) + }) + } + + private def getNodesMetadata(folderInfoMap: mutable.Map[String, AnyRef], mode: String, frameworkID: String, collectionType: String): String = { + val collectionUnitType = contentTypeToUnitTypeMapping(collectionType) + folderInfoMap.map(record => { + val nodeInfo = record._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]] + if(mode.equals(CollectionTOCConstants.CREATE)) + s""""${record._1}": {"isNew": true,"root": false, "metadata": {"mimeType": "application/vnd.ekstep.content-collection","contentType": "$collectionUnitType", + |"name": "${nodeInfo("name").toString}", "description": "${if(nodeInfo.contains(CollectionTOCConstants.DESCRIPTION)) nodeInfo(CollectionTOCConstants.DESCRIPTION).toString else ""}", + |"dialcodeRequired": "No","code": "nodeID","framework": "$frameworkID" }}""".stripMargin + else + s""""${nodeInfo(CollectionTOCConstants.IDENTIFIER).toString}": {"isNew": false,"root": false, "metadata": {"mimeType": "application/vnd.ekstep.content-collection", + |"contentType": "$collectionUnitType","name": "${nodeInfo("name").toString}", + |"description": "${if(nodeInfo.contains(CollectionTOCConstants.DESCRIPTION)) nodeInfo(CollectionTOCConstants.DESCRIPTION).toString else ""}", + |"dialcodeRequired": "${nodeInfo(CollectionTOCConstants.DIAL_CODE_REQUIRED).toString}","dialcodes": "${nodeInfo(CollectionTOCConstants.DIAL_CODES).toString}", + |"code": "${nodeInfo(CollectionTOCConstants.IDENTIFIER).toString}","framework": "$frameworkID", + |"keywords": ${if(nodeInfo.contains(CollectionTOCConstants.KEYWORDS) && nodeInfo(CollectionTOCConstants.KEYWORDS).asInstanceOf[List[String]].nonEmpty) + nodeInfo(CollectionTOCConstants.KEYWORDS).asInstanceOf[List[String]].mkString("[\"","\",\"","\"]") else "[]"}, + |"topic": ${if(nodeInfo.contains(CollectionTOCConstants.TOPIC) && nodeInfo(CollectionTOCConstants.TOPIC).asInstanceOf[List[String]].nonEmpty) + nodeInfo(CollectionTOCConstants.TOPIC).asInstanceOf[List[String]].mkString("[\"","\",\"","\"]") else "[]"} }}""".stripMargin + }).mkString(",") + } + + private def getHierarchyMetadata(folderInfoMap: mutable.Map[String, AnyRef], mode: String, linkedContentsDetails: List[Map[String, AnyRef]], collectionID: String, collectionName: String, collectionType: String): String = { + val collectionUnitType = contentTypeToUnitTypeMapping(collectionType) + + val linkedContentsInfoMap: Map[String, Map[String, String]] = if(linkedContentsDetails.nonEmpty) { + linkedContentsDetails.flatMap(linkedContentRecord => { + Map(linkedContentRecord(CollectionTOCConstants.IDENTIFIER).toString -> + Map(CollectionTOCConstants.IDENTIFIER -> linkedContentRecord(CollectionTOCConstants.IDENTIFIER).toString, + CollectionTOCConstants.NAME -> linkedContentRecord(CollectionTOCConstants.NAME).toString, + CollectionTOCConstants.CONTENT_TYPE -> linkedContentRecord(CollectionTOCConstants.CONTENT_TYPE).toString)) + }).toMap + } else Map.empty[String, Map[String, String]] + + val collectionL1NodeList = { + folderInfoMap.map(nodeData => { + if(nodeData._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]](CollectionTOCConstants.LEVEL)!=null && + nodeData._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]](CollectionTOCConstants.LEVEL).toString.equalsIgnoreCase + (createCSVMandatoryHeaderCols.head)) { + if (mode.equals(CollectionTOCConstants.UPDATE)) + nodeData._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]](CollectionTOCConstants.IDENTIFIER).toString + else nodeData._1 + } + else "" + }).filter(node => node.nonEmpty).mkString("[\"","\",\"","\"]") + } + + val hierarchyRootNode = s""""$collectionID": {"name":"$collectionName","collectionType":"$collectionType","root":true,"children":$collectionL1NodeList}""" + + val hierarchyChildNodesMetadata = folderInfoMap.map(record => { + val nodeInfo = record._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]] + if(mode.equals(CollectionTOCConstants.CREATE)) { + s""""${record._1}": {"name": "${nodeInfo("name").toString}","root": false,"contentType": "$collectionUnitType", "children": ${if(nodeInfo.contains(CollectionTOCConstants.CHILDREN)) nodeInfo(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]].mkString("[\"","\",\"","\"]") else "[]"}}""" + } + else { + val childrenFolders = { + if(nodeInfo.contains(CollectionTOCConstants.CHILDREN) && nodeInfo(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]].nonEmpty + && nodeInfo.contains(CollectionTOCConstants.LINKED_CONTENT) && nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]].nonEmpty) { + val allChildrenSet = nodeInfo(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]] ++ nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]] + allChildrenSet.map(childFolder => { + if(folderInfoMap.contains(childFolder)) + folderInfoMap(childFolder).asInstanceOf[scala.collection.mutable.Map[String,AnyRef]](CollectionTOCConstants.IDENTIFIER).toString + else childFolder + }).mkString("[\"","\",\"","\"]") + } + else if(nodeInfo.contains(CollectionTOCConstants.CHILDREN) && nodeInfo(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]].nonEmpty) + nodeInfo(CollectionTOCConstants.CHILDREN).asInstanceOf[Set[String]].map(childFolder => { + folderInfoMap(childFolder).asInstanceOf[scala.collection.mutable.Map[String,AnyRef]](CollectionTOCConstants.IDENTIFIER).toString + }).mkString("[\"","\",\"","\"]") + else if(nodeInfo.contains(CollectionTOCConstants.LINKED_CONTENT) && nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]].nonEmpty) + nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]].mkString("[\"","\",\"","\"]") + else "[]" + } + + val folderNodeHierarchy = s""""${nodeInfo(CollectionTOCConstants.IDENTIFIER).toString}": {"name": "${nodeInfo("name").toString}","root": false,"contentType": "$collectionUnitType", "children": $childrenFolders}""" + + val contentsNode = if(nodeInfo.contains(CollectionTOCConstants.LINKED_CONTENT) && nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]].nonEmpty && linkedContentsInfoMap.nonEmpty) + { + val LinkedContentInfo = nodeInfo(CollectionTOCConstants.LINKED_CONTENT).asInstanceOf[Set[String]].map(contentId => { + val linkedContentDetails: Map[String, String] = linkedContentsInfoMap(contentId) + s""""${linkedContentDetails(CollectionTOCConstants.IDENTIFIER)}": {"name": "${linkedContentDetails(CollectionTOCConstants.NAME)}","root": false,"contentType": "${linkedContentDetails(CollectionTOCConstants.CONTENT_TYPE)}", "children": []}""" + }).mkString(",") + LinkedContentInfo + } else "" + + if(contentsNode.isEmpty) folderNodeHierarchy else folderNodeHierarchy + "," + contentsNode + } + }).mkString(",") + + hierarchyRootNode + "," + hierarchyChildNodesMetadata + } + + private def getUpdateHierarchyRequest(nodesMetadata: String, hierarchyMetadata: String): Request = { + val updateHierarchyRequest = new Request() + + val requestHashMap = new util.HashMap[String, AnyRef] + requestHashMap.put(HierarchyConstants.NODES_MODIFIED, JsonUtils.deserialize("{"+nodesMetadata+"}", classOf[java.util.Map[String, AnyRef]])) + requestHashMap.put(HierarchyConstants.HIERARCHY, JsonUtils.deserialize("{"+hierarchyMetadata+"}", classOf[java.util.Map[String, AnyRef]])) + + val requestContext = new util.HashMap[String, AnyRef] + requestContext.put("graph_id", "domain") + requestContext.put("schemaName", "collection") + requestContext.put("version", "1.0") + requestContext.put("objectType", "Collection") + + updateHierarchyRequest.setRequest(requestHashMap) + updateHierarchyRequest.setObjectType("Collection") + updateHierarchyRequest.setContext(requestContext) + + updateHierarchyRequest + } + + private def linkDIALCodes(folderInfoMap: mutable.Map[String, AnyRef], channelID: String, collectionID: String)(implicit oec: OntologyEngineContext, ec: ExecutionContext): Unit = { + //invoke DIAL code Linking + val linkDIALCodeReqMap = folderInfoMap.map(record => { + val nodeInfo = record._2.asInstanceOf[scala.collection.mutable.Map[String, AnyRef]] + if(nodeInfo(CollectionTOCConstants.DIAL_CODES) != null && nodeInfo(CollectionTOCConstants.DIAL_CODES).toString.nonEmpty) + Map(CollectionTOCConstants.IDENTIFIER -> nodeInfo(CollectionTOCConstants.IDENTIFIER).toString, CollectionTOCConstants.DIALCODE -> nodeInfo(CollectionTOCConstants.DIAL_CODES).toString) + else Map.empty + }).filter(record => record.nonEmpty).toList.asInstanceOf[List[Map[String,String]]] + + if(linkDIALCodeReqMap.nonEmpty) linkDIALCode(channelID, collectionID, linkDIALCodeReqMap) + } + +} diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionInputFileReader.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionInputFileReader.scala new file mode 100644 index 0000000000000000000000000000000000000000..1946d5b1b73b07c3c7f81b8972bce3820dba2022 --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/manager/CollectionInputFileReader.scala @@ -0,0 +1,63 @@ +package org.sunbird.collectioncsv.manager + +import org.apache.commons.csv.CSVRecord +import org.sunbird.cloudstore.StorageService +import org.sunbird.collectioncsv.manager.CollectionCSVManager.createCSVFileAndStore +import org.sunbird.collectioncsv.util.CollectionTOCConstants +import org.sunbird.collectioncsv.util.CollectionTOCConstants.COLLECTION_CSV_FILE_EXTENSION +import org.sunbird.collectioncsv.validator.CollectionCSVValidator.{readInputCSV, validateCSVRecordsDataAuthenticity, validateCSVRecordsDataFormat} +import org.sunbird.common.Platform +import org.sunbird.common.Slug.makeSlug +import org.sunbird.common.dto.Request +import org.sunbird.graph.OntologyEngineContext +import org.sunbird.telemetry.logger.TelemetryManager + +import java.io.File +import java.util +import scala.collection.immutable.Map +import scala.concurrent.ExecutionContext + +trait CollectionInputFileReader { + + private val CONTENT_FOLDER = "cloud_storage.content.folder" + + def readInputFile(request: Request): (String, util.List[CSVRecord], String) = { + val file = request.getRequest.get("file").asInstanceOf[File] + val extension = "."+file.getAbsolutePath.split("\\.").last.toLowerCase + + extension match { + case COLLECTION_CSV_FILE_EXTENSION => readInputCSV(request) + } + } + + def validateRecordsDataFormat(fileExtension: String, csvRecords: util.List[CSVRecord], mode: String) { + fileExtension match { + case COLLECTION_CSV_FILE_EXTENSION => validateCSVRecordsDataFormat(csvRecords, mode) + } + } + + + def validateRecordsDataAuthenticity(fileExtension: String, csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[Map[String, AnyRef]] = { + fileExtension match { + case COLLECTION_CSV_FILE_EXTENSION => validateCSVRecordsDataAuthenticity(csvRecords, collectionHierarchy) + } + } + + def getCloudPath(fileExtension: String, collectionHierarchy: Map[String, AnyRef])(implicit ss: StorageService): String = { + val collectionId = collectionHierarchy(CollectionTOCConstants.IDENTIFIER).asInstanceOf[String] + val contentVersionKey = collectionHierarchy(CollectionTOCConstants.VERSION_KEY).asInstanceOf[String] + val collectionNameSlug = makeSlug(collectionHierarchy(CollectionTOCConstants.NAME).asInstanceOf[String], true) + val collectionTocFileName = collectionId + "_" + collectionNameSlug + "_" + contentVersionKey + val prefix = Platform.getString(CONTENT_FOLDER, "content") + "/" + collectionHierarchy(CollectionTOCConstants.CONTENT_TYPE).toString.toLowerCase + "/toc/" + collectionTocFileName + fileExtension + TelemetryManager.log("CollectionCSVManager --> getCloudPath --> invoke getUri using prefix: " + prefix) + val path = ss.getUri(prefix) + TelemetryManager.log("CollectionCSVManager --> getCloudPath --> path: " + path) + if (path == null || path.isEmpty || path.isBlank) { + fileExtension match { + case COLLECTION_CSV_FILE_EXTENSION => createCSVFileAndStore(collectionHierarchy, collectionTocFileName+fileExtension) + } + } else path + } + + +} diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCConstants.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCConstants.scala new file mode 100644 index 0000000000000000000000000000000000000000..67c8571a7aed037ce665f7b228c512e2d829c6a9 --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCConstants.scala @@ -0,0 +1,84 @@ +package org.sunbird.collectioncsv.util + +object CollectionTOCConstants { + + val COLLECTION_IMPORT = "importCollection" + val COLLECTION_EXPORT = "exportCollection" + val COLLECTION = "collection" + val COLLECTION_TOC_ALLOWED_MIMETYPE = "application/vnd.ekstep.content-collection" + val COLLECTION_TOC_ALLOWED_CONTENT_TYPES = "collection_toc_allowed_content_types" + val COLLECTION_TOC_MAX_CSV_ROWS = "collection_toc_max_csv_rows" + val COLLECTION_CREATION_CSV_TOC_HEADERS = "collection_create_csv_toc_headers" + val COLLECTION_CSV_IDENTIFIER_HEADER = "csv_folder_identifier_col_header" + val COLLECTION_UPDATE_CSV_TOC_HEADERS = "collection_update_csv_toc_headers" + val COLLECTION_TOC_CREATE_CSV_MANDATORY_FIELDS = "collection_toc_create_csv_mandatory_fields" + val COLLECTION_TOC_UPDATE_CSV_MANDATORY_FIELDS = "collection_toc_update_csv_mandatory_fields" + val FOLDER_HIERARCHY_COLUMNS = "collection_csv_hierarchy_headers" + val COLLECTION_CSV_QR_COLUMNS = "collection_csv_qr_headers" + val COLLECTION_CSV_LINKED_CONTENT_FIELDS = "collection_csv_linked_content_fields" + val COLLECTION_CSV_LINKED_CONTENT_SEQ = "collection_csv_linked_content_seq" + val COMMA_SEPARATOR = ", " + val X_CHANNEL_ID = "X-Channel-Id" + val DIALCODE = "dialcode" + val MAPPED_TOPICS_HEADER = "collection_csv_mapped_topics_header" + val CSV_COLLECTION_NAME_HEADER = "collection_csv_collection_name" + val COLLECTION_CSV_FILE_EXTENSION = ".csv" + val COLLECTION_TYPE_TO_UNIT_TYPE = "collection_content_type_unit_type" + val CHILD_NODES = "childNodes" + val DEPTH = "depth" + val LEVEL = "level" + val COLLECTION_OUTPUT_TOC_HEADERS = "collection_output_toc_headers" + val CHILDREN = "children" + val UPDATE = "UPDATE" + val CREATE = "CREATE" + val DIAL_CODES = "dialcodes" + val DIAL_CODE_REQUIRED = "dialcodeRequired" + val NO = "No" + val YES = "Yes" + val QR_CODE_REQUIRED = "QR Code Required?" + val QR_CODE = "QR Code" + val KEYWORDS = "keywords" + val MAX_ALLOWED_CONTENT_SIZE = "max_allowed_content_size" + val TOPIC = "topic" + val CONTENT_TYPE = "contentType" + val IDENTIFIER = "identifier" + val DESCRIPTION = "description" + val LIMIT = "limit" + val NAME = "name" + val LINKED_CONTENT = "linkedContent" + val CHANNEL = "channel" + val CONTENT = "content" + val FRAMEWORK = "framework" + val VERSION_KEY = "versionKey" + val SUNBIRD_TOC_MAX_FIRST_LEVEL_UNITS = "sunbird_toc_max_first_level_units" + val INDEX = "index" + val SUNBIRD_CONTENT_GET_HIERARCHY_API = "sunbird_get_hierarchy_api" + val RESULT = "result" + val CONTENT_TYPE_HEADER = "Content-Type" + val BEARER = "Bearer " + val MESSAGES = "messages" + val APPLICATION_JSON = "application/json" + val REQUEST = "request" + val SEARCH = "search" + val FILTERS = "filters" + val FIELDS = "fields" + val MIME_TYPE = "mimeType" + val X_AUTHENTICATED_USER_TOKEN = "x-authenticated-user-token" + val CATEGORIES = "categories" + val CODE = "code" + val TERMS = "terms" + val TOC_URL = "tocUrl" + val TTL = "ttl" + + val EKSTEP_BASE_URL = "ekstep_api_base_url" + val LEARNING_SERVICE_BASE_URL = "learning_service.api.base_url" + val SUNBIRD_AUTHORIZATION = "learning_service.api.auth_key" + val SUNBIRD_CS_BASE_URL = "sunbird_cs_base_url" + + val FRAMEWORK_READ_API_URL = "framework_read_api_url" + val SUNBIRD_DIALCODE_SEARCH_API = "sunbird_dialcode_search_api" + val SUNBIRD_CONTENT_SEARCH_URL = "sunbird_content_search_url" + val UPDATE_HIERARCHY_API = "sunbird_update_hierarchy_api" + val LINK_DIAL_CODE_API = "sunbird_link_dial_code_api" + +} diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCUtil.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCUtil.scala new file mode 100644 index 0000000000000000000000000000000000000000..dcee4c5f717238f59543ddebb84db39afc24bc1d --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/util/CollectionTOCUtil.scala @@ -0,0 +1,126 @@ +package org.sunbird.collectioncsv.util + + +import org.sunbird.common.exception.{ClientException, ResponseCode, ServerException} +import org.apache.http.HttpHeaders.AUTHORIZATION +import org.sunbird.collectioncsv.util.CollectionTOCConstants.BEARER +import org.sunbird.common.Platform +import org.sunbird.common.dto.Response +import org.sunbird.graph.OntologyEngineContext +import org.sunbird.telemetry.logger.TelemetryManager + +import java.util +import scala.collection.JavaConverters._ +import java.text.MessageFormat +import scala.collection.immutable.{HashMap, Map} +import scala.collection.JavaConversions.mapAsJavaMap +import scala.concurrent.ExecutionContext + + +object CollectionTOCUtil { + + def getFrameworkTopics(frameworkId: String)(implicit oec: OntologyEngineContext, ec: ExecutionContext): Response = { + try { + val headers = new util.HashMap[String, String]() { + put(CollectionTOCConstants.CONTENT_TYPE_HEADER, CollectionTOCConstants.APPLICATION_JSON) + put(AUTHORIZATION, CollectionTOCConstants.BEARER + Platform.config.getString(CollectionTOCConstants.SUNBIRD_AUTHORIZATION)) + } + + val requestUrl = Platform.config.getString(CollectionTOCConstants.LEARNING_SERVICE_BASE_URL) + Platform.config.getString(CollectionTOCConstants.FRAMEWORK_READ_API_URL) + "/" + frameworkId + + TelemetryManager.log("CollectionTOCUtil --> getRelatedFrameworkById --> requestUrl: " + requestUrl) + TelemetryManager.log("CollectionTOCUtil --> getRelatedFrameworkById --> headers: " + headers) + val httpResponse = oec.httpUtil.get(requestUrl,"categories=topic",headers) + + TelemetryManager.log("CollectionTOCUtil --> getRelatedFrameworkById --> httpResponse.getResponseCode: " + httpResponse.getResponseCode) + if ( null== httpResponse || httpResponse.getResponseCode.code() != ResponseCode.OK.code()) + throw new ServerException("SERVER_ERROR", "Error while fetching content data.") + + httpResponse + } catch { + case e: Exception => + TelemetryManager.log("CollectionTOCUtil --> handleReadRequest --> Exception: " + e.getMessage) + throw e + } + } + + def validateDialCodes(channelId: String, dialcodes: List[String])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[String] = { + val reqMap = new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.REQUEST, new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.SEARCH, new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.IDENTIFIER, dialcodes.distinct.asJava) + }) + }) + } + + val headerParam = HashMap[String, String](CollectionTOCConstants.X_CHANNEL_ID -> channelId, AUTHORIZATION -> (CollectionTOCConstants.BEARER + Platform.config.getString(CollectionTOCConstants.SUNBIRD_AUTHORIZATION)), "Content-Type" -> "application/json") + val requestUrl = Platform.config.getString(CollectionTOCConstants.SUNBIRD_CS_BASE_URL) + Platform.config.getString(CollectionTOCConstants.SUNBIRD_DIALCODE_SEARCH_API) + val searchResponse = oec.httpUtil.post(requestUrl, reqMap, headerParam) + + if (null == searchResponse || searchResponse.getResponseCode.code() != ResponseCode.OK.code()) + throw new ServerException("SERVER_ERROR", "Error while fetching DIAL Codes List.") + + try { + val returnDIALCodes = searchResponse.getResult.getOrDefault(CollectionTOCConstants.DIAL_CODES, new util.ArrayList[util.Map[String, AnyRef]]()).asInstanceOf[util.ArrayList[util.Map[String, AnyRef]]] + returnDIALCodes.asScala.toList.map(rec => rec.asScala.toMap[String,AnyRef]).map(_.getOrElse(CollectionTOCConstants.IDENTIFIER, "")).asInstanceOf[List[String]] + } + catch { + case e:Exception => println("CollectionTOCUtil: validateDIALCodes --> exception: " + e.getMessage) + List.empty + } + } + + def searchLinkedContents(linkedContents: List[String])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[Map[String, AnyRef]] = { + val reqMap = new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.REQUEST, new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.FILTERS, new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.IDENTIFIER, linkedContents.distinct.asJava) + }) + put(CollectionTOCConstants.FIELDS, new util.ArrayList[String]() { + add(CollectionTOCConstants.IDENTIFIER) + add(CollectionTOCConstants.NAME) + add(CollectionTOCConstants.CONTENT_TYPE) + add(CollectionTOCConstants.MIME_TYPE) + }) + put(CollectionTOCConstants.LIMIT, linkedContents.size.asInstanceOf[AnyRef]) + }) + } + + val headerParam = HashMap[String, String](AUTHORIZATION -> (BEARER + Platform.config.getString(CollectionTOCConstants.SUNBIRD_AUTHORIZATION)), "Content-Type" -> "application/json") + val requestUrl = Platform.config.getString(CollectionTOCConstants.SUNBIRD_CS_BASE_URL) + Platform.config.getString(CollectionTOCConstants.SUNBIRD_CONTENT_SEARCH_URL) + + val searchResponse = oec.httpUtil.post(requestUrl, reqMap, headerParam) + + if (null == searchResponse || searchResponse.getResponseCode.code() != ResponseCode.OK.code()) + throw new ServerException("SERVER_ERROR", "Error while fetching Linked Contents List.") + + try { + searchResponse.getResult.getOrDefault(CollectionTOCConstants.CONTENT, new util.ArrayList[util.Map[String, AnyRef]]()).asInstanceOf[util.ArrayList[util.Map[String, AnyRef]]].asScala.toList.map(rec => rec.asScala.toMap[String,AnyRef]) + } + catch { + case _:Exception => + List.empty + } + } + + def linkDIALCode(channelId: String, collectionID: String, linkDIALCodesMap: List[Map[String,String]])(implicit oec: OntologyEngineContext, ec: ExecutionContext): Response = { + val reqMap = new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.REQUEST, new util.HashMap[String, AnyRef]() { + put(CollectionTOCConstants.CONTENT, linkDIALCodesMap.asJava) + }) + } + + val headerParam = HashMap[String, String](CollectionTOCConstants.X_CHANNEL_ID -> channelId, AUTHORIZATION -> (BEARER + Platform.config.getString(CollectionTOCConstants.SUNBIRD_AUTHORIZATION)), "Content-Type" -> "application/json") + val requestUrl = Platform.config.getString(CollectionTOCConstants.LEARNING_SERVICE_BASE_URL) + Platform.config.getString(CollectionTOCConstants.LINK_DIAL_CODE_API) + "/" + collectionID + + val linkResponse = oec.httpUtil.post(requestUrl, reqMap, headerParam) + + if (null == linkResponse || linkResponse.getResponseCode.code() != ResponseCode.OK.code()) + if(linkResponse.getResponseCode.code() == 400) { + val msgsResult = linkResponse.getResult.getOrDefault(CollectionTOCConstants.MESSAGES, new util.ArrayList[String]) + throw new ClientException("DIAL_CODE_LINK_ERROR", MessageFormat.format("{0}",msgsResult)) + } else throw new ServerException("SERVER_ERROR", "Error while updating collection hierarchy.") + + linkResponse + } +} diff --git a/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/validator/CollectionCSVValidator.scala b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/validator/CollectionCSVValidator.scala new file mode 100644 index 0000000000000000000000000000000000000000..6ae6ab7a454ed267c97c10b1ad59044e5c75d3e9 --- /dev/null +++ b/content-api/collection-csv-actors/src/main/scala/org.sunbird/collectioncsv/validator/CollectionCSVValidator.scala @@ -0,0 +1,423 @@ +package org.sunbird.collectioncsv.validator + +import org.apache.commons.csv.{CSVFormat, CSVRecord} +import org.apache.commons.io.ByteOrderMark +import org.apache.commons.io.input.BOMInputStream +import org.sunbird.collectioncsv.util.CollectionTOCUtil.{getFrameworkTopics, searchLinkedContents, validateDialCodes} +import org.sunbird.collectioncsv.util.CollectionTOCConstants +import org.sunbird.common.Platform +import org.sunbird.common.dto.Request +import org.sunbird.common.exception.ClientException +import org.sunbird.graph.OntologyEngineContext +import org.sunbird.telemetry.logger.TelemetryManager + +import java.io.{File, FileInputStream, IOException, InputStreamReader} +import java.nio.charset.StandardCharsets +import java.text.MessageFormat +import java.util +import scala.collection.JavaConversions._ +import scala.collection.JavaConverters.{asScalaBufferConverter, mapAsJavaMapConverter, mapAsScalaMapConverter} +import scala.collection.immutable.{HashMap, ListMap, Map} +import scala.concurrent.ExecutionContext + +object CollectionCSVValidator { + + val allowedContentTypes: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_TOC_ALLOWED_CONTENT_TYPES, java.util.Arrays.asList("TextBook","Collection","LessonPlan","Resource")).toList + val allowedNumberOfRecord: Integer = Platform.getInteger(CollectionTOCConstants.COLLECTION_TOC_MAX_CSV_ROWS,6500) + val createCSVHeaders: Map[String, Integer] = Platform.getAnyRef(CollectionTOCConstants.COLLECTION_CREATION_CSV_TOC_HEADERS, Map[String, Integer]("Level 1 Folder"->0,"Level 2 Folder"->1,"Level 3 Folder"->2,"Level 4 Folder"->3,"Description"->4).asJava).asInstanceOf[util.Map[String, Integer]].asScala.toMap + val updateCSVHeaders: Map[String, Integer] = Platform.getAnyRef(CollectionTOCConstants.COLLECTION_UPDATE_CSV_TOC_HEADERS, Map[String, Integer]("Collection Name"->0,"Folder Identifier"->1,"Level 1 Folder"->2,"Level 2 Folder"->3,"Level 3 Folder"->4,"Level 4 Folder"->5,"Description"->6,"Mapped Topics"->7,"Keywords"->8,"QR Code Required?"->9,"QR Code"->10,"Linked Content 1"->11,"Linked Content 2"->12,"Linked Content 3"->13,"Linked Content 4"->14,"Linked Content 5"->15,"Linked Content 6"->16,"Linked Content 7"->17,"Linked Content 8"->18,"Linked Content 9"->19,"Linked Content 10"->20,"Linked Content 11"->21,"Linked Content 12"->22,"Linked Content 13"->23,"Linked Content 14"->24,"Linked Content 15"->25,"Linked Content 16"->26,"Linked Content 17"->27,"Linked Content 18"->28,"Linked Content 19"->29,"Linked Content 20"->30,"Linked Content 21"->31,"Linked Content 22"->32,"Linked Content 23"->33,"Linked Content 24"->34,"Linked Content 25"->35,"Linked Content 26"->36,"Linked Content 27"->37,"Linked Content 28"->38,"Linked Content 29"->39,"Linked Content 30"->40).asJava).asInstanceOf[util.Map[String, Integer]].asScala.toMap + val createCSVMandatoryHeaderCols: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_TOC_CREATE_CSV_MANDATORY_FIELDS, java.util.Arrays.asList("Level 1 Folder")).toList + val updateCSVMandatoryHeaderCols: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_TOC_UPDATE_CSV_MANDATORY_FIELDS, java.util.Arrays.asList("Collection Name","Folder Identifier")).toList + val qrCodeHdrColsList: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_CSV_QR_COLUMNS, java.util.Arrays.asList("QR Code Required?","QR Code")).toList + val folderHierarchyHdrColumnsList: List[String] = Platform.getStringList(CollectionTOCConstants.FOLDER_HIERARCHY_COLUMNS, java.util.Arrays.asList("Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder")).toList + val linkedContentHdrColumnsList: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_CSV_LINKED_CONTENT_FIELDS, java.util.Arrays.asList("Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30")).toList + val linkedContentColumnHeadersSeq: Map[String, Integer] = Platform.getAnyRef(CollectionTOCConstants.COLLECTION_CSV_LINKED_CONTENT_SEQ, Map[String, Integer]("Linked Content 1"->0,"Linked Content 2"->1,"Linked Content 3"->2,"Linked Content 4"->3,"Linked Content 5"->4,"Linked Content 6"->5,"Linked Content 7"->6,"Linked Content 8"->7,"Linked Content 9"->8,"Linked Content 10"->9,"Linked Content 11"->10,"Linked Content 12"->11,"Linked Content 13"->12,"Linked Content 14"->13,"Linked Content 15"->14,"Linked Content 16"->15,"Linked Content 17"->16,"Linked Content 18"->17,"Linked Content 19"->18,"Linked Content 20"->19,"Linked Content 21"->20,"Linked Content 22"->21,"Linked Content 23"->22,"Linked Content 24"->23,"Linked Content 25"->24,"Linked Content 26"->25,"Linked Content 27"->26,"Linked Content 28"->27,"Linked Content 29"->28,"Linked Content 30"->29).asJava).asInstanceOf[util.Map[String, Integer]].asScala.toMap + val collectionNameHeader: List[String] = Platform.getStringList(CollectionTOCConstants.CSV_COLLECTION_NAME_HEADER, java.util.Arrays.asList("Collection Name")).toList + val mappedTopicsHeader: List[String] = Platform.getStringList(CollectionTOCConstants.MAPPED_TOPICS_HEADER, java.util.Arrays.asList("Mapped Topics")).toList + val collectionNodeIdentifierHeader: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_CSV_IDENTIFIER_HEADER, java.util.Arrays.asList("Folder Identifier")).toList + val contentTypeToUnitTypeMapping: Map[String, String] = Platform.getAnyRef(CollectionTOCConstants.COLLECTION_TYPE_TO_UNIT_TYPE, Map[String, String]("TextBook"-> "TextBookUnit", "Course"-> "CourseUnit", "Collection"->"CollectionUnit").asJava).asInstanceOf[util.Map[String, String]].asScala.toMap + val collectionOutputTocHeaders: List[String] = Platform.getStringList(CollectionTOCConstants.COLLECTION_OUTPUT_TOC_HEADERS, java.util.Arrays.asList("Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30")).toList + val maxFolderLevels: Int = folderHierarchyHdrColumnsList.size + + def readInputCSV(request: Request): (String, util.List[CSVRecord], String) = { + val file = request.getRequest.get("file").asInstanceOf[File] + val extension = "."+file.getAbsolutePath.split("\\.").last.toLowerCase + TelemetryManager.log("CollectionCSVManager --> readInputCSV --> file: " + file.getAbsolutePath) + + // Reading input CSV File - START + val bomInputStream = new BOMInputStream(new FileInputStream(file), ByteOrderMark.UTF_16BE, ByteOrderMark.UTF_8, ByteOrderMark.UTF_16LE, ByteOrderMark.UTF_32BE, ByteOrderMark.UTF_32LE) + val character = if (bomInputStream.hasBOM) bomInputStream.getBOMCharsetName else StandardCharsets.UTF_8.name + try { + val csvFileParser = CSVFormat.DEFAULT.withHeader().parse(new InputStreamReader(bomInputStream, character)) + + try { + val csvHeaders: Map[String, Integer] = if (!csvFileParser.getHeaderMap.isEmpty) csvFileParser.getHeaderMap.asScala.toMap else HashMap.empty + // Reading input CSV File - END + val csvRecords = csvFileParser.getRecords + + //Check if CSV Headers are empty + if (null == csvHeaders || csvHeaders.isEmpty) throw new ClientException("BLANK_CSV_DATA", "Did not find any Table of Contents data. Please check and upload again.") + + //Check if the input CSV is 'CREATE' TOC file format or 'UPDATE' TOC file format + val mode = if (csvHeaders.containsKey(collectionNodeIdentifierHeader.head)) CollectionTOCConstants.UPDATE else CollectionTOCConstants.CREATE + TelemetryManager.log("CollectionCSVActor --> uploadTOC --> mode identified: " + mode) + + //Validate the headers format of the input CSV + validateCSVHeadersFormat(csvHeaders, mode) + TelemetryManager.log("CollectionCSVActor --> uploadTOC --> after validating CSV Headers format: ") + + (extension, csvRecords, mode) + } catch { + case ce: ClientException => throw ce + case ex: Exception => throw new ClientException("CLIENT_ERROR", ex.getMessage) + } finally { + try if (null != csvFileParser) csvFileParser.close() + catch { + case e: IOException => TelemetryManager.log("CollectionCSVActor:readAndValidateCSV : Exception occurred while closing stream" + e) + } + } + } + catch { + case ce: ClientException => throw ce + case ex: Exception => throw new ClientException("INVALID_CSV_FILE", "Please provide valid csv file. Please check for data columns without headers.") + } + } + + def validateCSVHeadersFormat(csvHeader: Map[String, Integer], mode:String) { + val configHeaders: Map[String, Integer] = if(mode.equals(CollectionTOCConstants.CREATE)) createCSVHeaders else updateCSVHeaders + + if(!csvHeader.equals(configHeaders)) + { + //Check if Column Order is different + validateHeaderOrder(csvHeader, configHeaders) + //Check if Some columns are missing and any additional columns found + validateDifferentialHeaders(csvHeader, configHeaders) + } + } + + def validateCSVRecordsDataFormat(csvRecords: util.List[CSVRecord], mode: String) { + //Check if CSV Records are empty + if (null == csvRecords || csvRecords.isEmpty) + throw new ClientException("BLANK_CSV_DATA", "Did not find any Table of Contents data. Please check and upload again.") + + // check if records are more than allowed csv rows + if (csvRecords.nonEmpty && csvRecords.size > allowedNumberOfRecord) + throw new ClientException("CSV_ROWS_EXCEEDS", "Number of rows in csv file is more than " + allowedNumberOfRecord) + + validateMandatoryHeaderCols(csvRecords, mode) + validateDuplicateRows(csvRecords) + + if(mode.equals(CollectionTOCConstants.UPDATE)) { + // QRCode data format validations + validateQRCodeColumns(csvRecords) + + // validate linked contents missing entries + validateLinkedContentsColumns(csvRecords) + } + } + + def validateCSVRecordsDataAuthenticity(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[Map[String, AnyRef]] = { + validateCollectionName(csvRecords, collectionHierarchy) + + validateUnitIdentifiers(csvRecords, collectionHierarchy) + + validateQRCodes(csvRecords, collectionHierarchy) + + validateMappedTopics(csvRecords, collectionHierarchy) + + validateLinkedContents(csvRecords, collectionHierarchy) + } + + private def validateHeaderOrder(csvHeader: Map[String, Integer], configHeaders: Map[String, Integer]): Unit = { + if((csvHeader.keySet -- configHeaders.keySet).isEmpty) + { + val colSeqString = ListMap(configHeaders.toSeq.sortBy(_._2):_*).keySet mkString "," + val errorMessage = MessageFormat.format("Found invalid sequence of columns. Please follow the order: "+colSeqString) + throw new ClientException("INVALID_HEADER_SEQUENCE", errorMessage) + } + } + + private def validateDifferentialHeaders(csvHeader: Map[String, Integer], configHeaders: Map[String, Integer]): Unit = { + if((configHeaders.toSet diff csvHeader.toSet).toMap.keySet.nonEmpty && (configHeaders.toSet diff csvHeader.toSet).toMap.keySet.toList.head.nonEmpty && + (((csvHeader.toSet diff configHeaders.toSet).toMap.keySet.nonEmpty && (csvHeader.toSet diff configHeaders.toSet).toMap.keySet.toList.head.nonEmpty) || + (csvHeader.keySet -- configHeaders.keySet).toList.head.nonEmpty)) + { + val additionalCols = (csvHeader.toSet diff configHeaders.toSet).toMap.keySet mkString "," + val missingCols = (configHeaders.toSet diff csvHeader.toSet).toMap.keySet mkString "," + throw new ClientException("INVALID_HEADERS_FOUND", MessageFormat.format("Following Columns are not found in the file: "+missingCols+" AND " + + "Following additional Columns are found in the file: "+additionalCols)) + } + //Check if Some columns are missing + else if((configHeaders.toSet diff csvHeader.toSet).toMap.keySet.nonEmpty && (configHeaders.toSet diff csvHeader.toSet).toMap.keySet.toList.head.nonEmpty) + { + val missingCols = (configHeaders.toSet diff csvHeader.toSet).toMap.keySet mkString "," + throw new ClientException("REQUIRED_HEADER_MISSING", MessageFormat.format("Following Columns are not found in the file: "+missingCols)) + } + //Check if any additional columns found + else if((csvHeader.toSet diff configHeaders.toSet).toMap.keySet.nonEmpty && (csvHeader.toSet diff configHeaders.toSet).toMap.keySet.toList.head.nonEmpty) + { + val additionalCols = (csvHeader.toSet diff configHeaders.toSet).toMap.keySet mkString "," + throw new ClientException("ADDITIONAL_HEADER_FOUND", MessageFormat.format("Following additional Columns are found in the file: "+additionalCols)) + } + } + + private def validateMandatoryHeaderCols(csvRecords: util.List[CSVRecord], mode: String): Unit = { + // Check if data exists in mandatory columns - START + val mandatoryDataHdrCols = if(mode.equals(CollectionTOCConstants.CREATE)) createCSVMandatoryHeaderCols else updateCSVMandatoryHeaderCols + + val mandatoryMissingDataList = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if(mandatoryDataHdrCols.contains(colData._1) && colData._2.trim.isEmpty) + MessageFormat.format("Row {0} - column: {1}", (csvRecord.getRecordNumber+1).toString,colData._1) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(",") + // Check if data exists in mandatory columns - END + + // Check if data exists in hierarchy folder columns - START + val hierarchyHeaders: Map[String, Integer] = if(mode.equals(CollectionTOCConstants.CREATE)) createCSVHeaders else updateCSVHeaders + + val missingDataList = csvRecords.flatMap(csvRecord => { + val csvRecordFolderHierarchyData = csvRecord.toMap.asScala.toMap.filter(colData => { + folderHierarchyHdrColumnsList.contains(colData._1) && colData._2.trim.nonEmpty + }) + csvRecord.toMap.asScala.toMap.map(colData => { + if(folderHierarchyHdrColumnsList.contains(colData._1) && colData._2.trim.isEmpty && + (csvRecordFolderHierarchyData.nonEmpty && hierarchyHeaders(colData._1) < hierarchyHeaders(csvRecordFolderHierarchyData.max._1))) + MessageFormat.format("Row {0} - column: {1}", (csvRecord.getRecordNumber+1).toString,colData._1) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(",") + // Check if data exists in hierarchy folder columns - END + + // Add column data validation messages from mandatory columns and hierarchy folder - START + val missingDataErrorMessage = { + if (mandatoryMissingDataList.trim.nonEmpty && missingDataList.trim.nonEmpty) + mandatoryMissingDataList.trim + "," + missingDataList.trim + else if (mandatoryMissingDataList.trim.nonEmpty) mandatoryMissingDataList.trim + else if (missingDataList.trim.nonEmpty) missingDataList.trim + else "" + } + + if(missingDataErrorMessage.trim.nonEmpty) + throw new ClientException("REQUIRED_FIELD_MISSING", "Following Rows have missing values: " + + missingDataErrorMessage.split(",").distinct.mkString(CollectionTOCConstants.COMMA_SEPARATOR)) + // Add column data validation messages from mandatory columns and hierarchy folder - END + } + + private def validateDuplicateRows(csvRecords: util.List[CSVRecord]): Unit = { + // Verify if there are any duplicate hierarchy folder structure - START + val dupRecordsList = csvRecords.filter(csvRecord => { + csvRecords.exists(record => { + val csvRecordFolderHierarchy = csvRecord.toMap.asScala.toMap.map(colData => { + if(folderHierarchyHdrColumnsList.contains(colData._1)) + colData + }) + val recordFolderHierarchy = record.toMap.asScala.toMap.map(colData => { + if(folderHierarchyHdrColumnsList.contains(colData._1)) + colData + }) + recordFolderHierarchy.equals(csvRecordFolderHierarchy) && !csvRecord.getRecordNumber.equals(record.getRecordNumber) + }) + }).map(dupRecord => { + MessageFormat.format("Row {0}", (dupRecord.getRecordNumber+1).toString) + }).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if(dupRecordsList.trim.nonEmpty) + throw new ClientException("DUPLICATE_ROWS", "Following Rows are duplicate: " + dupRecordsList) + // Verify if there are any duplicate hierarchy folder structure - END + } + + private def validateQRCodeColumns(csvRecords: util.List[CSVRecord]): Unit = { + // Verify if there are any QR Codes data entry issues - START + val qrDataErrorMessage = csvRecords.map(csvRecord => { + val csvRecordMap = csvRecord.toMap.asScala.toMap + if(csvRecordMap(qrCodeHdrColsList.head).equalsIgnoreCase(CollectionTOCConstants.YES) && csvRecordMap(qrCodeHdrColsList(1)).isEmpty) + MessageFormat.format("Row {0} has column 'QR Code Required?' as 'Yes' but 'QR Code' is Blank", (csvRecord.getRecordNumber+1).toString) + else if((csvRecordMap(qrCodeHdrColsList.head).equalsIgnoreCase(CollectionTOCConstants.NO) || csvRecordMap(qrCodeHdrColsList.head).isEmpty) && + csvRecordMap(qrCodeHdrColsList(1)).nonEmpty) + MessageFormat.format("Row {0} has column 'QR Code Required?' as 'No'/Blank but 'QR Code' is Filled", (csvRecord.getRecordNumber+1).toString) + else + "" + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if(qrDataErrorMessage.trim.nonEmpty) + throw new ClientException("ERROR_QR_CODE_ENTRY", "Following rows have issues for QR Code entries: " + qrDataErrorMessage) + // Verify if there are any QR Codes data entry issues - END + + // Verify if there are any duplicate QR Codes - START + val dupQRListMsg = csvRecords.filter(csvRecord => { + csvRecords.exists(record => { + record.get(CollectionTOCConstants.QR_CODE).nonEmpty && csvRecord.get(CollectionTOCConstants.QR_CODE).nonEmpty && record.get(CollectionTOCConstants.QR_CODE).equals(csvRecord.get(CollectionTOCConstants.QR_CODE)) && + !csvRecord.getRecordNumber.equals(record.getRecordNumber) + }) + }).map(dupQRRecord => { + MessageFormat.format("Row {0} - {1}", (dupQRRecord.getRecordNumber+1).toString, dupQRRecord.get(CollectionTOCConstants.QR_CODE)) + }).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if(dupQRListMsg.trim.nonEmpty) + throw new ClientException("DUPLICATE_QR_CODE_ENTRY", "Following rows have duplicate QR Code entries: " + dupQRListMsg) + // Verify if there are any duplicate QR Codes - END + } + + private def validateLinkedContentsColumns(csvRecords: util.List[CSVRecord]): Unit = { + // Check if data exists in Linked content columns - START + val missingLinkedContentDataList = csvRecords.flatMap(csvRecord => { + val csvRecordLinkedContentsData = csvRecord.toMap.asScala.toMap.filter(colData => { + linkedContentHdrColumnsList.contains(colData._1) && colData._2.nonEmpty + }) + + csvRecord.toMap.asScala.toMap.map(colData => { + if(linkedContentHdrColumnsList.contains(colData._1) && colData._2.trim.isEmpty && + (csvRecordLinkedContentsData.nonEmpty && linkedContentColumnHeadersSeq(colData._1) < linkedContentColumnHeadersSeq(csvRecordLinkedContentsData.max._1))) + MessageFormat.format("Row {0} - column: {1}", (csvRecord.getRecordNumber+1).toString,colData._1) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if(missingLinkedContentDataList.trim.nonEmpty) + throw new ClientException("LINKED_CONTENTS_DATA_MISSING", "Following rows have linked contents data missing: " + missingLinkedContentDataList) + // Check if data exists in Linked content columns - END + } + + private def validateCollectionName(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef]): Unit = { + // validate collection name column in CSV - START + val invalidCollectionNameErrorMessage = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (collectionNameHeader.contains(colData._1) && (colData._2.trim.isEmpty || !colData._2.trim.equalsIgnoreCase(collectionHierarchy(CollectionTOCConstants.NAME).toString))) + MessageFormat.format("Row {0}", (csvRecord.getRecordNumber + 1).toString + " - " + colData._2) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if (invalidCollectionNameErrorMessage.trim.nonEmpty) + throw new ClientException("CSV_INVALID_COLLECTION_NAME", "Following rows have invalid Collection Name: " + invalidCollectionNameErrorMessage) + // validate collection name column in CSV - END + TelemetryManager.log("CollectionCSVActor --> validateCSVRecordsDataAuthenticity --> after validating collection name column in CSV") + } + + private def validateUnitIdentifiers(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef]): Unit = { + // validate Folder Identifier column in CSV - START + val collectionChildNodes = collectionHierarchy(CollectionTOCConstants.CHILD_NODES).asInstanceOf[List[String]] + + val invalidCollectionNodeIDErrorMessage = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (collectionNodeIdentifierHeader.contains(colData._1) && (colData._2.isEmpty || !collectionChildNodes.contains(colData._2.trim))) + MessageFormat.format("Row {0}", (csvRecord.getRecordNumber + 1).toString + " - " + colData._2) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if (invalidCollectionNodeIDErrorMessage.trim.nonEmpty) + throw new ClientException("CSV_INVALID_COLLECTION_NODE_ID", "Following rows have invalid folder identifier: " + invalidCollectionNodeIDErrorMessage) + // validate Folder Identifier column in CSV - END + TelemetryManager.log("CollectionCSVActor --> validateCSVRecordsDataAuthenticity --> after validating Folder Identifier column in CSV") + } + + private def validateQRCodes(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): Unit = { + // Validate QR Codes with reserved DIAL codes - START + val csvQRCodesList: List[String] = csvRecords.map(csvRecord => { + csvRecord.toMap.asScala.toMap.get(qrCodeHdrColsList(1)).get.trim + }).filter(msg => msg.nonEmpty).toList + + if(csvQRCodesList.nonEmpty) { + val returnDIALCodes = validateDialCodes(collectionHierarchy(CollectionTOCConstants.CHANNEL).toString, csvQRCodesList) + + val invalidQRCodeErrorMessage = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (qrCodeHdrColsList.contains(colData._1) && (csvQRCodesList diff returnDIALCodes).contains(colData._2.trim)) + MessageFormat.format("Row {0}", (csvRecord.getRecordNumber + 1).toString + " - " + colData._2) + else "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if (invalidQRCodeErrorMessage.trim.nonEmpty) + throw new ClientException("CSV_INVALID_DIAL_CODES", "Following rows have invalid DIAL codes: " + invalidQRCodeErrorMessage) + } + // Validate QR Codes with reserved DIAL codes - END + TelemetryManager.log("CollectionCSVActor --> validateCSVRecordsDataAuthenticity --> after validating QR Codes with reserved DIAL codes") + } + + private def validateMappedTopics(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): Unit = { + // Validate Mapped Topics with Collection Framework data - START + val mappedTopicsList = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (mappedTopicsHeader.contains(colData._1) && colData._2.nonEmpty) colData._2.trim.split(",").mkString(",") else "" + }) + }).filter(msg => msg.nonEmpty).toList + + if(mappedTopicsList.nonEmpty) { + val frameworkId = collectionHierarchy(CollectionTOCConstants.FRAMEWORK).toString + val frameworkGetResponse = getFrameworkTopics(frameworkId) + val frameworkGetResult = frameworkGetResponse.getResult.getOrDefault(CollectionTOCConstants.FRAMEWORK, new util.HashMap[String, AnyRef]()).asInstanceOf[util.HashMap[String, AnyRef]].asScala.toMap[String, AnyRef] + val frameworkCategories = frameworkGetResult.getOrDefault(CollectionTOCConstants.CATEGORIES, new util.ArrayList[util.Map[String,AnyRef]]()).asInstanceOf[util.ArrayList[util.Map[String, AnyRef]]] + + val frameworkTopicList = frameworkCategories.flatMap(categoryData => { + categoryData.map(colData => { + if (categoryData(CollectionTOCConstants.CODE).equals(CollectionTOCConstants.TOPIC) && colData._1.equalsIgnoreCase(CollectionTOCConstants.TERMS)) + colData._2.asInstanceOf[util.ArrayList[util.Map[String, AnyRef]]].asScala.toList.map(rec => rec.asScala.toMap[String,AnyRef]).map(_.getOrElse(CollectionTOCConstants.NAME, "")).asInstanceOf[List[String]] + else List.empty + }) + }).filter(topic => topic.nonEmpty).flatten + + val invalidTopicsErrorMessage = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (mappedTopicsHeader.contains(colData._1) && colData._2.trim.nonEmpty) { + val topicsDataList: List[String] = colData._2.trim.split(",").toList + topicsDataList.map(topic => { + if(!frameworkTopicList.contains(topic.trim)) MessageFormat.format("Row {0}", (csvRecord.getRecordNumber + 1).toString + " - " + topic) else "" + }).filter(errmsg => errmsg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + } else "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if (invalidTopicsErrorMessage.trim.nonEmpty) + throw new ClientException("CSV_INVALID_MAPPED_TOPICS", "Following rows have invalid Mapped Topics: " + invalidTopicsErrorMessage) + } + // Validate Mapped Topics with Collection Framework data - END + TelemetryManager.log("CollectionCSVActor --> validateCSVRecordsDataAuthenticity --> after validating Mapped Topics with Collection Framework data") + } + + private def validateLinkedContents(csvRecords: util.List[CSVRecord], collectionHierarchy: Map[String, AnyRef])(implicit oec: OntologyEngineContext, ec: ExecutionContext): List[Map[String, AnyRef]] = { + // Validate Linked Contents authenticity - START + val csvLinkedContentsList: List[String] = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (linkedContentHdrColumnsList.contains(colData._1) && colData._2.trim.nonEmpty) colData._2.trim else "" + }) + }).filter(msg => msg.nonEmpty).toList + + if (csvLinkedContentsList.nonEmpty) { + val returnedLinkedContentsResult: List[Map[String, AnyRef]] = searchLinkedContents(csvLinkedContentsList) + val returnedLinkedContentsIdentifierList = returnedLinkedContentsResult.map(_.getOrElse(CollectionTOCConstants.IDENTIFIER, "")).asInstanceOf[List[String]] + + val invalidLinkedContentsErrorMessage = csvRecords.flatMap(csvRecord => { + csvRecord.toMap.asScala.toMap.map(colData => { + if (linkedContentHdrColumnsList.contains(colData._1) && (csvLinkedContentsList diff returnedLinkedContentsIdentifierList).contains(colData._2)) + MessageFormat.format("Row {0}", (csvRecord.getRecordNumber + 1).toString + " - " + colData._2) + else + "" + }) + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if (invalidLinkedContentsErrorMessage.trim.nonEmpty) + throw new ClientException("CSV_INVALID_LINKED_CONTENTS", "Following rows have invalid contents linked: " + invalidLinkedContentsErrorMessage) + + val returnedLinkedContentsContentTypeList = returnedLinkedContentsResult.map(_.getOrElse(CollectionTOCConstants.CONTENT_TYPE, "")).asInstanceOf[List[String]] + + if(returnedLinkedContentsContentTypeList.exists(contentType => !allowedContentTypes.contains(contentType))) + { + val invalidContentTypeLinkedContentsList = returnedLinkedContentsResult.map(content => { + if(!allowedContentTypes.contains(content(CollectionTOCConstants.CONTENT_TYPE).toString)) content(CollectionTOCConstants.IDENTIFIER).toString else "" + }).filter(msg => msg.nonEmpty).mkString(CollectionTOCConstants.COMMA_SEPARATOR) + + if(invalidContentTypeLinkedContentsList.trim.nonEmpty) + throw new ClientException("CSV_INVALID_LINKED_CONTENTS_CONTENT_TYPE", "Following contents are not allowed due to invalid content types: " + + invalidContentTypeLinkedContentsList) + } + TelemetryManager.log("CollectionCSVActor --> validateCSVRecordsDataAuthenticity --> after validating Linked Contents") + returnedLinkedContentsResult + } + else List.empty[Map[String, AnyRef]] + // Validate Linked Contents authenticity - END + } +} diff --git a/content-api/collection-csv-actors/src/test/resources/AdditionalHeaderFound.csv b/content-api/collection-csv-actors/src/test/resources/AdditionalHeaderFound.csv new file mode 100644 index 0000000000000000000000000000000000000000..7bb46bbe37dfd5903fd0a5050c5a34363bfce8c4 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/AdditionalHeaderFound.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","dfsgfgfd" +"5. Human Body",,,,"This chapter describes about human body", +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","ds" +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz", +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,, +"5. Human Body","5.2 Organ Systems",,,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg",,"dfw" diff --git a/content-api/collection-csv-actors/src/test/resources/Blank.csv b/content-api/collection-csv-actors/src/test/resources/Blank.csv new file mode 100644 index 0000000000000000000000000000000000000000..d36a458a506c5d79f50056262931ced4d0657309 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/Blank.csv @@ -0,0 +1 @@ +,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/CSVMaxRows.csv b/content-api/collection-csv-actors/src/test/resources/CSVMaxRows.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e776b137079aae752e0d5c7d9d56467c7de0200 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/CSVMaxRows.csv @@ -0,0 +1,6919 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description" +"5. Human Body",,,,"This chapter describes about human body" +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz" +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",, +"5. Human Body","5.2 Organ Systems",,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg", +"6. Human Body",,,,"This chapter describes about human body" +"6. Human Body","6.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"6. Human Body","6.1 Parts of Body","6.1.1 Key parts in the head",,"xyz" +"6. Human Body","6.1 Parts of Body","6.1.2 Other parts",, +"6. Human Body","6.2 Organ Systems",,, +"6. Human Body","6.2 Organ Systems","6.2.1 Respiratory System","dsffgdg", +"7. Human Body",,,,"This chapter describes about human body" +"7. Human Body","7.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"7. Human Body","7.1 Parts of Body","7.1.1 Key parts in the head",,"xyz" +"7. Human Body","7.1 Parts of Body","7.1.2 Other parts",, +"7. Human Body","7.2 Organ Systems",,, +"7. Human Body","7.2 Organ Systems","7.2.1 Respiratory System","dsffgdg", +"8. Human Body",,,,"This chapter describes about human body" +"8. Human Body","8.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"8. Human Body","8.1 Parts of Body","8.1.1 Key parts in the head",,"xyz" +"8. Human Body","8.1 Parts of Body","8.1.2 Other parts",, +"8. Human Body","8.2 Organ Systems",,, +"8. Human Body","8.2 Organ Systems","8.2.1 Respiratory System","dsffgdg", +"9. Human Body",,,,"This chapter describes about human body" +"9. Human Body","9.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"9. Human Body","9.1 Parts of Body","9.1.1 Key parts in the head",,"xyz" +"9. Human Body","9.1 Parts of Body","9.1.2 Other parts",, +"9. Human Body","9.2 Organ Systems",,, +"9. Human Body","9.2 Organ Systems","9.2.1 Respiratory System","dsffgdg", +"10. Human Body",,,,"This chapter describes about human body" +"10. Human Body","10.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"10. Human Body","10.1 Parts of Body","10.1.1 Key parts in the head",,"xyz" +"10. Human Body","10.1 Parts of Body","10.1.2 Other parts",, +"10. Human Body","10.2 Organ Systems",,, +"10. Human Body","10.2 Organ Systems","10.2.1 Respiratory System","dsffgdg", +"11. Human Body",,,,"This chapter describes about human body" +"11. Human Body","11.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"11. Human Body","11.1 Parts of Body","11.1.1 Key parts in the head",,"xyz" +"11. Human Body","11.1 Parts of Body","11.1.2 Other parts",, +"11. Human Body","11.2 Organ Systems",,, +"11. Human Body","11.2 Organ Systems","11.2.1 Respiratory System","dsffgdg", +"12. Human Body",,,,"This chapter describes about human body" +"12. Human Body","12.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"12. Human Body","12.1 Parts of Body","12.1.1 Key parts in the head",,"xyz" +"12. Human Body","12.1 Parts of Body","12.1.2 Other parts",, +"12. Human Body","12.2 Organ Systems",,, +"12. Human Body","12.2 Organ Systems","12.2.1 Respiratory System","dsffgdg", +"13. Human Body",,,,"This chapter describes about human body" +"13. Human Body","13.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"13. Human Body","13.1 Parts of Body","13.1.1 Key parts in the head",,"xyz" +"13. Human Body","13.1 Parts of Body","13.1.2 Other parts",, +"13. Human Body","13.2 Organ Systems",,, +"13. Human Body","13.2 Organ Systems","13.2.1 Respiratory System","dsffgdg", +"14. Human Body",,,,"This chapter describes about human body" +"14. Human Body","14.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"14. Human Body","14.1 Parts of Body","14.1.1 Key parts in the head",,"xyz" +"14. Human Body","14.1 Parts of Body","14.1.2 Other parts",, +"14. Human Body","14.2 Organ Systems",,, +"14. Human Body","14.2 Organ Systems","14.2.1 Respiratory System","dsffgdg", +"15. Human Body",,,,"This chapter describes about human body" +"15. Human Body","15.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"15. Human Body","15.1 Parts of Body","15.1.1 Key parts in the head",,"xyz" +"15. Human Body","15.1 Parts of Body","15.1.2 Other parts",, +"15. Human Body","15.2 Organ Systems",,, +"15. Human Body","15.2 Organ Systems","15.2.1 Respiratory System","dsffgdg", +"16. Human Body",,,,"This chapter describes about human body" +"16. Human Body","16.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"16. Human Body","16.1 Parts of Body","16.1.1 Key parts in the head",,"xyz" +"16. Human Body","16.1 Parts of Body","16.1.2 Other parts",, +"16. Human Body","16.2 Organ Systems",,, +"16. Human Body","16.2 Organ Systems","16.2.1 Respiratory System","dsffgdg", +"17. Human Body",,,,"This chapter describes about human body" +"17. Human Body","17.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"17. Human Body","17.1 Parts of Body","17.1.1 Key parts in the head",,"xyz" +"17. Human Body","17.1 Parts of Body","17.1.2 Other parts",, +"17. Human Body","17.2 Organ Systems",,, +"17. Human Body","17.2 Organ Systems","17.2.1 Respiratory System","dsffgdg", +"18. Human Body",,,,"This chapter describes about human body" +"18. Human Body","18.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"18. Human Body","18.1 Parts of Body","18.1.1 Key parts in the head",,"xyz" +"18. Human Body","18.1 Parts of Body","18.1.2 Other parts",, +"18. Human Body","18.2 Organ Systems",,, +"18. Human Body","18.2 Organ Systems","18.2.1 Respiratory System","dsffgdg", +"19. Human Body",,,,"This chapter describes about human body" +"19. Human Body","19.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"19. Human Body","19.1 Parts of Body","19.1.1 Key parts in the head",,"xyz" +"19. Human Body","19.1 Parts of Body","19.1.2 Other parts",, +"19. Human Body","19.2 Organ Systems",,, +"19. Human Body","19.2 Organ Systems","19.2.1 Respiratory System","dsffgdg", +"20. Human Body",,,,"This chapter describes about human body" +"20. Human Body","20.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"20. Human Body","20.1 Parts of Body","20.1.1 Key parts in the head",,"xyz" +"20. Human Body","20.1 Parts of Body","20.1.2 Other parts",, +"20. Human Body","20.2 Organ Systems",,, +"20. Human Body","20.2 Organ Systems","20.2.1 Respiratory System","dsffgdg", +"21. Human Body",,,,"This chapter describes about human body" +"21. Human Body","21.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"21. Human Body","21.1 Parts of Body","21.1.1 Key parts in the head",,"xyz" +"21. Human Body","21.1 Parts of Body","21.1.2 Other parts",, +"21. Human Body","21.2 Organ Systems",,, +"21. Human Body","21.2 Organ Systems","21.2.1 Respiratory System","dsffgdg", +"22. Human Body",,,,"This chapter describes about human body" +"22. Human Body","22.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"22. Human Body","22.1 Parts of Body","22.1.1 Key parts in the head",,"xyz" +"22. Human Body","22.1 Parts of Body","22.1.2 Other parts",, +"22. Human Body","22.2 Organ Systems",,, +"22. Human Body","22.2 Organ Systems","22.2.1 Respiratory System","dsffgdg", +"23. Human Body",,,,"This chapter describes about human body" +"23. Human Body","23.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"23. Human Body","23.1 Parts of Body","23.1.1 Key parts in the head",,"xyz" +"23. Human Body","23.1 Parts of Body","23.1.2 Other parts",, +"23. Human Body","23.2 Organ Systems",,, +"23. Human Body","23.2 Organ Systems","23.2.1 Respiratory System","dsffgdg", +"24. Human Body",,,,"This chapter describes about human body" +"24. Human Body","24.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"24. Human Body","24.1 Parts of Body","24.1.1 Key parts in the head",,"xyz" +"24. Human Body","24.1 Parts of Body","24.1.2 Other parts",, +"24. Human Body","24.2 Organ Systems",,, +"24. Human Body","24.2 Organ Systems","24.2.1 Respiratory System","dsffgdg", +"25. Human Body",,,,"This chapter describes about human body" +"25. Human Body","25.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"25. Human Body","25.1 Parts of Body","25.1.1 Key parts in the head",,"xyz" +"25. Human Body","25.1 Parts of Body","25.1.2 Other parts",, +"25. Human Body","25.2 Organ Systems",,, +"25. Human Body","25.2 Organ Systems","25.2.1 Respiratory System","dsffgdg", +"26. Human Body",,,,"This chapter describes about human body" +"26. Human Body","26.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"26. Human Body","26.1 Parts of Body","26.1.1 Key parts in the head",,"xyz" +"26. Human Body","26.1 Parts of Body","26.1.2 Other parts",, +"26. Human Body","26.2 Organ Systems",,, +"26. Human Body","26.2 Organ Systems","26.2.1 Respiratory System","dsffgdg", +"27. Human Body",,,,"This chapter describes about human body" +"27. Human Body","27.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"27. Human Body","27.1 Parts of Body","27.1.1 Key parts in the head",,"xyz" +"27. Human Body","27.1 Parts of Body","27.1.2 Other parts",, +"27. Human Body","27.2 Organ Systems",,, +"27. Human Body","27.2 Organ Systems","27.2.1 Respiratory System","dsffgdg", +"28. Human Body",,,,"This chapter describes about human body" +"28. Human Body","28.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"28. Human Body","28.1 Parts of Body","28.1.1 Key parts in the head",,"xyz" +"28. Human Body","28.1 Parts of Body","28.1.2 Other parts",, +"28. Human Body","28.2 Organ Systems",,, +"28. Human Body","28.2 Organ Systems","28.2.1 Respiratory System","dsffgdg", +"29. Human Body",,,,"This chapter describes about human body" +"29. Human Body","29.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"29. Human Body","29.1 Parts of Body","29.1.1 Key parts in the head",,"xyz" +"29. Human Body","29.1 Parts of Body","29.1.2 Other parts",, +"29. Human Body","29.2 Organ Systems",,, +"29. Human Body","29.2 Organ Systems","29.2.1 Respiratory System","dsffgdg", +"30. Human Body",,,,"This chapter describes about human body" +"30. Human Body","30.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"30. Human Body","30.1 Parts of Body","30.1.1 Key parts in the head",,"xyz" +"30. Human Body","30.1 Parts of Body","30.1.2 Other parts",, +"30. Human Body","30.2 Organ Systems",,, +"30. Human Body","30.2 Organ Systems","30.2.1 Respiratory System","dsffgdg", +"31. Human Body",,,,"This chapter describes about human body" +"31. Human Body","31.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"31. Human Body","31.1 Parts of Body","31.1.1 Key parts in the head",,"xyz" +"31. Human Body","31.1 Parts of Body","31.1.2 Other parts",, +"31. Human Body","31.2 Organ Systems",,, +"31. Human Body","31.2 Organ Systems","31.2.1 Respiratory System","dsffgdg", +"32. Human Body",,,,"This chapter describes about human body" +"32. Human Body","32.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"32. Human Body","32.1 Parts of Body","32.1.1 Key parts in the head",,"xyz" +"32. Human Body","32.1 Parts of Body","32.1.2 Other parts",, +"32. Human Body","32.2 Organ Systems",,, +"32. Human Body","32.2 Organ Systems","32.2.1 Respiratory System","dsffgdg", +"33. Human Body",,,,"This chapter describes about human body" +"33. Human Body","33.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"33. Human Body","33.1 Parts of Body","33.1.1 Key parts in the head",,"xyz" +"33. Human Body","33.1 Parts of Body","33.1.2 Other parts",, +"33. Human Body","33.2 Organ Systems",,, +"33. Human Body","33.2 Organ Systems","33.2.1 Respiratory System","dsffgdg", +"34. Human Body",,,,"This chapter describes about human body" +"34. Human Body","34.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"34. Human Body","34.1 Parts of Body","34.1.1 Key parts in the head",,"xyz" +"34. Human Body","34.1 Parts of Body","34.1.2 Other parts",, +"34. Human Body","34.2 Organ Systems",,, +"34. Human Body","34.2 Organ Systems","34.2.1 Respiratory System","dsffgdg", +"35. Human Body",,,,"This chapter describes about human body" +"35. Human Body","35.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"35. Human Body","35.1 Parts of Body","35.1.1 Key parts in the head",,"xyz" +"35. Human Body","35.1 Parts of Body","35.1.2 Other parts",, +"35. Human Body","35.2 Organ Systems",,, +"35. Human Body","35.2 Organ Systems","35.2.1 Respiratory System","dsffgdg", +"36. Human Body",,,,"This chapter describes about human body" +"36. Human Body","36.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"36. Human Body","36.1 Parts of Body","36.1.1 Key parts in the head",,"xyz" +"36. Human Body","36.1 Parts of Body","36.1.2 Other parts",, +"36. Human Body","36.2 Organ Systems",,, +"36. Human Body","36.2 Organ Systems","36.2.1 Respiratory System","dsffgdg", +"37. Human Body",,,,"This chapter describes about human body" +"37. Human Body","37.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"37. Human Body","37.1 Parts of Body","37.1.1 Key parts in the head",,"xyz" +"37. Human Body","37.1 Parts of Body","37.1.2 Other parts",, +"37. Human Body","37.2 Organ Systems",,, +"37. Human Body","37.2 Organ Systems","37.2.1 Respiratory System","dsffgdg", +"38. Human Body",,,,"This chapter describes about human body" +"38. Human Body","38.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"38. Human Body","38.1 Parts of Body","38.1.1 Key parts in the head",,"xyz" +"38. Human Body","38.1 Parts of Body","38.1.2 Other parts",, +"38. Human Body","38.2 Organ Systems",,, +"38. Human Body","38.2 Organ Systems","38.2.1 Respiratory System","dsffgdg", +"39. Human Body",,,,"This chapter describes about human body" +"39. Human Body","39.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"39. Human Body","39.1 Parts of Body","39.1.1 Key parts in the head",,"xyz" +"39. Human Body","39.1 Parts of Body","39.1.2 Other parts",, +"39. Human Body","39.2 Organ Systems",,, +"39. Human Body","39.2 Organ Systems","39.2.1 Respiratory System","dsffgdg", +"40. Human Body",,,,"This chapter describes about human body" +"40. Human Body","40.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"40. Human Body","40.1 Parts of Body","40.1.1 Key parts in the head",,"xyz" +"40. Human Body","40.1 Parts of Body","40.1.2 Other parts",, +"40. Human Body","40.2 Organ Systems",,, +"40. Human Body","40.2 Organ Systems","40.2.1 Respiratory System","dsffgdg", +"41. Human Body",,,,"This chapter describes about human body" +"41. Human Body","41.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"41. Human Body","41.1 Parts of Body","41.1.1 Key parts in the head",,"xyz" +"41. Human Body","41.1 Parts of Body","41.1.2 Other parts",, +"41. Human Body","41.2 Organ Systems",,, +"41. Human Body","41.2 Organ Systems","41.2.1 Respiratory System","dsffgdg", +"42. Human Body",,,,"This chapter describes about human body" +"42. Human Body","42.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"42. Human Body","42.1 Parts of Body","42.1.1 Key parts in the head",,"xyz" +"42. Human Body","42.1 Parts of Body","42.1.2 Other parts",, +"42. Human Body","42.2 Organ Systems",,, +"42. Human Body","42.2 Organ Systems","42.2.1 Respiratory System","dsffgdg", +"43. Human Body",,,,"This chapter describes about human body" +"43. Human Body","43.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"43. Human Body","43.1 Parts of Body","43.1.1 Key parts in the head",,"xyz" +"43. Human Body","43.1 Parts of Body","43.1.2 Other parts",, +"43. Human Body","43.2 Organ Systems",,, +"43. Human Body","43.2 Organ Systems","43.2.1 Respiratory System","dsffgdg", +"44. Human Body",,,,"This chapter describes about human body" +"44. Human Body","44.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"44. Human Body","44.1 Parts of Body","44.1.1 Key parts in the head",,"xyz" +"44. Human Body","44.1 Parts of Body","44.1.2 Other parts",, +"44. Human Body","44.2 Organ Systems",,, +"44. Human Body","44.2 Organ Systems","44.2.1 Respiratory System","dsffgdg", +"45. Human Body",,,,"This chapter describes about human body" +"45. Human Body","45.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"45. Human Body","45.1 Parts of Body","45.1.1 Key parts in the head",,"xyz" +"45. Human Body","45.1 Parts of Body","45.1.2 Other parts",, +"45. Human Body","45.2 Organ Systems",,, +"45. Human Body","45.2 Organ Systems","45.2.1 Respiratory System","dsffgdg", +"46. Human Body",,,,"This chapter describes about human body" +"46. Human Body","46.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"46. Human Body","46.1 Parts of Body","46.1.1 Key parts in the head",,"xyz" +"46. Human Body","46.1 Parts of Body","46.1.2 Other parts",, +"46. Human Body","46.2 Organ Systems",,, +"46. Human Body","46.2 Organ Systems","46.2.1 Respiratory System","dsffgdg", +"47. Human Body",,,,"This chapter describes about human body" +"47. Human Body","47.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"47. Human Body","47.1 Parts of Body","47.1.1 Key parts in the head",,"xyz" +"47. Human Body","47.1 Parts of Body","47.1.2 Other parts",, +"47. Human Body","47.2 Organ Systems",,, +"47. Human Body","47.2 Organ Systems","47.2.1 Respiratory System","dsffgdg", +"48. Human Body",,,,"This chapter describes about human body" +"48. Human Body","48.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"48. Human Body","48.1 Parts of Body","48.1.1 Key parts in the head",,"xyz" +"48. Human Body","48.1 Parts of Body","48.1.2 Other parts",, +"48. Human Body","48.2 Organ Systems",,, +"48. Human Body","48.2 Organ Systems","48.2.1 Respiratory System","dsffgdg", +"49. Human Body",,,,"This chapter describes about human body" +"49. Human Body","49.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"49. Human Body","49.1 Parts of Body","49.1.1 Key parts in the head",,"xyz" +"49. Human Body","49.1 Parts of Body","49.1.2 Other parts",, +"49. Human Body","49.2 Organ Systems",,, +"49. Human Body","49.2 Organ Systems","49.2.1 Respiratory System","dsffgdg", +"50. Human Body",,,,"This chapter describes about human body" +"50. Human Body","50.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"50. Human Body","50.1 Parts of Body","50.1.1 Key parts in the head",,"xyz" +"50. Human Body","50.1 Parts of Body","50.1.2 Other parts",, +"50. Human Body","50.2 Organ Systems",,, +"50. Human Body","50.2 Organ Systems","50.2.1 Respiratory System","dsffgdg", +"51. Human Body",,,,"This chapter describes about human body" +"51. Human Body","51.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"51. Human Body","51.1 Parts of Body","51.1.1 Key parts in the head",,"xyz" +"51. Human Body","51.1 Parts of Body","51.1.2 Other parts",, +"51. Human Body","51.2 Organ Systems",,, +"51. Human Body","51.2 Organ Systems","51.2.1 Respiratory System","dsffgdg", +"52. Human Body",,,,"This chapter describes about human body" +"52. Human Body","52.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"52. Human Body","52.1 Parts of Body","52.1.1 Key parts in the head",,"xyz" +"52. Human Body","52.1 Parts of Body","52.1.2 Other parts",, +"52. Human Body","52.2 Organ Systems",,, +"52. Human Body","52.2 Organ Systems","52.2.1 Respiratory System","dsffgdg", +"53. Human Body",,,,"This chapter describes about human body" +"53. Human Body","53.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"53. Human Body","53.1 Parts of Body","53.1.1 Key parts in the head",,"xyz" +"53. Human Body","53.1 Parts of Body","53.1.2 Other parts",, +"53. Human Body","53.2 Organ Systems",,, +"53. Human Body","53.2 Organ Systems","53.2.1 Respiratory System","dsffgdg", +"54. Human Body",,,,"This chapter describes about human body" +"54. Human Body","54.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"54. Human Body","54.1 Parts of Body","54.1.1 Key parts in the head",,"xyz" +"54. Human Body","54.1 Parts of Body","54.1.2 Other parts",, +"54. Human Body","54.2 Organ Systems",,, +"54. Human Body","54.2 Organ Systems","54.2.1 Respiratory System","dsffgdg", +"55. Human Body",,,,"This chapter describes about human body" +"55. Human Body","55.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"55. Human Body","55.1 Parts of Body","55.1.1 Key parts in the head",,"xyz" +"55. Human Body","55.1 Parts of Body","55.1.2 Other parts",, +"55. Human Body","55.2 Organ Systems",,, +"55. Human Body","55.2 Organ Systems","55.2.1 Respiratory System","dsffgdg", +"56. Human Body",,,,"This chapter describes about human body" +"56. Human Body","56.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"56. Human Body","56.1 Parts of Body","56.1.1 Key parts in the head",,"xyz" +"56. Human Body","56.1 Parts of Body","56.1.2 Other parts",, +"56. Human Body","56.2 Organ Systems",,, +"56. Human Body","56.2 Organ Systems","56.2.1 Respiratory System","dsffgdg", +"57. Human Body",,,,"This chapter describes about human body" +"57. Human Body","57.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"57. Human Body","57.1 Parts of Body","57.1.1 Key parts in the head",,"xyz" +"57. Human Body","57.1 Parts of Body","57.1.2 Other parts",, +"57. Human Body","57.2 Organ Systems",,, +"57. Human Body","57.2 Organ Systems","57.2.1 Respiratory System","dsffgdg", +"58. Human Body",,,,"This chapter describes about human body" +"58. Human Body","58.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"58. Human Body","58.1 Parts of Body","58.1.1 Key parts in the head",,"xyz" +"58. Human Body","58.1 Parts of Body","58.1.2 Other parts",, +"58. Human Body","58.2 Organ Systems",,, +"58. Human Body","58.2 Organ Systems","58.2.1 Respiratory System","dsffgdg", +"59. Human Body",,,,"This chapter describes about human body" +"59. Human Body","59.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"59. Human Body","59.1 Parts of Body","59.1.1 Key parts in the head",,"xyz" +"59. Human Body","59.1 Parts of Body","59.1.2 Other parts",, +"59. Human Body","59.2 Organ Systems",,, +"59. Human Body","59.2 Organ Systems","59.2.1 Respiratory System","dsffgdg", +"60. Human Body",,,,"This chapter describes about human body" +"60. Human Body","60.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"60. Human Body","60.1 Parts of Body","60.1.1 Key parts in the head",,"xyz" +"60. Human Body","60.1 Parts of Body","60.1.2 Other parts",, +"60. Human Body","60.2 Organ Systems",,, +"60. Human Body","60.2 Organ Systems","60.2.1 Respiratory System","dsffgdg", +"61. Human Body",,,,"This chapter describes about human body" +"61. Human Body","61.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"61. Human Body","61.1 Parts of Body","61.1.1 Key parts in the head",,"xyz" +"61. Human Body","61.1 Parts of Body","61.1.2 Other parts",, +"61. Human Body","61.2 Organ Systems",,, +"61. Human Body","61.2 Organ Systems","61.2.1 Respiratory System","dsffgdg", +"62. Human Body",,,,"This chapter describes about human body" +"62. Human Body","62.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"62. Human Body","62.1 Parts of Body","62.1.1 Key parts in the head",,"xyz" +"62. Human Body","62.1 Parts of Body","62.1.2 Other parts",, +"62. Human Body","62.2 Organ Systems",,, +"62. Human Body","62.2 Organ Systems","62.2.1 Respiratory System","dsffgdg", +"63. Human Body",,,,"This chapter describes about human body" +"63. Human Body","63.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"63. Human Body","63.1 Parts of Body","63.1.1 Key parts in the head",,"xyz" +"63. Human Body","63.1 Parts of Body","63.1.2 Other parts",, +"63. Human Body","63.2 Organ Systems",,, +"63. Human Body","63.2 Organ Systems","63.2.1 Respiratory System","dsffgdg", +"64. Human Body",,,,"This chapter describes about human body" +"64. Human Body","64.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"64. Human Body","64.1 Parts of Body","64.1.1 Key parts in the head",,"xyz" +"64. Human Body","64.1 Parts of Body","64.1.2 Other parts",, +"64. Human Body","64.2 Organ Systems",,, +"64. Human Body","64.2 Organ Systems","64.2.1 Respiratory System","dsffgdg", +"65. Human Body",,,,"This chapter describes about human body" +"65. Human Body","65.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"65. Human Body","65.1 Parts of Body","65.1.1 Key parts in the head",,"xyz" +"65. Human Body","65.1 Parts of Body","65.1.2 Other parts",, +"65. Human Body","65.2 Organ Systems",,, +"65. Human Body","65.2 Organ Systems","65.2.1 Respiratory System","dsffgdg", +"66. Human Body",,,,"This chapter describes about human body" +"66. Human Body","66.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"66. Human Body","66.1 Parts of Body","66.1.1 Key parts in the head",,"xyz" +"66. Human Body","66.1 Parts of Body","66.1.2 Other parts",, +"66. Human Body","66.2 Organ Systems",,, +"66. Human Body","66.2 Organ Systems","66.2.1 Respiratory System","dsffgdg", +"67. Human Body",,,,"This chapter describes about human body" +"67. Human Body","67.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"67. Human Body","67.1 Parts of Body","67.1.1 Key parts in the head",,"xyz" +"67. Human Body","67.1 Parts of Body","67.1.2 Other parts",, +"67. Human Body","67.2 Organ Systems",,, +"67. Human Body","67.2 Organ Systems","67.2.1 Respiratory System","dsffgdg", +"68. Human Body",,,,"This chapter describes about human body" +"68. Human Body","68.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"68. Human Body","68.1 Parts of Body","68.1.1 Key parts in the head",,"xyz" +"68. Human Body","68.1 Parts of Body","68.1.2 Other parts",, +"68. Human Body","68.2 Organ Systems",,, +"68. Human Body","68.2 Organ Systems","68.2.1 Respiratory System","dsffgdg", +"69. Human Body",,,,"This chapter describes about human body" +"69. Human Body","69.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"69. Human Body","69.1 Parts of Body","69.1.1 Key parts in the head",,"xyz" +"69. Human Body","69.1 Parts of Body","69.1.2 Other parts",, +"69. Human Body","69.2 Organ Systems",,, +"69. Human Body","69.2 Organ Systems","69.2.1 Respiratory System","dsffgdg", +"70. Human Body",,,,"This chapter describes about human body" +"70. Human Body","70.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"70. Human Body","70.1 Parts of Body","70.1.1 Key parts in the head",,"xyz" +"70. Human Body","70.1 Parts of Body","70.1.2 Other parts",, +"70. Human Body","70.2 Organ Systems",,, +"70. Human Body","70.2 Organ Systems","70.2.1 Respiratory System","dsffgdg", +"71. Human Body",,,,"This chapter describes about human body" +"71. Human Body","71.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"71. Human Body","71.1 Parts of Body","71.1.1 Key parts in the head",,"xyz" +"71. Human Body","71.1 Parts of Body","71.1.2 Other parts",, +"71. Human Body","71.2 Organ Systems",,, +"71. Human Body","71.2 Organ Systems","71.2.1 Respiratory System","dsffgdg", +"72. Human Body",,,,"This chapter describes about human body" +"72. Human Body","72.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"72. Human Body","72.1 Parts of Body","72.1.1 Key parts in the head",,"xyz" +"72. Human Body","72.1 Parts of Body","72.1.2 Other parts",, +"72. Human Body","72.2 Organ Systems",,, +"72. Human Body","72.2 Organ Systems","72.2.1 Respiratory System","dsffgdg", +"73. Human Body",,,,"This chapter describes about human body" +"73. Human Body","73.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"73. Human Body","73.1 Parts of Body","73.1.1 Key parts in the head",,"xyz" +"73. Human Body","73.1 Parts of Body","73.1.2 Other parts",, +"73. Human Body","73.2 Organ Systems",,, +"73. Human Body","73.2 Organ Systems","73.2.1 Respiratory System","dsffgdg", +"74. Human Body",,,,"This chapter describes about human body" +"74. Human Body","74.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"74. Human Body","74.1 Parts of Body","74.1.1 Key parts in the head",,"xyz" +"74. Human Body","74.1 Parts of Body","74.1.2 Other parts",, +"74. Human Body","74.2 Organ Systems",,, +"74. Human Body","74.2 Organ Systems","74.2.1 Respiratory System","dsffgdg", +"75. Human Body",,,,"This chapter describes about human body" +"75. Human Body","75.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"75. Human Body","75.1 Parts of Body","75.1.1 Key parts in the head",,"xyz" +"75. Human Body","75.1 Parts of Body","75.1.2 Other parts",, +"75. Human Body","75.2 Organ Systems",,, +"75. Human Body","75.2 Organ Systems","75.2.1 Respiratory System","dsffgdg", +"76. Human Body",,,,"This chapter describes about human body" +"76. Human Body","76.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"76. Human Body","76.1 Parts of Body","76.1.1 Key parts in the head",,"xyz" +"76. Human Body","76.1 Parts of Body","76.1.2 Other parts",, +"76. Human Body","76.2 Organ Systems",,, +"76. Human Body","76.2 Organ Systems","76.2.1 Respiratory System","dsffgdg", +"77. Human Body",,,,"This chapter describes about human body" +"77. Human Body","77.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"77. Human Body","77.1 Parts of Body","77.1.1 Key parts in the head",,"xyz" +"77. Human Body","77.1 Parts of Body","77.1.2 Other parts",, +"77. Human Body","77.2 Organ Systems",,, +"77. Human Body","77.2 Organ Systems","77.2.1 Respiratory System","dsffgdg", +"78. Human Body",,,,"This chapter describes about human body" +"78. Human Body","78.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"78. Human Body","78.1 Parts of Body","78.1.1 Key parts in the head",,"xyz" +"78. Human Body","78.1 Parts of Body","78.1.2 Other parts",, +"78. Human Body","78.2 Organ Systems",,, +"78. Human Body","78.2 Organ Systems","78.2.1 Respiratory System","dsffgdg", +"79. Human Body",,,,"This chapter describes about human body" +"79. Human Body","79.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"79. Human Body","79.1 Parts of Body","79.1.1 Key parts in the head",,"xyz" +"79. Human Body","79.1 Parts of Body","79.1.2 Other parts",, +"79. Human Body","79.2 Organ Systems",,, +"79. Human Body","79.2 Organ Systems","79.2.1 Respiratory System","dsffgdg", +"80. Human Body",,,,"This chapter describes about human body" +"80. Human Body","80.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"80. Human Body","80.1 Parts of Body","80.1.1 Key parts in the head",,"xyz" +"80. Human Body","80.1 Parts of Body","80.1.2 Other parts",, +"80. Human Body","80.2 Organ Systems",,, +"80. Human Body","80.2 Organ Systems","80.2.1 Respiratory System","dsffgdg", +"81. Human Body",,,,"This chapter describes about human body" +"81. Human Body","81.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"81. Human Body","81.1 Parts of Body","81.1.1 Key parts in the head",,"xyz" +"81. Human Body","81.1 Parts of Body","81.1.2 Other parts",, +"81. Human Body","81.2 Organ Systems",,, +"81. Human Body","81.2 Organ Systems","81.2.1 Respiratory System","dsffgdg", +"82. Human Body",,,,"This chapter describes about human body" +"82. Human Body","82.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"82. Human Body","82.1 Parts of Body","82.1.1 Key parts in the head",,"xyz" +"82. Human Body","82.1 Parts of Body","82.1.2 Other parts",, +"82. Human Body","82.2 Organ Systems",,, +"82. Human Body","82.2 Organ Systems","82.2.1 Respiratory System","dsffgdg", +"83. Human Body",,,,"This chapter describes about human body" +"83. Human Body","83.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"83. Human Body","83.1 Parts of Body","83.1.1 Key parts in the head",,"xyz" +"83. Human Body","83.1 Parts of Body","83.1.2 Other parts",, +"83. Human Body","83.2 Organ Systems",,, +"83. Human Body","83.2 Organ Systems","83.2.1 Respiratory System","dsffgdg", +"84. Human Body",,,,"This chapter describes about human body" +"84. Human Body","84.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"84. Human Body","84.1 Parts of Body","84.1.1 Key parts in the head",,"xyz" +"84. Human Body","84.1 Parts of Body","84.1.2 Other parts",, +"84. Human Body","84.2 Organ Systems",,, +"84. Human Body","84.2 Organ Systems","84.2.1 Respiratory System","dsffgdg", +"85. Human Body",,,,"This chapter describes about human body" +"85. Human Body","85.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"85. Human Body","85.1 Parts of Body","85.1.1 Key parts in the head",,"xyz" +"85. Human Body","85.1 Parts of Body","85.1.2 Other parts",, +"85. Human Body","85.2 Organ Systems",,, +"85. Human Body","85.2 Organ Systems","85.2.1 Respiratory System","dsffgdg", +"86. Human Body",,,,"This chapter describes about human body" +"86. Human Body","86.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"86. Human Body","86.1 Parts of Body","86.1.1 Key parts in the head",,"xyz" +"86. Human Body","86.1 Parts of Body","86.1.2 Other parts",, +"86. Human Body","86.2 Organ Systems",,, +"86. Human Body","86.2 Organ Systems","86.2.1 Respiratory System","dsffgdg", +"87. Human Body",,,,"This chapter describes about human body" +"87. Human Body","87.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"87. Human Body","87.1 Parts of Body","87.1.1 Key parts in the head",,"xyz" +"87. Human Body","87.1 Parts of Body","87.1.2 Other parts",, +"87. Human Body","87.2 Organ Systems",,, +"87. Human Body","87.2 Organ Systems","87.2.1 Respiratory System","dsffgdg", +"88. Human Body",,,,"This chapter describes about human body" +"88. Human Body","88.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"88. Human Body","88.1 Parts of Body","88.1.1 Key parts in the head",,"xyz" +"88. Human Body","88.1 Parts of Body","88.1.2 Other parts",, +"88. Human Body","88.2 Organ Systems",,, +"88. Human Body","88.2 Organ Systems","88.2.1 Respiratory System","dsffgdg", +"89. Human Body",,,,"This chapter describes about human body" +"89. Human Body","89.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"89. Human Body","89.1 Parts of Body","89.1.1 Key parts in the head",,"xyz" +"89. Human Body","89.1 Parts of Body","89.1.2 Other parts",, +"89. Human Body","89.2 Organ Systems",,, +"89. Human Body","89.2 Organ Systems","89.2.1 Respiratory System","dsffgdg", +"90. Human Body",,,,"This chapter describes about human body" +"90. Human Body","90.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"90. Human Body","90.1 Parts of Body","90.1.1 Key parts in the head",,"xyz" +"90. Human Body","90.1 Parts of Body","90.1.2 Other parts",, +"90. Human Body","90.2 Organ Systems",,, +"90. Human Body","90.2 Organ Systems","90.2.1 Respiratory System","dsffgdg", +"91. Human Body",,,,"This chapter describes about human body" +"91. Human Body","91.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"91. Human Body","91.1 Parts of Body","91.1.1 Key parts in the head",,"xyz" +"91. Human Body","91.1 Parts of Body","91.1.2 Other parts",, +"91. Human Body","91.2 Organ Systems",,, +"91. Human Body","91.2 Organ Systems","91.2.1 Respiratory System","dsffgdg", +"92. Human Body",,,,"This chapter describes about human body" +"92. Human Body","92.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"92. Human Body","92.1 Parts of Body","92.1.1 Key parts in the head",,"xyz" +"92. Human Body","92.1 Parts of Body","92.1.2 Other parts",, +"92. Human Body","92.2 Organ Systems",,, +"92. Human Body","92.2 Organ Systems","92.2.1 Respiratory System","dsffgdg", +"93. Human Body",,,,"This chapter describes about human body" +"93. Human Body","93.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"93. Human Body","93.1 Parts of Body","93.1.1 Key parts in the head",,"xyz" +"93. Human Body","93.1 Parts of Body","93.1.2 Other parts",, +"93. Human Body","93.2 Organ Systems",,, +"93. Human Body","93.2 Organ Systems","93.2.1 Respiratory System","dsffgdg", +"94. Human Body",,,,"This chapter describes about human body" +"94. Human Body","94.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"94. Human Body","94.1 Parts of Body","94.1.1 Key parts in the head",,"xyz" +"94. Human Body","94.1 Parts of Body","94.1.2 Other parts",, +"94. Human Body","94.2 Organ Systems",,, +"94. Human Body","94.2 Organ Systems","94.2.1 Respiratory System","dsffgdg", +"95. Human Body",,,,"This chapter describes about human body" +"95. Human Body","95.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"95. Human Body","95.1 Parts of Body","95.1.1 Key parts in the head",,"xyz" +"95. Human Body","95.1 Parts of Body","95.1.2 Other parts",, +"95. Human Body","95.2 Organ Systems",,, +"95. Human Body","95.2 Organ Systems","95.2.1 Respiratory System","dsffgdg", +"96. Human Body",,,,"This chapter describes about human body" +"96. Human Body","96.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"96. Human Body","96.1 Parts of Body","96.1.1 Key parts in the head",,"xyz" +"96. Human Body","96.1 Parts of Body","96.1.2 Other parts",, +"96. Human Body","96.2 Organ Systems",,, +"96. Human Body","96.2 Organ Systems","96.2.1 Respiratory System","dsffgdg", +"97. Human Body",,,,"This chapter describes about human body" +"97. Human Body","97.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"97. Human Body","97.1 Parts of Body","97.1.1 Key parts in the head",,"xyz" +"97. Human Body","97.1 Parts of Body","97.1.2 Other parts",, +"97. Human Body","97.2 Organ Systems",,, +"97. Human Body","97.2 Organ Systems","97.2.1 Respiratory System","dsffgdg", +"98. Human Body",,,,"This chapter describes about human body" +"98. Human Body","98.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"98. Human Body","98.1 Parts of Body","98.1.1 Key parts in the head",,"xyz" +"98. Human Body","98.1 Parts of Body","98.1.2 Other parts",, +"98. Human Body","98.2 Organ Systems",,, +"98. Human Body","98.2 Organ Systems","98.2.1 Respiratory System","dsffgdg", +"99. Human Body",,,,"This chapter describes about human body" +"99. Human Body","99.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"99. Human Body","99.1 Parts of Body","99.1.1 Key parts in the head",,"xyz" +"99. Human Body","99.1 Parts of Body","99.1.2 Other parts",, +"99. Human Body","99.2 Organ Systems",,, +"99. Human Body","99.2 Organ Systems","99.2.1 Respiratory System","dsffgdg", +"100. Human Body",,,,"This chapter describes about human body" +"100. Human Body","100.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"100. Human Body","100.1 Parts of Body","100.1.1 Key parts in the head",,"xyz" +"100. Human Body","100.1 Parts of Body","100.1.2 Other parts",, +"100. Human Body","100.2 Organ Systems",,, +"100. Human Body","100.2 Organ Systems","100.2.1 Respiratory System","dsffgdg", +"101. Human Body",,,,"This chapter describes about human body" +"101. Human Body","101.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"101. Human Body","101.1 Parts of Body","101.1.1 Key parts in the head",,"xyz" +"101. Human Body","101.1 Parts of Body","101.1.2 Other parts",, +"101. Human Body","101.2 Organ Systems",,, +"101. Human Body","101.2 Organ Systems","101.2.1 Respiratory System","dsffgdg", +"102. Human Body",,,,"This chapter describes about human body" +"102. Human Body","102.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"102. Human Body","102.1 Parts of Body","102.1.1 Key parts in the head",,"xyz" +"102. Human Body","102.1 Parts of Body","102.1.2 Other parts",, +"102. Human Body","102.2 Organ Systems",,, +"102. Human Body","102.2 Organ Systems","102.2.1 Respiratory System","dsffgdg", +"103. Human Body",,,,"This chapter describes about human body" +"103. Human Body","103.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"103. Human Body","103.1 Parts of Body","103.1.1 Key parts in the head",,"xyz" +"103. Human Body","103.1 Parts of Body","103.1.2 Other parts",, +"103. Human Body","103.2 Organ Systems",,, +"103. Human Body","103.2 Organ Systems","103.2.1 Respiratory System","dsffgdg", +"104. Human Body",,,,"This chapter describes about human body" +"104. Human Body","104.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"104. Human Body","104.1 Parts of Body","104.1.1 Key parts in the head",,"xyz" +"104. Human Body","104.1 Parts of Body","104.1.2 Other parts",, +"104. Human Body","104.2 Organ Systems",,, +"104. Human Body","104.2 Organ Systems","104.2.1 Respiratory System","dsffgdg", +"105. Human Body",,,,"This chapter describes about human body" +"105. Human Body","105.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"105. Human Body","105.1 Parts of Body","105.1.1 Key parts in the head",,"xyz" +"105. Human Body","105.1 Parts of Body","105.1.2 Other parts",, +"105. Human Body","105.2 Organ Systems",,, +"105. Human Body","105.2 Organ Systems","105.2.1 Respiratory System","dsffgdg", +"106. Human Body",,,,"This chapter describes about human body" +"106. Human Body","106.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"106. Human Body","106.1 Parts of Body","106.1.1 Key parts in the head",,"xyz" +"106. Human Body","106.1 Parts of Body","106.1.2 Other parts",, +"106. Human Body","106.2 Organ Systems",,, +"106. Human Body","106.2 Organ Systems","106.2.1 Respiratory System","dsffgdg", +"107. Human Body",,,,"This chapter describes about human body" +"107. Human Body","107.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"107. Human Body","107.1 Parts of Body","107.1.1 Key parts in the head",,"xyz" +"107. Human Body","107.1 Parts of Body","107.1.2 Other parts",, +"107. Human Body","107.2 Organ Systems",,, +"107. Human Body","107.2 Organ Systems","107.2.1 Respiratory System","dsffgdg", +"108. Human Body",,,,"This chapter describes about human body" +"108. Human Body","108.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"108. Human Body","108.1 Parts of Body","108.1.1 Key parts in the head",,"xyz" +"108. Human Body","108.1 Parts of Body","108.1.2 Other parts",, +"108. Human Body","108.2 Organ Systems",,, +"108. Human Body","108.2 Organ Systems","108.2.1 Respiratory System","dsffgdg", +"109. Human Body",,,,"This chapter describes about human body" +"109. Human Body","109.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"109. Human Body","109.1 Parts of Body","109.1.1 Key parts in the head",,"xyz" +"109. Human Body","109.1 Parts of Body","109.1.2 Other parts",, +"109. Human Body","109.2 Organ Systems",,, +"109. Human Body","109.2 Organ Systems","109.2.1 Respiratory System","dsffgdg", +"110. Human Body",,,,"This chapter describes about human body" +"110. Human Body","110.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"110. Human Body","110.1 Parts of Body","110.1.1 Key parts in the head",,"xyz" +"110. Human Body","110.1 Parts of Body","110.1.2 Other parts",, +"110. Human Body","110.2 Organ Systems",,, +"110. Human Body","110.2 Organ Systems","110.2.1 Respiratory System","dsffgdg", +"111. Human Body",,,,"This chapter describes about human body" +"111. Human Body","111.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"111. Human Body","111.1 Parts of Body","111.1.1 Key parts in the head",,"xyz" +"111. Human Body","111.1 Parts of Body","111.1.2 Other parts",, +"111. Human Body","111.2 Organ Systems",,, +"111. Human Body","111.2 Organ Systems","111.2.1 Respiratory System","dsffgdg", +"112. Human Body",,,,"This chapter describes about human body" +"112. Human Body","112.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"112. Human Body","112.1 Parts of Body","112.1.1 Key parts in the head",,"xyz" +"112. Human Body","112.1 Parts of Body","112.1.2 Other parts",, +"112. Human Body","112.2 Organ Systems",,, +"112. Human Body","112.2 Organ Systems","112.2.1 Respiratory System","dsffgdg", +"113. Human Body",,,,"This chapter describes about human body" +"113. Human Body","113.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"113. Human Body","113.1 Parts of Body","113.1.1 Key parts in the head",,"xyz" +"113. Human Body","113.1 Parts of Body","113.1.2 Other parts",, +"113. Human Body","113.2 Organ Systems",,, +"113. Human Body","113.2 Organ Systems","113.2.1 Respiratory System","dsffgdg", +"114. Human Body",,,,"This chapter describes about human body" +"114. Human Body","114.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"114. Human Body","114.1 Parts of Body","114.1.1 Key parts in the head",,"xyz" +"114. Human Body","114.1 Parts of Body","114.1.2 Other parts",, +"114. Human Body","114.2 Organ Systems",,, +"114. Human Body","114.2 Organ Systems","114.2.1 Respiratory System","dsffgdg", +"115. Human Body",,,,"This chapter describes about human body" +"115. Human Body","115.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"115. Human Body","115.1 Parts of Body","115.1.1 Key parts in the head",,"xyz" +"115. Human Body","115.1 Parts of Body","115.1.2 Other parts",, +"115. Human Body","115.2 Organ Systems",,, +"115. Human Body","115.2 Organ Systems","115.2.1 Respiratory System","dsffgdg", +"116. Human Body",,,,"This chapter describes about human body" +"116. Human Body","116.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"116. Human Body","116.1 Parts of Body","116.1.1 Key parts in the head",,"xyz" +"116. Human Body","116.1 Parts of Body","116.1.2 Other parts",, +"116. Human Body","116.2 Organ Systems",,, +"116. Human Body","116.2 Organ Systems","116.2.1 Respiratory System","dsffgdg", +"117. Human Body",,,,"This chapter describes about human body" +"117. Human Body","117.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"117. Human Body","117.1 Parts of Body","117.1.1 Key parts in the head",,"xyz" +"117. Human Body","117.1 Parts of Body","117.1.2 Other parts",, +"117. Human Body","117.2 Organ Systems",,, +"117. Human Body","117.2 Organ Systems","117.2.1 Respiratory System","dsffgdg", +"118. Human Body",,,,"This chapter describes about human body" +"118. Human Body","118.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"118. Human Body","118.1 Parts of Body","118.1.1 Key parts in the head",,"xyz" +"118. Human Body","118.1 Parts of Body","118.1.2 Other parts",, +"118. Human Body","118.2 Organ Systems",,, +"118. Human Body","118.2 Organ Systems","118.2.1 Respiratory System","dsffgdg", +"119. Human Body",,,,"This chapter describes about human body" +"119. Human Body","119.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"119. Human Body","119.1 Parts of Body","119.1.1 Key parts in the head",,"xyz" +"119. Human Body","119.1 Parts of Body","119.1.2 Other parts",, +"119. Human Body","119.2 Organ Systems",,, +"119. Human Body","119.2 Organ Systems","119.2.1 Respiratory System","dsffgdg", +"120. Human Body",,,,"This chapter describes about human body" +"120. Human Body","120.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"120. Human Body","120.1 Parts of Body","120.1.1 Key parts in the head",,"xyz" +"120. Human Body","120.1 Parts of Body","120.1.2 Other parts",, +"120. Human Body","120.2 Organ Systems",,, +"120. Human Body","120.2 Organ Systems","120.2.1 Respiratory System","dsffgdg", +"121. Human Body",,,,"This chapter describes about human body" +"121. Human Body","121.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"121. Human Body","121.1 Parts of Body","121.1.1 Key parts in the head",,"xyz" +"121. Human Body","121.1 Parts of Body","121.1.2 Other parts",, +"121. Human Body","121.2 Organ Systems",,, +"121. Human Body","121.2 Organ Systems","121.2.1 Respiratory System","dsffgdg", +"122. Human Body",,,,"This chapter describes about human body" +"122. Human Body","122.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"122. Human Body","122.1 Parts of Body","122.1.1 Key parts in the head",,"xyz" +"122. Human Body","122.1 Parts of Body","122.1.2 Other parts",, +"122. Human Body","122.2 Organ Systems",,, +"122. Human Body","122.2 Organ Systems","122.2.1 Respiratory System","dsffgdg", +"123. Human Body",,,,"This chapter describes about human body" +"123. Human Body","123.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"123. Human Body","123.1 Parts of Body","123.1.1 Key parts in the head",,"xyz" +"123. Human Body","123.1 Parts of Body","123.1.2 Other parts",, +"123. Human Body","123.2 Organ Systems",,, +"123. Human Body","123.2 Organ Systems","123.2.1 Respiratory System","dsffgdg", +"124. Human Body",,,,"This chapter describes about human body" +"124. Human Body","124.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"124. Human Body","124.1 Parts of Body","124.1.1 Key parts in the head",,"xyz" +"124. Human Body","124.1 Parts of Body","124.1.2 Other parts",, +"124. Human Body","124.2 Organ Systems",,, +"124. Human Body","124.2 Organ Systems","124.2.1 Respiratory System","dsffgdg", +"125. Human Body",,,,"This chapter describes about human body" +"125. Human Body","125.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"125. Human Body","125.1 Parts of Body","125.1.1 Key parts in the head",,"xyz" +"125. Human Body","125.1 Parts of Body","125.1.2 Other parts",, +"125. Human Body","125.2 Organ Systems",,, +"125. Human Body","125.2 Organ Systems","125.2.1 Respiratory System","dsffgdg", +"126. Human Body",,,,"This chapter describes about human body" +"126. Human Body","126.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"126. Human Body","126.1 Parts of Body","126.1.1 Key parts in the head",,"xyz" +"126. Human Body","126.1 Parts of Body","126.1.2 Other parts",, +"126. Human Body","126.2 Organ Systems",,, +"126. Human Body","126.2 Organ Systems","126.2.1 Respiratory System","dsffgdg", +"127. Human Body",,,,"This chapter describes about human body" +"127. Human Body","127.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"127. Human Body","127.1 Parts of Body","127.1.1 Key parts in the head",,"xyz" +"127. Human Body","127.1 Parts of Body","127.1.2 Other parts",, +"127. Human Body","127.2 Organ Systems",,, +"127. Human Body","127.2 Organ Systems","127.2.1 Respiratory System","dsffgdg", +"128. Human Body",,,,"This chapter describes about human body" +"128. Human Body","128.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"128. Human Body","128.1 Parts of Body","128.1.1 Key parts in the head",,"xyz" +"128. Human Body","128.1 Parts of Body","128.1.2 Other parts",, +"128. Human Body","128.2 Organ Systems",,, +"128. Human Body","128.2 Organ Systems","128.2.1 Respiratory System","dsffgdg", +"129. Human Body",,,,"This chapter describes about human body" +"129. Human Body","129.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"129. Human Body","129.1 Parts of Body","129.1.1 Key parts in the head",,"xyz" +"129. Human Body","129.1 Parts of Body","129.1.2 Other parts",, +"129. Human Body","129.2 Organ Systems",,, +"129. Human Body","129.2 Organ Systems","129.2.1 Respiratory System","dsffgdg", +"130. Human Body",,,,"This chapter describes about human body" +"130. Human Body","130.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"130. Human Body","130.1 Parts of Body","130.1.1 Key parts in the head",,"xyz" +"130. Human Body","130.1 Parts of Body","130.1.2 Other parts",, +"130. Human Body","130.2 Organ Systems",,, +"130. Human Body","130.2 Organ Systems","130.2.1 Respiratory System","dsffgdg", +"131. Human Body",,,,"This chapter describes about human body" +"131. Human Body","131.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"131. Human Body","131.1 Parts of Body","131.1.1 Key parts in the head",,"xyz" +"131. Human Body","131.1 Parts of Body","131.1.2 Other parts",, +"131. Human Body","131.2 Organ Systems",,, +"131. Human Body","131.2 Organ Systems","131.2.1 Respiratory System","dsffgdg", +"132. Human Body",,,,"This chapter describes about human body" +"132. Human Body","132.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"132. Human Body","132.1 Parts of Body","132.1.1 Key parts in the head",,"xyz" +"132. Human Body","132.1 Parts of Body","132.1.2 Other parts",, +"132. Human Body","132.2 Organ Systems",,, +"132. Human Body","132.2 Organ Systems","132.2.1 Respiratory System","dsffgdg", +"133. Human Body",,,,"This chapter describes about human body" +"133. Human Body","133.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"133. Human Body","133.1 Parts of Body","133.1.1 Key parts in the head",,"xyz" +"133. Human Body","133.1 Parts of Body","133.1.2 Other parts",, +"133. Human Body","133.2 Organ Systems",,, +"133. Human Body","133.2 Organ Systems","133.2.1 Respiratory System","dsffgdg", +"134. Human Body",,,,"This chapter describes about human body" +"134. Human Body","134.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"134. Human Body","134.1 Parts of Body","134.1.1 Key parts in the head",,"xyz" +"134. Human Body","134.1 Parts of Body","134.1.2 Other parts",, +"134. Human Body","134.2 Organ Systems",,, +"134. Human Body","134.2 Organ Systems","134.2.1 Respiratory System","dsffgdg", +"135. Human Body",,,,"This chapter describes about human body" +"135. Human Body","135.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"135. Human Body","135.1 Parts of Body","135.1.1 Key parts in the head",,"xyz" +"135. Human Body","135.1 Parts of Body","135.1.2 Other parts",, +"135. Human Body","135.2 Organ Systems",,, +"135. Human Body","135.2 Organ Systems","135.2.1 Respiratory System","dsffgdg", +"136. Human Body",,,,"This chapter describes about human body" +"136. Human Body","136.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"136. Human Body","136.1 Parts of Body","136.1.1 Key parts in the head",,"xyz" +"136. Human Body","136.1 Parts of Body","136.1.2 Other parts",, +"136. Human Body","136.2 Organ Systems",,, +"136. Human Body","136.2 Organ Systems","136.2.1 Respiratory System","dsffgdg", +"137. Human Body",,,,"This chapter describes about human body" +"137. Human Body","137.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"137. Human Body","137.1 Parts of Body","137.1.1 Key parts in the head",,"xyz" +"137. Human Body","137.1 Parts of Body","137.1.2 Other parts",, +"137. Human Body","137.2 Organ Systems",,, +"137. Human Body","137.2 Organ Systems","137.2.1 Respiratory System","dsffgdg", +"138. Human Body",,,,"This chapter describes about human body" +"138. Human Body","138.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"138. Human Body","138.1 Parts of Body","138.1.1 Key parts in the head",,"xyz" +"138. Human Body","138.1 Parts of Body","138.1.2 Other parts",, +"138. Human Body","138.2 Organ Systems",,, +"138. Human Body","138.2 Organ Systems","138.2.1 Respiratory System","dsffgdg", +"139. Human Body",,,,"This chapter describes about human body" +"139. Human Body","139.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"139. Human Body","139.1 Parts of Body","139.1.1 Key parts in the head",,"xyz" +"139. Human Body","139.1 Parts of Body","139.1.2 Other parts",, +"139. Human Body","139.2 Organ Systems",,, +"139. Human Body","139.2 Organ Systems","139.2.1 Respiratory System","dsffgdg", +"140. Human Body",,,,"This chapter describes about human body" +"140. Human Body","140.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"140. Human Body","140.1 Parts of Body","140.1.1 Key parts in the head",,"xyz" +"140. Human Body","140.1 Parts of Body","140.1.2 Other parts",, +"140. Human Body","140.2 Organ Systems",,, +"140. Human Body","140.2 Organ Systems","140.2.1 Respiratory System","dsffgdg", +"141. Human Body",,,,"This chapter describes about human body" +"141. Human Body","141.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"141. Human Body","141.1 Parts of Body","141.1.1 Key parts in the head",,"xyz" +"141. Human Body","141.1 Parts of Body","141.1.2 Other parts",, +"141. Human Body","141.2 Organ Systems",,, +"141. Human Body","141.2 Organ Systems","141.2.1 Respiratory System","dsffgdg", +"142. Human Body",,,,"This chapter describes about human body" +"142. Human Body","142.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"142. Human Body","142.1 Parts of Body","142.1.1 Key parts in the head",,"xyz" +"142. Human Body","142.1 Parts of Body","142.1.2 Other parts",, +"142. Human Body","142.2 Organ Systems",,, +"142. Human Body","142.2 Organ Systems","142.2.1 Respiratory System","dsffgdg", +"143. Human Body",,,,"This chapter describes about human body" +"143. Human Body","143.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"143. Human Body","143.1 Parts of Body","143.1.1 Key parts in the head",,"xyz" +"143. Human Body","143.1 Parts of Body","143.1.2 Other parts",, +"143. Human Body","143.2 Organ Systems",,, +"143. Human Body","143.2 Organ Systems","143.2.1 Respiratory System","dsffgdg", +"144. Human Body",,,,"This chapter describes about human body" +"144. Human Body","144.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"144. Human Body","144.1 Parts of Body","144.1.1 Key parts in the head",,"xyz" +"144. Human Body","144.1 Parts of Body","144.1.2 Other parts",, +"144. Human Body","144.2 Organ Systems",,, +"144. Human Body","144.2 Organ Systems","144.2.1 Respiratory System","dsffgdg", +"145. Human Body",,,,"This chapter describes about human body" +"145. Human Body","145.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"145. Human Body","145.1 Parts of Body","145.1.1 Key parts in the head",,"xyz" +"145. Human Body","145.1 Parts of Body","145.1.2 Other parts",, +"145. Human Body","145.2 Organ Systems",,, +"145. Human Body","145.2 Organ Systems","145.2.1 Respiratory System","dsffgdg", +"146. Human Body",,,,"This chapter describes about human body" +"146. Human Body","146.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"146. Human Body","146.1 Parts of Body","146.1.1 Key parts in the head",,"xyz" +"146. Human Body","146.1 Parts of Body","146.1.2 Other parts",, +"146. Human Body","146.2 Organ Systems",,, +"146. Human Body","146.2 Organ Systems","146.2.1 Respiratory System","dsffgdg", +"147. Human Body",,,,"This chapter describes about human body" +"147. Human Body","147.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"147. Human Body","147.1 Parts of Body","147.1.1 Key parts in the head",,"xyz" +"147. Human Body","147.1 Parts of Body","147.1.2 Other parts",, +"147. Human Body","147.2 Organ Systems",,, +"147. Human Body","147.2 Organ Systems","147.2.1 Respiratory System","dsffgdg", +"148. Human Body",,,,"This chapter describes about human body" +"148. Human Body","148.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"148. Human Body","148.1 Parts of Body","148.1.1 Key parts in the head",,"xyz" +"148. Human Body","148.1 Parts of Body","148.1.2 Other parts",, +"148. Human Body","148.2 Organ Systems",,, +"148. Human Body","148.2 Organ Systems","148.2.1 Respiratory System","dsffgdg", +"149. Human Body",,,,"This chapter describes about human body" +"149. Human Body","149.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"149. Human Body","149.1 Parts of Body","149.1.1 Key parts in the head",,"xyz" +"149. Human Body","149.1 Parts of Body","149.1.2 Other parts",, +"149. Human Body","149.2 Organ Systems",,, +"149. Human Body","149.2 Organ Systems","149.2.1 Respiratory System","dsffgdg", +"150. Human Body",,,,"This chapter describes about human body" +"150. Human Body","150.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"150. Human Body","150.1 Parts of Body","150.1.1 Key parts in the head",,"xyz" +"150. Human Body","150.1 Parts of Body","150.1.2 Other parts",, +"150. Human Body","150.2 Organ Systems",,, +"150. Human Body","150.2 Organ Systems","150.2.1 Respiratory System","dsffgdg", +"151. Human Body",,,,"This chapter describes about human body" +"151. Human Body","151.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"151. Human Body","151.1 Parts of Body","151.1.1 Key parts in the head",,"xyz" +"151. Human Body","151.1 Parts of Body","151.1.2 Other parts",, +"151. Human Body","151.2 Organ Systems",,, +"151. Human Body","151.2 Organ Systems","151.2.1 Respiratory System","dsffgdg", +"152. Human Body",,,,"This chapter describes about human body" +"152. Human Body","152.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"152. Human Body","152.1 Parts of Body","152.1.1 Key parts in the head",,"xyz" +"152. Human Body","152.1 Parts of Body","152.1.2 Other parts",, +"152. Human Body","152.2 Organ Systems",,, +"152. Human Body","152.2 Organ Systems","152.2.1 Respiratory System","dsffgdg", +"153. Human Body",,,,"This chapter describes about human body" +"153. Human Body","153.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"153. Human Body","153.1 Parts of Body","153.1.1 Key parts in the head",,"xyz" +"153. Human Body","153.1 Parts of Body","153.1.2 Other parts",, +"153. Human Body","153.2 Organ Systems",,, +"153. Human Body","153.2 Organ Systems","153.2.1 Respiratory System","dsffgdg", +"154. Human Body",,,,"This chapter describes about human body" +"154. Human Body","154.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"154. Human Body","154.1 Parts of Body","154.1.1 Key parts in the head",,"xyz" +"154. Human Body","154.1 Parts of Body","154.1.2 Other parts",, +"154. Human Body","154.2 Organ Systems",,, +"154. Human Body","154.2 Organ Systems","154.2.1 Respiratory System","dsffgdg", +"155. Human Body",,,,"This chapter describes about human body" +"155. Human Body","155.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"155. Human Body","155.1 Parts of Body","155.1.1 Key parts in the head",,"xyz" +"155. Human Body","155.1 Parts of Body","155.1.2 Other parts",, +"155. Human Body","155.2 Organ Systems",,, +"155. Human Body","155.2 Organ Systems","155.2.1 Respiratory System","dsffgdg", +"156. Human Body",,,,"This chapter describes about human body" +"156. Human Body","156.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"156. Human Body","156.1 Parts of Body","156.1.1 Key parts in the head",,"xyz" +"156. Human Body","156.1 Parts of Body","156.1.2 Other parts",, +"156. Human Body","156.2 Organ Systems",,, +"156. Human Body","156.2 Organ Systems","156.2.1 Respiratory System","dsffgdg", +"157. Human Body",,,,"This chapter describes about human body" +"157. Human Body","157.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"157. Human Body","157.1 Parts of Body","157.1.1 Key parts in the head",,"xyz" +"157. Human Body","157.1 Parts of Body","157.1.2 Other parts",, +"157. Human Body","157.2 Organ Systems",,, +"157. Human Body","157.2 Organ Systems","157.2.1 Respiratory System","dsffgdg", +"158. Human Body",,,,"This chapter describes about human body" +"158. Human Body","158.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"158. Human Body","158.1 Parts of Body","158.1.1 Key parts in the head",,"xyz" +"158. Human Body","158.1 Parts of Body","158.1.2 Other parts",, +"158. Human Body","158.2 Organ Systems",,, +"158. Human Body","158.2 Organ Systems","158.2.1 Respiratory System","dsffgdg", +"159. Human Body",,,,"This chapter describes about human body" +"159. Human Body","159.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"159. Human Body","159.1 Parts of Body","159.1.1 Key parts in the head",,"xyz" +"159. Human Body","159.1 Parts of Body","159.1.2 Other parts",, +"159. Human Body","159.2 Organ Systems",,, +"159. Human Body","159.2 Organ Systems","159.2.1 Respiratory System","dsffgdg", +"160. Human Body",,,,"This chapter describes about human body" +"160. Human Body","160.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"160. Human Body","160.1 Parts of Body","160.1.1 Key parts in the head",,"xyz" +"160. Human Body","160.1 Parts of Body","160.1.2 Other parts",, +"160. Human Body","160.2 Organ Systems",,, +"160. Human Body","160.2 Organ Systems","160.2.1 Respiratory System","dsffgdg", +"161. Human Body",,,,"This chapter describes about human body" +"161. Human Body","161.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"161. Human Body","161.1 Parts of Body","161.1.1 Key parts in the head",,"xyz" +"161. Human Body","161.1 Parts of Body","161.1.2 Other parts",, +"161. Human Body","161.2 Organ Systems",,, +"161. Human Body","161.2 Organ Systems","161.2.1 Respiratory System","dsffgdg", +"162. Human Body",,,,"This chapter describes about human body" +"162. Human Body","162.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"162. Human Body","162.1 Parts of Body","162.1.1 Key parts in the head",,"xyz" +"162. Human Body","162.1 Parts of Body","162.1.2 Other parts",, +"162. Human Body","162.2 Organ Systems",,, +"162. Human Body","162.2 Organ Systems","162.2.1 Respiratory System","dsffgdg", +"163. Human Body",,,,"This chapter describes about human body" +"163. Human Body","163.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"163. Human Body","163.1 Parts of Body","163.1.1 Key parts in the head",,"xyz" +"163. Human Body","163.1 Parts of Body","163.1.2 Other parts",, +"163. Human Body","163.2 Organ Systems",,, +"163. Human Body","163.2 Organ Systems","163.2.1 Respiratory System","dsffgdg", +"164. Human Body",,,,"This chapter describes about human body" +"164. Human Body","164.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"164. Human Body","164.1 Parts of Body","164.1.1 Key parts in the head",,"xyz" +"164. Human Body","164.1 Parts of Body","164.1.2 Other parts",, +"164. Human Body","164.2 Organ Systems",,, +"164. Human Body","164.2 Organ Systems","164.2.1 Respiratory System","dsffgdg", +"165. Human Body",,,,"This chapter describes about human body" +"165. Human Body","165.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"165. Human Body","165.1 Parts of Body","165.1.1 Key parts in the head",,"xyz" +"165. Human Body","165.1 Parts of Body","165.1.2 Other parts",, +"165. Human Body","165.2 Organ Systems",,, +"165. Human Body","165.2 Organ Systems","165.2.1 Respiratory System","dsffgdg", +"166. Human Body",,,,"This chapter describes about human body" +"166. Human Body","166.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"166. Human Body","166.1 Parts of Body","166.1.1 Key parts in the head",,"xyz" +"166. Human Body","166.1 Parts of Body","166.1.2 Other parts",, +"166. Human Body","166.2 Organ Systems",,, +"166. Human Body","166.2 Organ Systems","166.2.1 Respiratory System","dsffgdg", +"167. Human Body",,,,"This chapter describes about human body" +"167. Human Body","167.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"167. Human Body","167.1 Parts of Body","167.1.1 Key parts in the head",,"xyz" +"167. Human Body","167.1 Parts of Body","167.1.2 Other parts",, +"167. Human Body","167.2 Organ Systems",,, +"167. Human Body","167.2 Organ Systems","167.2.1 Respiratory System","dsffgdg", +"168. Human Body",,,,"This chapter describes about human body" +"168. Human Body","168.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"168. Human Body","168.1 Parts of Body","168.1.1 Key parts in the head",,"xyz" +"168. Human Body","168.1 Parts of Body","168.1.2 Other parts",, +"168. Human Body","168.2 Organ Systems",,, +"168. Human Body","168.2 Organ Systems","168.2.1 Respiratory System","dsffgdg", +"169. Human Body",,,,"This chapter describes about human body" +"169. Human Body","169.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"169. Human Body","169.1 Parts of Body","169.1.1 Key parts in the head",,"xyz" +"169. Human Body","169.1 Parts of Body","169.1.2 Other parts",, +"169. Human Body","169.2 Organ Systems",,, +"169. Human Body","169.2 Organ Systems","169.2.1 Respiratory System","dsffgdg", +"170. Human Body",,,,"This chapter describes about human body" +"170. Human Body","170.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"170. Human Body","170.1 Parts of Body","170.1.1 Key parts in the head",,"xyz" +"170. Human Body","170.1 Parts of Body","170.1.2 Other parts",, +"170. Human Body","170.2 Organ Systems",,, +"170. Human Body","170.2 Organ Systems","170.2.1 Respiratory System","dsffgdg", +"171. Human Body",,,,"This chapter describes about human body" +"171. Human Body","171.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"171. Human Body","171.1 Parts of Body","171.1.1 Key parts in the head",,"xyz" +"171. Human Body","171.1 Parts of Body","171.1.2 Other parts",, +"171. Human Body","171.2 Organ Systems",,, +"171. Human Body","171.2 Organ Systems","171.2.1 Respiratory System","dsffgdg", +"172. Human Body",,,,"This chapter describes about human body" +"172. Human Body","172.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"172. Human Body","172.1 Parts of Body","172.1.1 Key parts in the head",,"xyz" +"172. Human Body","172.1 Parts of Body","172.1.2 Other parts",, +"172. Human Body","172.2 Organ Systems",,, +"172. Human Body","172.2 Organ Systems","172.2.1 Respiratory System","dsffgdg", +"173. Human Body",,,,"This chapter describes about human body" +"173. Human Body","173.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"173. Human Body","173.1 Parts of Body","173.1.1 Key parts in the head",,"xyz" +"173. Human Body","173.1 Parts of Body","173.1.2 Other parts",, +"173. Human Body","173.2 Organ Systems",,, +"173. Human Body","173.2 Organ Systems","173.2.1 Respiratory System","dsffgdg", +"174. Human Body",,,,"This chapter describes about human body" +"174. Human Body","174.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"174. Human Body","174.1 Parts of Body","174.1.1 Key parts in the head",,"xyz" +"174. Human Body","174.1 Parts of Body","174.1.2 Other parts",, +"174. Human Body","174.2 Organ Systems",,, +"174. Human Body","174.2 Organ Systems","174.2.1 Respiratory System","dsffgdg", +"175. Human Body",,,,"This chapter describes about human body" +"175. Human Body","175.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"175. Human Body","175.1 Parts of Body","175.1.1 Key parts in the head",,"xyz" +"175. Human Body","175.1 Parts of Body","175.1.2 Other parts",, +"175. Human Body","175.2 Organ Systems",,, +"175. Human Body","175.2 Organ Systems","175.2.1 Respiratory System","dsffgdg", +"176. Human Body",,,,"This chapter describes about human body" +"176. Human Body","176.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"176. Human Body","176.1 Parts of Body","176.1.1 Key parts in the head",,"xyz" +"176. Human Body","176.1 Parts of Body","176.1.2 Other parts",, +"176. Human Body","176.2 Organ Systems",,, +"176. Human Body","176.2 Organ Systems","176.2.1 Respiratory System","dsffgdg", +"177. Human Body",,,,"This chapter describes about human body" +"177. Human Body","177.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"177. Human Body","177.1 Parts of Body","177.1.1 Key parts in the head",,"xyz" +"177. Human Body","177.1 Parts of Body","177.1.2 Other parts",, +"177. Human Body","177.2 Organ Systems",,, +"177. Human Body","177.2 Organ Systems","177.2.1 Respiratory System","dsffgdg", +"178. Human Body",,,,"This chapter describes about human body" +"178. Human Body","178.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"178. Human Body","178.1 Parts of Body","178.1.1 Key parts in the head",,"xyz" +"178. Human Body","178.1 Parts of Body","178.1.2 Other parts",, +"178. Human Body","178.2 Organ Systems",,, +"178. Human Body","178.2 Organ Systems","178.2.1 Respiratory System","dsffgdg", +"179. Human Body",,,,"This chapter describes about human body" +"179. Human Body","179.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"179. Human Body","179.1 Parts of Body","179.1.1 Key parts in the head",,"xyz" +"179. Human Body","179.1 Parts of Body","179.1.2 Other parts",, +"179. Human Body","179.2 Organ Systems",,, +"179. Human Body","179.2 Organ Systems","179.2.1 Respiratory System","dsffgdg", +"180. Human Body",,,,"This chapter describes about human body" +"180. Human Body","180.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"180. Human Body","180.1 Parts of Body","180.1.1 Key parts in the head",,"xyz" +"180. Human Body","180.1 Parts of Body","180.1.2 Other parts",, +"180. Human Body","180.2 Organ Systems",,, +"180. Human Body","180.2 Organ Systems","180.2.1 Respiratory System","dsffgdg", +"181. Human Body",,,,"This chapter describes about human body" +"181. Human Body","181.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"181. Human Body","181.1 Parts of Body","181.1.1 Key parts in the head",,"xyz" +"181. Human Body","181.1 Parts of Body","181.1.2 Other parts",, +"181. Human Body","181.2 Organ Systems",,, +"181. Human Body","181.2 Organ Systems","181.2.1 Respiratory System","dsffgdg", +"182. Human Body",,,,"This chapter describes about human body" +"182. Human Body","182.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"182. Human Body","182.1 Parts of Body","182.1.1 Key parts in the head",,"xyz" +"182. Human Body","182.1 Parts of Body","182.1.2 Other parts",, +"182. Human Body","182.2 Organ Systems",,, +"182. Human Body","182.2 Organ Systems","182.2.1 Respiratory System","dsffgdg", +"183. Human Body",,,,"This chapter describes about human body" +"183. Human Body","183.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"183. Human Body","183.1 Parts of Body","183.1.1 Key parts in the head",,"xyz" +"183. Human Body","183.1 Parts of Body","183.1.2 Other parts",, +"183. Human Body","183.2 Organ Systems",,, +"183. Human Body","183.2 Organ Systems","183.2.1 Respiratory System","dsffgdg", +"184. Human Body",,,,"This chapter describes about human body" +"184. Human Body","184.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"184. Human Body","184.1 Parts of Body","184.1.1 Key parts in the head",,"xyz" +"184. Human Body","184.1 Parts of Body","184.1.2 Other parts",, +"184. Human Body","184.2 Organ Systems",,, +"184. Human Body","184.2 Organ Systems","184.2.1 Respiratory System","dsffgdg", +"185. Human Body",,,,"This chapter describes about human body" +"185. Human Body","185.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"185. Human Body","185.1 Parts of Body","185.1.1 Key parts in the head",,"xyz" +"185. Human Body","185.1 Parts of Body","185.1.2 Other parts",, +"185. Human Body","185.2 Organ Systems",,, +"185. Human Body","185.2 Organ Systems","185.2.1 Respiratory System","dsffgdg", +"186. Human Body",,,,"This chapter describes about human body" +"186. Human Body","186.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"186. Human Body","186.1 Parts of Body","186.1.1 Key parts in the head",,"xyz" +"186. Human Body","186.1 Parts of Body","186.1.2 Other parts",, +"186. Human Body","186.2 Organ Systems",,, +"186. Human Body","186.2 Organ Systems","186.2.1 Respiratory System","dsffgdg", +"187. Human Body",,,,"This chapter describes about human body" +"187. Human Body","187.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"187. Human Body","187.1 Parts of Body","187.1.1 Key parts in the head",,"xyz" +"187. Human Body","187.1 Parts of Body","187.1.2 Other parts",, +"187. Human Body","187.2 Organ Systems",,, +"187. Human Body","187.2 Organ Systems","187.2.1 Respiratory System","dsffgdg", +"188. Human Body",,,,"This chapter describes about human body" +"188. Human Body","188.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"188. Human Body","188.1 Parts of Body","188.1.1 Key parts in the head",,"xyz" +"188. Human Body","188.1 Parts of Body","188.1.2 Other parts",, +"188. Human Body","188.2 Organ Systems",,, +"188. Human Body","188.2 Organ Systems","188.2.1 Respiratory System","dsffgdg", +"189. Human Body",,,,"This chapter describes about human body" +"189. Human Body","189.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"189. Human Body","189.1 Parts of Body","189.1.1 Key parts in the head",,"xyz" +"189. Human Body","189.1 Parts of Body","189.1.2 Other parts",, +"189. Human Body","189.2 Organ Systems",,, +"189. Human Body","189.2 Organ Systems","189.2.1 Respiratory System","dsffgdg", +"190. Human Body",,,,"This chapter describes about human body" +"190. Human Body","190.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"190. Human Body","190.1 Parts of Body","190.1.1 Key parts in the head",,"xyz" +"190. Human Body","190.1 Parts of Body","190.1.2 Other parts",, +"190. Human Body","190.2 Organ Systems",,, +"190. Human Body","190.2 Organ Systems","190.2.1 Respiratory System","dsffgdg", +"191. Human Body",,,,"This chapter describes about human body" +"191. Human Body","191.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"191. Human Body","191.1 Parts of Body","191.1.1 Key parts in the head",,"xyz" +"191. Human Body","191.1 Parts of Body","191.1.2 Other parts",, +"191. Human Body","191.2 Organ Systems",,, +"191. Human Body","191.2 Organ Systems","191.2.1 Respiratory System","dsffgdg", +"192. Human Body",,,,"This chapter describes about human body" +"192. Human Body","192.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"192. Human Body","192.1 Parts of Body","192.1.1 Key parts in the head",,"xyz" +"192. Human Body","192.1 Parts of Body","192.1.2 Other parts",, +"192. Human Body","192.2 Organ Systems",,, +"192. Human Body","192.2 Organ Systems","192.2.1 Respiratory System","dsffgdg", +"193. Human Body",,,,"This chapter describes about human body" +"193. Human Body","193.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"193. Human Body","193.1 Parts of Body","193.1.1 Key parts in the head",,"xyz" +"193. Human Body","193.1 Parts of Body","193.1.2 Other parts",, +"193. Human Body","193.2 Organ Systems",,, +"193. Human Body","193.2 Organ Systems","193.2.1 Respiratory System","dsffgdg", +"194. Human Body",,,,"This chapter describes about human body" +"194. Human Body","194.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"194. Human Body","194.1 Parts of Body","194.1.1 Key parts in the head",,"xyz" +"194. Human Body","194.1 Parts of Body","194.1.2 Other parts",, +"194. Human Body","194.2 Organ Systems",,, +"194. Human Body","194.2 Organ Systems","194.2.1 Respiratory System","dsffgdg", +"195. Human Body",,,,"This chapter describes about human body" +"195. Human Body","195.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"195. Human Body","195.1 Parts of Body","195.1.1 Key parts in the head",,"xyz" +"195. Human Body","195.1 Parts of Body","195.1.2 Other parts",, +"195. Human Body","195.2 Organ Systems",,, +"195. Human Body","195.2 Organ Systems","195.2.1 Respiratory System","dsffgdg", +"196. Human Body",,,,"This chapter describes about human body" +"196. Human Body","196.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"196. Human Body","196.1 Parts of Body","196.1.1 Key parts in the head",,"xyz" +"196. Human Body","196.1 Parts of Body","196.1.2 Other parts",, +"196. Human Body","196.2 Organ Systems",,, +"196. Human Body","196.2 Organ Systems","196.2.1 Respiratory System","dsffgdg", +"197. Human Body",,,,"This chapter describes about human body" +"197. Human Body","197.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"197. Human Body","197.1 Parts of Body","197.1.1 Key parts in the head",,"xyz" +"197. Human Body","197.1 Parts of Body","197.1.2 Other parts",, +"197. Human Body","197.2 Organ Systems",,, +"197. Human Body","197.2 Organ Systems","197.2.1 Respiratory System","dsffgdg", +"198. Human Body",,,,"This chapter describes about human body" +"198. Human Body","198.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"198. Human Body","198.1 Parts of Body","198.1.1 Key parts in the head",,"xyz" +"198. Human Body","198.1 Parts of Body","198.1.2 Other parts",, +"198. Human Body","198.2 Organ Systems",,, +"198. Human Body","198.2 Organ Systems","198.2.1 Respiratory System","dsffgdg", +"199. Human Body",,,,"This chapter describes about human body" +"199. Human Body","199.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"199. Human Body","199.1 Parts of Body","199.1.1 Key parts in the head",,"xyz" +"199. Human Body","199.1 Parts of Body","199.1.2 Other parts",, +"199. Human Body","199.2 Organ Systems",,, +"199. Human Body","199.2 Organ Systems","199.2.1 Respiratory System","dsffgdg", +"200. Human Body",,,,"This chapter describes about human body" +"200. Human Body","200.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"200. Human Body","200.1 Parts of Body","200.1.1 Key parts in the head",,"xyz" +"200. Human Body","200.1 Parts of Body","200.1.2 Other parts",, +"200. Human Body","200.2 Organ Systems",,, +"200. Human Body","200.2 Organ Systems","200.2.1 Respiratory System","dsffgdg", +"201. Human Body",,,,"This chapter describes about human body" +"201. Human Body","201.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"201. Human Body","201.1 Parts of Body","201.1.1 Key parts in the head",,"xyz" +"201. Human Body","201.1 Parts of Body","201.1.2 Other parts",, +"201. Human Body","201.2 Organ Systems",,, +"201. Human Body","201.2 Organ Systems","201.2.1 Respiratory System","dsffgdg", +"202. Human Body",,,,"This chapter describes about human body" +"202. Human Body","202.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"202. Human Body","202.1 Parts of Body","202.1.1 Key parts in the head",,"xyz" +"202. Human Body","202.1 Parts of Body","202.1.2 Other parts",, +"202. Human Body","202.2 Organ Systems",,, +"202. Human Body","202.2 Organ Systems","202.2.1 Respiratory System","dsffgdg", +"203. Human Body",,,,"This chapter describes about human body" +"203. Human Body","203.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"203. Human Body","203.1 Parts of Body","203.1.1 Key parts in the head",,"xyz" +"203. Human Body","203.1 Parts of Body","203.1.2 Other parts",, +"203. Human Body","203.2 Organ Systems",,, +"203. Human Body","203.2 Organ Systems","203.2.1 Respiratory System","dsffgdg", +"204. Human Body",,,,"This chapter describes about human body" +"204. Human Body","204.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"204. Human Body","204.1 Parts of Body","204.1.1 Key parts in the head",,"xyz" +"204. Human Body","204.1 Parts of Body","204.1.2 Other parts",, +"204. Human Body","204.2 Organ Systems",,, +"204. Human Body","204.2 Organ Systems","204.2.1 Respiratory System","dsffgdg", +"205. Human Body",,,,"This chapter describes about human body" +"205. Human Body","205.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"205. Human Body","205.1 Parts of Body","205.1.1 Key parts in the head",,"xyz" +"205. Human Body","205.1 Parts of Body","205.1.2 Other parts",, +"205. Human Body","205.2 Organ Systems",,, +"205. Human Body","205.2 Organ Systems","205.2.1 Respiratory System","dsffgdg", +"206. Human Body",,,,"This chapter describes about human body" +"206. Human Body","206.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"206. Human Body","206.1 Parts of Body","206.1.1 Key parts in the head",,"xyz" +"206. Human Body","206.1 Parts of Body","206.1.2 Other parts",, +"206. Human Body","206.2 Organ Systems",,, +"206. Human Body","206.2 Organ Systems","206.2.1 Respiratory System","dsffgdg", +"207. Human Body",,,,"This chapter describes about human body" +"207. Human Body","207.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"207. Human Body","207.1 Parts of Body","207.1.1 Key parts in the head",,"xyz" +"207. Human Body","207.1 Parts of Body","207.1.2 Other parts",, +"207. Human Body","207.2 Organ Systems",,, +"207. Human Body","207.2 Organ Systems","207.2.1 Respiratory System","dsffgdg", +"208. Human Body",,,,"This chapter describes about human body" +"208. Human Body","208.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"208. Human Body","208.1 Parts of Body","208.1.1 Key parts in the head",,"xyz" +"208. Human Body","208.1 Parts of Body","208.1.2 Other parts",, +"208. Human Body","208.2 Organ Systems",,, +"208. Human Body","208.2 Organ Systems","208.2.1 Respiratory System","dsffgdg", +"209. Human Body",,,,"This chapter describes about human body" +"209. Human Body","209.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"209. Human Body","209.1 Parts of Body","209.1.1 Key parts in the head",,"xyz" +"209. Human Body","209.1 Parts of Body","209.1.2 Other parts",, +"209. Human Body","209.2 Organ Systems",,, +"209. Human Body","209.2 Organ Systems","209.2.1 Respiratory System","dsffgdg", +"210. Human Body",,,,"This chapter describes about human body" +"210. Human Body","210.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"210. Human Body","210.1 Parts of Body","210.1.1 Key parts in the head",,"xyz" +"210. Human Body","210.1 Parts of Body","210.1.2 Other parts",, +"210. Human Body","210.2 Organ Systems",,, +"210. Human Body","210.2 Organ Systems","210.2.1 Respiratory System","dsffgdg", +"211. Human Body",,,,"This chapter describes about human body" +"211. Human Body","211.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"211. Human Body","211.1 Parts of Body","211.1.1 Key parts in the head",,"xyz" +"211. Human Body","211.1 Parts of Body","211.1.2 Other parts",, +"211. Human Body","211.2 Organ Systems",,, +"211. Human Body","211.2 Organ Systems","211.2.1 Respiratory System","dsffgdg", +"212. Human Body",,,,"This chapter describes about human body" +"212. Human Body","212.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"212. Human Body","212.1 Parts of Body","212.1.1 Key parts in the head",,"xyz" +"212. Human Body","212.1 Parts of Body","212.1.2 Other parts",, +"212. Human Body","212.2 Organ Systems",,, +"212. Human Body","212.2 Organ Systems","212.2.1 Respiratory System","dsffgdg", +"213. Human Body",,,,"This chapter describes about human body" +"213. Human Body","213.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"213. Human Body","213.1 Parts of Body","213.1.1 Key parts in the head",,"xyz" +"213. Human Body","213.1 Parts of Body","213.1.2 Other parts",, +"213. Human Body","213.2 Organ Systems",,, +"213. Human Body","213.2 Organ Systems","213.2.1 Respiratory System","dsffgdg", +"214. Human Body",,,,"This chapter describes about human body" +"214. Human Body","214.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"214. Human Body","214.1 Parts of Body","214.1.1 Key parts in the head",,"xyz" +"214. Human Body","214.1 Parts of Body","214.1.2 Other parts",, +"214. Human Body","214.2 Organ Systems",,, +"214. Human Body","214.2 Organ Systems","214.2.1 Respiratory System","dsffgdg", +"215. Human Body",,,,"This chapter describes about human body" +"215. Human Body","215.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"215. Human Body","215.1 Parts of Body","215.1.1 Key parts in the head",,"xyz" +"215. Human Body","215.1 Parts of Body","215.1.2 Other parts",, +"215. Human Body","215.2 Organ Systems",,, +"215. Human Body","215.2 Organ Systems","215.2.1 Respiratory System","dsffgdg", +"216. Human Body",,,,"This chapter describes about human body" +"216. Human Body","216.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"216. Human Body","216.1 Parts of Body","216.1.1 Key parts in the head",,"xyz" +"216. Human Body","216.1 Parts of Body","216.1.2 Other parts",, +"216. Human Body","216.2 Organ Systems",,, +"216. Human Body","216.2 Organ Systems","216.2.1 Respiratory System","dsffgdg", +"217. Human Body",,,,"This chapter describes about human body" +"217. Human Body","217.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"217. Human Body","217.1 Parts of Body","217.1.1 Key parts in the head",,"xyz" +"217. Human Body","217.1 Parts of Body","217.1.2 Other parts",, +"217. Human Body","217.2 Organ Systems",,, +"217. Human Body","217.2 Organ Systems","217.2.1 Respiratory System","dsffgdg", +"218. Human Body",,,,"This chapter describes about human body" +"218. Human Body","218.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"218. Human Body","218.1 Parts of Body","218.1.1 Key parts in the head",,"xyz" +"218. Human Body","218.1 Parts of Body","218.1.2 Other parts",, +"218. Human Body","218.2 Organ Systems",,, +"218. Human Body","218.2 Organ Systems","218.2.1 Respiratory System","dsffgdg", +"219. Human Body",,,,"This chapter describes about human body" +"219. Human Body","219.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"219. Human Body","219.1 Parts of Body","219.1.1 Key parts in the head",,"xyz" +"219. Human Body","219.1 Parts of Body","219.1.2 Other parts",, +"219. Human Body","219.2 Organ Systems",,, +"219. Human Body","219.2 Organ Systems","219.2.1 Respiratory System","dsffgdg", +"220. Human Body",,,,"This chapter describes about human body" +"220. Human Body","220.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"220. Human Body","220.1 Parts of Body","220.1.1 Key parts in the head",,"xyz" +"220. Human Body","220.1 Parts of Body","220.1.2 Other parts",, +"220. Human Body","220.2 Organ Systems",,, +"220. Human Body","220.2 Organ Systems","220.2.1 Respiratory System","dsffgdg", +"221. Human Body",,,,"This chapter describes about human body" +"221. Human Body","221.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"221. Human Body","221.1 Parts of Body","221.1.1 Key parts in the head",,"xyz" +"221. Human Body","221.1 Parts of Body","221.1.2 Other parts",, +"221. Human Body","221.2 Organ Systems",,, +"221. Human Body","221.2 Organ Systems","221.2.1 Respiratory System","dsffgdg", +"222. Human Body",,,,"This chapter describes about human body" +"222. Human Body","222.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"222. Human Body","222.1 Parts of Body","222.1.1 Key parts in the head",,"xyz" +"222. Human Body","222.1 Parts of Body","222.1.2 Other parts",, +"222. Human Body","222.2 Organ Systems",,, +"222. Human Body","222.2 Organ Systems","222.2.1 Respiratory System","dsffgdg", +"223. Human Body",,,,"This chapter describes about human body" +"223. Human Body","223.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"223. Human Body","223.1 Parts of Body","223.1.1 Key parts in the head",,"xyz" +"223. Human Body","223.1 Parts of Body","223.1.2 Other parts",, +"223. Human Body","223.2 Organ Systems",,, +"223. Human Body","223.2 Organ Systems","223.2.1 Respiratory System","dsffgdg", +"224. Human Body",,,,"This chapter describes about human body" +"224. Human Body","224.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"224. Human Body","224.1 Parts of Body","224.1.1 Key parts in the head",,"xyz" +"224. Human Body","224.1 Parts of Body","224.1.2 Other parts",, +"224. Human Body","224.2 Organ Systems",,, +"224. Human Body","224.2 Organ Systems","224.2.1 Respiratory System","dsffgdg", +"225. Human Body",,,,"This chapter describes about human body" +"225. Human Body","225.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"225. Human Body","225.1 Parts of Body","225.1.1 Key parts in the head",,"xyz" +"225. Human Body","225.1 Parts of Body","225.1.2 Other parts",, +"225. Human Body","225.2 Organ Systems",,, +"225. Human Body","225.2 Organ Systems","225.2.1 Respiratory System","dsffgdg", +"226. Human Body",,,,"This chapter describes about human body" +"226. Human Body","226.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"226. Human Body","226.1 Parts of Body","226.1.1 Key parts in the head",,"xyz" +"226. Human Body","226.1 Parts of Body","226.1.2 Other parts",, +"226. Human Body","226.2 Organ Systems",,, +"226. Human Body","226.2 Organ Systems","226.2.1 Respiratory System","dsffgdg", +"227. Human Body",,,,"This chapter describes about human body" +"227. Human Body","227.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"227. Human Body","227.1 Parts of Body","227.1.1 Key parts in the head",,"xyz" +"227. Human Body","227.1 Parts of Body","227.1.2 Other parts",, +"227. Human Body","227.2 Organ Systems",,, +"227. Human Body","227.2 Organ Systems","227.2.1 Respiratory System","dsffgdg", +"228. Human Body",,,,"This chapter describes about human body" +"228. Human Body","228.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"228. Human Body","228.1 Parts of Body","228.1.1 Key parts in the head",,"xyz" +"228. Human Body","228.1 Parts of Body","228.1.2 Other parts",, +"228. Human Body","228.2 Organ Systems",,, +"228. Human Body","228.2 Organ Systems","228.2.1 Respiratory System","dsffgdg", +"229. Human Body",,,,"This chapter describes about human body" +"229. Human Body","229.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"229. Human Body","229.1 Parts of Body","229.1.1 Key parts in the head",,"xyz" +"229. Human Body","229.1 Parts of Body","229.1.2 Other parts",, +"229. Human Body","229.2 Organ Systems",,, +"229. Human Body","229.2 Organ Systems","229.2.1 Respiratory System","dsffgdg", +"230. Human Body",,,,"This chapter describes about human body" +"230. Human Body","230.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"230. Human Body","230.1 Parts of Body","230.1.1 Key parts in the head",,"xyz" +"230. Human Body","230.1 Parts of Body","230.1.2 Other parts",, +"230. Human Body","230.2 Organ Systems",,, +"230. Human Body","230.2 Organ Systems","230.2.1 Respiratory System","dsffgdg", +"231. Human Body",,,,"This chapter describes about human body" +"231. Human Body","231.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"231. Human Body","231.1 Parts of Body","231.1.1 Key parts in the head",,"xyz" +"231. Human Body","231.1 Parts of Body","231.1.2 Other parts",, +"231. Human Body","231.2 Organ Systems",,, +"231. Human Body","231.2 Organ Systems","231.2.1 Respiratory System","dsffgdg", +"232. Human Body",,,,"This chapter describes about human body" +"232. Human Body","232.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"232. Human Body","232.1 Parts of Body","232.1.1 Key parts in the head",,"xyz" +"232. Human Body","232.1 Parts of Body","232.1.2 Other parts",, +"232. Human Body","232.2 Organ Systems",,, +"232. Human Body","232.2 Organ Systems","232.2.1 Respiratory System","dsffgdg", +"233. Human Body",,,,"This chapter describes about human body" +"233. Human Body","233.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"233. Human Body","233.1 Parts of Body","233.1.1 Key parts in the head",,"xyz" +"233. Human Body","233.1 Parts of Body","233.1.2 Other parts",, +"233. Human Body","233.2 Organ Systems",,, +"233. Human Body","233.2 Organ Systems","233.2.1 Respiratory System","dsffgdg", +"234. Human Body",,,,"This chapter describes about human body" +"234. Human Body","234.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"234. Human Body","234.1 Parts of Body","234.1.1 Key parts in the head",,"xyz" +"234. Human Body","234.1 Parts of Body","234.1.2 Other parts",, +"234. Human Body","234.2 Organ Systems",,, +"234. Human Body","234.2 Organ Systems","234.2.1 Respiratory System","dsffgdg", +"235. Human Body",,,,"This chapter describes about human body" +"235. Human Body","235.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"235. Human Body","235.1 Parts of Body","235.1.1 Key parts in the head",,"xyz" +"235. Human Body","235.1 Parts of Body","235.1.2 Other parts",, +"235. Human Body","235.2 Organ Systems",,, +"235. Human Body","235.2 Organ Systems","235.2.1 Respiratory System","dsffgdg", +"236. Human Body",,,,"This chapter describes about human body" +"236. Human Body","236.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"236. Human Body","236.1 Parts of Body","236.1.1 Key parts in the head",,"xyz" +"236. Human Body","236.1 Parts of Body","236.1.2 Other parts",, +"236. Human Body","236.2 Organ Systems",,, +"236. Human Body","236.2 Organ Systems","236.2.1 Respiratory System","dsffgdg", +"237. Human Body",,,,"This chapter describes about human body" +"237. Human Body","237.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"237. Human Body","237.1 Parts of Body","237.1.1 Key parts in the head",,"xyz" +"237. Human Body","237.1 Parts of Body","237.1.2 Other parts",, +"237. Human Body","237.2 Organ Systems",,, +"237. Human Body","237.2 Organ Systems","237.2.1 Respiratory System","dsffgdg", +"238. Human Body",,,,"This chapter describes about human body" +"238. Human Body","238.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"238. Human Body","238.1 Parts of Body","238.1.1 Key parts in the head",,"xyz" +"238. Human Body","238.1 Parts of Body","238.1.2 Other parts",, +"238. Human Body","238.2 Organ Systems",,, +"238. Human Body","238.2 Organ Systems","238.2.1 Respiratory System","dsffgdg", +"239. Human Body",,,,"This chapter describes about human body" +"239. Human Body","239.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"239. Human Body","239.1 Parts of Body","239.1.1 Key parts in the head",,"xyz" +"239. Human Body","239.1 Parts of Body","239.1.2 Other parts",, +"239. Human Body","239.2 Organ Systems",,, +"239. Human Body","239.2 Organ Systems","239.2.1 Respiratory System","dsffgdg", +"240. Human Body",,,,"This chapter describes about human body" +"240. Human Body","240.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"240. Human Body","240.1 Parts of Body","240.1.1 Key parts in the head",,"xyz" +"240. Human Body","240.1 Parts of Body","240.1.2 Other parts",, +"240. Human Body","240.2 Organ Systems",,, +"240. Human Body","240.2 Organ Systems","240.2.1 Respiratory System","dsffgdg", +"241. Human Body",,,,"This chapter describes about human body" +"241. Human Body","241.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"241. Human Body","241.1 Parts of Body","241.1.1 Key parts in the head",,"xyz" +"241. Human Body","241.1 Parts of Body","241.1.2 Other parts",, +"241. Human Body","241.2 Organ Systems",,, +"241. Human Body","241.2 Organ Systems","241.2.1 Respiratory System","dsffgdg", +"242. Human Body",,,,"This chapter describes about human body" +"242. Human Body","242.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"242. Human Body","242.1 Parts of Body","242.1.1 Key parts in the head",,"xyz" +"242. Human Body","242.1 Parts of Body","242.1.2 Other parts",, +"242. Human Body","242.2 Organ Systems",,, +"242. Human Body","242.2 Organ Systems","242.2.1 Respiratory System","dsffgdg", +"243. Human Body",,,,"This chapter describes about human body" +"243. Human Body","243.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"243. Human Body","243.1 Parts of Body","243.1.1 Key parts in the head",,"xyz" +"243. Human Body","243.1 Parts of Body","243.1.2 Other parts",, +"243. Human Body","243.2 Organ Systems",,, +"243. Human Body","243.2 Organ Systems","243.2.1 Respiratory System","dsffgdg", +"244. Human Body",,,,"This chapter describes about human body" +"244. Human Body","244.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"244. Human Body","244.1 Parts of Body","244.1.1 Key parts in the head",,"xyz" +"244. Human Body","244.1 Parts of Body","244.1.2 Other parts",, +"244. Human Body","244.2 Organ Systems",,, +"244. Human Body","244.2 Organ Systems","244.2.1 Respiratory System","dsffgdg", +"245. Human Body",,,,"This chapter describes about human body" +"245. Human Body","245.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"245. Human Body","245.1 Parts of Body","245.1.1 Key parts in the head",,"xyz" +"245. Human Body","245.1 Parts of Body","245.1.2 Other parts",, +"245. Human Body","245.2 Organ Systems",,, +"245. Human Body","245.2 Organ Systems","245.2.1 Respiratory System","dsffgdg", +"246. Human Body",,,,"This chapter describes about human body" +"246. Human Body","246.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"246. Human Body","246.1 Parts of Body","246.1.1 Key parts in the head",,"xyz" +"246. Human Body","246.1 Parts of Body","246.1.2 Other parts",, +"246. Human Body","246.2 Organ Systems",,, +"246. Human Body","246.2 Organ Systems","246.2.1 Respiratory System","dsffgdg", +"247. Human Body",,,,"This chapter describes about human body" +"247. Human Body","247.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"247. Human Body","247.1 Parts of Body","247.1.1 Key parts in the head",,"xyz" +"247. Human Body","247.1 Parts of Body","247.1.2 Other parts",, +"247. Human Body","247.2 Organ Systems",,, +"247. Human Body","247.2 Organ Systems","247.2.1 Respiratory System","dsffgdg", +"248. Human Body",,,,"This chapter describes about human body" +"248. Human Body","248.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"248. Human Body","248.1 Parts of Body","248.1.1 Key parts in the head",,"xyz" +"248. Human Body","248.1 Parts of Body","248.1.2 Other parts",, +"248. Human Body","248.2 Organ Systems",,, +"248. Human Body","248.2 Organ Systems","248.2.1 Respiratory System","dsffgdg", +"249. Human Body",,,,"This chapter describes about human body" +"249. Human Body","249.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"249. Human Body","249.1 Parts of Body","249.1.1 Key parts in the head",,"xyz" +"249. Human Body","249.1 Parts of Body","249.1.2 Other parts",, +"249. Human Body","249.2 Organ Systems",,, +"249. Human Body","249.2 Organ Systems","249.2.1 Respiratory System","dsffgdg", +"250. Human Body",,,,"This chapter describes about human body" +"250. Human Body","250.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"250. Human Body","250.1 Parts of Body","250.1.1 Key parts in the head",,"xyz" +"250. Human Body","250.1 Parts of Body","250.1.2 Other parts",, +"250. Human Body","250.2 Organ Systems",,, +"250. Human Body","250.2 Organ Systems","250.2.1 Respiratory System","dsffgdg", +"251. Human Body",,,,"This chapter describes about human body" +"251. Human Body","251.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"251. Human Body","251.1 Parts of Body","251.1.1 Key parts in the head",,"xyz" +"251. Human Body","251.1 Parts of Body","251.1.2 Other parts",, +"251. Human Body","251.2 Organ Systems",,, +"251. Human Body","251.2 Organ Systems","251.2.1 Respiratory System","dsffgdg", +"252. Human Body",,,,"This chapter describes about human body" +"252. Human Body","252.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"252. Human Body","252.1 Parts of Body","252.1.1 Key parts in the head",,"xyz" +"252. Human Body","252.1 Parts of Body","252.1.2 Other parts",, +"252. Human Body","252.2 Organ Systems",,, +"252. Human Body","252.2 Organ Systems","252.2.1 Respiratory System","dsffgdg", +"253. Human Body",,,,"This chapter describes about human body" +"253. Human Body","253.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"253. Human Body","253.1 Parts of Body","253.1.1 Key parts in the head",,"xyz" +"253. Human Body","253.1 Parts of Body","253.1.2 Other parts",, +"253. Human Body","253.2 Organ Systems",,, +"253. Human Body","253.2 Organ Systems","253.2.1 Respiratory System","dsffgdg", +"254. Human Body",,,,"This chapter describes about human body" +"254. Human Body","254.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"254. Human Body","254.1 Parts of Body","254.1.1 Key parts in the head",,"xyz" +"254. Human Body","254.1 Parts of Body","254.1.2 Other parts",, +"254. Human Body","254.2 Organ Systems",,, +"254. Human Body","254.2 Organ Systems","254.2.1 Respiratory System","dsffgdg", +"255. Human Body",,,,"This chapter describes about human body" +"255. Human Body","255.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"255. Human Body","255.1 Parts of Body","255.1.1 Key parts in the head",,"xyz" +"255. Human Body","255.1 Parts of Body","255.1.2 Other parts",, +"255. Human Body","255.2 Organ Systems",,, +"255. Human Body","255.2 Organ Systems","255.2.1 Respiratory System","dsffgdg", +"256. Human Body",,,,"This chapter describes about human body" +"256. Human Body","256.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"256. Human Body","256.1 Parts of Body","256.1.1 Key parts in the head",,"xyz" +"256. Human Body","256.1 Parts of Body","256.1.2 Other parts",, +"256. Human Body","256.2 Organ Systems",,, +"256. Human Body","256.2 Organ Systems","256.2.1 Respiratory System","dsffgdg", +"257. Human Body",,,,"This chapter describes about human body" +"257. Human Body","257.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"257. Human Body","257.1 Parts of Body","257.1.1 Key parts in the head",,"xyz" +"257. Human Body","257.1 Parts of Body","257.1.2 Other parts",, +"257. Human Body","257.2 Organ Systems",,, +"257. Human Body","257.2 Organ Systems","257.2.1 Respiratory System","dsffgdg", +"258. Human Body",,,,"This chapter describes about human body" +"258. Human Body","258.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"258. Human Body","258.1 Parts of Body","258.1.1 Key parts in the head",,"xyz" +"258. Human Body","258.1 Parts of Body","258.1.2 Other parts",, +"258. Human Body","258.2 Organ Systems",,, +"258. Human Body","258.2 Organ Systems","258.2.1 Respiratory System","dsffgdg", +"259. Human Body",,,,"This chapter describes about human body" +"259. Human Body","259.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"259. Human Body","259.1 Parts of Body","259.1.1 Key parts in the head",,"xyz" +"259. Human Body","259.1 Parts of Body","259.1.2 Other parts",, +"259. Human Body","259.2 Organ Systems",,, +"259. Human Body","259.2 Organ Systems","259.2.1 Respiratory System","dsffgdg", +"260. Human Body",,,,"This chapter describes about human body" +"260. Human Body","260.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"260. Human Body","260.1 Parts of Body","260.1.1 Key parts in the head",,"xyz" +"260. Human Body","260.1 Parts of Body","260.1.2 Other parts",, +"260. Human Body","260.2 Organ Systems",,, +"260. Human Body","260.2 Organ Systems","260.2.1 Respiratory System","dsffgdg", +"261. Human Body",,,,"This chapter describes about human body" +"261. Human Body","261.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"261. Human Body","261.1 Parts of Body","261.1.1 Key parts in the head",,"xyz" +"261. Human Body","261.1 Parts of Body","261.1.2 Other parts",, +"261. Human Body","261.2 Organ Systems",,, +"261. Human Body","261.2 Organ Systems","261.2.1 Respiratory System","dsffgdg", +"262. Human Body",,,,"This chapter describes about human body" +"262. Human Body","262.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"262. Human Body","262.1 Parts of Body","262.1.1 Key parts in the head",,"xyz" +"262. Human Body","262.1 Parts of Body","262.1.2 Other parts",, +"262. Human Body","262.2 Organ Systems",,, +"262. Human Body","262.2 Organ Systems","262.2.1 Respiratory System","dsffgdg", +"263. Human Body",,,,"This chapter describes about human body" +"263. Human Body","263.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"263. Human Body","263.1 Parts of Body","263.1.1 Key parts in the head",,"xyz" +"263. Human Body","263.1 Parts of Body","263.1.2 Other parts",, +"263. Human Body","263.2 Organ Systems",,, +"263. Human Body","263.2 Organ Systems","263.2.1 Respiratory System","dsffgdg", +"264. Human Body",,,,"This chapter describes about human body" +"264. Human Body","264.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"264. Human Body","264.1 Parts of Body","264.1.1 Key parts in the head",,"xyz" +"264. Human Body","264.1 Parts of Body","264.1.2 Other parts",, +"264. Human Body","264.2 Organ Systems",,, +"264. Human Body","264.2 Organ Systems","264.2.1 Respiratory System","dsffgdg", +"265. Human Body",,,,"This chapter describes about human body" +"265. Human Body","265.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"265. Human Body","265.1 Parts of Body","265.1.1 Key parts in the head",,"xyz" +"265. Human Body","265.1 Parts of Body","265.1.2 Other parts",, +"265. Human Body","265.2 Organ Systems",,, +"265. Human Body","265.2 Organ Systems","265.2.1 Respiratory System","dsffgdg", +"266. Human Body",,,,"This chapter describes about human body" +"266. Human Body","266.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"266. Human Body","266.1 Parts of Body","266.1.1 Key parts in the head",,"xyz" +"266. Human Body","266.1 Parts of Body","266.1.2 Other parts",, +"266. Human Body","266.2 Organ Systems",,, +"266. Human Body","266.2 Organ Systems","266.2.1 Respiratory System","dsffgdg", +"267. Human Body",,,,"This chapter describes about human body" +"267. Human Body","267.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"267. Human Body","267.1 Parts of Body","267.1.1 Key parts in the head",,"xyz" +"267. Human Body","267.1 Parts of Body","267.1.2 Other parts",, +"267. Human Body","267.2 Organ Systems",,, +"267. Human Body","267.2 Organ Systems","267.2.1 Respiratory System","dsffgdg", +"268. Human Body",,,,"This chapter describes about human body" +"268. Human Body","268.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"268. Human Body","268.1 Parts of Body","268.1.1 Key parts in the head",,"xyz" +"268. Human Body","268.1 Parts of Body","268.1.2 Other parts",, +"268. Human Body","268.2 Organ Systems",,, +"268. Human Body","268.2 Organ Systems","268.2.1 Respiratory System","dsffgdg", +"269. Human Body",,,,"This chapter describes about human body" +"269. Human Body","269.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"269. Human Body","269.1 Parts of Body","269.1.1 Key parts in the head",,"xyz" +"269. Human Body","269.1 Parts of Body","269.1.2 Other parts",, +"269. Human Body","269.2 Organ Systems",,, +"269. Human Body","269.2 Organ Systems","269.2.1 Respiratory System","dsffgdg", +"270. Human Body",,,,"This chapter describes about human body" +"270. Human Body","270.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"270. Human Body","270.1 Parts of Body","270.1.1 Key parts in the head",,"xyz" +"270. Human Body","270.1 Parts of Body","270.1.2 Other parts",, +"270. Human Body","270.2 Organ Systems",,, +"270. Human Body","270.2 Organ Systems","270.2.1 Respiratory System","dsffgdg", +"271. Human Body",,,,"This chapter describes about human body" +"271. Human Body","271.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"271. Human Body","271.1 Parts of Body","271.1.1 Key parts in the head",,"xyz" +"271. Human Body","271.1 Parts of Body","271.1.2 Other parts",, +"271. Human Body","271.2 Organ Systems",,, +"271. Human Body","271.2 Organ Systems","271.2.1 Respiratory System","dsffgdg", +"272. Human Body",,,,"This chapter describes about human body" +"272. Human Body","272.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"272. Human Body","272.1 Parts of Body","272.1.1 Key parts in the head",,"xyz" +"272. Human Body","272.1 Parts of Body","272.1.2 Other parts",, +"272. Human Body","272.2 Organ Systems",,, +"272. Human Body","272.2 Organ Systems","272.2.1 Respiratory System","dsffgdg", +"273. Human Body",,,,"This chapter describes about human body" +"273. Human Body","273.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"273. Human Body","273.1 Parts of Body","273.1.1 Key parts in the head",,"xyz" +"273. Human Body","273.1 Parts of Body","273.1.2 Other parts",, +"273. Human Body","273.2 Organ Systems",,, +"273. Human Body","273.2 Organ Systems","273.2.1 Respiratory System","dsffgdg", +"274. Human Body",,,,"This chapter describes about human body" +"274. Human Body","274.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"274. Human Body","274.1 Parts of Body","274.1.1 Key parts in the head",,"xyz" +"274. Human Body","274.1 Parts of Body","274.1.2 Other parts",, +"274. Human Body","274.2 Organ Systems",,, +"274. Human Body","274.2 Organ Systems","274.2.1 Respiratory System","dsffgdg", +"275. Human Body",,,,"This chapter describes about human body" +"275. Human Body","275.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"275. Human Body","275.1 Parts of Body","275.1.1 Key parts in the head",,"xyz" +"275. Human Body","275.1 Parts of Body","275.1.2 Other parts",, +"275. Human Body","275.2 Organ Systems",,, +"275. Human Body","275.2 Organ Systems","275.2.1 Respiratory System","dsffgdg", +"276. Human Body",,,,"This chapter describes about human body" +"276. Human Body","276.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"276. Human Body","276.1 Parts of Body","276.1.1 Key parts in the head",,"xyz" +"276. Human Body","276.1 Parts of Body","276.1.2 Other parts",, +"276. Human Body","276.2 Organ Systems",,, +"276. Human Body","276.2 Organ Systems","276.2.1 Respiratory System","dsffgdg", +"277. Human Body",,,,"This chapter describes about human body" +"277. Human Body","277.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"277. Human Body","277.1 Parts of Body","277.1.1 Key parts in the head",,"xyz" +"277. Human Body","277.1 Parts of Body","277.1.2 Other parts",, +"277. Human Body","277.2 Organ Systems",,, +"277. Human Body","277.2 Organ Systems","277.2.1 Respiratory System","dsffgdg", +"278. Human Body",,,,"This chapter describes about human body" +"278. Human Body","278.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"278. Human Body","278.1 Parts of Body","278.1.1 Key parts in the head",,"xyz" +"278. Human Body","278.1 Parts of Body","278.1.2 Other parts",, +"278. Human Body","278.2 Organ Systems",,, +"278. Human Body","278.2 Organ Systems","278.2.1 Respiratory System","dsffgdg", +"279. Human Body",,,,"This chapter describes about human body" +"279. Human Body","279.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"279. Human Body","279.1 Parts of Body","279.1.1 Key parts in the head",,"xyz" +"279. Human Body","279.1 Parts of Body","279.1.2 Other parts",, +"279. Human Body","279.2 Organ Systems",,, +"279. Human Body","279.2 Organ Systems","279.2.1 Respiratory System","dsffgdg", +"280. Human Body",,,,"This chapter describes about human body" +"280. Human Body","280.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"280. Human Body","280.1 Parts of Body","280.1.1 Key parts in the head",,"xyz" +"280. Human Body","280.1 Parts of Body","280.1.2 Other parts",, +"280. Human Body","280.2 Organ Systems",,, +"280. Human Body","280.2 Organ Systems","280.2.1 Respiratory System","dsffgdg", +"281. Human Body",,,,"This chapter describes about human body" +"281. Human Body","281.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"281. Human Body","281.1 Parts of Body","281.1.1 Key parts in the head",,"xyz" +"281. Human Body","281.1 Parts of Body","281.1.2 Other parts",, +"281. Human Body","281.2 Organ Systems",,, +"281. Human Body","281.2 Organ Systems","281.2.1 Respiratory System","dsffgdg", +"282. Human Body",,,,"This chapter describes about human body" +"282. Human Body","282.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"282. Human Body","282.1 Parts of Body","282.1.1 Key parts in the head",,"xyz" +"282. Human Body","282.1 Parts of Body","282.1.2 Other parts",, +"282. Human Body","282.2 Organ Systems",,, +"282. Human Body","282.2 Organ Systems","282.2.1 Respiratory System","dsffgdg", +"283. Human Body",,,,"This chapter describes about human body" +"283. Human Body","283.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"283. Human Body","283.1 Parts of Body","283.1.1 Key parts in the head",,"xyz" +"283. Human Body","283.1 Parts of Body","283.1.2 Other parts",, +"283. Human Body","283.2 Organ Systems",,, +"283. Human Body","283.2 Organ Systems","283.2.1 Respiratory System","dsffgdg", +"284. Human Body",,,,"This chapter describes about human body" +"284. Human Body","284.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"284. Human Body","284.1 Parts of Body","284.1.1 Key parts in the head",,"xyz" +"284. Human Body","284.1 Parts of Body","284.1.2 Other parts",, +"284. Human Body","284.2 Organ Systems",,, +"284. Human Body","284.2 Organ Systems","284.2.1 Respiratory System","dsffgdg", +"285. Human Body",,,,"This chapter describes about human body" +"285. Human Body","285.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"285. Human Body","285.1 Parts of Body","285.1.1 Key parts in the head",,"xyz" +"285. Human Body","285.1 Parts of Body","285.1.2 Other parts",, +"285. Human Body","285.2 Organ Systems",,, +"285. Human Body","285.2 Organ Systems","285.2.1 Respiratory System","dsffgdg", +"286. Human Body",,,,"This chapter describes about human body" +"286. Human Body","286.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"286. Human Body","286.1 Parts of Body","286.1.1 Key parts in the head",,"xyz" +"286. Human Body","286.1 Parts of Body","286.1.2 Other parts",, +"286. Human Body","286.2 Organ Systems",,, +"286. Human Body","286.2 Organ Systems","286.2.1 Respiratory System","dsffgdg", +"287. Human Body",,,,"This chapter describes about human body" +"287. Human Body","287.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"287. Human Body","287.1 Parts of Body","287.1.1 Key parts in the head",,"xyz" +"287. Human Body","287.1 Parts of Body","287.1.2 Other parts",, +"287. Human Body","287.2 Organ Systems",,, +"287. Human Body","287.2 Organ Systems","287.2.1 Respiratory System","dsffgdg", +"288. Human Body",,,,"This chapter describes about human body" +"288. Human Body","288.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"288. Human Body","288.1 Parts of Body","288.1.1 Key parts in the head",,"xyz" +"288. Human Body","288.1 Parts of Body","288.1.2 Other parts",, +"288. Human Body","288.2 Organ Systems",,, +"288. Human Body","288.2 Organ Systems","288.2.1 Respiratory System","dsffgdg", +"289. Human Body",,,,"This chapter describes about human body" +"289. Human Body","289.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"289. Human Body","289.1 Parts of Body","289.1.1 Key parts in the head",,"xyz" +"289. Human Body","289.1 Parts of Body","289.1.2 Other parts",, +"289. Human Body","289.2 Organ Systems",,, +"289. Human Body","289.2 Organ Systems","289.2.1 Respiratory System","dsffgdg", +"290. Human Body",,,,"This chapter describes about human body" +"290. Human Body","290.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"290. Human Body","290.1 Parts of Body","290.1.1 Key parts in the head",,"xyz" +"290. Human Body","290.1 Parts of Body","290.1.2 Other parts",, +"290. Human Body","290.2 Organ Systems",,, +"290. Human Body","290.2 Organ Systems","290.2.1 Respiratory System","dsffgdg", +"291. Human Body",,,,"This chapter describes about human body" +"291. Human Body","291.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"291. Human Body","291.1 Parts of Body","291.1.1 Key parts in the head",,"xyz" +"291. Human Body","291.1 Parts of Body","291.1.2 Other parts",, +"291. Human Body","291.2 Organ Systems",,, +"291. Human Body","291.2 Organ Systems","291.2.1 Respiratory System","dsffgdg", +"292. Human Body",,,,"This chapter describes about human body" +"292. Human Body","292.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"292. Human Body","292.1 Parts of Body","292.1.1 Key parts in the head",,"xyz" +"292. Human Body","292.1 Parts of Body","292.1.2 Other parts",, +"292. Human Body","292.2 Organ Systems",,, +"292. Human Body","292.2 Organ Systems","292.2.1 Respiratory System","dsffgdg", +"293. Human Body",,,,"This chapter describes about human body" +"293. Human Body","293.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"293. Human Body","293.1 Parts of Body","293.1.1 Key parts in the head",,"xyz" +"293. Human Body","293.1 Parts of Body","293.1.2 Other parts",, +"293. Human Body","293.2 Organ Systems",,, +"293. Human Body","293.2 Organ Systems","293.2.1 Respiratory System","dsffgdg", +"294. Human Body",,,,"This chapter describes about human body" +"294. Human Body","294.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"294. Human Body","294.1 Parts of Body","294.1.1 Key parts in the head",,"xyz" +"294. Human Body","294.1 Parts of Body","294.1.2 Other parts",, +"294. Human Body","294.2 Organ Systems",,, +"294. Human Body","294.2 Organ Systems","294.2.1 Respiratory System","dsffgdg", +"295. Human Body",,,,"This chapter describes about human body" +"295. Human Body","295.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"295. Human Body","295.1 Parts of Body","295.1.1 Key parts in the head",,"xyz" +"295. Human Body","295.1 Parts of Body","295.1.2 Other parts",, +"295. Human Body","295.2 Organ Systems",,, +"295. Human Body","295.2 Organ Systems","295.2.1 Respiratory System","dsffgdg", +"296. Human Body",,,,"This chapter describes about human body" +"296. Human Body","296.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"296. Human Body","296.1 Parts of Body","296.1.1 Key parts in the head",,"xyz" +"296. Human Body","296.1 Parts of Body","296.1.2 Other parts",, +"296. Human Body","296.2 Organ Systems",,, +"296. Human Body","296.2 Organ Systems","296.2.1 Respiratory System","dsffgdg", +"297. Human Body",,,,"This chapter describes about human body" +"297. Human Body","297.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"297. Human Body","297.1 Parts of Body","297.1.1 Key parts in the head",,"xyz" +"297. Human Body","297.1 Parts of Body","297.1.2 Other parts",, +"297. Human Body","297.2 Organ Systems",,, +"297. Human Body","297.2 Organ Systems","297.2.1 Respiratory System","dsffgdg", +"298. Human Body",,,,"This chapter describes about human body" +"298. Human Body","298.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"298. Human Body","298.1 Parts of Body","298.1.1 Key parts in the head",,"xyz" +"298. Human Body","298.1 Parts of Body","298.1.2 Other parts",, +"298. Human Body","298.2 Organ Systems",,, +"298. Human Body","298.2 Organ Systems","298.2.1 Respiratory System","dsffgdg", +"299. Human Body",,,,"This chapter describes about human body" +"299. Human Body","299.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"299. Human Body","299.1 Parts of Body","299.1.1 Key parts in the head",,"xyz" +"299. Human Body","299.1 Parts of Body","299.1.2 Other parts",, +"299. Human Body","299.2 Organ Systems",,, +"299. Human Body","299.2 Organ Systems","299.2.1 Respiratory System","dsffgdg", +"300. Human Body",,,,"This chapter describes about human body" +"300. Human Body","300.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"300. Human Body","300.1 Parts of Body","300.1.1 Key parts in the head",,"xyz" +"300. Human Body","300.1 Parts of Body","300.1.2 Other parts",, +"300. Human Body","300.2 Organ Systems",,, +"300. Human Body","300.2 Organ Systems","300.2.1 Respiratory System","dsffgdg", +"301. Human Body",,,,"This chapter describes about human body" +"301. Human Body","301.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"301. Human Body","301.1 Parts of Body","301.1.1 Key parts in the head",,"xyz" +"301. Human Body","301.1 Parts of Body","301.1.2 Other parts",, +"301. Human Body","301.2 Organ Systems",,, +"301. Human Body","301.2 Organ Systems","301.2.1 Respiratory System","dsffgdg", +"302. Human Body",,,,"This chapter describes about human body" +"302. Human Body","302.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"302. Human Body","302.1 Parts of Body","302.1.1 Key parts in the head",,"xyz" +"302. Human Body","302.1 Parts of Body","302.1.2 Other parts",, +"302. Human Body","302.2 Organ Systems",,, +"302. Human Body","302.2 Organ Systems","302.2.1 Respiratory System","dsffgdg", +"303. Human Body",,,,"This chapter describes about human body" +"303. Human Body","303.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"303. Human Body","303.1 Parts of Body","303.1.1 Key parts in the head",,"xyz" +"303. Human Body","303.1 Parts of Body","303.1.2 Other parts",, +"303. Human Body","303.2 Organ Systems",,, +"303. Human Body","303.2 Organ Systems","303.2.1 Respiratory System","dsffgdg", +"304. Human Body",,,,"This chapter describes about human body" +"304. Human Body","304.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"304. Human Body","304.1 Parts of Body","304.1.1 Key parts in the head",,"xyz" +"304. Human Body","304.1 Parts of Body","304.1.2 Other parts",, +"304. Human Body","304.2 Organ Systems",,, +"304. Human Body","304.2 Organ Systems","304.2.1 Respiratory System","dsffgdg", +"305. Human Body",,,,"This chapter describes about human body" +"305. Human Body","305.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"305. Human Body","305.1 Parts of Body","305.1.1 Key parts in the head",,"xyz" +"305. Human Body","305.1 Parts of Body","305.1.2 Other parts",, +"305. Human Body","305.2 Organ Systems",,, +"305. Human Body","305.2 Organ Systems","305.2.1 Respiratory System","dsffgdg", +"306. Human Body",,,,"This chapter describes about human body" +"306. Human Body","306.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"306. Human Body","306.1 Parts of Body","306.1.1 Key parts in the head",,"xyz" +"306. Human Body","306.1 Parts of Body","306.1.2 Other parts",, +"306. Human Body","306.2 Organ Systems",,, +"306. Human Body","306.2 Organ Systems","306.2.1 Respiratory System","dsffgdg", +"307. Human Body",,,,"This chapter describes about human body" +"307. Human Body","307.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"307. Human Body","307.1 Parts of Body","307.1.1 Key parts in the head",,"xyz" +"307. Human Body","307.1 Parts of Body","307.1.2 Other parts",, +"307. Human Body","307.2 Organ Systems",,, +"307. Human Body","307.2 Organ Systems","307.2.1 Respiratory System","dsffgdg", +"308. Human Body",,,,"This chapter describes about human body" +"308. Human Body","308.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"308. Human Body","308.1 Parts of Body","308.1.1 Key parts in the head",,"xyz" +"308. Human Body","308.1 Parts of Body","308.1.2 Other parts",, +"308. Human Body","308.2 Organ Systems",,, +"308. Human Body","308.2 Organ Systems","308.2.1 Respiratory System","dsffgdg", +"309. Human Body",,,,"This chapter describes about human body" +"309. Human Body","309.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"309. Human Body","309.1 Parts of Body","309.1.1 Key parts in the head",,"xyz" +"309. Human Body","309.1 Parts of Body","309.1.2 Other parts",, +"309. Human Body","309.2 Organ Systems",,, +"309. Human Body","309.2 Organ Systems","309.2.1 Respiratory System","dsffgdg", +"310. Human Body",,,,"This chapter describes about human body" +"310. Human Body","310.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"310. Human Body","310.1 Parts of Body","310.1.1 Key parts in the head",,"xyz" +"310. Human Body","310.1 Parts of Body","310.1.2 Other parts",, +"310. Human Body","310.2 Organ Systems",,, +"310. Human Body","310.2 Organ Systems","310.2.1 Respiratory System","dsffgdg", +"311. Human Body",,,,"This chapter describes about human body" +"311. Human Body","311.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"311. Human Body","311.1 Parts of Body","311.1.1 Key parts in the head",,"xyz" +"311. Human Body","311.1 Parts of Body","311.1.2 Other parts",, +"311. Human Body","311.2 Organ Systems",,, +"311. Human Body","311.2 Organ Systems","311.2.1 Respiratory System","dsffgdg", +"312. Human Body",,,,"This chapter describes about human body" +"312. Human Body","312.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"312. Human Body","312.1 Parts of Body","312.1.1 Key parts in the head",,"xyz" +"312. Human Body","312.1 Parts of Body","312.1.2 Other parts",, +"312. Human Body","312.2 Organ Systems",,, +"312. Human Body","312.2 Organ Systems","312.2.1 Respiratory System","dsffgdg", +"313. Human Body",,,,"This chapter describes about human body" +"313. Human Body","313.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"313. Human Body","313.1 Parts of Body","313.1.1 Key parts in the head",,"xyz" +"313. Human Body","313.1 Parts of Body","313.1.2 Other parts",, +"313. Human Body","313.2 Organ Systems",,, +"313. Human Body","313.2 Organ Systems","313.2.1 Respiratory System","dsffgdg", +"314. Human Body",,,,"This chapter describes about human body" +"314. Human Body","314.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"314. Human Body","314.1 Parts of Body","314.1.1 Key parts in the head",,"xyz" +"314. Human Body","314.1 Parts of Body","314.1.2 Other parts",, +"314. Human Body","314.2 Organ Systems",,, +"314. Human Body","314.2 Organ Systems","314.2.1 Respiratory System","dsffgdg", +"315. Human Body",,,,"This chapter describes about human body" +"315. Human Body","315.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"315. Human Body","315.1 Parts of Body","315.1.1 Key parts in the head",,"xyz" +"315. Human Body","315.1 Parts of Body","315.1.2 Other parts",, +"315. Human Body","315.2 Organ Systems",,, +"315. Human Body","315.2 Organ Systems","315.2.1 Respiratory System","dsffgdg", +"316. Human Body",,,,"This chapter describes about human body" +"316. Human Body","316.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"316. Human Body","316.1 Parts of Body","316.1.1 Key parts in the head",,"xyz" +"316. Human Body","316.1 Parts of Body","316.1.2 Other parts",, +"316. Human Body","316.2 Organ Systems",,, +"316. Human Body","316.2 Organ Systems","316.2.1 Respiratory System","dsffgdg", +"317. Human Body",,,,"This chapter describes about human body" +"317. Human Body","317.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"317. Human Body","317.1 Parts of Body","317.1.1 Key parts in the head",,"xyz" +"317. Human Body","317.1 Parts of Body","317.1.2 Other parts",, +"317. Human Body","317.2 Organ Systems",,, +"317. Human Body","317.2 Organ Systems","317.2.1 Respiratory System","dsffgdg", +"318. Human Body",,,,"This chapter describes about human body" +"318. Human Body","318.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"318. Human Body","318.1 Parts of Body","318.1.1 Key parts in the head",,"xyz" +"318. Human Body","318.1 Parts of Body","318.1.2 Other parts",, +"318. Human Body","318.2 Organ Systems",,, +"318. Human Body","318.2 Organ Systems","318.2.1 Respiratory System","dsffgdg", +"319. Human Body",,,,"This chapter describes about human body" +"319. Human Body","319.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"319. Human Body","319.1 Parts of Body","319.1.1 Key parts in the head",,"xyz" +"319. Human Body","319.1 Parts of Body","319.1.2 Other parts",, +"319. Human Body","319.2 Organ Systems",,, +"319. Human Body","319.2 Organ Systems","319.2.1 Respiratory System","dsffgdg", +"320. Human Body",,,,"This chapter describes about human body" +"320. Human Body","320.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"320. Human Body","320.1 Parts of Body","320.1.1 Key parts in the head",,"xyz" +"320. Human Body","320.1 Parts of Body","320.1.2 Other parts",, +"320. Human Body","320.2 Organ Systems",,, +"320. Human Body","320.2 Organ Systems","320.2.1 Respiratory System","dsffgdg", +"321. Human Body",,,,"This chapter describes about human body" +"321. Human Body","321.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"321. Human Body","321.1 Parts of Body","321.1.1 Key parts in the head",,"xyz" +"321. Human Body","321.1 Parts of Body","321.1.2 Other parts",, +"321. Human Body","321.2 Organ Systems",,, +"321. Human Body","321.2 Organ Systems","321.2.1 Respiratory System","dsffgdg", +"322. Human Body",,,,"This chapter describes about human body" +"322. Human Body","322.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"322. Human Body","322.1 Parts of Body","322.1.1 Key parts in the head",,"xyz" +"322. Human Body","322.1 Parts of Body","322.1.2 Other parts",, +"322. Human Body","322.2 Organ Systems",,, +"322. Human Body","322.2 Organ Systems","322.2.1 Respiratory System","dsffgdg", +"323. Human Body",,,,"This chapter describes about human body" +"323. Human Body","323.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"323. Human Body","323.1 Parts of Body","323.1.1 Key parts in the head",,"xyz" +"323. Human Body","323.1 Parts of Body","323.1.2 Other parts",, +"323. Human Body","323.2 Organ Systems",,, +"323. Human Body","323.2 Organ Systems","323.2.1 Respiratory System","dsffgdg", +"324. Human Body",,,,"This chapter describes about human body" +"324. Human Body","324.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"324. Human Body","324.1 Parts of Body","324.1.1 Key parts in the head",,"xyz" +"324. Human Body","324.1 Parts of Body","324.1.2 Other parts",, +"324. Human Body","324.2 Organ Systems",,, +"324. Human Body","324.2 Organ Systems","324.2.1 Respiratory System","dsffgdg", +"325. Human Body",,,,"This chapter describes about human body" +"325. Human Body","325.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"325. Human Body","325.1 Parts of Body","325.1.1 Key parts in the head",,"xyz" +"325. Human Body","325.1 Parts of Body","325.1.2 Other parts",, +"325. Human Body","325.2 Organ Systems",,, +"325. Human Body","325.2 Organ Systems","325.2.1 Respiratory System","dsffgdg", +"326. Human Body",,,,"This chapter describes about human body" +"326. Human Body","326.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"326. Human Body","326.1 Parts of Body","326.1.1 Key parts in the head",,"xyz" +"326. Human Body","326.1 Parts of Body","326.1.2 Other parts",, +"326. Human Body","326.2 Organ Systems",,, +"326. Human Body","326.2 Organ Systems","326.2.1 Respiratory System","dsffgdg", +"327. Human Body",,,,"This chapter describes about human body" +"327. Human Body","327.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"327. Human Body","327.1 Parts of Body","327.1.1 Key parts in the head",,"xyz" +"327. Human Body","327.1 Parts of Body","327.1.2 Other parts",, +"327. Human Body","327.2 Organ Systems",,, +"327. Human Body","327.2 Organ Systems","327.2.1 Respiratory System","dsffgdg", +"328. Human Body",,,,"This chapter describes about human body" +"328. Human Body","328.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"328. Human Body","328.1 Parts of Body","328.1.1 Key parts in the head",,"xyz" +"328. Human Body","328.1 Parts of Body","328.1.2 Other parts",, +"328. Human Body","328.2 Organ Systems",,, +"328. Human Body","328.2 Organ Systems","328.2.1 Respiratory System","dsffgdg", +"329. Human Body",,,,"This chapter describes about human body" +"329. Human Body","329.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"329. Human Body","329.1 Parts of Body","329.1.1 Key parts in the head",,"xyz" +"329. Human Body","329.1 Parts of Body","329.1.2 Other parts",, +"329. Human Body","329.2 Organ Systems",,, +"329. Human Body","329.2 Organ Systems","329.2.1 Respiratory System","dsffgdg", +"330. Human Body",,,,"This chapter describes about human body" +"330. Human Body","330.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"330. Human Body","330.1 Parts of Body","330.1.1 Key parts in the head",,"xyz" +"330. Human Body","330.1 Parts of Body","330.1.2 Other parts",, +"330. Human Body","330.2 Organ Systems",,, +"330. Human Body","330.2 Organ Systems","330.2.1 Respiratory System","dsffgdg", +"331. Human Body",,,,"This chapter describes about human body" +"331. Human Body","331.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"331. Human Body","331.1 Parts of Body","331.1.1 Key parts in the head",,"xyz" +"331. Human Body","331.1 Parts of Body","331.1.2 Other parts",, +"331. Human Body","331.2 Organ Systems",,, +"331. Human Body","331.2 Organ Systems","331.2.1 Respiratory System","dsffgdg", +"332. Human Body",,,,"This chapter describes about human body" +"332. Human Body","332.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"332. Human Body","332.1 Parts of Body","332.1.1 Key parts in the head",,"xyz" +"332. Human Body","332.1 Parts of Body","332.1.2 Other parts",, +"332. Human Body","332.2 Organ Systems",,, +"332. Human Body","332.2 Organ Systems","332.2.1 Respiratory System","dsffgdg", +"333. Human Body",,,,"This chapter describes about human body" +"333. Human Body","333.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"333. Human Body","333.1 Parts of Body","333.1.1 Key parts in the head",,"xyz" +"333. Human Body","333.1 Parts of Body","333.1.2 Other parts",, +"333. Human Body","333.2 Organ Systems",,, +"333. Human Body","333.2 Organ Systems","333.2.1 Respiratory System","dsffgdg", +"334. Human Body",,,,"This chapter describes about human body" +"334. Human Body","334.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"334. Human Body","334.1 Parts of Body","334.1.1 Key parts in the head",,"xyz" +"334. Human Body","334.1 Parts of Body","334.1.2 Other parts",, +"334. Human Body","334.2 Organ Systems",,, +"334. Human Body","334.2 Organ Systems","334.2.1 Respiratory System","dsffgdg", +"335. Human Body",,,,"This chapter describes about human body" +"335. Human Body","335.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"335. Human Body","335.1 Parts of Body","335.1.1 Key parts in the head",,"xyz" +"335. Human Body","335.1 Parts of Body","335.1.2 Other parts",, +"335. Human Body","335.2 Organ Systems",,, +"335. Human Body","335.2 Organ Systems","335.2.1 Respiratory System","dsffgdg", +"336. Human Body",,,,"This chapter describes about human body" +"336. Human Body","336.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"336. Human Body","336.1 Parts of Body","336.1.1 Key parts in the head",,"xyz" +"336. Human Body","336.1 Parts of Body","336.1.2 Other parts",, +"336. Human Body","336.2 Organ Systems",,, +"336. Human Body","336.2 Organ Systems","336.2.1 Respiratory System","dsffgdg", +"337. Human Body",,,,"This chapter describes about human body" +"337. Human Body","337.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"337. Human Body","337.1 Parts of Body","337.1.1 Key parts in the head",,"xyz" +"337. Human Body","337.1 Parts of Body","337.1.2 Other parts",, +"337. Human Body","337.2 Organ Systems",,, +"337. Human Body","337.2 Organ Systems","337.2.1 Respiratory System","dsffgdg", +"338. Human Body",,,,"This chapter describes about human body" +"338. Human Body","338.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"338. Human Body","338.1 Parts of Body","338.1.1 Key parts in the head",,"xyz" +"338. Human Body","338.1 Parts of Body","338.1.2 Other parts",, +"338. Human Body","338.2 Organ Systems",,, +"338. Human Body","338.2 Organ Systems","338.2.1 Respiratory System","dsffgdg", +"339. Human Body",,,,"This chapter describes about human body" +"339. Human Body","339.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"339. Human Body","339.1 Parts of Body","339.1.1 Key parts in the head",,"xyz" +"339. Human Body","339.1 Parts of Body","339.1.2 Other parts",, +"339. Human Body","339.2 Organ Systems",,, +"339. Human Body","339.2 Organ Systems","339.2.1 Respiratory System","dsffgdg", +"340. Human Body",,,,"This chapter describes about human body" +"340. Human Body","340.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"340. Human Body","340.1 Parts of Body","340.1.1 Key parts in the head",,"xyz" +"340. Human Body","340.1 Parts of Body","340.1.2 Other parts",, +"340. Human Body","340.2 Organ Systems",,, +"340. Human Body","340.2 Organ Systems","340.2.1 Respiratory System","dsffgdg", +"341. Human Body",,,,"This chapter describes about human body" +"341. Human Body","341.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"341. Human Body","341.1 Parts of Body","341.1.1 Key parts in the head",,"xyz" +"341. Human Body","341.1 Parts of Body","341.1.2 Other parts",, +"341. Human Body","341.2 Organ Systems",,, +"341. Human Body","341.2 Organ Systems","341.2.1 Respiratory System","dsffgdg", +"342. Human Body",,,,"This chapter describes about human body" +"342. Human Body","342.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"342. Human Body","342.1 Parts of Body","342.1.1 Key parts in the head",,"xyz" +"342. Human Body","342.1 Parts of Body","342.1.2 Other parts",, +"342. Human Body","342.2 Organ Systems",,, +"342. Human Body","342.2 Organ Systems","342.2.1 Respiratory System","dsffgdg", +"343. Human Body",,,,"This chapter describes about human body" +"343. Human Body","343.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"343. Human Body","343.1 Parts of Body","343.1.1 Key parts in the head",,"xyz" +"343. Human Body","343.1 Parts of Body","343.1.2 Other parts",, +"343. Human Body","343.2 Organ Systems",,, +"343. Human Body","343.2 Organ Systems","343.2.1 Respiratory System","dsffgdg", +"344. Human Body",,,,"This chapter describes about human body" +"344. Human Body","344.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"344. Human Body","344.1 Parts of Body","344.1.1 Key parts in the head",,"xyz" +"344. Human Body","344.1 Parts of Body","344.1.2 Other parts",, +"344. Human Body","344.2 Organ Systems",,, +"344. Human Body","344.2 Organ Systems","344.2.1 Respiratory System","dsffgdg", +"345. Human Body",,,,"This chapter describes about human body" +"345. Human Body","345.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"345. Human Body","345.1 Parts of Body","345.1.1 Key parts in the head",,"xyz" +"345. Human Body","345.1 Parts of Body","345.1.2 Other parts",, +"345. Human Body","345.2 Organ Systems",,, +"345. Human Body","345.2 Organ Systems","345.2.1 Respiratory System","dsffgdg", +"346. Human Body",,,,"This chapter describes about human body" +"346. Human Body","346.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"346. Human Body","346.1 Parts of Body","346.1.1 Key parts in the head",,"xyz" +"346. Human Body","346.1 Parts of Body","346.1.2 Other parts",, +"346. Human Body","346.2 Organ Systems",,, +"346. Human Body","346.2 Organ Systems","346.2.1 Respiratory System","dsffgdg", +"347. Human Body",,,,"This chapter describes about human body" +"347. Human Body","347.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"347. Human Body","347.1 Parts of Body","347.1.1 Key parts in the head",,"xyz" +"347. Human Body","347.1 Parts of Body","347.1.2 Other parts",, +"347. Human Body","347.2 Organ Systems",,, +"347. Human Body","347.2 Organ Systems","347.2.1 Respiratory System","dsffgdg", +"348. Human Body",,,,"This chapter describes about human body" +"348. Human Body","348.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"348. Human Body","348.1 Parts of Body","348.1.1 Key parts in the head",,"xyz" +"348. Human Body","348.1 Parts of Body","348.1.2 Other parts",, +"348. Human Body","348.2 Organ Systems",,, +"348. Human Body","348.2 Organ Systems","348.2.1 Respiratory System","dsffgdg", +"349. Human Body",,,,"This chapter describes about human body" +"349. Human Body","349.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"349. Human Body","349.1 Parts of Body","349.1.1 Key parts in the head",,"xyz" +"349. Human Body","349.1 Parts of Body","349.1.2 Other parts",, +"349. Human Body","349.2 Organ Systems",,, +"349. Human Body","349.2 Organ Systems","349.2.1 Respiratory System","dsffgdg", +"350. Human Body",,,,"This chapter describes about human body" +"350. Human Body","350.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"350. Human Body","350.1 Parts of Body","350.1.1 Key parts in the head",,"xyz" +"350. Human Body","350.1 Parts of Body","350.1.2 Other parts",, +"350. Human Body","350.2 Organ Systems",,, +"350. Human Body","350.2 Organ Systems","350.2.1 Respiratory System","dsffgdg", +"351. Human Body",,,,"This chapter describes about human body" +"351. Human Body","351.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"351. Human Body","351.1 Parts of Body","351.1.1 Key parts in the head",,"xyz" +"351. Human Body","351.1 Parts of Body","351.1.2 Other parts",, +"351. Human Body","351.2 Organ Systems",,, +"351. Human Body","351.2 Organ Systems","351.2.1 Respiratory System","dsffgdg", +"352. Human Body",,,,"This chapter describes about human body" +"352. Human Body","352.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"352. Human Body","352.1 Parts of Body","352.1.1 Key parts in the head",,"xyz" +"352. Human Body","352.1 Parts of Body","352.1.2 Other parts",, +"352. Human Body","352.2 Organ Systems",,, +"352. Human Body","352.2 Organ Systems","352.2.1 Respiratory System","dsffgdg", +"353. Human Body",,,,"This chapter describes about human body" +"353. Human Body","353.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"353. Human Body","353.1 Parts of Body","353.1.1 Key parts in the head",,"xyz" +"353. Human Body","353.1 Parts of Body","353.1.2 Other parts",, +"353. Human Body","353.2 Organ Systems",,, +"353. Human Body","353.2 Organ Systems","353.2.1 Respiratory System","dsffgdg", +"354. Human Body",,,,"This chapter describes about human body" +"354. Human Body","354.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"354. Human Body","354.1 Parts of Body","354.1.1 Key parts in the head",,"xyz" +"354. Human Body","354.1 Parts of Body","354.1.2 Other parts",, +"354. Human Body","354.2 Organ Systems",,, +"354. Human Body","354.2 Organ Systems","354.2.1 Respiratory System","dsffgdg", +"355. Human Body",,,,"This chapter describes about human body" +"355. Human Body","355.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"355. Human Body","355.1 Parts of Body","355.1.1 Key parts in the head",,"xyz" +"355. Human Body","355.1 Parts of Body","355.1.2 Other parts",, +"355. Human Body","355.2 Organ Systems",,, +"355. Human Body","355.2 Organ Systems","355.2.1 Respiratory System","dsffgdg", +"356. Human Body",,,,"This chapter describes about human body" +"356. Human Body","356.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"356. Human Body","356.1 Parts of Body","356.1.1 Key parts in the head",,"xyz" +"356. Human Body","356.1 Parts of Body","356.1.2 Other parts",, +"356. Human Body","356.2 Organ Systems",,, +"356. Human Body","356.2 Organ Systems","356.2.1 Respiratory System","dsffgdg", +"357. Human Body",,,,"This chapter describes about human body" +"357. Human Body","357.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"357. Human Body","357.1 Parts of Body","357.1.1 Key parts in the head",,"xyz" +"357. Human Body","357.1 Parts of Body","357.1.2 Other parts",, +"357. Human Body","357.2 Organ Systems",,, +"357. Human Body","357.2 Organ Systems","357.2.1 Respiratory System","dsffgdg", +"358. Human Body",,,,"This chapter describes about human body" +"358. Human Body","358.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"358. Human Body","358.1 Parts of Body","358.1.1 Key parts in the head",,"xyz" +"358. Human Body","358.1 Parts of Body","358.1.2 Other parts",, +"358. Human Body","358.2 Organ Systems",,, +"358. Human Body","358.2 Organ Systems","358.2.1 Respiratory System","dsffgdg", +"359. Human Body",,,,"This chapter describes about human body" +"359. Human Body","359.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"359. Human Body","359.1 Parts of Body","359.1.1 Key parts in the head",,"xyz" +"359. Human Body","359.1 Parts of Body","359.1.2 Other parts",, +"359. Human Body","359.2 Organ Systems",,, +"359. Human Body","359.2 Organ Systems","359.2.1 Respiratory System","dsffgdg", +"360. Human Body",,,,"This chapter describes about human body" +"360. Human Body","360.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"360. Human Body","360.1 Parts of Body","360.1.1 Key parts in the head",,"xyz" +"360. Human Body","360.1 Parts of Body","360.1.2 Other parts",, +"360. Human Body","360.2 Organ Systems",,, +"360. Human Body","360.2 Organ Systems","360.2.1 Respiratory System","dsffgdg", +"361. Human Body",,,,"This chapter describes about human body" +"361. Human Body","361.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"361. Human Body","361.1 Parts of Body","361.1.1 Key parts in the head",,"xyz" +"361. Human Body","361.1 Parts of Body","361.1.2 Other parts",, +"361. Human Body","361.2 Organ Systems",,, +"361. Human Body","361.2 Organ Systems","361.2.1 Respiratory System","dsffgdg", +"362. Human Body",,,,"This chapter describes about human body" +"362. Human Body","362.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"362. Human Body","362.1 Parts of Body","362.1.1 Key parts in the head",,"xyz" +"362. Human Body","362.1 Parts of Body","362.1.2 Other parts",, +"362. Human Body","362.2 Organ Systems",,, +"362. Human Body","362.2 Organ Systems","362.2.1 Respiratory System","dsffgdg", +"363. Human Body",,,,"This chapter describes about human body" +"363. Human Body","363.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"363. Human Body","363.1 Parts of Body","363.1.1 Key parts in the head",,"xyz" +"363. Human Body","363.1 Parts of Body","363.1.2 Other parts",, +"363. Human Body","363.2 Organ Systems",,, +"363. Human Body","363.2 Organ Systems","363.2.1 Respiratory System","dsffgdg", +"364. Human Body",,,,"This chapter describes about human body" +"364. Human Body","364.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"364. Human Body","364.1 Parts of Body","364.1.1 Key parts in the head",,"xyz" +"364. Human Body","364.1 Parts of Body","364.1.2 Other parts",, +"364. Human Body","364.2 Organ Systems",,, +"364. Human Body","364.2 Organ Systems","364.2.1 Respiratory System","dsffgdg", +"365. Human Body",,,,"This chapter describes about human body" +"365. Human Body","365.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"365. Human Body","365.1 Parts of Body","365.1.1 Key parts in the head",,"xyz" +"365. Human Body","365.1 Parts of Body","365.1.2 Other parts",, +"365. Human Body","365.2 Organ Systems",,, +"365. Human Body","365.2 Organ Systems","365.2.1 Respiratory System","dsffgdg", +"366. Human Body",,,,"This chapter describes about human body" +"366. Human Body","366.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"366. Human Body","366.1 Parts of Body","366.1.1 Key parts in the head",,"xyz" +"366. Human Body","366.1 Parts of Body","366.1.2 Other parts",, +"366. Human Body","366.2 Organ Systems",,, +"366. Human Body","366.2 Organ Systems","366.2.1 Respiratory System","dsffgdg", +"367. Human Body",,,,"This chapter describes about human body" +"367. Human Body","367.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"367. Human Body","367.1 Parts of Body","367.1.1 Key parts in the head",,"xyz" +"367. Human Body","367.1 Parts of Body","367.1.2 Other parts",, +"367. Human Body","367.2 Organ Systems",,, +"367. Human Body","367.2 Organ Systems","367.2.1 Respiratory System","dsffgdg", +"368. Human Body",,,,"This chapter describes about human body" +"368. Human Body","368.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"368. Human Body","368.1 Parts of Body","368.1.1 Key parts in the head",,"xyz" +"368. Human Body","368.1 Parts of Body","368.1.2 Other parts",, +"368. Human Body","368.2 Organ Systems",,, +"368. Human Body","368.2 Organ Systems","368.2.1 Respiratory System","dsffgdg", +"369. Human Body",,,,"This chapter describes about human body" +"369. Human Body","369.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"369. Human Body","369.1 Parts of Body","369.1.1 Key parts in the head",,"xyz" +"369. Human Body","369.1 Parts of Body","369.1.2 Other parts",, +"369. Human Body","369.2 Organ Systems",,, +"369. Human Body","369.2 Organ Systems","369.2.1 Respiratory System","dsffgdg", +"370. Human Body",,,,"This chapter describes about human body" +"370. Human Body","370.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"370. Human Body","370.1 Parts of Body","370.1.1 Key parts in the head",,"xyz" +"370. Human Body","370.1 Parts of Body","370.1.2 Other parts",, +"370. Human Body","370.2 Organ Systems",,, +"370. Human Body","370.2 Organ Systems","370.2.1 Respiratory System","dsffgdg", +"371. Human Body",,,,"This chapter describes about human body" +"371. Human Body","371.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"371. Human Body","371.1 Parts of Body","371.1.1 Key parts in the head",,"xyz" +"371. Human Body","371.1 Parts of Body","371.1.2 Other parts",, +"371. Human Body","371.2 Organ Systems",,, +"371. Human Body","371.2 Organ Systems","371.2.1 Respiratory System","dsffgdg", +"372. Human Body",,,,"This chapter describes about human body" +"372. Human Body","372.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"372. Human Body","372.1 Parts of Body","372.1.1 Key parts in the head",,"xyz" +"372. Human Body","372.1 Parts of Body","372.1.2 Other parts",, +"372. Human Body","372.2 Organ Systems",,, +"372. Human Body","372.2 Organ Systems","372.2.1 Respiratory System","dsffgdg", +"373. Human Body",,,,"This chapter describes about human body" +"373. Human Body","373.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"373. Human Body","373.1 Parts of Body","373.1.1 Key parts in the head",,"xyz" +"373. Human Body","373.1 Parts of Body","373.1.2 Other parts",, +"373. Human Body","373.2 Organ Systems",,, +"373. Human Body","373.2 Organ Systems","373.2.1 Respiratory System","dsffgdg", +"374. Human Body",,,,"This chapter describes about human body" +"374. Human Body","374.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"374. Human Body","374.1 Parts of Body","374.1.1 Key parts in the head",,"xyz" +"374. Human Body","374.1 Parts of Body","374.1.2 Other parts",, +"374. Human Body","374.2 Organ Systems",,, +"374. Human Body","374.2 Organ Systems","374.2.1 Respiratory System","dsffgdg", +"375. Human Body",,,,"This chapter describes about human body" +"375. Human Body","375.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"375. Human Body","375.1 Parts of Body","375.1.1 Key parts in the head",,"xyz" +"375. Human Body","375.1 Parts of Body","375.1.2 Other parts",, +"375. Human Body","375.2 Organ Systems",,, +"375. Human Body","375.2 Organ Systems","375.2.1 Respiratory System","dsffgdg", +"376. Human Body",,,,"This chapter describes about human body" +"376. Human Body","376.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"376. Human Body","376.1 Parts of Body","376.1.1 Key parts in the head",,"xyz" +"376. Human Body","376.1 Parts of Body","376.1.2 Other parts",, +"376. Human Body","376.2 Organ Systems",,, +"376. Human Body","376.2 Organ Systems","376.2.1 Respiratory System","dsffgdg", +"377. Human Body",,,,"This chapter describes about human body" +"377. Human Body","377.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"377. Human Body","377.1 Parts of Body","377.1.1 Key parts in the head",,"xyz" +"377. Human Body","377.1 Parts of Body","377.1.2 Other parts",, +"377. Human Body","377.2 Organ Systems",,, +"377. Human Body","377.2 Organ Systems","377.2.1 Respiratory System","dsffgdg", +"378. Human Body",,,,"This chapter describes about human body" +"378. Human Body","378.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"378. Human Body","378.1 Parts of Body","378.1.1 Key parts in the head",,"xyz" +"378. Human Body","378.1 Parts of Body","378.1.2 Other parts",, +"378. Human Body","378.2 Organ Systems",,, +"378. Human Body","378.2 Organ Systems","378.2.1 Respiratory System","dsffgdg", +"379. Human Body",,,,"This chapter describes about human body" +"379. Human Body","379.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"379. Human Body","379.1 Parts of Body","379.1.1 Key parts in the head",,"xyz" +"379. Human Body","379.1 Parts of Body","379.1.2 Other parts",, +"379. Human Body","379.2 Organ Systems",,, +"379. Human Body","379.2 Organ Systems","379.2.1 Respiratory System","dsffgdg", +"380. Human Body",,,,"This chapter describes about human body" +"380. Human Body","380.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"380. Human Body","380.1 Parts of Body","380.1.1 Key parts in the head",,"xyz" +"380. Human Body","380.1 Parts of Body","380.1.2 Other parts",, +"380. Human Body","380.2 Organ Systems",,, +"380. Human Body","380.2 Organ Systems","380.2.1 Respiratory System","dsffgdg", +"381. Human Body",,,,"This chapter describes about human body" +"381. Human Body","381.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"381. Human Body","381.1 Parts of Body","381.1.1 Key parts in the head",,"xyz" +"381. Human Body","381.1 Parts of Body","381.1.2 Other parts",, +"381. Human Body","381.2 Organ Systems",,, +"381. Human Body","381.2 Organ Systems","381.2.1 Respiratory System","dsffgdg", +"382. Human Body",,,,"This chapter describes about human body" +"382. Human Body","382.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"382. Human Body","382.1 Parts of Body","382.1.1 Key parts in the head",,"xyz" +"382. Human Body","382.1 Parts of Body","382.1.2 Other parts",, +"382. Human Body","382.2 Organ Systems",,, +"382. Human Body","382.2 Organ Systems","382.2.1 Respiratory System","dsffgdg", +"383. Human Body",,,,"This chapter describes about human body" +"383. Human Body","383.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"383. Human Body","383.1 Parts of Body","383.1.1 Key parts in the head",,"xyz" +"383. Human Body","383.1 Parts of Body","383.1.2 Other parts",, +"383. Human Body","383.2 Organ Systems",,, +"383. Human Body","383.2 Organ Systems","383.2.1 Respiratory System","dsffgdg", +"384. Human Body",,,,"This chapter describes about human body" +"384. Human Body","384.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"384. Human Body","384.1 Parts of Body","384.1.1 Key parts in the head",,"xyz" +"384. Human Body","384.1 Parts of Body","384.1.2 Other parts",, +"384. Human Body","384.2 Organ Systems",,, +"384. Human Body","384.2 Organ Systems","384.2.1 Respiratory System","dsffgdg", +"385. Human Body",,,,"This chapter describes about human body" +"385. Human Body","385.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"385. Human Body","385.1 Parts of Body","385.1.1 Key parts in the head",,"xyz" +"385. Human Body","385.1 Parts of Body","385.1.2 Other parts",, +"385. Human Body","385.2 Organ Systems",,, +"385. Human Body","385.2 Organ Systems","385.2.1 Respiratory System","dsffgdg", +"386. Human Body",,,,"This chapter describes about human body" +"386. Human Body","386.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"386. Human Body","386.1 Parts of Body","386.1.1 Key parts in the head",,"xyz" +"386. Human Body","386.1 Parts of Body","386.1.2 Other parts",, +"386. Human Body","386.2 Organ Systems",,, +"386. Human Body","386.2 Organ Systems","386.2.1 Respiratory System","dsffgdg", +"387. Human Body",,,,"This chapter describes about human body" +"387. Human Body","387.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"387. Human Body","387.1 Parts of Body","387.1.1 Key parts in the head",,"xyz" +"387. Human Body","387.1 Parts of Body","387.1.2 Other parts",, +"387. Human Body","387.2 Organ Systems",,, +"387. Human Body","387.2 Organ Systems","387.2.1 Respiratory System","dsffgdg", +"388. Human Body",,,,"This chapter describes about human body" +"388. Human Body","388.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"388. Human Body","388.1 Parts of Body","388.1.1 Key parts in the head",,"xyz" +"388. Human Body","388.1 Parts of Body","388.1.2 Other parts",, +"388. Human Body","388.2 Organ Systems",,, +"388. Human Body","388.2 Organ Systems","388.2.1 Respiratory System","dsffgdg", +"389. Human Body",,,,"This chapter describes about human body" +"389. Human Body","389.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"389. Human Body","389.1 Parts of Body","389.1.1 Key parts in the head",,"xyz" +"389. Human Body","389.1 Parts of Body","389.1.2 Other parts",, +"389. Human Body","389.2 Organ Systems",,, +"389. Human Body","389.2 Organ Systems","389.2.1 Respiratory System","dsffgdg", +"390. Human Body",,,,"This chapter describes about human body" +"390. Human Body","390.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"390. Human Body","390.1 Parts of Body","390.1.1 Key parts in the head",,"xyz" +"390. Human Body","390.1 Parts of Body","390.1.2 Other parts",, +"390. Human Body","390.2 Organ Systems",,, +"390. Human Body","390.2 Organ Systems","390.2.1 Respiratory System","dsffgdg", +"391. Human Body",,,,"This chapter describes about human body" +"391. Human Body","391.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"391. Human Body","391.1 Parts of Body","391.1.1 Key parts in the head",,"xyz" +"391. Human Body","391.1 Parts of Body","391.1.2 Other parts",, +"391. Human Body","391.2 Organ Systems",,, +"391. Human Body","391.2 Organ Systems","391.2.1 Respiratory System","dsffgdg", +"392. Human Body",,,,"This chapter describes about human body" +"392. Human Body","392.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"392. Human Body","392.1 Parts of Body","392.1.1 Key parts in the head",,"xyz" +"392. Human Body","392.1 Parts of Body","392.1.2 Other parts",, +"392. Human Body","392.2 Organ Systems",,, +"392. Human Body","392.2 Organ Systems","392.2.1 Respiratory System","dsffgdg", +"393. Human Body",,,,"This chapter describes about human body" +"393. Human Body","393.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"393. Human Body","393.1 Parts of Body","393.1.1 Key parts in the head",,"xyz" +"393. Human Body","393.1 Parts of Body","393.1.2 Other parts",, +"393. Human Body","393.2 Organ Systems",,, +"393. Human Body","393.2 Organ Systems","393.2.1 Respiratory System","dsffgdg", +"394. Human Body",,,,"This chapter describes about human body" +"394. Human Body","394.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"394. Human Body","394.1 Parts of Body","394.1.1 Key parts in the head",,"xyz" +"394. Human Body","394.1 Parts of Body","394.1.2 Other parts",, +"394. Human Body","394.2 Organ Systems",,, +"394. Human Body","394.2 Organ Systems","394.2.1 Respiratory System","dsffgdg", +"395. Human Body",,,,"This chapter describes about human body" +"395. Human Body","395.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"395. Human Body","395.1 Parts of Body","395.1.1 Key parts in the head",,"xyz" +"395. Human Body","395.1 Parts of Body","395.1.2 Other parts",, +"395. Human Body","395.2 Organ Systems",,, +"395. Human Body","395.2 Organ Systems","395.2.1 Respiratory System","dsffgdg", +"396. Human Body",,,,"This chapter describes about human body" +"396. Human Body","396.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"396. Human Body","396.1 Parts of Body","396.1.1 Key parts in the head",,"xyz" +"396. Human Body","396.1 Parts of Body","396.1.2 Other parts",, +"396. Human Body","396.2 Organ Systems",,, +"396. Human Body","396.2 Organ Systems","396.2.1 Respiratory System","dsffgdg", +"397. Human Body",,,,"This chapter describes about human body" +"397. Human Body","397.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"397. Human Body","397.1 Parts of Body","397.1.1 Key parts in the head",,"xyz" +"397. Human Body","397.1 Parts of Body","397.1.2 Other parts",, +"397. Human Body","397.2 Organ Systems",,, +"397. Human Body","397.2 Organ Systems","397.2.1 Respiratory System","dsffgdg", +"398. Human Body",,,,"This chapter describes about human body" +"398. Human Body","398.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"398. Human Body","398.1 Parts of Body","398.1.1 Key parts in the head",,"xyz" +"398. Human Body","398.1 Parts of Body","398.1.2 Other parts",, +"398. Human Body","398.2 Organ Systems",,, +"398. Human Body","398.2 Organ Systems","398.2.1 Respiratory System","dsffgdg", +"399. Human Body",,,,"This chapter describes about human body" +"399. Human Body","399.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"399. Human Body","399.1 Parts of Body","399.1.1 Key parts in the head",,"xyz" +"399. Human Body","399.1 Parts of Body","399.1.2 Other parts",, +"399. Human Body","399.2 Organ Systems",,, +"399. Human Body","399.2 Organ Systems","399.2.1 Respiratory System","dsffgdg", +"400. Human Body",,,,"This chapter describes about human body" +"400. Human Body","400.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"400. Human Body","400.1 Parts of Body","400.1.1 Key parts in the head",,"xyz" +"400. Human Body","400.1 Parts of Body","400.1.2 Other parts",, +"400. Human Body","400.2 Organ Systems",,, +"400. Human Body","400.2 Organ Systems","400.2.1 Respiratory System","dsffgdg", +"401. Human Body",,,,"This chapter describes about human body" +"401. Human Body","401.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"401. Human Body","401.1 Parts of Body","401.1.1 Key parts in the head",,"xyz" +"401. Human Body","401.1 Parts of Body","401.1.2 Other parts",, +"401. Human Body","401.2 Organ Systems",,, +"401. Human Body","401.2 Organ Systems","401.2.1 Respiratory System","dsffgdg", +"402. Human Body",,,,"This chapter describes about human body" +"402. Human Body","402.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"402. Human Body","402.1 Parts of Body","402.1.1 Key parts in the head",,"xyz" +"402. Human Body","402.1 Parts of Body","402.1.2 Other parts",, +"402. Human Body","402.2 Organ Systems",,, +"402. Human Body","402.2 Organ Systems","402.2.1 Respiratory System","dsffgdg", +"403. Human Body",,,,"This chapter describes about human body" +"403. Human Body","403.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"403. Human Body","403.1 Parts of Body","403.1.1 Key parts in the head",,"xyz" +"403. Human Body","403.1 Parts of Body","403.1.2 Other parts",, +"403. Human Body","403.2 Organ Systems",,, +"403. Human Body","403.2 Organ Systems","403.2.1 Respiratory System","dsffgdg", +"404. Human Body",,,,"This chapter describes about human body" +"404. Human Body","404.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"404. Human Body","404.1 Parts of Body","404.1.1 Key parts in the head",,"xyz" +"404. Human Body","404.1 Parts of Body","404.1.2 Other parts",, +"404. Human Body","404.2 Organ Systems",,, +"404. Human Body","404.2 Organ Systems","404.2.1 Respiratory System","dsffgdg", +"405. Human Body",,,,"This chapter describes about human body" +"405. Human Body","405.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"405. Human Body","405.1 Parts of Body","405.1.1 Key parts in the head",,"xyz" +"405. Human Body","405.1 Parts of Body","405.1.2 Other parts",, +"405. Human Body","405.2 Organ Systems",,, +"405. Human Body","405.2 Organ Systems","405.2.1 Respiratory System","dsffgdg", +"406. Human Body",,,,"This chapter describes about human body" +"406. Human Body","406.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"406. Human Body","406.1 Parts of Body","406.1.1 Key parts in the head",,"xyz" +"406. Human Body","406.1 Parts of Body","406.1.2 Other parts",, +"406. Human Body","406.2 Organ Systems",,, +"406. Human Body","406.2 Organ Systems","406.2.1 Respiratory System","dsffgdg", +"407. Human Body",,,,"This chapter describes about human body" +"407. Human Body","407.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"407. Human Body","407.1 Parts of Body","407.1.1 Key parts in the head",,"xyz" +"407. Human Body","407.1 Parts of Body","407.1.2 Other parts",, +"407. Human Body","407.2 Organ Systems",,, +"407. Human Body","407.2 Organ Systems","407.2.1 Respiratory System","dsffgdg", +"408. Human Body",,,,"This chapter describes about human body" +"408. Human Body","408.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"408. Human Body","408.1 Parts of Body","408.1.1 Key parts in the head",,"xyz" +"408. Human Body","408.1 Parts of Body","408.1.2 Other parts",, +"408. Human Body","408.2 Organ Systems",,, +"408. Human Body","408.2 Organ Systems","408.2.1 Respiratory System","dsffgdg", +"409. Human Body",,,,"This chapter describes about human body" +"409. Human Body","409.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"409. Human Body","409.1 Parts of Body","409.1.1 Key parts in the head",,"xyz" +"409. Human Body","409.1 Parts of Body","409.1.2 Other parts",, +"409. Human Body","409.2 Organ Systems",,, +"409. Human Body","409.2 Organ Systems","409.2.1 Respiratory System","dsffgdg", +"410. Human Body",,,,"This chapter describes about human body" +"410. Human Body","410.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"410. Human Body","410.1 Parts of Body","410.1.1 Key parts in the head",,"xyz" +"410. Human Body","410.1 Parts of Body","410.1.2 Other parts",, +"410. Human Body","410.2 Organ Systems",,, +"410. Human Body","410.2 Organ Systems","410.2.1 Respiratory System","dsffgdg", +"411. Human Body",,,,"This chapter describes about human body" +"411. Human Body","411.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"411. Human Body","411.1 Parts of Body","411.1.1 Key parts in the head",,"xyz" +"411. Human Body","411.1 Parts of Body","411.1.2 Other parts",, +"411. Human Body","411.2 Organ Systems",,, +"411. Human Body","411.2 Organ Systems","411.2.1 Respiratory System","dsffgdg", +"412. Human Body",,,,"This chapter describes about human body" +"412. Human Body","412.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"412. Human Body","412.1 Parts of Body","412.1.1 Key parts in the head",,"xyz" +"412. Human Body","412.1 Parts of Body","412.1.2 Other parts",, +"412. Human Body","412.2 Organ Systems",,, +"412. Human Body","412.2 Organ Systems","412.2.1 Respiratory System","dsffgdg", +"413. Human Body",,,,"This chapter describes about human body" +"413. Human Body","413.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"413. Human Body","413.1 Parts of Body","413.1.1 Key parts in the head",,"xyz" +"413. Human Body","413.1 Parts of Body","413.1.2 Other parts",, +"413. Human Body","413.2 Organ Systems",,, +"413. Human Body","413.2 Organ Systems","413.2.1 Respiratory System","dsffgdg", +"414. Human Body",,,,"This chapter describes about human body" +"414. Human Body","414.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"414. Human Body","414.1 Parts of Body","414.1.1 Key parts in the head",,"xyz" +"414. Human Body","414.1 Parts of Body","414.1.2 Other parts",, +"414. Human Body","414.2 Organ Systems",,, +"414. Human Body","414.2 Organ Systems","414.2.1 Respiratory System","dsffgdg", +"415. Human Body",,,,"This chapter describes about human body" +"415. Human Body","415.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"415. Human Body","415.1 Parts of Body","415.1.1 Key parts in the head",,"xyz" +"415. Human Body","415.1 Parts of Body","415.1.2 Other parts",, +"415. Human Body","415.2 Organ Systems",,, +"415. Human Body","415.2 Organ Systems","415.2.1 Respiratory System","dsffgdg", +"416. Human Body",,,,"This chapter describes about human body" +"416. Human Body","416.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"416. Human Body","416.1 Parts of Body","416.1.1 Key parts in the head",,"xyz" +"416. Human Body","416.1 Parts of Body","416.1.2 Other parts",, +"416. Human Body","416.2 Organ Systems",,, +"416. Human Body","416.2 Organ Systems","416.2.1 Respiratory System","dsffgdg", +"417. Human Body",,,,"This chapter describes about human body" +"417. Human Body","417.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"417. Human Body","417.1 Parts of Body","417.1.1 Key parts in the head",,"xyz" +"417. Human Body","417.1 Parts of Body","417.1.2 Other parts",, +"417. Human Body","417.2 Organ Systems",,, +"417. Human Body","417.2 Organ Systems","417.2.1 Respiratory System","dsffgdg", +"418. Human Body",,,,"This chapter describes about human body" +"418. Human Body","418.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"418. Human Body","418.1 Parts of Body","418.1.1 Key parts in the head",,"xyz" +"418. Human Body","418.1 Parts of Body","418.1.2 Other parts",, +"418. Human Body","418.2 Organ Systems",,, +"418. Human Body","418.2 Organ Systems","418.2.1 Respiratory System","dsffgdg", +"419. Human Body",,,,"This chapter describes about human body" +"419. Human Body","419.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"419. Human Body","419.1 Parts of Body","419.1.1 Key parts in the head",,"xyz" +"419. Human Body","419.1 Parts of Body","419.1.2 Other parts",, +"419. Human Body","419.2 Organ Systems",,, +"419. Human Body","419.2 Organ Systems","419.2.1 Respiratory System","dsffgdg", +"420. Human Body",,,,"This chapter describes about human body" +"420. Human Body","420.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"420. Human Body","420.1 Parts of Body","420.1.1 Key parts in the head",,"xyz" +"420. Human Body","420.1 Parts of Body","420.1.2 Other parts",, +"420. Human Body","420.2 Organ Systems",,, +"420. Human Body","420.2 Organ Systems","420.2.1 Respiratory System","dsffgdg", +"421. Human Body",,,,"This chapter describes about human body" +"421. Human Body","421.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"421. Human Body","421.1 Parts of Body","421.1.1 Key parts in the head",,"xyz" +"421. Human Body","421.1 Parts of Body","421.1.2 Other parts",, +"421. Human Body","421.2 Organ Systems",,, +"421. Human Body","421.2 Organ Systems","421.2.1 Respiratory System","dsffgdg", +"422. Human Body",,,,"This chapter describes about human body" +"422. Human Body","422.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"422. Human Body","422.1 Parts of Body","422.1.1 Key parts in the head",,"xyz" +"422. Human Body","422.1 Parts of Body","422.1.2 Other parts",, +"422. Human Body","422.2 Organ Systems",,, +"422. Human Body","422.2 Organ Systems","422.2.1 Respiratory System","dsffgdg", +"423. Human Body",,,,"This chapter describes about human body" +"423. Human Body","423.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"423. Human Body","423.1 Parts of Body","423.1.1 Key parts in the head",,"xyz" +"423. Human Body","423.1 Parts of Body","423.1.2 Other parts",, +"423. Human Body","423.2 Organ Systems",,, +"423. Human Body","423.2 Organ Systems","423.2.1 Respiratory System","dsffgdg", +"424. Human Body",,,,"This chapter describes about human body" +"424. Human Body","424.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"424. Human Body","424.1 Parts of Body","424.1.1 Key parts in the head",,"xyz" +"424. Human Body","424.1 Parts of Body","424.1.2 Other parts",, +"424. Human Body","424.2 Organ Systems",,, +"424. Human Body","424.2 Organ Systems","424.2.1 Respiratory System","dsffgdg", +"425. Human Body",,,,"This chapter describes about human body" +"425. Human Body","425.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"425. Human Body","425.1 Parts of Body","425.1.1 Key parts in the head",,"xyz" +"425. Human Body","425.1 Parts of Body","425.1.2 Other parts",, +"425. Human Body","425.2 Organ Systems",,, +"425. Human Body","425.2 Organ Systems","425.2.1 Respiratory System","dsffgdg", +"426. Human Body",,,,"This chapter describes about human body" +"426. Human Body","426.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"426. Human Body","426.1 Parts of Body","426.1.1 Key parts in the head",,"xyz" +"426. Human Body","426.1 Parts of Body","426.1.2 Other parts",, +"426. Human Body","426.2 Organ Systems",,, +"426. Human Body","426.2 Organ Systems","426.2.1 Respiratory System","dsffgdg", +"427. Human Body",,,,"This chapter describes about human body" +"427. Human Body","427.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"427. Human Body","427.1 Parts of Body","427.1.1 Key parts in the head",,"xyz" +"427. Human Body","427.1 Parts of Body","427.1.2 Other parts",, +"427. Human Body","427.2 Organ Systems",,, +"427. Human Body","427.2 Organ Systems","427.2.1 Respiratory System","dsffgdg", +"428. Human Body",,,,"This chapter describes about human body" +"428. Human Body","428.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"428. Human Body","428.1 Parts of Body","428.1.1 Key parts in the head",,"xyz" +"428. Human Body","428.1 Parts of Body","428.1.2 Other parts",, +"428. Human Body","428.2 Organ Systems",,, +"428. Human Body","428.2 Organ Systems","428.2.1 Respiratory System","dsffgdg", +"429. Human Body",,,,"This chapter describes about human body" +"429. Human Body","429.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"429. Human Body","429.1 Parts of Body","429.1.1 Key parts in the head",,"xyz" +"429. Human Body","429.1 Parts of Body","429.1.2 Other parts",, +"429. Human Body","429.2 Organ Systems",,, +"429. Human Body","429.2 Organ Systems","429.2.1 Respiratory System","dsffgdg", +"430. Human Body",,,,"This chapter describes about human body" +"430. Human Body","430.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"430. Human Body","430.1 Parts of Body","430.1.1 Key parts in the head",,"xyz" +"430. Human Body","430.1 Parts of Body","430.1.2 Other parts",, +"430. Human Body","430.2 Organ Systems",,, +"430. Human Body","430.2 Organ Systems","430.2.1 Respiratory System","dsffgdg", +"431. Human Body",,,,"This chapter describes about human body" +"431. Human Body","431.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"431. Human Body","431.1 Parts of Body","431.1.1 Key parts in the head",,"xyz" +"431. Human Body","431.1 Parts of Body","431.1.2 Other parts",, +"431. Human Body","431.2 Organ Systems",,, +"431. Human Body","431.2 Organ Systems","431.2.1 Respiratory System","dsffgdg", +"432. Human Body",,,,"This chapter describes about human body" +"432. Human Body","432.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"432. Human Body","432.1 Parts of Body","432.1.1 Key parts in the head",,"xyz" +"432. Human Body","432.1 Parts of Body","432.1.2 Other parts",, +"432. Human Body","432.2 Organ Systems",,, +"432. Human Body","432.2 Organ Systems","432.2.1 Respiratory System","dsffgdg", +"433. Human Body",,,,"This chapter describes about human body" +"433. Human Body","433.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"433. Human Body","433.1 Parts of Body","433.1.1 Key parts in the head",,"xyz" +"433. Human Body","433.1 Parts of Body","433.1.2 Other parts",, +"433. Human Body","433.2 Organ Systems",,, +"433. Human Body","433.2 Organ Systems","433.2.1 Respiratory System","dsffgdg", +"434. Human Body",,,,"This chapter describes about human body" +"434. Human Body","434.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"434. Human Body","434.1 Parts of Body","434.1.1 Key parts in the head",,"xyz" +"434. Human Body","434.1 Parts of Body","434.1.2 Other parts",, +"434. Human Body","434.2 Organ Systems",,, +"434. Human Body","434.2 Organ Systems","434.2.1 Respiratory System","dsffgdg", +"435. Human Body",,,,"This chapter describes about human body" +"435. Human Body","435.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"435. Human Body","435.1 Parts of Body","435.1.1 Key parts in the head",,"xyz" +"435. Human Body","435.1 Parts of Body","435.1.2 Other parts",, +"435. Human Body","435.2 Organ Systems",,, +"435. Human Body","435.2 Organ Systems","435.2.1 Respiratory System","dsffgdg", +"436. Human Body",,,,"This chapter describes about human body" +"436. Human Body","436.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"436. Human Body","436.1 Parts of Body","436.1.1 Key parts in the head",,"xyz" +"436. Human Body","436.1 Parts of Body","436.1.2 Other parts",, +"436. Human Body","436.2 Organ Systems",,, +"436. Human Body","436.2 Organ Systems","436.2.1 Respiratory System","dsffgdg", +"437. Human Body",,,,"This chapter describes about human body" +"437. Human Body","437.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"437. Human Body","437.1 Parts of Body","437.1.1 Key parts in the head",,"xyz" +"437. Human Body","437.1 Parts of Body","437.1.2 Other parts",, +"437. Human Body","437.2 Organ Systems",,, +"437. Human Body","437.2 Organ Systems","437.2.1 Respiratory System","dsffgdg", +"438. Human Body",,,,"This chapter describes about human body" +"438. Human Body","438.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"438. Human Body","438.1 Parts of Body","438.1.1 Key parts in the head",,"xyz" +"438. Human Body","438.1 Parts of Body","438.1.2 Other parts",, +"438. Human Body","438.2 Organ Systems",,, +"438. Human Body","438.2 Organ Systems","438.2.1 Respiratory System","dsffgdg", +"439. Human Body",,,,"This chapter describes about human body" +"439. Human Body","439.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"439. Human Body","439.1 Parts of Body","439.1.1 Key parts in the head",,"xyz" +"439. Human Body","439.1 Parts of Body","439.1.2 Other parts",, +"439. Human Body","439.2 Organ Systems",,, +"439. Human Body","439.2 Organ Systems","439.2.1 Respiratory System","dsffgdg", +"440. Human Body",,,,"This chapter describes about human body" +"440. Human Body","440.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"440. Human Body","440.1 Parts of Body","440.1.1 Key parts in the head",,"xyz" +"440. Human Body","440.1 Parts of Body","440.1.2 Other parts",, +"440. Human Body","440.2 Organ Systems",,, +"440. Human Body","440.2 Organ Systems","440.2.1 Respiratory System","dsffgdg", +"441. Human Body",,,,"This chapter describes about human body" +"441. Human Body","441.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"441. Human Body","441.1 Parts of Body","441.1.1 Key parts in the head",,"xyz" +"441. Human Body","441.1 Parts of Body","441.1.2 Other parts",, +"441. Human Body","441.2 Organ Systems",,, +"441. Human Body","441.2 Organ Systems","441.2.1 Respiratory System","dsffgdg", +"442. Human Body",,,,"This chapter describes about human body" +"442. Human Body","442.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"442. Human Body","442.1 Parts of Body","442.1.1 Key parts in the head",,"xyz" +"442. Human Body","442.1 Parts of Body","442.1.2 Other parts",, +"442. Human Body","442.2 Organ Systems",,, +"442. Human Body","442.2 Organ Systems","442.2.1 Respiratory System","dsffgdg", +"443. Human Body",,,,"This chapter describes about human body" +"443. Human Body","443.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"443. Human Body","443.1 Parts of Body","443.1.1 Key parts in the head",,"xyz" +"443. Human Body","443.1 Parts of Body","443.1.2 Other parts",, +"443. Human Body","443.2 Organ Systems",,, +"443. Human Body","443.2 Organ Systems","443.2.1 Respiratory System","dsffgdg", +"444. Human Body",,,,"This chapter describes about human body" +"444. Human Body","444.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"444. Human Body","444.1 Parts of Body","444.1.1 Key parts in the head",,"xyz" +"444. Human Body","444.1 Parts of Body","444.1.2 Other parts",, +"444. Human Body","444.2 Organ Systems",,, +"444. Human Body","444.2 Organ Systems","444.2.1 Respiratory System","dsffgdg", +"445. Human Body",,,,"This chapter describes about human body" +"445. Human Body","445.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"445. Human Body","445.1 Parts of Body","445.1.1 Key parts in the head",,"xyz" +"445. Human Body","445.1 Parts of Body","445.1.2 Other parts",, +"445. Human Body","445.2 Organ Systems",,, +"445. Human Body","445.2 Organ Systems","445.2.1 Respiratory System","dsffgdg", +"446. Human Body",,,,"This chapter describes about human body" +"446. Human Body","446.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"446. Human Body","446.1 Parts of Body","446.1.1 Key parts in the head",,"xyz" +"446. Human Body","446.1 Parts of Body","446.1.2 Other parts",, +"446. Human Body","446.2 Organ Systems",,, +"446. Human Body","446.2 Organ Systems","446.2.1 Respiratory System","dsffgdg", +"447. Human Body",,,,"This chapter describes about human body" +"447. Human Body","447.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"447. Human Body","447.1 Parts of Body","447.1.1 Key parts in the head",,"xyz" +"447. Human Body","447.1 Parts of Body","447.1.2 Other parts",, +"447. Human Body","447.2 Organ Systems",,, +"447. Human Body","447.2 Organ Systems","447.2.1 Respiratory System","dsffgdg", +"448. Human Body",,,,"This chapter describes about human body" +"448. Human Body","448.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"448. Human Body","448.1 Parts of Body","448.1.1 Key parts in the head",,"xyz" +"448. Human Body","448.1 Parts of Body","448.1.2 Other parts",, +"448. Human Body","448.2 Organ Systems",,, +"448. Human Body","448.2 Organ Systems","448.2.1 Respiratory System","dsffgdg", +"449. Human Body",,,,"This chapter describes about human body" +"449. Human Body","449.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"449. Human Body","449.1 Parts of Body","449.1.1 Key parts in the head",,"xyz" +"449. Human Body","449.1 Parts of Body","449.1.2 Other parts",, +"449. Human Body","449.2 Organ Systems",,, +"449. Human Body","449.2 Organ Systems","449.2.1 Respiratory System","dsffgdg", +"450. Human Body",,,,"This chapter describes about human body" +"450. Human Body","450.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"450. Human Body","450.1 Parts of Body","450.1.1 Key parts in the head",,"xyz" +"450. Human Body","450.1 Parts of Body","450.1.2 Other parts",, +"450. Human Body","450.2 Organ Systems",,, +"450. Human Body","450.2 Organ Systems","450.2.1 Respiratory System","dsffgdg", +"451. Human Body",,,,"This chapter describes about human body" +"451. Human Body","451.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"451. Human Body","451.1 Parts of Body","451.1.1 Key parts in the head",,"xyz" +"451. Human Body","451.1 Parts of Body","451.1.2 Other parts",, +"451. Human Body","451.2 Organ Systems",,, +"451. Human Body","451.2 Organ Systems","451.2.1 Respiratory System","dsffgdg", +"452. Human Body",,,,"This chapter describes about human body" +"452. Human Body","452.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"452. Human Body","452.1 Parts of Body","452.1.1 Key parts in the head",,"xyz" +"452. Human Body","452.1 Parts of Body","452.1.2 Other parts",, +"452. Human Body","452.2 Organ Systems",,, +"452. Human Body","452.2 Organ Systems","452.2.1 Respiratory System","dsffgdg", +"453. Human Body",,,,"This chapter describes about human body" +"453. Human Body","453.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"453. Human Body","453.1 Parts of Body","453.1.1 Key parts in the head",,"xyz" +"453. Human Body","453.1 Parts of Body","453.1.2 Other parts",, +"453. Human Body","453.2 Organ Systems",,, +"453. Human Body","453.2 Organ Systems","453.2.1 Respiratory System","dsffgdg", +"454. Human Body",,,,"This chapter describes about human body" +"454. Human Body","454.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"454. Human Body","454.1 Parts of Body","454.1.1 Key parts in the head",,"xyz" +"454. Human Body","454.1 Parts of Body","454.1.2 Other parts",, +"454. Human Body","454.2 Organ Systems",,, +"454. Human Body","454.2 Organ Systems","454.2.1 Respiratory System","dsffgdg", +"455. Human Body",,,,"This chapter describes about human body" +"455. Human Body","455.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"455. Human Body","455.1 Parts of Body","455.1.1 Key parts in the head",,"xyz" +"455. Human Body","455.1 Parts of Body","455.1.2 Other parts",, +"455. Human Body","455.2 Organ Systems",,, +"455. Human Body","455.2 Organ Systems","455.2.1 Respiratory System","dsffgdg", +"456. Human Body",,,,"This chapter describes about human body" +"456. Human Body","456.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"456. Human Body","456.1 Parts of Body","456.1.1 Key parts in the head",,"xyz" +"456. Human Body","456.1 Parts of Body","456.1.2 Other parts",, +"456. Human Body","456.2 Organ Systems",,, +"456. Human Body","456.2 Organ Systems","456.2.1 Respiratory System","dsffgdg", +"457. Human Body",,,,"This chapter describes about human body" +"457. Human Body","457.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"457. Human Body","457.1 Parts of Body","457.1.1 Key parts in the head",,"xyz" +"457. Human Body","457.1 Parts of Body","457.1.2 Other parts",, +"457. Human Body","457.2 Organ Systems",,, +"457. Human Body","457.2 Organ Systems","457.2.1 Respiratory System","dsffgdg", +"458. Human Body",,,,"This chapter describes about human body" +"458. Human Body","458.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"458. Human Body","458.1 Parts of Body","458.1.1 Key parts in the head",,"xyz" +"458. Human Body","458.1 Parts of Body","458.1.2 Other parts",, +"458. Human Body","458.2 Organ Systems",,, +"458. Human Body","458.2 Organ Systems","458.2.1 Respiratory System","dsffgdg", +"459. Human Body",,,,"This chapter describes about human body" +"459. Human Body","459.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"459. Human Body","459.1 Parts of Body","459.1.1 Key parts in the head",,"xyz" +"459. Human Body","459.1 Parts of Body","459.1.2 Other parts",, +"459. Human Body","459.2 Organ Systems",,, +"459. Human Body","459.2 Organ Systems","459.2.1 Respiratory System","dsffgdg", +"460. Human Body",,,,"This chapter describes about human body" +"460. Human Body","460.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"460. Human Body","460.1 Parts of Body","460.1.1 Key parts in the head",,"xyz" +"460. Human Body","460.1 Parts of Body","460.1.2 Other parts",, +"460. Human Body","460.2 Organ Systems",,, +"460. Human Body","460.2 Organ Systems","460.2.1 Respiratory System","dsffgdg", +"461. Human Body",,,,"This chapter describes about human body" +"461. Human Body","461.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"461. Human Body","461.1 Parts of Body","461.1.1 Key parts in the head",,"xyz" +"461. Human Body","461.1 Parts of Body","461.1.2 Other parts",, +"461. Human Body","461.2 Organ Systems",,, +"461. Human Body","461.2 Organ Systems","461.2.1 Respiratory System","dsffgdg", +"462. Human Body",,,,"This chapter describes about human body" +"462. Human Body","462.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"462. Human Body","462.1 Parts of Body","462.1.1 Key parts in the head",,"xyz" +"462. Human Body","462.1 Parts of Body","462.1.2 Other parts",, +"462. Human Body","462.2 Organ Systems",,, +"462. Human Body","462.2 Organ Systems","462.2.1 Respiratory System","dsffgdg", +"463. Human Body",,,,"This chapter describes about human body" +"463. Human Body","463.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"463. Human Body","463.1 Parts of Body","463.1.1 Key parts in the head",,"xyz" +"463. Human Body","463.1 Parts of Body","463.1.2 Other parts",, +"463. Human Body","463.2 Organ Systems",,, +"463. Human Body","463.2 Organ Systems","463.2.1 Respiratory System","dsffgdg", +"464. Human Body",,,,"This chapter describes about human body" +"464. Human Body","464.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"464. Human Body","464.1 Parts of Body","464.1.1 Key parts in the head",,"xyz" +"464. Human Body","464.1 Parts of Body","464.1.2 Other parts",, +"464. Human Body","464.2 Organ Systems",,, +"464. Human Body","464.2 Organ Systems","464.2.1 Respiratory System","dsffgdg", +"465. Human Body",,,,"This chapter describes about human body" +"465. Human Body","465.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"465. Human Body","465.1 Parts of Body","465.1.1 Key parts in the head",,"xyz" +"465. Human Body","465.1 Parts of Body","465.1.2 Other parts",, +"465. Human Body","465.2 Organ Systems",,, +"465. Human Body","465.2 Organ Systems","465.2.1 Respiratory System","dsffgdg", +"466. Human Body",,,,"This chapter describes about human body" +"466. Human Body","466.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"466. Human Body","466.1 Parts of Body","466.1.1 Key parts in the head",,"xyz" +"466. Human Body","466.1 Parts of Body","466.1.2 Other parts",, +"466. Human Body","466.2 Organ Systems",,, +"466. Human Body","466.2 Organ Systems","466.2.1 Respiratory System","dsffgdg", +"467. Human Body",,,,"This chapter describes about human body" +"467. Human Body","467.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"467. Human Body","467.1 Parts of Body","467.1.1 Key parts in the head",,"xyz" +"467. Human Body","467.1 Parts of Body","467.1.2 Other parts",, +"467. Human Body","467.2 Organ Systems",,, +"467. Human Body","467.2 Organ Systems","467.2.1 Respiratory System","dsffgdg", +"468. Human Body",,,,"This chapter describes about human body" +"468. Human Body","468.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"468. Human Body","468.1 Parts of Body","468.1.1 Key parts in the head",,"xyz" +"468. Human Body","468.1 Parts of Body","468.1.2 Other parts",, +"468. Human Body","468.2 Organ Systems",,, +"468. Human Body","468.2 Organ Systems","468.2.1 Respiratory System","dsffgdg", +"469. Human Body",,,,"This chapter describes about human body" +"469. Human Body","469.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"469. Human Body","469.1 Parts of Body","469.1.1 Key parts in the head",,"xyz" +"469. Human Body","469.1 Parts of Body","469.1.2 Other parts",, +"469. Human Body","469.2 Organ Systems",,, +"469. Human Body","469.2 Organ Systems","469.2.1 Respiratory System","dsffgdg", +"470. Human Body",,,,"This chapter describes about human body" +"470. Human Body","470.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"470. Human Body","470.1 Parts of Body","470.1.1 Key parts in the head",,"xyz" +"470. Human Body","470.1 Parts of Body","470.1.2 Other parts",, +"470. Human Body","470.2 Organ Systems",,, +"470. Human Body","470.2 Organ Systems","470.2.1 Respiratory System","dsffgdg", +"471. Human Body",,,,"This chapter describes about human body" +"471. Human Body","471.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"471. Human Body","471.1 Parts of Body","471.1.1 Key parts in the head",,"xyz" +"471. Human Body","471.1 Parts of Body","471.1.2 Other parts",, +"471. Human Body","471.2 Organ Systems",,, +"471. Human Body","471.2 Organ Systems","471.2.1 Respiratory System","dsffgdg", +"472. Human Body",,,,"This chapter describes about human body" +"472. Human Body","472.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"472. Human Body","472.1 Parts of Body","472.1.1 Key parts in the head",,"xyz" +"472. Human Body","472.1 Parts of Body","472.1.2 Other parts",, +"472. Human Body","472.2 Organ Systems",,, +"472. Human Body","472.2 Organ Systems","472.2.1 Respiratory System","dsffgdg", +"473. Human Body",,,,"This chapter describes about human body" +"473. Human Body","473.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"473. Human Body","473.1 Parts of Body","473.1.1 Key parts in the head",,"xyz" +"473. Human Body","473.1 Parts of Body","473.1.2 Other parts",, +"473. Human Body","473.2 Organ Systems",,, +"473. Human Body","473.2 Organ Systems","473.2.1 Respiratory System","dsffgdg", +"474. Human Body",,,,"This chapter describes about human body" +"474. Human Body","474.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"474. Human Body","474.1 Parts of Body","474.1.1 Key parts in the head",,"xyz" +"474. Human Body","474.1 Parts of Body","474.1.2 Other parts",, +"474. Human Body","474.2 Organ Systems",,, +"474. Human Body","474.2 Organ Systems","474.2.1 Respiratory System","dsffgdg", +"475. Human Body",,,,"This chapter describes about human body" +"475. Human Body","475.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"475. Human Body","475.1 Parts of Body","475.1.1 Key parts in the head",,"xyz" +"475. Human Body","475.1 Parts of Body","475.1.2 Other parts",, +"475. Human Body","475.2 Organ Systems",,, +"475. Human Body","475.2 Organ Systems","475.2.1 Respiratory System","dsffgdg", +"476. Human Body",,,,"This chapter describes about human body" +"476. Human Body","476.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"476. Human Body","476.1 Parts of Body","476.1.1 Key parts in the head",,"xyz" +"476. Human Body","476.1 Parts of Body","476.1.2 Other parts",, +"476. Human Body","476.2 Organ Systems",,, +"476. Human Body","476.2 Organ Systems","476.2.1 Respiratory System","dsffgdg", +"477. Human Body",,,,"This chapter describes about human body" +"477. Human Body","477.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"477. Human Body","477.1 Parts of Body","477.1.1 Key parts in the head",,"xyz" +"477. Human Body","477.1 Parts of Body","477.1.2 Other parts",, +"477. Human Body","477.2 Organ Systems",,, +"477. Human Body","477.2 Organ Systems","477.2.1 Respiratory System","dsffgdg", +"478. Human Body",,,,"This chapter describes about human body" +"478. Human Body","478.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"478. Human Body","478.1 Parts of Body","478.1.1 Key parts in the head",,"xyz" +"478. Human Body","478.1 Parts of Body","478.1.2 Other parts",, +"478. Human Body","478.2 Organ Systems",,, +"478. Human Body","478.2 Organ Systems","478.2.1 Respiratory System","dsffgdg", +"479. Human Body",,,,"This chapter describes about human body" +"479. Human Body","479.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"479. Human Body","479.1 Parts of Body","479.1.1 Key parts in the head",,"xyz" +"479. Human Body","479.1 Parts of Body","479.1.2 Other parts",, +"479. Human Body","479.2 Organ Systems",,, +"479. Human Body","479.2 Organ Systems","479.2.1 Respiratory System","dsffgdg", +"480. Human Body",,,,"This chapter describes about human body" +"480. Human Body","480.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"480. Human Body","480.1 Parts of Body","480.1.1 Key parts in the head",,"xyz" +"480. Human Body","480.1 Parts of Body","480.1.2 Other parts",, +"480. Human Body","480.2 Organ Systems",,, +"480. Human Body","480.2 Organ Systems","480.2.1 Respiratory System","dsffgdg", +"481. Human Body",,,,"This chapter describes about human body" +"481. Human Body","481.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"481. Human Body","481.1 Parts of Body","481.1.1 Key parts in the head",,"xyz" +"481. Human Body","481.1 Parts of Body","481.1.2 Other parts",, +"481. Human Body","481.2 Organ Systems",,, +"481. Human Body","481.2 Organ Systems","481.2.1 Respiratory System","dsffgdg", +"482. Human Body",,,,"This chapter describes about human body" +"482. Human Body","482.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"482. Human Body","482.1 Parts of Body","482.1.1 Key parts in the head",,"xyz" +"482. Human Body","482.1 Parts of Body","482.1.2 Other parts",, +"482. Human Body","482.2 Organ Systems",,, +"482. Human Body","482.2 Organ Systems","482.2.1 Respiratory System","dsffgdg", +"483. Human Body",,,,"This chapter describes about human body" +"483. Human Body","483.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"483. Human Body","483.1 Parts of Body","483.1.1 Key parts in the head",,"xyz" +"483. Human Body","483.1 Parts of Body","483.1.2 Other parts",, +"483. Human Body","483.2 Organ Systems",,, +"483. Human Body","483.2 Organ Systems","483.2.1 Respiratory System","dsffgdg", +"484. Human Body",,,,"This chapter describes about human body" +"484. Human Body","484.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"484. Human Body","484.1 Parts of Body","484.1.1 Key parts in the head",,"xyz" +"484. Human Body","484.1 Parts of Body","484.1.2 Other parts",, +"484. Human Body","484.2 Organ Systems",,, +"484. Human Body","484.2 Organ Systems","484.2.1 Respiratory System","dsffgdg", +"485. Human Body",,,,"This chapter describes about human body" +"485. Human Body","485.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"485. Human Body","485.1 Parts of Body","485.1.1 Key parts in the head",,"xyz" +"485. Human Body","485.1 Parts of Body","485.1.2 Other parts",, +"485. Human Body","485.2 Organ Systems",,, +"485. Human Body","485.2 Organ Systems","485.2.1 Respiratory System","dsffgdg", +"486. Human Body",,,,"This chapter describes about human body" +"486. Human Body","486.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"486. Human Body","486.1 Parts of Body","486.1.1 Key parts in the head",,"xyz" +"486. Human Body","486.1 Parts of Body","486.1.2 Other parts",, +"486. Human Body","486.2 Organ Systems",,, +"486. Human Body","486.2 Organ Systems","486.2.1 Respiratory System","dsffgdg", +"487. Human Body",,,,"This chapter describes about human body" +"487. Human Body","487.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"487. Human Body","487.1 Parts of Body","487.1.1 Key parts in the head",,"xyz" +"487. Human Body","487.1 Parts of Body","487.1.2 Other parts",, +"487. Human Body","487.2 Organ Systems",,, +"487. Human Body","487.2 Organ Systems","487.2.1 Respiratory System","dsffgdg", +"488. Human Body",,,,"This chapter describes about human body" +"488. Human Body","488.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"488. Human Body","488.1 Parts of Body","488.1.1 Key parts in the head",,"xyz" +"488. Human Body","488.1 Parts of Body","488.1.2 Other parts",, +"488. Human Body","488.2 Organ Systems",,, +"488. Human Body","488.2 Organ Systems","488.2.1 Respiratory System","dsffgdg", +"489. Human Body",,,,"This chapter describes about human body" +"489. Human Body","489.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"489. Human Body","489.1 Parts of Body","489.1.1 Key parts in the head",,"xyz" +"489. Human Body","489.1 Parts of Body","489.1.2 Other parts",, +"489. Human Body","489.2 Organ Systems",,, +"489. Human Body","489.2 Organ Systems","489.2.1 Respiratory System","dsffgdg", +"490. Human Body",,,,"This chapter describes about human body" +"490. Human Body","490.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"490. Human Body","490.1 Parts of Body","490.1.1 Key parts in the head",,"xyz" +"490. Human Body","490.1 Parts of Body","490.1.2 Other parts",, +"490. Human Body","490.2 Organ Systems",,, +"490. Human Body","490.2 Organ Systems","490.2.1 Respiratory System","dsffgdg", +"491. Human Body",,,,"This chapter describes about human body" +"491. Human Body","491.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"491. Human Body","491.1 Parts of Body","491.1.1 Key parts in the head",,"xyz" +"491. Human Body","491.1 Parts of Body","491.1.2 Other parts",, +"491. Human Body","491.2 Organ Systems",,, +"491. Human Body","491.2 Organ Systems","491.2.1 Respiratory System","dsffgdg", +"492. Human Body",,,,"This chapter describes about human body" +"492. Human Body","492.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"492. Human Body","492.1 Parts of Body","492.1.1 Key parts in the head",,"xyz" +"492. Human Body","492.1 Parts of Body","492.1.2 Other parts",, +"492. Human Body","492.2 Organ Systems",,, +"492. Human Body","492.2 Organ Systems","492.2.1 Respiratory System","dsffgdg", +"493. Human Body",,,,"This chapter describes about human body" +"493. Human Body","493.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"493. Human Body","493.1 Parts of Body","493.1.1 Key parts in the head",,"xyz" +"493. Human Body","493.1 Parts of Body","493.1.2 Other parts",, +"493. Human Body","493.2 Organ Systems",,, +"493. Human Body","493.2 Organ Systems","493.2.1 Respiratory System","dsffgdg", +"494. Human Body",,,,"This chapter describes about human body" +"494. Human Body","494.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"494. Human Body","494.1 Parts of Body","494.1.1 Key parts in the head",,"xyz" +"494. Human Body","494.1 Parts of Body","494.1.2 Other parts",, +"494. Human Body","494.2 Organ Systems",,, +"494. Human Body","494.2 Organ Systems","494.2.1 Respiratory System","dsffgdg", +"495. Human Body",,,,"This chapter describes about human body" +"495. Human Body","495.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"495. Human Body","495.1 Parts of Body","495.1.1 Key parts in the head",,"xyz" +"495. Human Body","495.1 Parts of Body","495.1.2 Other parts",, +"495. Human Body","495.2 Organ Systems",,, +"495. Human Body","495.2 Organ Systems","495.2.1 Respiratory System","dsffgdg", +"496. Human Body",,,,"This chapter describes about human body" +"496. Human Body","496.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"496. Human Body","496.1 Parts of Body","496.1.1 Key parts in the head",,"xyz" +"496. Human Body","496.1 Parts of Body","496.1.2 Other parts",, +"496. Human Body","496.2 Organ Systems",,, +"496. Human Body","496.2 Organ Systems","496.2.1 Respiratory System","dsffgdg", +"497. Human Body",,,,"This chapter describes about human body" +"497. Human Body","497.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"497. Human Body","497.1 Parts of Body","497.1.1 Key parts in the head",,"xyz" +"497. Human Body","497.1 Parts of Body","497.1.2 Other parts",, +"497. Human Body","497.2 Organ Systems",,, +"497. Human Body","497.2 Organ Systems","497.2.1 Respiratory System","dsffgdg", +"498. Human Body",,,,"This chapter describes about human body" +"498. Human Body","498.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"498. Human Body","498.1 Parts of Body","498.1.1 Key parts in the head",,"xyz" +"498. Human Body","498.1 Parts of Body","498.1.2 Other parts",, +"498. Human Body","498.2 Organ Systems",,, +"498. Human Body","498.2 Organ Systems","498.2.1 Respiratory System","dsffgdg", +"499. Human Body",,,,"This chapter describes about human body" +"499. Human Body","499.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"499. Human Body","499.1 Parts of Body","499.1.1 Key parts in the head",,"xyz" +"499. Human Body","499.1 Parts of Body","499.1.2 Other parts",, +"499. Human Body","499.2 Organ Systems",,, +"499. Human Body","499.2 Organ Systems","499.2.1 Respiratory System","dsffgdg", +"500. Human Body",,,,"This chapter describes about human body" +"500. Human Body","500.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"500. Human Body","500.1 Parts of Body","500.1.1 Key parts in the head",,"xyz" +"500. Human Body","500.1 Parts of Body","500.1.2 Other parts",, +"500. Human Body","500.2 Organ Systems",,, +"500. Human Body","500.2 Organ Systems","500.2.1 Respiratory System","dsffgdg", +"501. Human Body",,,,"This chapter describes about human body" +"501. Human Body","501.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"501. Human Body","501.1 Parts of Body","501.1.1 Key parts in the head",,"xyz" +"501. Human Body","501.1 Parts of Body","501.1.2 Other parts",, +"501. Human Body","501.2 Organ Systems",,, +"501. Human Body","501.2 Organ Systems","501.2.1 Respiratory System","dsffgdg", +"502. Human Body",,,,"This chapter describes about human body" +"502. Human Body","502.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"502. Human Body","502.1 Parts of Body","502.1.1 Key parts in the head",,"xyz" +"502. Human Body","502.1 Parts of Body","502.1.2 Other parts",, +"502. Human Body","502.2 Organ Systems",,, +"502. Human Body","502.2 Organ Systems","502.2.1 Respiratory System","dsffgdg", +"503. Human Body",,,,"This chapter describes about human body" +"503. Human Body","503.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"503. Human Body","503.1 Parts of Body","503.1.1 Key parts in the head",,"xyz" +"503. Human Body","503.1 Parts of Body","503.1.2 Other parts",, +"503. Human Body","503.2 Organ Systems",,, +"503. Human Body","503.2 Organ Systems","503.2.1 Respiratory System","dsffgdg", +"504. Human Body",,,,"This chapter describes about human body" +"504. Human Body","504.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"504. Human Body","504.1 Parts of Body","504.1.1 Key parts in the head",,"xyz" +"504. Human Body","504.1 Parts of Body","504.1.2 Other parts",, +"504. Human Body","504.2 Organ Systems",,, +"504. Human Body","504.2 Organ Systems","504.2.1 Respiratory System","dsffgdg", +"505. Human Body",,,,"This chapter describes about human body" +"505. Human Body","505.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"505. Human Body","505.1 Parts of Body","505.1.1 Key parts in the head",,"xyz" +"505. Human Body","505.1 Parts of Body","505.1.2 Other parts",, +"505. Human Body","505.2 Organ Systems",,, +"505. Human Body","505.2 Organ Systems","505.2.1 Respiratory System","dsffgdg", +"506. Human Body",,,,"This chapter describes about human body" +"506. Human Body","506.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"506. Human Body","506.1 Parts of Body","506.1.1 Key parts in the head",,"xyz" +"506. Human Body","506.1 Parts of Body","506.1.2 Other parts",, +"506. Human Body","506.2 Organ Systems",,, +"506. Human Body","506.2 Organ Systems","506.2.1 Respiratory System","dsffgdg", +"507. Human Body",,,,"This chapter describes about human body" +"507. Human Body","507.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"507. Human Body","507.1 Parts of Body","507.1.1 Key parts in the head",,"xyz" +"507. Human Body","507.1 Parts of Body","507.1.2 Other parts",, +"507. Human Body","507.2 Organ Systems",,, +"507. Human Body","507.2 Organ Systems","507.2.1 Respiratory System","dsffgdg", +"508. Human Body",,,,"This chapter describes about human body" +"508. Human Body","508.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"508. Human Body","508.1 Parts of Body","508.1.1 Key parts in the head",,"xyz" +"508. Human Body","508.1 Parts of Body","508.1.2 Other parts",, +"508. Human Body","508.2 Organ Systems",,, +"508. Human Body","508.2 Organ Systems","508.2.1 Respiratory System","dsffgdg", +"509. Human Body",,,,"This chapter describes about human body" +"509. Human Body","509.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"509. Human Body","509.1 Parts of Body","509.1.1 Key parts in the head",,"xyz" +"509. Human Body","509.1 Parts of Body","509.1.2 Other parts",, +"509. Human Body","509.2 Organ Systems",,, +"509. Human Body","509.2 Organ Systems","509.2.1 Respiratory System","dsffgdg", +"510. Human Body",,,,"This chapter describes about human body" +"510. Human Body","510.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"510. Human Body","510.1 Parts of Body","510.1.1 Key parts in the head",,"xyz" +"510. Human Body","510.1 Parts of Body","510.1.2 Other parts",, +"510. Human Body","510.2 Organ Systems",,, +"510. Human Body","510.2 Organ Systems","510.2.1 Respiratory System","dsffgdg", +"511. Human Body",,,,"This chapter describes about human body" +"511. Human Body","511.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"511. Human Body","511.1 Parts of Body","511.1.1 Key parts in the head",,"xyz" +"511. Human Body","511.1 Parts of Body","511.1.2 Other parts",, +"511. Human Body","511.2 Organ Systems",,, +"511. Human Body","511.2 Organ Systems","511.2.1 Respiratory System","dsffgdg", +"512. Human Body",,,,"This chapter describes about human body" +"512. Human Body","512.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"512. Human Body","512.1 Parts of Body","512.1.1 Key parts in the head",,"xyz" +"512. Human Body","512.1 Parts of Body","512.1.2 Other parts",, +"512. Human Body","512.2 Organ Systems",,, +"512. Human Body","512.2 Organ Systems","512.2.1 Respiratory System","dsffgdg", +"513. Human Body",,,,"This chapter describes about human body" +"513. Human Body","513.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"513. Human Body","513.1 Parts of Body","513.1.1 Key parts in the head",,"xyz" +"513. Human Body","513.1 Parts of Body","513.1.2 Other parts",, +"513. Human Body","513.2 Organ Systems",,, +"513. Human Body","513.2 Organ Systems","513.2.1 Respiratory System","dsffgdg", +"514. Human Body",,,,"This chapter describes about human body" +"514. Human Body","514.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"514. Human Body","514.1 Parts of Body","514.1.1 Key parts in the head",,"xyz" +"514. Human Body","514.1 Parts of Body","514.1.2 Other parts",, +"514. Human Body","514.2 Organ Systems",,, +"514. Human Body","514.2 Organ Systems","514.2.1 Respiratory System","dsffgdg", +"515. Human Body",,,,"This chapter describes about human body" +"515. Human Body","515.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"515. Human Body","515.1 Parts of Body","515.1.1 Key parts in the head",,"xyz" +"515. Human Body","515.1 Parts of Body","515.1.2 Other parts",, +"515. Human Body","515.2 Organ Systems",,, +"515. Human Body","515.2 Organ Systems","515.2.1 Respiratory System","dsffgdg", +"516. Human Body",,,,"This chapter describes about human body" +"516. Human Body","516.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"516. Human Body","516.1 Parts of Body","516.1.1 Key parts in the head",,"xyz" +"516. Human Body","516.1 Parts of Body","516.1.2 Other parts",, +"516. Human Body","516.2 Organ Systems",,, +"516. Human Body","516.2 Organ Systems","516.2.1 Respiratory System","dsffgdg", +"517. Human Body",,,,"This chapter describes about human body" +"517. Human Body","517.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"517. Human Body","517.1 Parts of Body","517.1.1 Key parts in the head",,"xyz" +"517. Human Body","517.1 Parts of Body","517.1.2 Other parts",, +"517. Human Body","517.2 Organ Systems",,, +"517. Human Body","517.2 Organ Systems","517.2.1 Respiratory System","dsffgdg", +"518. Human Body",,,,"This chapter describes about human body" +"518. Human Body","518.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"518. Human Body","518.1 Parts of Body","518.1.1 Key parts in the head",,"xyz" +"518. Human Body","518.1 Parts of Body","518.1.2 Other parts",, +"518. Human Body","518.2 Organ Systems",,, +"518. Human Body","518.2 Organ Systems","518.2.1 Respiratory System","dsffgdg", +"519. Human Body",,,,"This chapter describes about human body" +"519. Human Body","519.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"519. Human Body","519.1 Parts of Body","519.1.1 Key parts in the head",,"xyz" +"519. Human Body","519.1 Parts of Body","519.1.2 Other parts",, +"519. Human Body","519.2 Organ Systems",,, +"519. Human Body","519.2 Organ Systems","519.2.1 Respiratory System","dsffgdg", +"520. Human Body",,,,"This chapter describes about human body" +"520. Human Body","520.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"520. Human Body","520.1 Parts of Body","520.1.1 Key parts in the head",,"xyz" +"520. Human Body","520.1 Parts of Body","520.1.2 Other parts",, +"520. Human Body","520.2 Organ Systems",,, +"520. Human Body","520.2 Organ Systems","520.2.1 Respiratory System","dsffgdg", +"521. Human Body",,,,"This chapter describes about human body" +"521. Human Body","521.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"521. Human Body","521.1 Parts of Body","521.1.1 Key parts in the head",,"xyz" +"521. Human Body","521.1 Parts of Body","521.1.2 Other parts",, +"521. Human Body","521.2 Organ Systems",,, +"521. Human Body","521.2 Organ Systems","521.2.1 Respiratory System","dsffgdg", +"522. Human Body",,,,"This chapter describes about human body" +"522. Human Body","522.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"522. Human Body","522.1 Parts of Body","522.1.1 Key parts in the head",,"xyz" +"522. Human Body","522.1 Parts of Body","522.1.2 Other parts",, +"522. Human Body","522.2 Organ Systems",,, +"522. Human Body","522.2 Organ Systems","522.2.1 Respiratory System","dsffgdg", +"523. Human Body",,,,"This chapter describes about human body" +"523. Human Body","523.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"523. Human Body","523.1 Parts of Body","523.1.1 Key parts in the head",,"xyz" +"523. Human Body","523.1 Parts of Body","523.1.2 Other parts",, +"523. Human Body","523.2 Organ Systems",,, +"523. Human Body","523.2 Organ Systems","523.2.1 Respiratory System","dsffgdg", +"524. Human Body",,,,"This chapter describes about human body" +"524. Human Body","524.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"524. Human Body","524.1 Parts of Body","524.1.1 Key parts in the head",,"xyz" +"524. Human Body","524.1 Parts of Body","524.1.2 Other parts",, +"524. Human Body","524.2 Organ Systems",,, +"524. Human Body","524.2 Organ Systems","524.2.1 Respiratory System","dsffgdg", +"525. Human Body",,,,"This chapter describes about human body" +"525. Human Body","525.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"525. Human Body","525.1 Parts of Body","525.1.1 Key parts in the head",,"xyz" +"525. Human Body","525.1 Parts of Body","525.1.2 Other parts",, +"525. Human Body","525.2 Organ Systems",,, +"525. Human Body","525.2 Organ Systems","525.2.1 Respiratory System","dsffgdg", +"526. Human Body",,,,"This chapter describes about human body" +"526. Human Body","526.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"526. Human Body","526.1 Parts of Body","526.1.1 Key parts in the head",,"xyz" +"526. Human Body","526.1 Parts of Body","526.1.2 Other parts",, +"526. Human Body","526.2 Organ Systems",,, +"526. Human Body","526.2 Organ Systems","526.2.1 Respiratory System","dsffgdg", +"527. Human Body",,,,"This chapter describes about human body" +"527. Human Body","527.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"527. Human Body","527.1 Parts of Body","527.1.1 Key parts in the head",,"xyz" +"527. Human Body","527.1 Parts of Body","527.1.2 Other parts",, +"527. Human Body","527.2 Organ Systems",,, +"527. Human Body","527.2 Organ Systems","527.2.1 Respiratory System","dsffgdg", +"528. Human Body",,,,"This chapter describes about human body" +"528. Human Body","528.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"528. Human Body","528.1 Parts of Body","528.1.1 Key parts in the head",,"xyz" +"528. Human Body","528.1 Parts of Body","528.1.2 Other parts",, +"528. Human Body","528.2 Organ Systems",,, +"528. Human Body","528.2 Organ Systems","528.2.1 Respiratory System","dsffgdg", +"529. Human Body",,,,"This chapter describes about human body" +"529. Human Body","529.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"529. Human Body","529.1 Parts of Body","529.1.1 Key parts in the head",,"xyz" +"529. Human Body","529.1 Parts of Body","529.1.2 Other parts",, +"529. Human Body","529.2 Organ Systems",,, +"529. Human Body","529.2 Organ Systems","529.2.1 Respiratory System","dsffgdg", +"530. Human Body",,,,"This chapter describes about human body" +"530. Human Body","530.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"530. Human Body","530.1 Parts of Body","530.1.1 Key parts in the head",,"xyz" +"530. Human Body","530.1 Parts of Body","530.1.2 Other parts",, +"530. Human Body","530.2 Organ Systems",,, +"530. Human Body","530.2 Organ Systems","530.2.1 Respiratory System","dsffgdg", +"531. Human Body",,,,"This chapter describes about human body" +"531. Human Body","531.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"531. Human Body","531.1 Parts of Body","531.1.1 Key parts in the head",,"xyz" +"531. Human Body","531.1 Parts of Body","531.1.2 Other parts",, +"531. Human Body","531.2 Organ Systems",,, +"531. Human Body","531.2 Organ Systems","531.2.1 Respiratory System","dsffgdg", +"532. Human Body",,,,"This chapter describes about human body" +"532. Human Body","532.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"532. Human Body","532.1 Parts of Body","532.1.1 Key parts in the head",,"xyz" +"532. Human Body","532.1 Parts of Body","532.1.2 Other parts",, +"532. Human Body","532.2 Organ Systems",,, +"532. Human Body","532.2 Organ Systems","532.2.1 Respiratory System","dsffgdg", +"533. Human Body",,,,"This chapter describes about human body" +"533. Human Body","533.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"533. Human Body","533.1 Parts of Body","533.1.1 Key parts in the head",,"xyz" +"533. Human Body","533.1 Parts of Body","533.1.2 Other parts",, +"533. Human Body","533.2 Organ Systems",,, +"533. Human Body","533.2 Organ Systems","533.2.1 Respiratory System","dsffgdg", +"534. Human Body",,,,"This chapter describes about human body" +"534. Human Body","534.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"534. Human Body","534.1 Parts of Body","534.1.1 Key parts in the head",,"xyz" +"534. Human Body","534.1 Parts of Body","534.1.2 Other parts",, +"534. Human Body","534.2 Organ Systems",,, +"534. Human Body","534.2 Organ Systems","534.2.1 Respiratory System","dsffgdg", +"535. Human Body",,,,"This chapter describes about human body" +"535. Human Body","535.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"535. Human Body","535.1 Parts of Body","535.1.1 Key parts in the head",,"xyz" +"535. Human Body","535.1 Parts of Body","535.1.2 Other parts",, +"535. Human Body","535.2 Organ Systems",,, +"535. Human Body","535.2 Organ Systems","535.2.1 Respiratory System","dsffgdg", +"536. Human Body",,,,"This chapter describes about human body" +"536. Human Body","536.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"536. Human Body","536.1 Parts of Body","536.1.1 Key parts in the head",,"xyz" +"536. Human Body","536.1 Parts of Body","536.1.2 Other parts",, +"536. Human Body","536.2 Organ Systems",,, +"536. Human Body","536.2 Organ Systems","536.2.1 Respiratory System","dsffgdg", +"537. Human Body",,,,"This chapter describes about human body" +"537. Human Body","537.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"537. Human Body","537.1 Parts of Body","537.1.1 Key parts in the head",,"xyz" +"537. Human Body","537.1 Parts of Body","537.1.2 Other parts",, +"537. Human Body","537.2 Organ Systems",,, +"537. Human Body","537.2 Organ Systems","537.2.1 Respiratory System","dsffgdg", +"538. Human Body",,,,"This chapter describes about human body" +"538. Human Body","538.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"538. Human Body","538.1 Parts of Body","538.1.1 Key parts in the head",,"xyz" +"538. Human Body","538.1 Parts of Body","538.1.2 Other parts",, +"538. Human Body","538.2 Organ Systems",,, +"538. Human Body","538.2 Organ Systems","538.2.1 Respiratory System","dsffgdg", +"539. Human Body",,,,"This chapter describes about human body" +"539. Human Body","539.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"539. Human Body","539.1 Parts of Body","539.1.1 Key parts in the head",,"xyz" +"539. Human Body","539.1 Parts of Body","539.1.2 Other parts",, +"539. Human Body","539.2 Organ Systems",,, +"539. Human Body","539.2 Organ Systems","539.2.1 Respiratory System","dsffgdg", +"540. Human Body",,,,"This chapter describes about human body" +"540. Human Body","540.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"540. Human Body","540.1 Parts of Body","540.1.1 Key parts in the head",,"xyz" +"540. Human Body","540.1 Parts of Body","540.1.2 Other parts",, +"540. Human Body","540.2 Organ Systems",,, +"540. Human Body","540.2 Organ Systems","540.2.1 Respiratory System","dsffgdg", +"541. Human Body",,,,"This chapter describes about human body" +"541. Human Body","541.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"541. Human Body","541.1 Parts of Body","541.1.1 Key parts in the head",,"xyz" +"541. Human Body","541.1 Parts of Body","541.1.2 Other parts",, +"541. Human Body","541.2 Organ Systems",,, +"541. Human Body","541.2 Organ Systems","541.2.1 Respiratory System","dsffgdg", +"542. Human Body",,,,"This chapter describes about human body" +"542. Human Body","542.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"542. Human Body","542.1 Parts of Body","542.1.1 Key parts in the head",,"xyz" +"542. Human Body","542.1 Parts of Body","542.1.2 Other parts",, +"542. Human Body","542.2 Organ Systems",,, +"542. Human Body","542.2 Organ Systems","542.2.1 Respiratory System","dsffgdg", +"543. Human Body",,,,"This chapter describes about human body" +"543. Human Body","543.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"543. Human Body","543.1 Parts of Body","543.1.1 Key parts in the head",,"xyz" +"543. Human Body","543.1 Parts of Body","543.1.2 Other parts",, +"543. Human Body","543.2 Organ Systems",,, +"543. Human Body","543.2 Organ Systems","543.2.1 Respiratory System","dsffgdg", +"544. Human Body",,,,"This chapter describes about human body" +"544. Human Body","544.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"544. Human Body","544.1 Parts of Body","544.1.1 Key parts in the head",,"xyz" +"544. Human Body","544.1 Parts of Body","544.1.2 Other parts",, +"544. Human Body","544.2 Organ Systems",,, +"544. Human Body","544.2 Organ Systems","544.2.1 Respiratory System","dsffgdg", +"545. Human Body",,,,"This chapter describes about human body" +"545. Human Body","545.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"545. Human Body","545.1 Parts of Body","545.1.1 Key parts in the head",,"xyz" +"545. Human Body","545.1 Parts of Body","545.1.2 Other parts",, +"545. Human Body","545.2 Organ Systems",,, +"545. Human Body","545.2 Organ Systems","545.2.1 Respiratory System","dsffgdg", +"546. Human Body",,,,"This chapter describes about human body" +"546. Human Body","546.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"546. Human Body","546.1 Parts of Body","546.1.1 Key parts in the head",,"xyz" +"546. Human Body","546.1 Parts of Body","546.1.2 Other parts",, +"546. Human Body","546.2 Organ Systems",,, +"546. Human Body","546.2 Organ Systems","546.2.1 Respiratory System","dsffgdg", +"547. Human Body",,,,"This chapter describes about human body" +"547. Human Body","547.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"547. Human Body","547.1 Parts of Body","547.1.1 Key parts in the head",,"xyz" +"547. Human Body","547.1 Parts of Body","547.1.2 Other parts",, +"547. Human Body","547.2 Organ Systems",,, +"547. Human Body","547.2 Organ Systems","547.2.1 Respiratory System","dsffgdg", +"548. Human Body",,,,"This chapter describes about human body" +"548. Human Body","548.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"548. Human Body","548.1 Parts of Body","548.1.1 Key parts in the head",,"xyz" +"548. Human Body","548.1 Parts of Body","548.1.2 Other parts",, +"548. Human Body","548.2 Organ Systems",,, +"548. Human Body","548.2 Organ Systems","548.2.1 Respiratory System","dsffgdg", +"549. Human Body",,,,"This chapter describes about human body" +"549. Human Body","549.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"549. Human Body","549.1 Parts of Body","549.1.1 Key parts in the head",,"xyz" +"549. Human Body","549.1 Parts of Body","549.1.2 Other parts",, +"549. Human Body","549.2 Organ Systems",,, +"549. Human Body","549.2 Organ Systems","549.2.1 Respiratory System","dsffgdg", +"550. Human Body",,,,"This chapter describes about human body" +"550. Human Body","550.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"550. Human Body","550.1 Parts of Body","550.1.1 Key parts in the head",,"xyz" +"550. Human Body","550.1 Parts of Body","550.1.2 Other parts",, +"550. Human Body","550.2 Organ Systems",,, +"550. Human Body","550.2 Organ Systems","550.2.1 Respiratory System","dsffgdg", +"551. Human Body",,,,"This chapter describes about human body" +"551. Human Body","551.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"551. Human Body","551.1 Parts of Body","551.1.1 Key parts in the head",,"xyz" +"551. Human Body","551.1 Parts of Body","551.1.2 Other parts",, +"551. Human Body","551.2 Organ Systems",,, +"551. Human Body","551.2 Organ Systems","551.2.1 Respiratory System","dsffgdg", +"552. Human Body",,,,"This chapter describes about human body" +"552. Human Body","552.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"552. Human Body","552.1 Parts of Body","552.1.1 Key parts in the head",,"xyz" +"552. Human Body","552.1 Parts of Body","552.1.2 Other parts",, +"552. Human Body","552.2 Organ Systems",,, +"552. Human Body","552.2 Organ Systems","552.2.1 Respiratory System","dsffgdg", +"553. Human Body",,,,"This chapter describes about human body" +"553. Human Body","553.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"553. Human Body","553.1 Parts of Body","553.1.1 Key parts in the head",,"xyz" +"553. Human Body","553.1 Parts of Body","553.1.2 Other parts",, +"553. Human Body","553.2 Organ Systems",,, +"553. Human Body","553.2 Organ Systems","553.2.1 Respiratory System","dsffgdg", +"554. Human Body",,,,"This chapter describes about human body" +"554. Human Body","554.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"554. Human Body","554.1 Parts of Body","554.1.1 Key parts in the head",,"xyz" +"554. Human Body","554.1 Parts of Body","554.1.2 Other parts",, +"554. Human Body","554.2 Organ Systems",,, +"554. Human Body","554.2 Organ Systems","554.2.1 Respiratory System","dsffgdg", +"555. Human Body",,,,"This chapter describes about human body" +"555. Human Body","555.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"555. Human Body","555.1 Parts of Body","555.1.1 Key parts in the head",,"xyz" +"555. Human Body","555.1 Parts of Body","555.1.2 Other parts",, +"555. Human Body","555.2 Organ Systems",,, +"555. Human Body","555.2 Organ Systems","555.2.1 Respiratory System","dsffgdg", +"556. Human Body",,,,"This chapter describes about human body" +"556. Human Body","556.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"556. Human Body","556.1 Parts of Body","556.1.1 Key parts in the head",,"xyz" +"556. Human Body","556.1 Parts of Body","556.1.2 Other parts",, +"556. Human Body","556.2 Organ Systems",,, +"556. Human Body","556.2 Organ Systems","556.2.1 Respiratory System","dsffgdg", +"557. Human Body",,,,"This chapter describes about human body" +"557. Human Body","557.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"557. Human Body","557.1 Parts of Body","557.1.1 Key parts in the head",,"xyz" +"557. Human Body","557.1 Parts of Body","557.1.2 Other parts",, +"557. Human Body","557.2 Organ Systems",,, +"557. Human Body","557.2 Organ Systems","557.2.1 Respiratory System","dsffgdg", +"558. Human Body",,,,"This chapter describes about human body" +"558. Human Body","558.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"558. Human Body","558.1 Parts of Body","558.1.1 Key parts in the head",,"xyz" +"558. Human Body","558.1 Parts of Body","558.1.2 Other parts",, +"558. Human Body","558.2 Organ Systems",,, +"558. Human Body","558.2 Organ Systems","558.2.1 Respiratory System","dsffgdg", +"559. Human Body",,,,"This chapter describes about human body" +"559. Human Body","559.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"559. Human Body","559.1 Parts of Body","559.1.1 Key parts in the head",,"xyz" +"559. Human Body","559.1 Parts of Body","559.1.2 Other parts",, +"559. Human Body","559.2 Organ Systems",,, +"559. Human Body","559.2 Organ Systems","559.2.1 Respiratory System","dsffgdg", +"560. Human Body",,,,"This chapter describes about human body" +"560. Human Body","560.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"560. Human Body","560.1 Parts of Body","560.1.1 Key parts in the head",,"xyz" +"560. Human Body","560.1 Parts of Body","560.1.2 Other parts",, +"560. Human Body","560.2 Organ Systems",,, +"560. Human Body","560.2 Organ Systems","560.2.1 Respiratory System","dsffgdg", +"561. Human Body",,,,"This chapter describes about human body" +"561. Human Body","561.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"561. Human Body","561.1 Parts of Body","561.1.1 Key parts in the head",,"xyz" +"561. Human Body","561.1 Parts of Body","561.1.2 Other parts",, +"561. Human Body","561.2 Organ Systems",,, +"561. Human Body","561.2 Organ Systems","561.2.1 Respiratory System","dsffgdg", +"562. Human Body",,,,"This chapter describes about human body" +"562. Human Body","562.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"562. Human Body","562.1 Parts of Body","562.1.1 Key parts in the head",,"xyz" +"562. Human Body","562.1 Parts of Body","562.1.2 Other parts",, +"562. Human Body","562.2 Organ Systems",,, +"562. Human Body","562.2 Organ Systems","562.2.1 Respiratory System","dsffgdg", +"563. Human Body",,,,"This chapter describes about human body" +"563. Human Body","563.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"563. Human Body","563.1 Parts of Body","563.1.1 Key parts in the head",,"xyz" +"563. Human Body","563.1 Parts of Body","563.1.2 Other parts",, +"563. Human Body","563.2 Organ Systems",,, +"563. Human Body","563.2 Organ Systems","563.2.1 Respiratory System","dsffgdg", +"564. Human Body",,,,"This chapter describes about human body" +"564. Human Body","564.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"564. Human Body","564.1 Parts of Body","564.1.1 Key parts in the head",,"xyz" +"564. Human Body","564.1 Parts of Body","564.1.2 Other parts",, +"564. Human Body","564.2 Organ Systems",,, +"564. Human Body","564.2 Organ Systems","564.2.1 Respiratory System","dsffgdg", +"565. Human Body",,,,"This chapter describes about human body" +"565. Human Body","565.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"565. Human Body","565.1 Parts of Body","565.1.1 Key parts in the head",,"xyz" +"565. Human Body","565.1 Parts of Body","565.1.2 Other parts",, +"565. Human Body","565.2 Organ Systems",,, +"565. Human Body","565.2 Organ Systems","565.2.1 Respiratory System","dsffgdg", +"566. Human Body",,,,"This chapter describes about human body" +"566. Human Body","566.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"566. Human Body","566.1 Parts of Body","566.1.1 Key parts in the head",,"xyz" +"566. Human Body","566.1 Parts of Body","566.1.2 Other parts",, +"566. Human Body","566.2 Organ Systems",,, +"566. Human Body","566.2 Organ Systems","566.2.1 Respiratory System","dsffgdg", +"567. Human Body",,,,"This chapter describes about human body" +"567. Human Body","567.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"567. Human Body","567.1 Parts of Body","567.1.1 Key parts in the head",,"xyz" +"567. Human Body","567.1 Parts of Body","567.1.2 Other parts",, +"567. Human Body","567.2 Organ Systems",,, +"567. Human Body","567.2 Organ Systems","567.2.1 Respiratory System","dsffgdg", +"568. Human Body",,,,"This chapter describes about human body" +"568. Human Body","568.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"568. Human Body","568.1 Parts of Body","568.1.1 Key parts in the head",,"xyz" +"568. Human Body","568.1 Parts of Body","568.1.2 Other parts",, +"568. Human Body","568.2 Organ Systems",,, +"568. Human Body","568.2 Organ Systems","568.2.1 Respiratory System","dsffgdg", +"569. Human Body",,,,"This chapter describes about human body" +"569. Human Body","569.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"569. Human Body","569.1 Parts of Body","569.1.1 Key parts in the head",,"xyz" +"569. Human Body","569.1 Parts of Body","569.1.2 Other parts",, +"569. Human Body","569.2 Organ Systems",,, +"569. Human Body","569.2 Organ Systems","569.2.1 Respiratory System","dsffgdg", +"570. Human Body",,,,"This chapter describes about human body" +"570. Human Body","570.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"570. Human Body","570.1 Parts of Body","570.1.1 Key parts in the head",,"xyz" +"570. Human Body","570.1 Parts of Body","570.1.2 Other parts",, +"570. Human Body","570.2 Organ Systems",,, +"570. Human Body","570.2 Organ Systems","570.2.1 Respiratory System","dsffgdg", +"571. Human Body",,,,"This chapter describes about human body" +"571. Human Body","571.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"571. Human Body","571.1 Parts of Body","571.1.1 Key parts in the head",,"xyz" +"571. Human Body","571.1 Parts of Body","571.1.2 Other parts",, +"571. Human Body","571.2 Organ Systems",,, +"571. Human Body","571.2 Organ Systems","571.2.1 Respiratory System","dsffgdg", +"572. Human Body",,,,"This chapter describes about human body" +"572. Human Body","572.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"572. Human Body","572.1 Parts of Body","572.1.1 Key parts in the head",,"xyz" +"572. Human Body","572.1 Parts of Body","572.1.2 Other parts",, +"572. Human Body","572.2 Organ Systems",,, +"572. Human Body","572.2 Organ Systems","572.2.1 Respiratory System","dsffgdg", +"573. Human Body",,,,"This chapter describes about human body" +"573. Human Body","573.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"573. Human Body","573.1 Parts of Body","573.1.1 Key parts in the head",,"xyz" +"573. Human Body","573.1 Parts of Body","573.1.2 Other parts",, +"573. Human Body","573.2 Organ Systems",,, +"573. Human Body","573.2 Organ Systems","573.2.1 Respiratory System","dsffgdg", +"574. Human Body",,,,"This chapter describes about human body" +"574. Human Body","574.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"574. Human Body","574.1 Parts of Body","574.1.1 Key parts in the head",,"xyz" +"574. Human Body","574.1 Parts of Body","574.1.2 Other parts",, +"574. Human Body","574.2 Organ Systems",,, +"574. Human Body","574.2 Organ Systems","574.2.1 Respiratory System","dsffgdg", +"575. Human Body",,,,"This chapter describes about human body" +"575. Human Body","575.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"575. Human Body","575.1 Parts of Body","575.1.1 Key parts in the head",,"xyz" +"575. Human Body","575.1 Parts of Body","575.1.2 Other parts",, +"575. Human Body","575.2 Organ Systems",,, +"575. Human Body","575.2 Organ Systems","575.2.1 Respiratory System","dsffgdg", +"576. Human Body",,,,"This chapter describes about human body" +"576. Human Body","576.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"576. Human Body","576.1 Parts of Body","576.1.1 Key parts in the head",,"xyz" +"576. Human Body","576.1 Parts of Body","576.1.2 Other parts",, +"576. Human Body","576.2 Organ Systems",,, +"576. Human Body","576.2 Organ Systems","576.2.1 Respiratory System","dsffgdg", +"577. Human Body",,,,"This chapter describes about human body" +"577. Human Body","577.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"577. Human Body","577.1 Parts of Body","577.1.1 Key parts in the head",,"xyz" +"577. Human Body","577.1 Parts of Body","577.1.2 Other parts",, +"577. Human Body","577.2 Organ Systems",,, +"577. Human Body","577.2 Organ Systems","577.2.1 Respiratory System","dsffgdg", +"578. Human Body",,,,"This chapter describes about human body" +"578. Human Body","578.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"578. Human Body","578.1 Parts of Body","578.1.1 Key parts in the head",,"xyz" +"578. Human Body","578.1 Parts of Body","578.1.2 Other parts",, +"578. Human Body","578.2 Organ Systems",,, +"578. Human Body","578.2 Organ Systems","578.2.1 Respiratory System","dsffgdg", +"579. Human Body",,,,"This chapter describes about human body" +"579. Human Body","579.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"579. Human Body","579.1 Parts of Body","579.1.1 Key parts in the head",,"xyz" +"579. Human Body","579.1 Parts of Body","579.1.2 Other parts",, +"579. Human Body","579.2 Organ Systems",,, +"579. Human Body","579.2 Organ Systems","579.2.1 Respiratory System","dsffgdg", +"580. Human Body",,,,"This chapter describes about human body" +"580. Human Body","580.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"580. Human Body","580.1 Parts of Body","580.1.1 Key parts in the head",,"xyz" +"580. Human Body","580.1 Parts of Body","580.1.2 Other parts",, +"580. Human Body","580.2 Organ Systems",,, +"580. Human Body","580.2 Organ Systems","580.2.1 Respiratory System","dsffgdg", +"581. Human Body",,,,"This chapter describes about human body" +"581. Human Body","581.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"581. Human Body","581.1 Parts of Body","581.1.1 Key parts in the head",,"xyz" +"581. Human Body","581.1 Parts of Body","581.1.2 Other parts",, +"581. Human Body","581.2 Organ Systems",,, +"581. Human Body","581.2 Organ Systems","581.2.1 Respiratory System","dsffgdg", +"582. Human Body",,,,"This chapter describes about human body" +"582. Human Body","582.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"582. Human Body","582.1 Parts of Body","582.1.1 Key parts in the head",,"xyz" +"582. Human Body","582.1 Parts of Body","582.1.2 Other parts",, +"582. Human Body","582.2 Organ Systems",,, +"582. Human Body","582.2 Organ Systems","582.2.1 Respiratory System","dsffgdg", +"583. Human Body",,,,"This chapter describes about human body" +"583. Human Body","583.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"583. Human Body","583.1 Parts of Body","583.1.1 Key parts in the head",,"xyz" +"583. Human Body","583.1 Parts of Body","583.1.2 Other parts",, +"583. Human Body","583.2 Organ Systems",,, +"583. Human Body","583.2 Organ Systems","583.2.1 Respiratory System","dsffgdg", +"584. Human Body",,,,"This chapter describes about human body" +"584. Human Body","584.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"584. Human Body","584.1 Parts of Body","584.1.1 Key parts in the head",,"xyz" +"584. Human Body","584.1 Parts of Body","584.1.2 Other parts",, +"584. Human Body","584.2 Organ Systems",,, +"584. Human Body","584.2 Organ Systems","584.2.1 Respiratory System","dsffgdg", +"585. Human Body",,,,"This chapter describes about human body" +"585. Human Body","585.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"585. Human Body","585.1 Parts of Body","585.1.1 Key parts in the head",,"xyz" +"585. Human Body","585.1 Parts of Body","585.1.2 Other parts",, +"585. Human Body","585.2 Organ Systems",,, +"585. Human Body","585.2 Organ Systems","585.2.1 Respiratory System","dsffgdg", +"586. Human Body",,,,"This chapter describes about human body" +"586. Human Body","586.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"586. Human Body","586.1 Parts of Body","586.1.1 Key parts in the head",,"xyz" +"586. Human Body","586.1 Parts of Body","586.1.2 Other parts",, +"586. Human Body","586.2 Organ Systems",,, +"586. Human Body","586.2 Organ Systems","586.2.1 Respiratory System","dsffgdg", +"587. Human Body",,,,"This chapter describes about human body" +"587. Human Body","587.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"587. Human Body","587.1 Parts of Body","587.1.1 Key parts in the head",,"xyz" +"587. Human Body","587.1 Parts of Body","587.1.2 Other parts",, +"587. Human Body","587.2 Organ Systems",,, +"587. Human Body","587.2 Organ Systems","587.2.1 Respiratory System","dsffgdg", +"588. Human Body",,,,"This chapter describes about human body" +"588. Human Body","588.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"588. Human Body","588.1 Parts of Body","588.1.1 Key parts in the head",,"xyz" +"588. Human Body","588.1 Parts of Body","588.1.2 Other parts",, +"588. Human Body","588.2 Organ Systems",,, +"588. Human Body","588.2 Organ Systems","588.2.1 Respiratory System","dsffgdg", +"589. Human Body",,,,"This chapter describes about human body" +"589. Human Body","589.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"589. Human Body","589.1 Parts of Body","589.1.1 Key parts in the head",,"xyz" +"589. Human Body","589.1 Parts of Body","589.1.2 Other parts",, +"589. Human Body","589.2 Organ Systems",,, +"589. Human Body","589.2 Organ Systems","589.2.1 Respiratory System","dsffgdg", +"590. Human Body",,,,"This chapter describes about human body" +"590. Human Body","590.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"590. Human Body","590.1 Parts of Body","590.1.1 Key parts in the head",,"xyz" +"590. Human Body","590.1 Parts of Body","590.1.2 Other parts",, +"590. Human Body","590.2 Organ Systems",,, +"590. Human Body","590.2 Organ Systems","590.2.1 Respiratory System","dsffgdg", +"591. Human Body",,,,"This chapter describes about human body" +"591. Human Body","591.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"591. Human Body","591.1 Parts of Body","591.1.1 Key parts in the head",,"xyz" +"591. Human Body","591.1 Parts of Body","591.1.2 Other parts",, +"591. Human Body","591.2 Organ Systems",,, +"591. Human Body","591.2 Organ Systems","591.2.1 Respiratory System","dsffgdg", +"592. Human Body",,,,"This chapter describes about human body" +"592. Human Body","592.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"592. Human Body","592.1 Parts of Body","592.1.1 Key parts in the head",,"xyz" +"592. Human Body","592.1 Parts of Body","592.1.2 Other parts",, +"592. Human Body","592.2 Organ Systems",,, +"592. Human Body","592.2 Organ Systems","592.2.1 Respiratory System","dsffgdg", +"593. Human Body",,,,"This chapter describes about human body" +"593. Human Body","593.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"593. Human Body","593.1 Parts of Body","593.1.1 Key parts in the head",,"xyz" +"593. Human Body","593.1 Parts of Body","593.1.2 Other parts",, +"593. Human Body","593.2 Organ Systems",,, +"593. Human Body","593.2 Organ Systems","593.2.1 Respiratory System","dsffgdg", +"594. Human Body",,,,"This chapter describes about human body" +"594. Human Body","594.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"594. Human Body","594.1 Parts of Body","594.1.1 Key parts in the head",,"xyz" +"594. Human Body","594.1 Parts of Body","594.1.2 Other parts",, +"594. Human Body","594.2 Organ Systems",,, +"594. Human Body","594.2 Organ Systems","594.2.1 Respiratory System","dsffgdg", +"595. Human Body",,,,"This chapter describes about human body" +"595. Human Body","595.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"595. Human Body","595.1 Parts of Body","595.1.1 Key parts in the head",,"xyz" +"595. Human Body","595.1 Parts of Body","595.1.2 Other parts",, +"595. Human Body","595.2 Organ Systems",,, +"595. Human Body","595.2 Organ Systems","595.2.1 Respiratory System","dsffgdg", +"596. Human Body",,,,"This chapter describes about human body" +"596. Human Body","596.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"596. Human Body","596.1 Parts of Body","596.1.1 Key parts in the head",,"xyz" +"596. Human Body","596.1 Parts of Body","596.1.2 Other parts",, +"596. Human Body","596.2 Organ Systems",,, +"596. Human Body","596.2 Organ Systems","596.2.1 Respiratory System","dsffgdg", +"597. Human Body",,,,"This chapter describes about human body" +"597. Human Body","597.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"597. Human Body","597.1 Parts of Body","597.1.1 Key parts in the head",,"xyz" +"597. Human Body","597.1 Parts of Body","597.1.2 Other parts",, +"597. Human Body","597.2 Organ Systems",,, +"597. Human Body","597.2 Organ Systems","597.2.1 Respiratory System","dsffgdg", +"598. Human Body",,,,"This chapter describes about human body" +"598. Human Body","598.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"598. Human Body","598.1 Parts of Body","598.1.1 Key parts in the head",,"xyz" +"598. Human Body","598.1 Parts of Body","598.1.2 Other parts",, +"598. Human Body","598.2 Organ Systems",,, +"598. Human Body","598.2 Organ Systems","598.2.1 Respiratory System","dsffgdg", +"599. Human Body",,,,"This chapter describes about human body" +"599. Human Body","599.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"599. Human Body","599.1 Parts of Body","599.1.1 Key parts in the head",,"xyz" +"599. Human Body","599.1 Parts of Body","599.1.2 Other parts",, +"599. Human Body","599.2 Organ Systems",,, +"599. Human Body","599.2 Organ Systems","599.2.1 Respiratory System","dsffgdg", +"600. Human Body",,,,"This chapter describes about human body" +"600. Human Body","600.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"600. Human Body","600.1 Parts of Body","600.1.1 Key parts in the head",,"xyz" +"600. Human Body","600.1 Parts of Body","600.1.2 Other parts",, +"600. Human Body","600.2 Organ Systems",,, +"600. Human Body","600.2 Organ Systems","600.2.1 Respiratory System","dsffgdg", +"601. Human Body",,,,"This chapter describes about human body" +"601. Human Body","601.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"601. Human Body","601.1 Parts of Body","601.1.1 Key parts in the head",,"xyz" +"601. Human Body","601.1 Parts of Body","601.1.2 Other parts",, +"601. Human Body","601.2 Organ Systems",,, +"601. Human Body","601.2 Organ Systems","601.2.1 Respiratory System","dsffgdg", +"602. Human Body",,,,"This chapter describes about human body" +"602. Human Body","602.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"602. Human Body","602.1 Parts of Body","602.1.1 Key parts in the head",,"xyz" +"602. Human Body","602.1 Parts of Body","602.1.2 Other parts",, +"602. Human Body","602.2 Organ Systems",,, +"602. Human Body","602.2 Organ Systems","602.2.1 Respiratory System","dsffgdg", +"603. Human Body",,,,"This chapter describes about human body" +"603. Human Body","603.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"603. Human Body","603.1 Parts of Body","603.1.1 Key parts in the head",,"xyz" +"603. Human Body","603.1 Parts of Body","603.1.2 Other parts",, +"603. Human Body","603.2 Organ Systems",,, +"603. Human Body","603.2 Organ Systems","603.2.1 Respiratory System","dsffgdg", +"604. Human Body",,,,"This chapter describes about human body" +"604. Human Body","604.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"604. Human Body","604.1 Parts of Body","604.1.1 Key parts in the head",,"xyz" +"604. Human Body","604.1 Parts of Body","604.1.2 Other parts",, +"604. Human Body","604.2 Organ Systems",,, +"604. Human Body","604.2 Organ Systems","604.2.1 Respiratory System","dsffgdg", +"605. Human Body",,,,"This chapter describes about human body" +"605. Human Body","605.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"605. Human Body","605.1 Parts of Body","605.1.1 Key parts in the head",,"xyz" +"605. Human Body","605.1 Parts of Body","605.1.2 Other parts",, +"605. Human Body","605.2 Organ Systems",,, +"605. Human Body","605.2 Organ Systems","605.2.1 Respiratory System","dsffgdg", +"606. Human Body",,,,"This chapter describes about human body" +"606. Human Body","606.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"606. Human Body","606.1 Parts of Body","606.1.1 Key parts in the head",,"xyz" +"606. Human Body","606.1 Parts of Body","606.1.2 Other parts",, +"606. Human Body","606.2 Organ Systems",,, +"606. Human Body","606.2 Organ Systems","606.2.1 Respiratory System","dsffgdg", +"607. Human Body",,,,"This chapter describes about human body" +"607. Human Body","607.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"607. Human Body","607.1 Parts of Body","607.1.1 Key parts in the head",,"xyz" +"607. Human Body","607.1 Parts of Body","607.1.2 Other parts",, +"607. Human Body","607.2 Organ Systems",,, +"607. Human Body","607.2 Organ Systems","607.2.1 Respiratory System","dsffgdg", +"608. Human Body",,,,"This chapter describes about human body" +"608. Human Body","608.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"608. Human Body","608.1 Parts of Body","608.1.1 Key parts in the head",,"xyz" +"608. Human Body","608.1 Parts of Body","608.1.2 Other parts",, +"608. Human Body","608.2 Organ Systems",,, +"608. Human Body","608.2 Organ Systems","608.2.1 Respiratory System","dsffgdg", +"609. Human Body",,,,"This chapter describes about human body" +"609. Human Body","609.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"609. Human Body","609.1 Parts of Body","609.1.1 Key parts in the head",,"xyz" +"609. Human Body","609.1 Parts of Body","609.1.2 Other parts",, +"609. Human Body","609.2 Organ Systems",,, +"609. Human Body","609.2 Organ Systems","609.2.1 Respiratory System","dsffgdg", +"610. Human Body",,,,"This chapter describes about human body" +"610. Human Body","610.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"610. Human Body","610.1 Parts of Body","610.1.1 Key parts in the head",,"xyz" +"610. Human Body","610.1 Parts of Body","610.1.2 Other parts",, +"610. Human Body","610.2 Organ Systems",,, +"610. Human Body","610.2 Organ Systems","610.2.1 Respiratory System","dsffgdg", +"611. Human Body",,,,"This chapter describes about human body" +"611. Human Body","611.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"611. Human Body","611.1 Parts of Body","611.1.1 Key parts in the head",,"xyz" +"611. Human Body","611.1 Parts of Body","611.1.2 Other parts",, +"611. Human Body","611.2 Organ Systems",,, +"611. Human Body","611.2 Organ Systems","611.2.1 Respiratory System","dsffgdg", +"612. Human Body",,,,"This chapter describes about human body" +"612. Human Body","612.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"612. Human Body","612.1 Parts of Body","612.1.1 Key parts in the head",,"xyz" +"612. Human Body","612.1 Parts of Body","612.1.2 Other parts",, +"612. Human Body","612.2 Organ Systems",,, +"612. Human Body","612.2 Organ Systems","612.2.1 Respiratory System","dsffgdg", +"613. Human Body",,,,"This chapter describes about human body" +"613. Human Body","613.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"613. Human Body","613.1 Parts of Body","613.1.1 Key parts in the head",,"xyz" +"613. Human Body","613.1 Parts of Body","613.1.2 Other parts",, +"613. Human Body","613.2 Organ Systems",,, +"613. Human Body","613.2 Organ Systems","613.2.1 Respiratory System","dsffgdg", +"614. Human Body",,,,"This chapter describes about human body" +"614. Human Body","614.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"614. Human Body","614.1 Parts of Body","614.1.1 Key parts in the head",,"xyz" +"614. Human Body","614.1 Parts of Body","614.1.2 Other parts",, +"614. Human Body","614.2 Organ Systems",,, +"614. Human Body","614.2 Organ Systems","614.2.1 Respiratory System","dsffgdg", +"615. Human Body",,,,"This chapter describes about human body" +"615. Human Body","615.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"615. Human Body","615.1 Parts of Body","615.1.1 Key parts in the head",,"xyz" +"615. Human Body","615.1 Parts of Body","615.1.2 Other parts",, +"615. Human Body","615.2 Organ Systems",,, +"615. Human Body","615.2 Organ Systems","615.2.1 Respiratory System","dsffgdg", +"616. Human Body",,,,"This chapter describes about human body" +"616. Human Body","616.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"616. Human Body","616.1 Parts of Body","616.1.1 Key parts in the head",,"xyz" +"616. Human Body","616.1 Parts of Body","616.1.2 Other parts",, +"616. Human Body","616.2 Organ Systems",,, +"616. Human Body","616.2 Organ Systems","616.2.1 Respiratory System","dsffgdg", +"617. Human Body",,,,"This chapter describes about human body" +"617. Human Body","617.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"617. Human Body","617.1 Parts of Body","617.1.1 Key parts in the head",,"xyz" +"617. Human Body","617.1 Parts of Body","617.1.2 Other parts",, +"617. Human Body","617.2 Organ Systems",,, +"617. Human Body","617.2 Organ Systems","617.2.1 Respiratory System","dsffgdg", +"618. Human Body",,,,"This chapter describes about human body" +"618. Human Body","618.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"618. Human Body","618.1 Parts of Body","618.1.1 Key parts in the head",,"xyz" +"618. Human Body","618.1 Parts of Body","618.1.2 Other parts",, +"618. Human Body","618.2 Organ Systems",,, +"618. Human Body","618.2 Organ Systems","618.2.1 Respiratory System","dsffgdg", +"619. Human Body",,,,"This chapter describes about human body" +"619. Human Body","619.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"619. Human Body","619.1 Parts of Body","619.1.1 Key parts in the head",,"xyz" +"619. Human Body","619.1 Parts of Body","619.1.2 Other parts",, +"619. Human Body","619.2 Organ Systems",,, +"619. Human Body","619.2 Organ Systems","619.2.1 Respiratory System","dsffgdg", +"620. Human Body",,,,"This chapter describes about human body" +"620. Human Body","620.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"620. Human Body","620.1 Parts of Body","620.1.1 Key parts in the head",,"xyz" +"620. Human Body","620.1 Parts of Body","620.1.2 Other parts",, +"620. Human Body","620.2 Organ Systems",,, +"620. Human Body","620.2 Organ Systems","620.2.1 Respiratory System","dsffgdg", +"621. Human Body",,,,"This chapter describes about human body" +"621. Human Body","621.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"621. Human Body","621.1 Parts of Body","621.1.1 Key parts in the head",,"xyz" +"621. Human Body","621.1 Parts of Body","621.1.2 Other parts",, +"621. Human Body","621.2 Organ Systems",,, +"621. Human Body","621.2 Organ Systems","621.2.1 Respiratory System","dsffgdg", +"622. Human Body",,,,"This chapter describes about human body" +"622. Human Body","622.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"622. Human Body","622.1 Parts of Body","622.1.1 Key parts in the head",,"xyz" +"622. Human Body","622.1 Parts of Body","622.1.2 Other parts",, +"622. Human Body","622.2 Organ Systems",,, +"622. Human Body","622.2 Organ Systems","622.2.1 Respiratory System","dsffgdg", +"623. Human Body",,,,"This chapter describes about human body" +"623. Human Body","623.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"623. Human Body","623.1 Parts of Body","623.1.1 Key parts in the head",,"xyz" +"623. Human Body","623.1 Parts of Body","623.1.2 Other parts",, +"623. Human Body","623.2 Organ Systems",,, +"623. Human Body","623.2 Organ Systems","623.2.1 Respiratory System","dsffgdg", +"624. Human Body",,,,"This chapter describes about human body" +"624. Human Body","624.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"624. Human Body","624.1 Parts of Body","624.1.1 Key parts in the head",,"xyz" +"624. Human Body","624.1 Parts of Body","624.1.2 Other parts",, +"624. Human Body","624.2 Organ Systems",,, +"624. Human Body","624.2 Organ Systems","624.2.1 Respiratory System","dsffgdg", +"625. Human Body",,,,"This chapter describes about human body" +"625. Human Body","625.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"625. Human Body","625.1 Parts of Body","625.1.1 Key parts in the head",,"xyz" +"625. Human Body","625.1 Parts of Body","625.1.2 Other parts",, +"625. Human Body","625.2 Organ Systems",,, +"625. Human Body","625.2 Organ Systems","625.2.1 Respiratory System","dsffgdg", +"626. Human Body",,,,"This chapter describes about human body" +"626. Human Body","626.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"626. Human Body","626.1 Parts of Body","626.1.1 Key parts in the head",,"xyz" +"626. Human Body","626.1 Parts of Body","626.1.2 Other parts",, +"626. Human Body","626.2 Organ Systems",,, +"626. Human Body","626.2 Organ Systems","626.2.1 Respiratory System","dsffgdg", +"627. Human Body",,,,"This chapter describes about human body" +"627. Human Body","627.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"627. Human Body","627.1 Parts of Body","627.1.1 Key parts in the head",,"xyz" +"627. Human Body","627.1 Parts of Body","627.1.2 Other parts",, +"627. Human Body","627.2 Organ Systems",,, +"627. Human Body","627.2 Organ Systems","627.2.1 Respiratory System","dsffgdg", +"628. Human Body",,,,"This chapter describes about human body" +"628. Human Body","628.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"628. Human Body","628.1 Parts of Body","628.1.1 Key parts in the head",,"xyz" +"628. Human Body","628.1 Parts of Body","628.1.2 Other parts",, +"628. Human Body","628.2 Organ Systems",,, +"628. Human Body","628.2 Organ Systems","628.2.1 Respiratory System","dsffgdg", +"629. Human Body",,,,"This chapter describes about human body" +"629. Human Body","629.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"629. Human Body","629.1 Parts of Body","629.1.1 Key parts in the head",,"xyz" +"629. Human Body","629.1 Parts of Body","629.1.2 Other parts",, +"629. Human Body","629.2 Organ Systems",,, +"629. Human Body","629.2 Organ Systems","629.2.1 Respiratory System","dsffgdg", +"630. Human Body",,,,"This chapter describes about human body" +"630. Human Body","630.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"630. Human Body","630.1 Parts of Body","630.1.1 Key parts in the head",,"xyz" +"630. Human Body","630.1 Parts of Body","630.1.2 Other parts",, +"630. Human Body","630.2 Organ Systems",,, +"630. Human Body","630.2 Organ Systems","630.2.1 Respiratory System","dsffgdg", +"631. Human Body",,,,"This chapter describes about human body" +"631. Human Body","631.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"631. Human Body","631.1 Parts of Body","631.1.1 Key parts in the head",,"xyz" +"631. Human Body","631.1 Parts of Body","631.1.2 Other parts",, +"631. Human Body","631.2 Organ Systems",,, +"631. Human Body","631.2 Organ Systems","631.2.1 Respiratory System","dsffgdg", +"632. Human Body",,,,"This chapter describes about human body" +"632. Human Body","632.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"632. Human Body","632.1 Parts of Body","632.1.1 Key parts in the head",,"xyz" +"632. Human Body","632.1 Parts of Body","632.1.2 Other parts",, +"632. Human Body","632.2 Organ Systems",,, +"632. Human Body","632.2 Organ Systems","632.2.1 Respiratory System","dsffgdg", +"633. Human Body",,,,"This chapter describes about human body" +"633. Human Body","633.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"633. Human Body","633.1 Parts of Body","633.1.1 Key parts in the head",,"xyz" +"633. Human Body","633.1 Parts of Body","633.1.2 Other parts",, +"633. Human Body","633.2 Organ Systems",,, +"633. Human Body","633.2 Organ Systems","633.2.1 Respiratory System","dsffgdg", +"634. Human Body",,,,"This chapter describes about human body" +"634. Human Body","634.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"634. Human Body","634.1 Parts of Body","634.1.1 Key parts in the head",,"xyz" +"634. Human Body","634.1 Parts of Body","634.1.2 Other parts",, +"634. Human Body","634.2 Organ Systems",,, +"634. Human Body","634.2 Organ Systems","634.2.1 Respiratory System","dsffgdg", +"635. Human Body",,,,"This chapter describes about human body" +"635. Human Body","635.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"635. Human Body","635.1 Parts of Body","635.1.1 Key parts in the head",,"xyz" +"635. Human Body","635.1 Parts of Body","635.1.2 Other parts",, +"635. Human Body","635.2 Organ Systems",,, +"635. Human Body","635.2 Organ Systems","635.2.1 Respiratory System","dsffgdg", +"636. Human Body",,,,"This chapter describes about human body" +"636. Human Body","636.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"636. Human Body","636.1 Parts of Body","636.1.1 Key parts in the head",,"xyz" +"636. Human Body","636.1 Parts of Body","636.1.2 Other parts",, +"636. Human Body","636.2 Organ Systems",,, +"636. Human Body","636.2 Organ Systems","636.2.1 Respiratory System","dsffgdg", +"637. Human Body",,,,"This chapter describes about human body" +"637. Human Body","637.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"637. Human Body","637.1 Parts of Body","637.1.1 Key parts in the head",,"xyz" +"637. Human Body","637.1 Parts of Body","637.1.2 Other parts",, +"637. Human Body","637.2 Organ Systems",,, +"637. Human Body","637.2 Organ Systems","637.2.1 Respiratory System","dsffgdg", +"638. Human Body",,,,"This chapter describes about human body" +"638. Human Body","638.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"638. Human Body","638.1 Parts of Body","638.1.1 Key parts in the head",,"xyz" +"638. Human Body","638.1 Parts of Body","638.1.2 Other parts",, +"638. Human Body","638.2 Organ Systems",,, +"638. Human Body","638.2 Organ Systems","638.2.1 Respiratory System","dsffgdg", +"639. Human Body",,,,"This chapter describes about human body" +"639. Human Body","639.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"639. Human Body","639.1 Parts of Body","639.1.1 Key parts in the head",,"xyz" +"639. Human Body","639.1 Parts of Body","639.1.2 Other parts",, +"639. Human Body","639.2 Organ Systems",,, +"639. Human Body","639.2 Organ Systems","639.2.1 Respiratory System","dsffgdg", +"640. Human Body",,,,"This chapter describes about human body" +"640. Human Body","640.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"640. Human Body","640.1 Parts of Body","640.1.1 Key parts in the head",,"xyz" +"640. Human Body","640.1 Parts of Body","640.1.2 Other parts",, +"640. Human Body","640.2 Organ Systems",,, +"640. Human Body","640.2 Organ Systems","640.2.1 Respiratory System","dsffgdg", +"641. Human Body",,,,"This chapter describes about human body" +"641. Human Body","641.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"641. Human Body","641.1 Parts of Body","641.1.1 Key parts in the head",,"xyz" +"641. Human Body","641.1 Parts of Body","641.1.2 Other parts",, +"641. Human Body","641.2 Organ Systems",,, +"641. Human Body","641.2 Organ Systems","641.2.1 Respiratory System","dsffgdg", +"642. Human Body",,,,"This chapter describes about human body" +"642. Human Body","642.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"642. Human Body","642.1 Parts of Body","642.1.1 Key parts in the head",,"xyz" +"642. Human Body","642.1 Parts of Body","642.1.2 Other parts",, +"642. Human Body","642.2 Organ Systems",,, +"642. Human Body","642.2 Organ Systems","642.2.1 Respiratory System","dsffgdg", +"643. Human Body",,,,"This chapter describes about human body" +"643. Human Body","643.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"643. Human Body","643.1 Parts of Body","643.1.1 Key parts in the head",,"xyz" +"643. Human Body","643.1 Parts of Body","643.1.2 Other parts",, +"643. Human Body","643.2 Organ Systems",,, +"643. Human Body","643.2 Organ Systems","643.2.1 Respiratory System","dsffgdg", +"644. Human Body",,,,"This chapter describes about human body" +"644. Human Body","644.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"644. Human Body","644.1 Parts of Body","644.1.1 Key parts in the head",,"xyz" +"644. Human Body","644.1 Parts of Body","644.1.2 Other parts",, +"644. Human Body","644.2 Organ Systems",,, +"644. Human Body","644.2 Organ Systems","644.2.1 Respiratory System","dsffgdg", +"645. Human Body",,,,"This chapter describes about human body" +"645. Human Body","645.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"645. Human Body","645.1 Parts of Body","645.1.1 Key parts in the head",,"xyz" +"645. Human Body","645.1 Parts of Body","645.1.2 Other parts",, +"645. Human Body","645.2 Organ Systems",,, +"645. Human Body","645.2 Organ Systems","645.2.1 Respiratory System","dsffgdg", +"646. Human Body",,,,"This chapter describes about human body" +"646. Human Body","646.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"646. Human Body","646.1 Parts of Body","646.1.1 Key parts in the head",,"xyz" +"646. Human Body","646.1 Parts of Body","646.1.2 Other parts",, +"646. Human Body","646.2 Organ Systems",,, +"646. Human Body","646.2 Organ Systems","646.2.1 Respiratory System","dsffgdg", +"647. Human Body",,,,"This chapter describes about human body" +"647. Human Body","647.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"647. Human Body","647.1 Parts of Body","647.1.1 Key parts in the head",,"xyz" +"647. Human Body","647.1 Parts of Body","647.1.2 Other parts",, +"647. Human Body","647.2 Organ Systems",,, +"647. Human Body","647.2 Organ Systems","647.2.1 Respiratory System","dsffgdg", +"648. Human Body",,,,"This chapter describes about human body" +"648. Human Body","648.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"648. Human Body","648.1 Parts of Body","648.1.1 Key parts in the head",,"xyz" +"648. Human Body","648.1 Parts of Body","648.1.2 Other parts",, +"648. Human Body","648.2 Organ Systems",,, +"648. Human Body","648.2 Organ Systems","648.2.1 Respiratory System","dsffgdg", +"649. Human Body",,,,"This chapter describes about human body" +"649. Human Body","649.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"649. Human Body","649.1 Parts of Body","649.1.1 Key parts in the head",,"xyz" +"649. Human Body","649.1 Parts of Body","649.1.2 Other parts",, +"649. Human Body","649.2 Organ Systems",,, +"649. Human Body","649.2 Organ Systems","649.2.1 Respiratory System","dsffgdg", +"650. Human Body",,,,"This chapter describes about human body" +"650. Human Body","650.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"650. Human Body","650.1 Parts of Body","650.1.1 Key parts in the head",,"xyz" +"650. Human Body","650.1 Parts of Body","650.1.2 Other parts",, +"650. Human Body","650.2 Organ Systems",,, +"650. Human Body","650.2 Organ Systems","650.2.1 Respiratory System","dsffgdg", +"651. Human Body",,,,"This chapter describes about human body" +"651. Human Body","651.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"651. Human Body","651.1 Parts of Body","651.1.1 Key parts in the head",,"xyz" +"651. Human Body","651.1 Parts of Body","651.1.2 Other parts",, +"651. Human Body","651.2 Organ Systems",,, +"651. Human Body","651.2 Organ Systems","651.2.1 Respiratory System","dsffgdg", +"652. Human Body",,,,"This chapter describes about human body" +"652. Human Body","652.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"652. Human Body","652.1 Parts of Body","652.1.1 Key parts in the head",,"xyz" +"652. Human Body","652.1 Parts of Body","652.1.2 Other parts",, +"652. Human Body","652.2 Organ Systems",,, +"652. Human Body","652.2 Organ Systems","652.2.1 Respiratory System","dsffgdg", +"653. Human Body",,,,"This chapter describes about human body" +"653. Human Body","653.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"653. Human Body","653.1 Parts of Body","653.1.1 Key parts in the head",,"xyz" +"653. Human Body","653.1 Parts of Body","653.1.2 Other parts",, +"653. Human Body","653.2 Organ Systems",,, +"653. Human Body","653.2 Organ Systems","653.2.1 Respiratory System","dsffgdg", +"654. Human Body",,,,"This chapter describes about human body" +"654. Human Body","654.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"654. Human Body","654.1 Parts of Body","654.1.1 Key parts in the head",,"xyz" +"654. Human Body","654.1 Parts of Body","654.1.2 Other parts",, +"654. Human Body","654.2 Organ Systems",,, +"654. Human Body","654.2 Organ Systems","654.2.1 Respiratory System","dsffgdg", +"655. Human Body",,,,"This chapter describes about human body" +"655. Human Body","655.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"655. Human Body","655.1 Parts of Body","655.1.1 Key parts in the head",,"xyz" +"655. Human Body","655.1 Parts of Body","655.1.2 Other parts",, +"655. Human Body","655.2 Organ Systems",,, +"655. Human Body","655.2 Organ Systems","655.2.1 Respiratory System","dsffgdg", +"656. Human Body",,,,"This chapter describes about human body" +"656. Human Body","656.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"656. Human Body","656.1 Parts of Body","656.1.1 Key parts in the head",,"xyz" +"656. Human Body","656.1 Parts of Body","656.1.2 Other parts",, +"656. Human Body","656.2 Organ Systems",,, +"656. Human Body","656.2 Organ Systems","656.2.1 Respiratory System","dsffgdg", +"657. Human Body",,,,"This chapter describes about human body" +"657. Human Body","657.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"657. Human Body","657.1 Parts of Body","657.1.1 Key parts in the head",,"xyz" +"657. Human Body","657.1 Parts of Body","657.1.2 Other parts",, +"657. Human Body","657.2 Organ Systems",,, +"657. Human Body","657.2 Organ Systems","657.2.1 Respiratory System","dsffgdg", +"658. Human Body",,,,"This chapter describes about human body" +"658. Human Body","658.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"658. Human Body","658.1 Parts of Body","658.1.1 Key parts in the head",,"xyz" +"658. Human Body","658.1 Parts of Body","658.1.2 Other parts",, +"658. Human Body","658.2 Organ Systems",,, +"658. Human Body","658.2 Organ Systems","658.2.1 Respiratory System","dsffgdg", +"659. Human Body",,,,"This chapter describes about human body" +"659. Human Body","659.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"659. Human Body","659.1 Parts of Body","659.1.1 Key parts in the head",,"xyz" +"659. Human Body","659.1 Parts of Body","659.1.2 Other parts",, +"659. Human Body","659.2 Organ Systems",,, +"659. Human Body","659.2 Organ Systems","659.2.1 Respiratory System","dsffgdg", +"660. Human Body",,,,"This chapter describes about human body" +"660. Human Body","660.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"660. Human Body","660.1 Parts of Body","660.1.1 Key parts in the head",,"xyz" +"660. Human Body","660.1 Parts of Body","660.1.2 Other parts",, +"660. Human Body","660.2 Organ Systems",,, +"660. Human Body","660.2 Organ Systems","660.2.1 Respiratory System","dsffgdg", +"661. Human Body",,,,"This chapter describes about human body" +"661. Human Body","661.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"661. Human Body","661.1 Parts of Body","661.1.1 Key parts in the head",,"xyz" +"661. Human Body","661.1 Parts of Body","661.1.2 Other parts",, +"661. Human Body","661.2 Organ Systems",,, +"661. Human Body","661.2 Organ Systems","661.2.1 Respiratory System","dsffgdg", +"662. Human Body",,,,"This chapter describes about human body" +"662. Human Body","662.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"662. Human Body","662.1 Parts of Body","662.1.1 Key parts in the head",,"xyz" +"662. Human Body","662.1 Parts of Body","662.1.2 Other parts",, +"662. Human Body","662.2 Organ Systems",,, +"662. Human Body","662.2 Organ Systems","662.2.1 Respiratory System","dsffgdg", +"663. Human Body",,,,"This chapter describes about human body" +"663. Human Body","663.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"663. Human Body","663.1 Parts of Body","663.1.1 Key parts in the head",,"xyz" +"663. Human Body","663.1 Parts of Body","663.1.2 Other parts",, +"663. Human Body","663.2 Organ Systems",,, +"663. Human Body","663.2 Organ Systems","663.2.1 Respiratory System","dsffgdg", +"664. Human Body",,,,"This chapter describes about human body" +"664. Human Body","664.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"664. Human Body","664.1 Parts of Body","664.1.1 Key parts in the head",,"xyz" +"664. Human Body","664.1 Parts of Body","664.1.2 Other parts",, +"664. Human Body","664.2 Organ Systems",,, +"664. Human Body","664.2 Organ Systems","664.2.1 Respiratory System","dsffgdg", +"665. Human Body",,,,"This chapter describes about human body" +"665. Human Body","665.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"665. Human Body","665.1 Parts of Body","665.1.1 Key parts in the head",,"xyz" +"665. Human Body","665.1 Parts of Body","665.1.2 Other parts",, +"665. Human Body","665.2 Organ Systems",,, +"665. Human Body","665.2 Organ Systems","665.2.1 Respiratory System","dsffgdg", +"666. Human Body",,,,"This chapter describes about human body" +"666. Human Body","666.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"666. Human Body","666.1 Parts of Body","666.1.1 Key parts in the head",,"xyz" +"666. Human Body","666.1 Parts of Body","666.1.2 Other parts",, +"666. Human Body","666.2 Organ Systems",,, +"666. Human Body","666.2 Organ Systems","666.2.1 Respiratory System","dsffgdg", +"667. Human Body",,,,"This chapter describes about human body" +"667. Human Body","667.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"667. Human Body","667.1 Parts of Body","667.1.1 Key parts in the head",,"xyz" +"667. Human Body","667.1 Parts of Body","667.1.2 Other parts",, +"667. Human Body","667.2 Organ Systems",,, +"667. Human Body","667.2 Organ Systems","667.2.1 Respiratory System","dsffgdg", +"668. Human Body",,,,"This chapter describes about human body" +"668. Human Body","668.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"668. Human Body","668.1 Parts of Body","668.1.1 Key parts in the head",,"xyz" +"668. Human Body","668.1 Parts of Body","668.1.2 Other parts",, +"668. Human Body","668.2 Organ Systems",,, +"668. Human Body","668.2 Organ Systems","668.2.1 Respiratory System","dsffgdg", +"669. Human Body",,,,"This chapter describes about human body" +"669. Human Body","669.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"669. Human Body","669.1 Parts of Body","669.1.1 Key parts in the head",,"xyz" +"669. Human Body","669.1 Parts of Body","669.1.2 Other parts",, +"669. Human Body","669.2 Organ Systems",,, +"669. Human Body","669.2 Organ Systems","669.2.1 Respiratory System","dsffgdg", +"670. Human Body",,,,"This chapter describes about human body" +"670. Human Body","670.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"670. Human Body","670.1 Parts of Body","670.1.1 Key parts in the head",,"xyz" +"670. Human Body","670.1 Parts of Body","670.1.2 Other parts",, +"670. Human Body","670.2 Organ Systems",,, +"670. Human Body","670.2 Organ Systems","670.2.1 Respiratory System","dsffgdg", +"671. Human Body",,,,"This chapter describes about human body" +"671. Human Body","671.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"671. Human Body","671.1 Parts of Body","671.1.1 Key parts in the head",,"xyz" +"671. Human Body","671.1 Parts of Body","671.1.2 Other parts",, +"671. Human Body","671.2 Organ Systems",,, +"671. Human Body","671.2 Organ Systems","671.2.1 Respiratory System","dsffgdg", +"672. Human Body",,,,"This chapter describes about human body" +"672. Human Body","672.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"672. Human Body","672.1 Parts of Body","672.1.1 Key parts in the head",,"xyz" +"672. Human Body","672.1 Parts of Body","672.1.2 Other parts",, +"672. Human Body","672.2 Organ Systems",,, +"672. Human Body","672.2 Organ Systems","672.2.1 Respiratory System","dsffgdg", +"673. Human Body",,,,"This chapter describes about human body" +"673. Human Body","673.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"673. Human Body","673.1 Parts of Body","673.1.1 Key parts in the head",,"xyz" +"673. Human Body","673.1 Parts of Body","673.1.2 Other parts",, +"673. Human Body","673.2 Organ Systems",,, +"673. Human Body","673.2 Organ Systems","673.2.1 Respiratory System","dsffgdg", +"674. Human Body",,,,"This chapter describes about human body" +"674. Human Body","674.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"674. Human Body","674.1 Parts of Body","674.1.1 Key parts in the head",,"xyz" +"674. Human Body","674.1 Parts of Body","674.1.2 Other parts",, +"674. Human Body","674.2 Organ Systems",,, +"674. Human Body","674.2 Organ Systems","674.2.1 Respiratory System","dsffgdg", +"675. Human Body",,,,"This chapter describes about human body" +"675. Human Body","675.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"675. Human Body","675.1 Parts of Body","675.1.1 Key parts in the head",,"xyz" +"675. Human Body","675.1 Parts of Body","675.1.2 Other parts",, +"675. Human Body","675.2 Organ Systems",,, +"675. Human Body","675.2 Organ Systems","675.2.1 Respiratory System","dsffgdg", +"676. Human Body",,,,"This chapter describes about human body" +"676. Human Body","676.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"676. Human Body","676.1 Parts of Body","676.1.1 Key parts in the head",,"xyz" +"676. Human Body","676.1 Parts of Body","676.1.2 Other parts",, +"676. Human Body","676.2 Organ Systems",,, +"676. Human Body","676.2 Organ Systems","676.2.1 Respiratory System","dsffgdg", +"677. Human Body",,,,"This chapter describes about human body" +"677. Human Body","677.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"677. Human Body","677.1 Parts of Body","677.1.1 Key parts in the head",,"xyz" +"677. Human Body","677.1 Parts of Body","677.1.2 Other parts",, +"677. Human Body","677.2 Organ Systems",,, +"677. Human Body","677.2 Organ Systems","677.2.1 Respiratory System","dsffgdg", +"678. Human Body",,,,"This chapter describes about human body" +"678. Human Body","678.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"678. Human Body","678.1 Parts of Body","678.1.1 Key parts in the head",,"xyz" +"678. Human Body","678.1 Parts of Body","678.1.2 Other parts",, +"678. Human Body","678.2 Organ Systems",,, +"678. Human Body","678.2 Organ Systems","678.2.1 Respiratory System","dsffgdg", +"679. Human Body",,,,"This chapter describes about human body" +"679. Human Body","679.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"679. Human Body","679.1 Parts of Body","679.1.1 Key parts in the head",,"xyz" +"679. Human Body","679.1 Parts of Body","679.1.2 Other parts",, +"679. Human Body","679.2 Organ Systems",,, +"679. Human Body","679.2 Organ Systems","679.2.1 Respiratory System","dsffgdg", +"680. Human Body",,,,"This chapter describes about human body" +"680. Human Body","680.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"680. Human Body","680.1 Parts of Body","680.1.1 Key parts in the head",,"xyz" +"680. Human Body","680.1 Parts of Body","680.1.2 Other parts",, +"680. Human Body","680.2 Organ Systems",,, +"680. Human Body","680.2 Organ Systems","680.2.1 Respiratory System","dsffgdg", +"681. Human Body",,,,"This chapter describes about human body" +"681. Human Body","681.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"681. Human Body","681.1 Parts of Body","681.1.1 Key parts in the head",,"xyz" +"681. Human Body","681.1 Parts of Body","681.1.2 Other parts",, +"681. Human Body","681.2 Organ Systems",,, +"681. Human Body","681.2 Organ Systems","681.2.1 Respiratory System","dsffgdg", +"682. Human Body",,,,"This chapter describes about human body" +"682. Human Body","682.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"682. Human Body","682.1 Parts of Body","682.1.1 Key parts in the head",,"xyz" +"682. Human Body","682.1 Parts of Body","682.1.2 Other parts",, +"682. Human Body","682.2 Organ Systems",,, +"682. Human Body","682.2 Organ Systems","682.2.1 Respiratory System","dsffgdg", +"683. Human Body",,,,"This chapter describes about human body" +"683. Human Body","683.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"683. Human Body","683.1 Parts of Body","683.1.1 Key parts in the head",,"xyz" +"683. Human Body","683.1 Parts of Body","683.1.2 Other parts",, +"683. Human Body","683.2 Organ Systems",,, +"683. Human Body","683.2 Organ Systems","683.2.1 Respiratory System","dsffgdg", +"684. Human Body",,,,"This chapter describes about human body" +"684. Human Body","684.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"684. Human Body","684.1 Parts of Body","684.1.1 Key parts in the head",,"xyz" +"684. Human Body","684.1 Parts of Body","684.1.2 Other parts",, +"684. Human Body","684.2 Organ Systems",,, +"684. Human Body","684.2 Organ Systems","684.2.1 Respiratory System","dsffgdg", +"685. Human Body",,,,"This chapter describes about human body" +"685. Human Body","685.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"685. Human Body","685.1 Parts of Body","685.1.1 Key parts in the head",,"xyz" +"685. Human Body","685.1 Parts of Body","685.1.2 Other parts",, +"685. Human Body","685.2 Organ Systems",,, +"685. Human Body","685.2 Organ Systems","685.2.1 Respiratory System","dsffgdg", +"686. Human Body",,,,"This chapter describes about human body" +"686. Human Body","686.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"686. Human Body","686.1 Parts of Body","686.1.1 Key parts in the head",,"xyz" +"686. Human Body","686.1 Parts of Body","686.1.2 Other parts",, +"686. Human Body","686.2 Organ Systems",,, +"686. Human Body","686.2 Organ Systems","686.2.1 Respiratory System","dsffgdg", +"687. Human Body",,,,"This chapter describes about human body" +"687. Human Body","687.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"687. Human Body","687.1 Parts of Body","687.1.1 Key parts in the head",,"xyz" +"687. Human Body","687.1 Parts of Body","687.1.2 Other parts",, +"687. Human Body","687.2 Organ Systems",,, +"687. Human Body","687.2 Organ Systems","687.2.1 Respiratory System","dsffgdg", +"688. Human Body",,,,"This chapter describes about human body" +"688. Human Body","688.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"688. Human Body","688.1 Parts of Body","688.1.1 Key parts in the head",,"xyz" +"688. Human Body","688.1 Parts of Body","688.1.2 Other parts",, +"688. Human Body","688.2 Organ Systems",,, +"688. Human Body","688.2 Organ Systems","688.2.1 Respiratory System","dsffgdg", +"689. Human Body",,,,"This chapter describes about human body" +"689. Human Body","689.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"689. Human Body","689.1 Parts of Body","689.1.1 Key parts in the head",,"xyz" +"689. Human Body","689.1 Parts of Body","689.1.2 Other parts",, +"689. Human Body","689.2 Organ Systems",,, +"689. Human Body","689.2 Organ Systems","689.2.1 Respiratory System","dsffgdg", +"690. Human Body",,,,"This chapter describes about human body" +"690. Human Body","690.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"690. Human Body","690.1 Parts of Body","690.1.1 Key parts in the head",,"xyz" +"690. Human Body","690.1 Parts of Body","690.1.2 Other parts",, +"690. Human Body","690.2 Organ Systems",,, +"690. Human Body","690.2 Organ Systems","690.2.1 Respiratory System","dsffgdg", +"691. Human Body",,,,"This chapter describes about human body" +"691. Human Body","691.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"691. Human Body","691.1 Parts of Body","691.1.1 Key parts in the head",,"xyz" +"691. Human Body","691.1 Parts of Body","691.1.2 Other parts",, +"691. Human Body","691.2 Organ Systems",,, +"691. Human Body","691.2 Organ Systems","691.2.1 Respiratory System","dsffgdg", +"692. Human Body",,,,"This chapter describes about human body" +"692. Human Body","692.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"692. Human Body","692.1 Parts of Body","692.1.1 Key parts in the head",,"xyz" +"692. Human Body","692.1 Parts of Body","692.1.2 Other parts",, +"692. Human Body","692.2 Organ Systems",,, +"692. Human Body","692.2 Organ Systems","692.2.1 Respiratory System","dsffgdg", +"693. Human Body",,,,"This chapter describes about human body" +"693. Human Body","693.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"693. Human Body","693.1 Parts of Body","693.1.1 Key parts in the head",,"xyz" +"693. Human Body","693.1 Parts of Body","693.1.2 Other parts",, +"693. Human Body","693.2 Organ Systems",,, +"693. Human Body","693.2 Organ Systems","693.2.1 Respiratory System","dsffgdg", +"694. Human Body",,,,"This chapter describes about human body" +"694. Human Body","694.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"694. Human Body","694.1 Parts of Body","694.1.1 Key parts in the head",,"xyz" +"694. Human Body","694.1 Parts of Body","694.1.2 Other parts",, +"694. Human Body","694.2 Organ Systems",,, +"694. Human Body","694.2 Organ Systems","694.2.1 Respiratory System","dsffgdg", +"695. Human Body",,,,"This chapter describes about human body" +"695. Human Body","695.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"695. Human Body","695.1 Parts of Body","695.1.1 Key parts in the head",,"xyz" +"695. Human Body","695.1 Parts of Body","695.1.2 Other parts",, +"695. Human Body","695.2 Organ Systems",,, +"695. Human Body","695.2 Organ Systems","695.2.1 Respiratory System","dsffgdg", +"696. Human Body",,,,"This chapter describes about human body" +"696. Human Body","696.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"696. Human Body","696.1 Parts of Body","696.1.1 Key parts in the head",,"xyz" +"696. Human Body","696.1 Parts of Body","696.1.2 Other parts",, +"696. Human Body","696.2 Organ Systems",,, +"696. Human Body","696.2 Organ Systems","696.2.1 Respiratory System","dsffgdg", +"697. Human Body",,,,"This chapter describes about human body" +"697. Human Body","697.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"697. Human Body","697.1 Parts of Body","697.1.1 Key parts in the head",,"xyz" +"697. Human Body","697.1 Parts of Body","697.1.2 Other parts",, +"697. Human Body","697.2 Organ Systems",,, +"697. Human Body","697.2 Organ Systems","697.2.1 Respiratory System","dsffgdg", +"698. Human Body",,,,"This chapter describes about human body" +"698. Human Body","698.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"698. Human Body","698.1 Parts of Body","698.1.1 Key parts in the head",,"xyz" +"698. Human Body","698.1 Parts of Body","698.1.2 Other parts",, +"698. Human Body","698.2 Organ Systems",,, +"698. Human Body","698.2 Organ Systems","698.2.1 Respiratory System","dsffgdg", +"699. Human Body",,,,"This chapter describes about human body" +"699. Human Body","699.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"699. Human Body","699.1 Parts of Body","699.1.1 Key parts in the head",,"xyz" +"699. Human Body","699.1 Parts of Body","699.1.2 Other parts",, +"699. Human Body","699.2 Organ Systems",,, +"699. Human Body","699.2 Organ Systems","699.2.1 Respiratory System","dsffgdg", +"700. Human Body",,,,"This chapter describes about human body" +"700. Human Body","700.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"700. Human Body","700.1 Parts of Body","700.1.1 Key parts in the head",,"xyz" +"700. Human Body","700.1 Parts of Body","700.1.2 Other parts",, +"700. Human Body","700.2 Organ Systems",,, +"700. Human Body","700.2 Organ Systems","700.2.1 Respiratory System","dsffgdg", +"701. Human Body",,,,"This chapter describes about human body" +"701. Human Body","701.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"701. Human Body","701.1 Parts of Body","701.1.1 Key parts in the head",,"xyz" +"701. Human Body","701.1 Parts of Body","701.1.2 Other parts",, +"701. Human Body","701.2 Organ Systems",,, +"701. Human Body","701.2 Organ Systems","701.2.1 Respiratory System","dsffgdg", +"702. Human Body",,,,"This chapter describes about human body" +"702. Human Body","702.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"702. Human Body","702.1 Parts of Body","702.1.1 Key parts in the head",,"xyz" +"702. Human Body","702.1 Parts of Body","702.1.2 Other parts",, +"702. Human Body","702.2 Organ Systems",,, +"702. Human Body","702.2 Organ Systems","702.2.1 Respiratory System","dsffgdg", +"703. Human Body",,,,"This chapter describes about human body" +"703. Human Body","703.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"703. Human Body","703.1 Parts of Body","703.1.1 Key parts in the head",,"xyz" +"703. Human Body","703.1 Parts of Body","703.1.2 Other parts",, +"703. Human Body","703.2 Organ Systems",,, +"703. Human Body","703.2 Organ Systems","703.2.1 Respiratory System","dsffgdg", +"704. Human Body",,,,"This chapter describes about human body" +"704. Human Body","704.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"704. Human Body","704.1 Parts of Body","704.1.1 Key parts in the head",,"xyz" +"704. Human Body","704.1 Parts of Body","704.1.2 Other parts",, +"704. Human Body","704.2 Organ Systems",,, +"704. Human Body","704.2 Organ Systems","704.2.1 Respiratory System","dsffgdg", +"705. Human Body",,,,"This chapter describes about human body" +"705. Human Body","705.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"705. Human Body","705.1 Parts of Body","705.1.1 Key parts in the head",,"xyz" +"705. Human Body","705.1 Parts of Body","705.1.2 Other parts",, +"705. Human Body","705.2 Organ Systems",,, +"705. Human Body","705.2 Organ Systems","705.2.1 Respiratory System","dsffgdg", +"706. Human Body",,,,"This chapter describes about human body" +"706. Human Body","706.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"706. Human Body","706.1 Parts of Body","706.1.1 Key parts in the head",,"xyz" +"706. Human Body","706.1 Parts of Body","706.1.2 Other parts",, +"706. Human Body","706.2 Organ Systems",,, +"706. Human Body","706.2 Organ Systems","706.2.1 Respiratory System","dsffgdg", +"707. Human Body",,,,"This chapter describes about human body" +"707. Human Body","707.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"707. Human Body","707.1 Parts of Body","707.1.1 Key parts in the head",,"xyz" +"707. Human Body","707.1 Parts of Body","707.1.2 Other parts",, +"707. Human Body","707.2 Organ Systems",,, +"707. Human Body","707.2 Organ Systems","707.2.1 Respiratory System","dsffgdg", +"708. Human Body",,,,"This chapter describes about human body" +"708. Human Body","708.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"708. Human Body","708.1 Parts of Body","708.1.1 Key parts in the head",,"xyz" +"708. Human Body","708.1 Parts of Body","708.1.2 Other parts",, +"708. Human Body","708.2 Organ Systems",,, +"708. Human Body","708.2 Organ Systems","708.2.1 Respiratory System","dsffgdg", +"709. Human Body",,,,"This chapter describes about human body" +"709. Human Body","709.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"709. Human Body","709.1 Parts of Body","709.1.1 Key parts in the head",,"xyz" +"709. Human Body","709.1 Parts of Body","709.1.2 Other parts",, +"709. Human Body","709.2 Organ Systems",,, +"709. Human Body","709.2 Organ Systems","709.2.1 Respiratory System","dsffgdg", +"710. Human Body",,,,"This chapter describes about human body" +"710. Human Body","710.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"710. Human Body","710.1 Parts of Body","710.1.1 Key parts in the head",,"xyz" +"710. Human Body","710.1 Parts of Body","710.1.2 Other parts",, +"710. Human Body","710.2 Organ Systems",,, +"710. Human Body","710.2 Organ Systems","710.2.1 Respiratory System","dsffgdg", +"711. Human Body",,,,"This chapter describes about human body" +"711. Human Body","711.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"711. Human Body","711.1 Parts of Body","711.1.1 Key parts in the head",,"xyz" +"711. Human Body","711.1 Parts of Body","711.1.2 Other parts",, +"711. Human Body","711.2 Organ Systems",,, +"711. Human Body","711.2 Organ Systems","711.2.1 Respiratory System","dsffgdg", +"712. Human Body",,,,"This chapter describes about human body" +"712. Human Body","712.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"712. Human Body","712.1 Parts of Body","712.1.1 Key parts in the head",,"xyz" +"712. Human Body","712.1 Parts of Body","712.1.2 Other parts",, +"712. Human Body","712.2 Organ Systems",,, +"712. Human Body","712.2 Organ Systems","712.2.1 Respiratory System","dsffgdg", +"713. Human Body",,,,"This chapter describes about human body" +"713. Human Body","713.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"713. Human Body","713.1 Parts of Body","713.1.1 Key parts in the head",,"xyz" +"713. Human Body","713.1 Parts of Body","713.1.2 Other parts",, +"713. Human Body","713.2 Organ Systems",,, +"713. Human Body","713.2 Organ Systems","713.2.1 Respiratory System","dsffgdg", +"714. Human Body",,,,"This chapter describes about human body" +"714. Human Body","714.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"714. Human Body","714.1 Parts of Body","714.1.1 Key parts in the head",,"xyz" +"714. Human Body","714.1 Parts of Body","714.1.2 Other parts",, +"714. Human Body","714.2 Organ Systems",,, +"714. Human Body","714.2 Organ Systems","714.2.1 Respiratory System","dsffgdg", +"715. Human Body",,,,"This chapter describes about human body" +"715. Human Body","715.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"715. Human Body","715.1 Parts of Body","715.1.1 Key parts in the head",,"xyz" +"715. Human Body","715.1 Parts of Body","715.1.2 Other parts",, +"715. Human Body","715.2 Organ Systems",,, +"715. Human Body","715.2 Organ Systems","715.2.1 Respiratory System","dsffgdg", +"716. Human Body",,,,"This chapter describes about human body" +"716. Human Body","716.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"716. Human Body","716.1 Parts of Body","716.1.1 Key parts in the head",,"xyz" +"716. Human Body","716.1 Parts of Body","716.1.2 Other parts",, +"716. Human Body","716.2 Organ Systems",,, +"716. Human Body","716.2 Organ Systems","716.2.1 Respiratory System","dsffgdg", +"717. Human Body",,,,"This chapter describes about human body" +"717. Human Body","717.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"717. Human Body","717.1 Parts of Body","717.1.1 Key parts in the head",,"xyz" +"717. Human Body","717.1 Parts of Body","717.1.2 Other parts",, +"717. Human Body","717.2 Organ Systems",,, +"717. Human Body","717.2 Organ Systems","717.2.1 Respiratory System","dsffgdg", +"718. Human Body",,,,"This chapter describes about human body" +"718. Human Body","718.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"718. Human Body","718.1 Parts of Body","718.1.1 Key parts in the head",,"xyz" +"718. Human Body","718.1 Parts of Body","718.1.2 Other parts",, +"718. Human Body","718.2 Organ Systems",,, +"718. Human Body","718.2 Organ Systems","718.2.1 Respiratory System","dsffgdg", +"719. Human Body",,,,"This chapter describes about human body" +"719. Human Body","719.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"719. Human Body","719.1 Parts of Body","719.1.1 Key parts in the head",,"xyz" +"719. Human Body","719.1 Parts of Body","719.1.2 Other parts",, +"719. Human Body","719.2 Organ Systems",,, +"719. Human Body","719.2 Organ Systems","719.2.1 Respiratory System","dsffgdg", +"720. Human Body",,,,"This chapter describes about human body" +"720. Human Body","720.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"720. Human Body","720.1 Parts of Body","720.1.1 Key parts in the head",,"xyz" +"720. Human Body","720.1 Parts of Body","720.1.2 Other parts",, +"720. Human Body","720.2 Organ Systems",,, +"720. Human Body","720.2 Organ Systems","720.2.1 Respiratory System","dsffgdg", +"721. Human Body",,,,"This chapter describes about human body" +"721. Human Body","721.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"721. Human Body","721.1 Parts of Body","721.1.1 Key parts in the head",,"xyz" +"721. Human Body","721.1 Parts of Body","721.1.2 Other parts",, +"721. Human Body","721.2 Organ Systems",,, +"721. Human Body","721.2 Organ Systems","721.2.1 Respiratory System","dsffgdg", +"722. Human Body",,,,"This chapter describes about human body" +"722. Human Body","722.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"722. Human Body","722.1 Parts of Body","722.1.1 Key parts in the head",,"xyz" +"722. Human Body","722.1 Parts of Body","722.1.2 Other parts",, +"722. Human Body","722.2 Organ Systems",,, +"722. Human Body","722.2 Organ Systems","722.2.1 Respiratory System","dsffgdg", +"723. Human Body",,,,"This chapter describes about human body" +"723. Human Body","723.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"723. Human Body","723.1 Parts of Body","723.1.1 Key parts in the head",,"xyz" +"723. Human Body","723.1 Parts of Body","723.1.2 Other parts",, +"723. Human Body","723.2 Organ Systems",,, +"723. Human Body","723.2 Organ Systems","723.2.1 Respiratory System","dsffgdg", +"724. Human Body",,,,"This chapter describes about human body" +"724. Human Body","724.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"724. Human Body","724.1 Parts of Body","724.1.1 Key parts in the head",,"xyz" +"724. Human Body","724.1 Parts of Body","724.1.2 Other parts",, +"724. Human Body","724.2 Organ Systems",,, +"724. Human Body","724.2 Organ Systems","724.2.1 Respiratory System","dsffgdg", +"725. Human Body",,,,"This chapter describes about human body" +"725. Human Body","725.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"725. Human Body","725.1 Parts of Body","725.1.1 Key parts in the head",,"xyz" +"725. Human Body","725.1 Parts of Body","725.1.2 Other parts",, +"725. Human Body","725.2 Organ Systems",,, +"725. Human Body","725.2 Organ Systems","725.2.1 Respiratory System","dsffgdg", +"726. Human Body",,,,"This chapter describes about human body" +"726. Human Body","726.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"726. Human Body","726.1 Parts of Body","726.1.1 Key parts in the head",,"xyz" +"726. Human Body","726.1 Parts of Body","726.1.2 Other parts",, +"726. Human Body","726.2 Organ Systems",,, +"726. Human Body","726.2 Organ Systems","726.2.1 Respiratory System","dsffgdg", +"727. Human Body",,,,"This chapter describes about human body" +"727. Human Body","727.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"727. Human Body","727.1 Parts of Body","727.1.1 Key parts in the head",,"xyz" +"727. Human Body","727.1 Parts of Body","727.1.2 Other parts",, +"727. Human Body","727.2 Organ Systems",,, +"727. Human Body","727.2 Organ Systems","727.2.1 Respiratory System","dsffgdg", +"728. Human Body",,,,"This chapter describes about human body" +"728. Human Body","728.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"728. Human Body","728.1 Parts of Body","728.1.1 Key parts in the head",,"xyz" +"728. Human Body","728.1 Parts of Body","728.1.2 Other parts",, +"728. Human Body","728.2 Organ Systems",,, +"728. Human Body","728.2 Organ Systems","728.2.1 Respiratory System","dsffgdg", +"729. Human Body",,,,"This chapter describes about human body" +"729. Human Body","729.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"729. Human Body","729.1 Parts of Body","729.1.1 Key parts in the head",,"xyz" +"729. Human Body","729.1 Parts of Body","729.1.2 Other parts",, +"729. Human Body","729.2 Organ Systems",,, +"729. Human Body","729.2 Organ Systems","729.2.1 Respiratory System","dsffgdg", +"730. Human Body",,,,"This chapter describes about human body" +"730. Human Body","730.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"730. Human Body","730.1 Parts of Body","730.1.1 Key parts in the head",,"xyz" +"730. Human Body","730.1 Parts of Body","730.1.2 Other parts",, +"730. Human Body","730.2 Organ Systems",,, +"730. Human Body","730.2 Organ Systems","730.2.1 Respiratory System","dsffgdg", +"731. Human Body",,,,"This chapter describes about human body" +"731. Human Body","731.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"731. Human Body","731.1 Parts of Body","731.1.1 Key parts in the head",,"xyz" +"731. Human Body","731.1 Parts of Body","731.1.2 Other parts",, +"731. Human Body","731.2 Organ Systems",,, +"731. Human Body","731.2 Organ Systems","731.2.1 Respiratory System","dsffgdg", +"732. Human Body",,,,"This chapter describes about human body" +"732. Human Body","732.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"732. Human Body","732.1 Parts of Body","732.1.1 Key parts in the head",,"xyz" +"732. Human Body","732.1 Parts of Body","732.1.2 Other parts",, +"732. Human Body","732.2 Organ Systems",,, +"732. Human Body","732.2 Organ Systems","732.2.1 Respiratory System","dsffgdg", +"733. Human Body",,,,"This chapter describes about human body" +"733. Human Body","733.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"733. Human Body","733.1 Parts of Body","733.1.1 Key parts in the head",,"xyz" +"733. Human Body","733.1 Parts of Body","733.1.2 Other parts",, +"733. Human Body","733.2 Organ Systems",,, +"733. Human Body","733.2 Organ Systems","733.2.1 Respiratory System","dsffgdg", +"734. Human Body",,,,"This chapter describes about human body" +"734. Human Body","734.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"734. Human Body","734.1 Parts of Body","734.1.1 Key parts in the head",,"xyz" +"734. Human Body","734.1 Parts of Body","734.1.2 Other parts",, +"734. Human Body","734.2 Organ Systems",,, +"734. Human Body","734.2 Organ Systems","734.2.1 Respiratory System","dsffgdg", +"735. Human Body",,,,"This chapter describes about human body" +"735. Human Body","735.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"735. Human Body","735.1 Parts of Body","735.1.1 Key parts in the head",,"xyz" +"735. Human Body","735.1 Parts of Body","735.1.2 Other parts",, +"735. Human Body","735.2 Organ Systems",,, +"735. Human Body","735.2 Organ Systems","735.2.1 Respiratory System","dsffgdg", +"736. Human Body",,,,"This chapter describes about human body" +"736. Human Body","736.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"736. Human Body","736.1 Parts of Body","736.1.1 Key parts in the head",,"xyz" +"736. Human Body","736.1 Parts of Body","736.1.2 Other parts",, +"736. Human Body","736.2 Organ Systems",,, +"736. Human Body","736.2 Organ Systems","736.2.1 Respiratory System","dsffgdg", +"737. Human Body",,,,"This chapter describes about human body" +"737. Human Body","737.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"737. Human Body","737.1 Parts of Body","737.1.1 Key parts in the head",,"xyz" +"737. Human Body","737.1 Parts of Body","737.1.2 Other parts",, +"737. Human Body","737.2 Organ Systems",,, +"737. Human Body","737.2 Organ Systems","737.2.1 Respiratory System","dsffgdg", +"738. Human Body",,,,"This chapter describes about human body" +"738. Human Body","738.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"738. Human Body","738.1 Parts of Body","738.1.1 Key parts in the head",,"xyz" +"738. Human Body","738.1 Parts of Body","738.1.2 Other parts",, +"738. Human Body","738.2 Organ Systems",,, +"738. Human Body","738.2 Organ Systems","738.2.1 Respiratory System","dsffgdg", +"739. Human Body",,,,"This chapter describes about human body" +"739. Human Body","739.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"739. Human Body","739.1 Parts of Body","739.1.1 Key parts in the head",,"xyz" +"739. Human Body","739.1 Parts of Body","739.1.2 Other parts",, +"739. Human Body","739.2 Organ Systems",,, +"739. Human Body","739.2 Organ Systems","739.2.1 Respiratory System","dsffgdg", +"740. Human Body",,,,"This chapter describes about human body" +"740. Human Body","740.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"740. Human Body","740.1 Parts of Body","740.1.1 Key parts in the head",,"xyz" +"740. Human Body","740.1 Parts of Body","740.1.2 Other parts",, +"740. Human Body","740.2 Organ Systems",,, +"740. Human Body","740.2 Organ Systems","740.2.1 Respiratory System","dsffgdg", +"741. Human Body",,,,"This chapter describes about human body" +"741. Human Body","741.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"741. Human Body","741.1 Parts of Body","741.1.1 Key parts in the head",,"xyz" +"741. Human Body","741.1 Parts of Body","741.1.2 Other parts",, +"741. Human Body","741.2 Organ Systems",,, +"741. Human Body","741.2 Organ Systems","741.2.1 Respiratory System","dsffgdg", +"742. Human Body",,,,"This chapter describes about human body" +"742. Human Body","742.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"742. Human Body","742.1 Parts of Body","742.1.1 Key parts in the head",,"xyz" +"742. Human Body","742.1 Parts of Body","742.1.2 Other parts",, +"742. Human Body","742.2 Organ Systems",,, +"742. Human Body","742.2 Organ Systems","742.2.1 Respiratory System","dsffgdg", +"743. Human Body",,,,"This chapter describes about human body" +"743. Human Body","743.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"743. Human Body","743.1 Parts of Body","743.1.1 Key parts in the head",,"xyz" +"743. Human Body","743.1 Parts of Body","743.1.2 Other parts",, +"743. Human Body","743.2 Organ Systems",,, +"743. Human Body","743.2 Organ Systems","743.2.1 Respiratory System","dsffgdg", +"744. Human Body",,,,"This chapter describes about human body" +"744. Human Body","744.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"744. Human Body","744.1 Parts of Body","744.1.1 Key parts in the head",,"xyz" +"744. Human Body","744.1 Parts of Body","744.1.2 Other parts",, +"744. Human Body","744.2 Organ Systems",,, +"744. Human Body","744.2 Organ Systems","744.2.1 Respiratory System","dsffgdg", +"745. Human Body",,,,"This chapter describes about human body" +"745. Human Body","745.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"745. Human Body","745.1 Parts of Body","745.1.1 Key parts in the head",,"xyz" +"745. Human Body","745.1 Parts of Body","745.1.2 Other parts",, +"745. Human Body","745.2 Organ Systems",,, +"745. Human Body","745.2 Organ Systems","745.2.1 Respiratory System","dsffgdg", +"746. Human Body",,,,"This chapter describes about human body" +"746. Human Body","746.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"746. Human Body","746.1 Parts of Body","746.1.1 Key parts in the head",,"xyz" +"746. Human Body","746.1 Parts of Body","746.1.2 Other parts",, +"746. Human Body","746.2 Organ Systems",,, +"746. Human Body","746.2 Organ Systems","746.2.1 Respiratory System","dsffgdg", +"747. Human Body",,,,"This chapter describes about human body" +"747. Human Body","747.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"747. Human Body","747.1 Parts of Body","747.1.1 Key parts in the head",,"xyz" +"747. Human Body","747.1 Parts of Body","747.1.2 Other parts",, +"747. Human Body","747.2 Organ Systems",,, +"747. Human Body","747.2 Organ Systems","747.2.1 Respiratory System","dsffgdg", +"748. Human Body",,,,"This chapter describes about human body" +"748. Human Body","748.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"748. Human Body","748.1 Parts of Body","748.1.1 Key parts in the head",,"xyz" +"748. Human Body","748.1 Parts of Body","748.1.2 Other parts",, +"748. Human Body","748.2 Organ Systems",,, +"748. Human Body","748.2 Organ Systems","748.2.1 Respiratory System","dsffgdg", +"749. Human Body",,,,"This chapter describes about human body" +"749. Human Body","749.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"749. Human Body","749.1 Parts of Body","749.1.1 Key parts in the head",,"xyz" +"749. Human Body","749.1 Parts of Body","749.1.2 Other parts",, +"749. Human Body","749.2 Organ Systems",,, +"749. Human Body","749.2 Organ Systems","749.2.1 Respiratory System","dsffgdg", +"750. Human Body",,,,"This chapter describes about human body" +"750. Human Body","750.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"750. Human Body","750.1 Parts of Body","750.1.1 Key parts in the head",,"xyz" +"750. Human Body","750.1 Parts of Body","750.1.2 Other parts",, +"750. Human Body","750.2 Organ Systems",,, +"750. Human Body","750.2 Organ Systems","750.2.1 Respiratory System","dsffgdg", +"751. Human Body",,,,"This chapter describes about human body" +"751. Human Body","751.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"751. Human Body","751.1 Parts of Body","751.1.1 Key parts in the head",,"xyz" +"751. Human Body","751.1 Parts of Body","751.1.2 Other parts",, +"751. Human Body","751.2 Organ Systems",,, +"751. Human Body","751.2 Organ Systems","751.2.1 Respiratory System","dsffgdg", +"752. Human Body",,,,"This chapter describes about human body" +"752. Human Body","752.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"752. Human Body","752.1 Parts of Body","752.1.1 Key parts in the head",,"xyz" +"752. Human Body","752.1 Parts of Body","752.1.2 Other parts",, +"752. Human Body","752.2 Organ Systems",,, +"752. Human Body","752.2 Organ Systems","752.2.1 Respiratory System","dsffgdg", +"753. Human Body",,,,"This chapter describes about human body" +"753. Human Body","753.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"753. Human Body","753.1 Parts of Body","753.1.1 Key parts in the head",,"xyz" +"753. Human Body","753.1 Parts of Body","753.1.2 Other parts",, +"753. Human Body","753.2 Organ Systems",,, +"753. Human Body","753.2 Organ Systems","753.2.1 Respiratory System","dsffgdg", +"754. Human Body",,,,"This chapter describes about human body" +"754. Human Body","754.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"754. Human Body","754.1 Parts of Body","754.1.1 Key parts in the head",,"xyz" +"754. Human Body","754.1 Parts of Body","754.1.2 Other parts",, +"754. Human Body","754.2 Organ Systems",,, +"754. Human Body","754.2 Organ Systems","754.2.1 Respiratory System","dsffgdg", +"755. Human Body",,,,"This chapter describes about human body" +"755. Human Body","755.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"755. Human Body","755.1 Parts of Body","755.1.1 Key parts in the head",,"xyz" +"755. Human Body","755.1 Parts of Body","755.1.2 Other parts",, +"755. Human Body","755.2 Organ Systems",,, +"755. Human Body","755.2 Organ Systems","755.2.1 Respiratory System","dsffgdg", +"756. Human Body",,,,"This chapter describes about human body" +"756. Human Body","756.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"756. Human Body","756.1 Parts of Body","756.1.1 Key parts in the head",,"xyz" +"756. Human Body","756.1 Parts of Body","756.1.2 Other parts",, +"756. Human Body","756.2 Organ Systems",,, +"756. Human Body","756.2 Organ Systems","756.2.1 Respiratory System","dsffgdg", +"757. Human Body",,,,"This chapter describes about human body" +"757. Human Body","757.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"757. Human Body","757.1 Parts of Body","757.1.1 Key parts in the head",,"xyz" +"757. Human Body","757.1 Parts of Body","757.1.2 Other parts",, +"757. Human Body","757.2 Organ Systems",,, +"757. Human Body","757.2 Organ Systems","757.2.1 Respiratory System","dsffgdg", +"758. Human Body",,,,"This chapter describes about human body" +"758. Human Body","758.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"758. Human Body","758.1 Parts of Body","758.1.1 Key parts in the head",,"xyz" +"758. Human Body","758.1 Parts of Body","758.1.2 Other parts",, +"758. Human Body","758.2 Organ Systems",,, +"758. Human Body","758.2 Organ Systems","758.2.1 Respiratory System","dsffgdg", +"759. Human Body",,,,"This chapter describes about human body" +"759. Human Body","759.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"759. Human Body","759.1 Parts of Body","759.1.1 Key parts in the head",,"xyz" +"759. Human Body","759.1 Parts of Body","759.1.2 Other parts",, +"759. Human Body","759.2 Organ Systems",,, +"759. Human Body","759.2 Organ Systems","759.2.1 Respiratory System","dsffgdg", +"760. Human Body",,,,"This chapter describes about human body" +"760. Human Body","760.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"760. Human Body","760.1 Parts of Body","760.1.1 Key parts in the head",,"xyz" +"760. Human Body","760.1 Parts of Body","760.1.2 Other parts",, +"760. Human Body","760.2 Organ Systems",,, +"760. Human Body","760.2 Organ Systems","760.2.1 Respiratory System","dsffgdg", +"761. Human Body",,,,"This chapter describes about human body" +"761. Human Body","761.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"761. Human Body","761.1 Parts of Body","761.1.1 Key parts in the head",,"xyz" +"761. Human Body","761.1 Parts of Body","761.1.2 Other parts",, +"761. Human Body","761.2 Organ Systems",,, +"761. Human Body","761.2 Organ Systems","761.2.1 Respiratory System","dsffgdg", +"762. Human Body",,,,"This chapter describes about human body" +"762. Human Body","762.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"762. Human Body","762.1 Parts of Body","762.1.1 Key parts in the head",,"xyz" +"762. Human Body","762.1 Parts of Body","762.1.2 Other parts",, +"762. Human Body","762.2 Organ Systems",,, +"762. Human Body","762.2 Organ Systems","762.2.1 Respiratory System","dsffgdg", +"763. Human Body",,,,"This chapter describes about human body" +"763. Human Body","763.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"763. Human Body","763.1 Parts of Body","763.1.1 Key parts in the head",,"xyz" +"763. Human Body","763.1 Parts of Body","763.1.2 Other parts",, +"763. Human Body","763.2 Organ Systems",,, +"763. Human Body","763.2 Organ Systems","763.2.1 Respiratory System","dsffgdg", +"764. Human Body",,,,"This chapter describes about human body" +"764. Human Body","764.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"764. Human Body","764.1 Parts of Body","764.1.1 Key parts in the head",,"xyz" +"764. Human Body","764.1 Parts of Body","764.1.2 Other parts",, +"764. Human Body","764.2 Organ Systems",,, +"764. Human Body","764.2 Organ Systems","764.2.1 Respiratory System","dsffgdg", +"765. Human Body",,,,"This chapter describes about human body" +"765. Human Body","765.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"765. Human Body","765.1 Parts of Body","765.1.1 Key parts in the head",,"xyz" +"765. Human Body","765.1 Parts of Body","765.1.2 Other parts",, +"765. Human Body","765.2 Organ Systems",,, +"765. Human Body","765.2 Organ Systems","765.2.1 Respiratory System","dsffgdg", +"766. Human Body",,,,"This chapter describes about human body" +"766. Human Body","766.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"766. Human Body","766.1 Parts of Body","766.1.1 Key parts in the head",,"xyz" +"766. Human Body","766.1 Parts of Body","766.1.2 Other parts",, +"766. Human Body","766.2 Organ Systems",,, +"766. Human Body","766.2 Organ Systems","766.2.1 Respiratory System","dsffgdg", +"767. Human Body",,,,"This chapter describes about human body" +"767. Human Body","767.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"767. Human Body","767.1 Parts of Body","767.1.1 Key parts in the head",,"xyz" +"767. Human Body","767.1 Parts of Body","767.1.2 Other parts",, +"767. Human Body","767.2 Organ Systems",,, +"767. Human Body","767.2 Organ Systems","767.2.1 Respiratory System","dsffgdg", +"768. Human Body",,,,"This chapter describes about human body" +"768. Human Body","768.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"768. Human Body","768.1 Parts of Body","768.1.1 Key parts in the head",,"xyz" +"768. Human Body","768.1 Parts of Body","768.1.2 Other parts",, +"768. Human Body","768.2 Organ Systems",,, +"768. Human Body","768.2 Organ Systems","768.2.1 Respiratory System","dsffgdg", +"769. Human Body",,,,"This chapter describes about human body" +"769. Human Body","769.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"769. Human Body","769.1 Parts of Body","769.1.1 Key parts in the head",,"xyz" +"769. Human Body","769.1 Parts of Body","769.1.2 Other parts",, +"769. Human Body","769.2 Organ Systems",,, +"769. Human Body","769.2 Organ Systems","769.2.1 Respiratory System","dsffgdg", +"770. Human Body",,,,"This chapter describes about human body" +"770. Human Body","770.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"770. Human Body","770.1 Parts of Body","770.1.1 Key parts in the head",,"xyz" +"770. Human Body","770.1 Parts of Body","770.1.2 Other parts",, +"770. Human Body","770.2 Organ Systems",,, +"770. Human Body","770.2 Organ Systems","770.2.1 Respiratory System","dsffgdg", +"771. Human Body",,,,"This chapter describes about human body" +"771. Human Body","771.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"771. Human Body","771.1 Parts of Body","771.1.1 Key parts in the head",,"xyz" +"771. Human Body","771.1 Parts of Body","771.1.2 Other parts",, +"771. Human Body","771.2 Organ Systems",,, +"771. Human Body","771.2 Organ Systems","771.2.1 Respiratory System","dsffgdg", +"772. Human Body",,,,"This chapter describes about human body" +"772. Human Body","772.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"772. Human Body","772.1 Parts of Body","772.1.1 Key parts in the head",,"xyz" +"772. Human Body","772.1 Parts of Body","772.1.2 Other parts",, +"772. Human Body","772.2 Organ Systems",,, +"772. Human Body","772.2 Organ Systems","772.2.1 Respiratory System","dsffgdg", +"773. Human Body",,,,"This chapter describes about human body" +"773. Human Body","773.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"773. Human Body","773.1 Parts of Body","773.1.1 Key parts in the head",,"xyz" +"773. Human Body","773.1 Parts of Body","773.1.2 Other parts",, +"773. Human Body","773.2 Organ Systems",,, +"773. Human Body","773.2 Organ Systems","773.2.1 Respiratory System","dsffgdg", +"774. Human Body",,,,"This chapter describes about human body" +"774. Human Body","774.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"774. Human Body","774.1 Parts of Body","774.1.1 Key parts in the head",,"xyz" +"774. Human Body","774.1 Parts of Body","774.1.2 Other parts",, +"774. Human Body","774.2 Organ Systems",,, +"774. Human Body","774.2 Organ Systems","774.2.1 Respiratory System","dsffgdg", +"775. Human Body",,,,"This chapter describes about human body" +"775. Human Body","775.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"775. Human Body","775.1 Parts of Body","775.1.1 Key parts in the head",,"xyz" +"775. Human Body","775.1 Parts of Body","775.1.2 Other parts",, +"775. Human Body","775.2 Organ Systems",,, +"775. Human Body","775.2 Organ Systems","775.2.1 Respiratory System","dsffgdg", +"776. Human Body",,,,"This chapter describes about human body" +"776. Human Body","776.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"776. Human Body","776.1 Parts of Body","776.1.1 Key parts in the head",,"xyz" +"776. Human Body","776.1 Parts of Body","776.1.2 Other parts",, +"776. Human Body","776.2 Organ Systems",,, +"776. Human Body","776.2 Organ Systems","776.2.1 Respiratory System","dsffgdg", +"777. Human Body",,,,"This chapter describes about human body" +"777. Human Body","777.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"777. Human Body","777.1 Parts of Body","777.1.1 Key parts in the head",,"xyz" +"777. Human Body","777.1 Parts of Body","777.1.2 Other parts",, +"777. Human Body","777.2 Organ Systems",,, +"777. Human Body","777.2 Organ Systems","777.2.1 Respiratory System","dsffgdg", +"778. Human Body",,,,"This chapter describes about human body" +"778. Human Body","778.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"778. Human Body","778.1 Parts of Body","778.1.1 Key parts in the head",,"xyz" +"778. Human Body","778.1 Parts of Body","778.1.2 Other parts",, +"778. Human Body","778.2 Organ Systems",,, +"778. Human Body","778.2 Organ Systems","778.2.1 Respiratory System","dsffgdg", +"779. Human Body",,,,"This chapter describes about human body" +"779. Human Body","779.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"779. Human Body","779.1 Parts of Body","779.1.1 Key parts in the head",,"xyz" +"779. Human Body","779.1 Parts of Body","779.1.2 Other parts",, +"779. Human Body","779.2 Organ Systems",,, +"779. Human Body","779.2 Organ Systems","779.2.1 Respiratory System","dsffgdg", +"780. Human Body",,,,"This chapter describes about human body" +"780. Human Body","780.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"780. Human Body","780.1 Parts of Body","780.1.1 Key parts in the head",,"xyz" +"780. Human Body","780.1 Parts of Body","780.1.2 Other parts",, +"780. Human Body","780.2 Organ Systems",,, +"780. Human Body","780.2 Organ Systems","780.2.1 Respiratory System","dsffgdg", +"781. Human Body",,,,"This chapter describes about human body" +"781. Human Body","781.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"781. Human Body","781.1 Parts of Body","781.1.1 Key parts in the head",,"xyz" +"781. Human Body","781.1 Parts of Body","781.1.2 Other parts",, +"781. Human Body","781.2 Organ Systems",,, +"781. Human Body","781.2 Organ Systems","781.2.1 Respiratory System","dsffgdg", +"782. Human Body",,,,"This chapter describes about human body" +"782. Human Body","782.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"782. Human Body","782.1 Parts of Body","782.1.1 Key parts in the head",,"xyz" +"782. Human Body","782.1 Parts of Body","782.1.2 Other parts",, +"782. Human Body","782.2 Organ Systems",,, +"782. Human Body","782.2 Organ Systems","782.2.1 Respiratory System","dsffgdg", +"783. Human Body",,,,"This chapter describes about human body" +"783. Human Body","783.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"783. Human Body","783.1 Parts of Body","783.1.1 Key parts in the head",,"xyz" +"783. Human Body","783.1 Parts of Body","783.1.2 Other parts",, +"783. Human Body","783.2 Organ Systems",,, +"783. Human Body","783.2 Organ Systems","783.2.1 Respiratory System","dsffgdg", +"784. Human Body",,,,"This chapter describes about human body" +"784. Human Body","784.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"784. Human Body","784.1 Parts of Body","784.1.1 Key parts in the head",,"xyz" +"784. Human Body","784.1 Parts of Body","784.1.2 Other parts",, +"784. Human Body","784.2 Organ Systems",,, +"784. Human Body","784.2 Organ Systems","784.2.1 Respiratory System","dsffgdg", +"785. Human Body",,,,"This chapter describes about human body" +"785. Human Body","785.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"785. Human Body","785.1 Parts of Body","785.1.1 Key parts in the head",,"xyz" +"785. Human Body","785.1 Parts of Body","785.1.2 Other parts",, +"785. Human Body","785.2 Organ Systems",,, +"785. Human Body","785.2 Organ Systems","785.2.1 Respiratory System","dsffgdg", +"786. Human Body",,,,"This chapter describes about human body" +"786. Human Body","786.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"786. Human Body","786.1 Parts of Body","786.1.1 Key parts in the head",,"xyz" +"786. Human Body","786.1 Parts of Body","786.1.2 Other parts",, +"786. Human Body","786.2 Organ Systems",,, +"786. Human Body","786.2 Organ Systems","786.2.1 Respiratory System","dsffgdg", +"787. Human Body",,,,"This chapter describes about human body" +"787. Human Body","787.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"787. Human Body","787.1 Parts of Body","787.1.1 Key parts in the head",,"xyz" +"787. Human Body","787.1 Parts of Body","787.1.2 Other parts",, +"787. Human Body","787.2 Organ Systems",,, +"787. Human Body","787.2 Organ Systems","787.2.1 Respiratory System","dsffgdg", +"788. Human Body",,,,"This chapter describes about human body" +"788. Human Body","788.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"788. Human Body","788.1 Parts of Body","788.1.1 Key parts in the head",,"xyz" +"788. Human Body","788.1 Parts of Body","788.1.2 Other parts",, +"788. Human Body","788.2 Organ Systems",,, +"788. Human Body","788.2 Organ Systems","788.2.1 Respiratory System","dsffgdg", +"789. Human Body",,,,"This chapter describes about human body" +"789. Human Body","789.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"789. Human Body","789.1 Parts of Body","789.1.1 Key parts in the head",,"xyz" +"789. Human Body","789.1 Parts of Body","789.1.2 Other parts",, +"789. Human Body","789.2 Organ Systems",,, +"789. Human Body","789.2 Organ Systems","789.2.1 Respiratory System","dsffgdg", +"790. Human Body",,,,"This chapter describes about human body" +"790. Human Body","790.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"790. Human Body","790.1 Parts of Body","790.1.1 Key parts in the head",,"xyz" +"790. Human Body","790.1 Parts of Body","790.1.2 Other parts",, +"790. Human Body","790.2 Organ Systems",,, +"790. Human Body","790.2 Organ Systems","790.2.1 Respiratory System","dsffgdg", +"791. Human Body",,,,"This chapter describes about human body" +"791. Human Body","791.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"791. Human Body","791.1 Parts of Body","791.1.1 Key parts in the head",,"xyz" +"791. Human Body","791.1 Parts of Body","791.1.2 Other parts",, +"791. Human Body","791.2 Organ Systems",,, +"791. Human Body","791.2 Organ Systems","791.2.1 Respiratory System","dsffgdg", +"792. Human Body",,,,"This chapter describes about human body" +"792. Human Body","792.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"792. Human Body","792.1 Parts of Body","792.1.1 Key parts in the head",,"xyz" +"792. Human Body","792.1 Parts of Body","792.1.2 Other parts",, +"792. Human Body","792.2 Organ Systems",,, +"792. Human Body","792.2 Organ Systems","792.2.1 Respiratory System","dsffgdg", +"793. Human Body",,,,"This chapter describes about human body" +"793. Human Body","793.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"793. Human Body","793.1 Parts of Body","793.1.1 Key parts in the head",,"xyz" +"793. Human Body","793.1 Parts of Body","793.1.2 Other parts",, +"793. Human Body","793.2 Organ Systems",,, +"793. Human Body","793.2 Organ Systems","793.2.1 Respiratory System","dsffgdg", +"794. Human Body",,,,"This chapter describes about human body" +"794. Human Body","794.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"794. Human Body","794.1 Parts of Body","794.1.1 Key parts in the head",,"xyz" +"794. Human Body","794.1 Parts of Body","794.1.2 Other parts",, +"794. Human Body","794.2 Organ Systems",,, +"794. Human Body","794.2 Organ Systems","794.2.1 Respiratory System","dsffgdg", +"795. Human Body",,,,"This chapter describes about human body" +"795. Human Body","795.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"795. Human Body","795.1 Parts of Body","795.1.1 Key parts in the head",,"xyz" +"795. Human Body","795.1 Parts of Body","795.1.2 Other parts",, +"795. Human Body","795.2 Organ Systems",,, +"795. Human Body","795.2 Organ Systems","795.2.1 Respiratory System","dsffgdg", +"796. Human Body",,,,"This chapter describes about human body" +"796. Human Body","796.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"796. Human Body","796.1 Parts of Body","796.1.1 Key parts in the head",,"xyz" +"796. Human Body","796.1 Parts of Body","796.1.2 Other parts",, +"796. Human Body","796.2 Organ Systems",,, +"796. Human Body","796.2 Organ Systems","796.2.1 Respiratory System","dsffgdg", +"797. Human Body",,,,"This chapter describes about human body" +"797. Human Body","797.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"797. Human Body","797.1 Parts of Body","797.1.1 Key parts in the head",,"xyz" +"797. Human Body","797.1 Parts of Body","797.1.2 Other parts",, +"797. Human Body","797.2 Organ Systems",,, +"797. Human Body","797.2 Organ Systems","797.2.1 Respiratory System","dsffgdg", +"798. Human Body",,,,"This chapter describes about human body" +"798. Human Body","798.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"798. Human Body","798.1 Parts of Body","798.1.1 Key parts in the head",,"xyz" +"798. Human Body","798.1 Parts of Body","798.1.2 Other parts",, +"798. Human Body","798.2 Organ Systems",,, +"798. Human Body","798.2 Organ Systems","798.2.1 Respiratory System","dsffgdg", +"799. Human Body",,,,"This chapter describes about human body" +"799. Human Body","799.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"799. Human Body","799.1 Parts of Body","799.1.1 Key parts in the head",,"xyz" +"799. Human Body","799.1 Parts of Body","799.1.2 Other parts",, +"799. Human Body","799.2 Organ Systems",,, +"799. Human Body","799.2 Organ Systems","799.2.1 Respiratory System","dsffgdg", +"800. Human Body",,,,"This chapter describes about human body" +"800. Human Body","800.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"800. Human Body","800.1 Parts of Body","800.1.1 Key parts in the head",,"xyz" +"800. Human Body","800.1 Parts of Body","800.1.2 Other parts",, +"800. Human Body","800.2 Organ Systems",,, +"800. Human Body","800.2 Organ Systems","800.2.1 Respiratory System","dsffgdg", +"801. Human Body",,,,"This chapter describes about human body" +"801. Human Body","801.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"801. Human Body","801.1 Parts of Body","801.1.1 Key parts in the head",,"xyz" +"801. Human Body","801.1 Parts of Body","801.1.2 Other parts",, +"801. Human Body","801.2 Organ Systems",,, +"801. Human Body","801.2 Organ Systems","801.2.1 Respiratory System","dsffgdg", +"802. Human Body",,,,"This chapter describes about human body" +"802. Human Body","802.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"802. Human Body","802.1 Parts of Body","802.1.1 Key parts in the head",,"xyz" +"802. Human Body","802.1 Parts of Body","802.1.2 Other parts",, +"802. Human Body","802.2 Organ Systems",,, +"802. Human Body","802.2 Organ Systems","802.2.1 Respiratory System","dsffgdg", +"803. Human Body",,,,"This chapter describes about human body" +"803. Human Body","803.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"803. Human Body","803.1 Parts of Body","803.1.1 Key parts in the head",,"xyz" +"803. Human Body","803.1 Parts of Body","803.1.2 Other parts",, +"803. Human Body","803.2 Organ Systems",,, +"803. Human Body","803.2 Organ Systems","803.2.1 Respiratory System","dsffgdg", +"804. Human Body",,,,"This chapter describes about human body" +"804. Human Body","804.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"804. Human Body","804.1 Parts of Body","804.1.1 Key parts in the head",,"xyz" +"804. Human Body","804.1 Parts of Body","804.1.2 Other parts",, +"804. Human Body","804.2 Organ Systems",,, +"804. Human Body","804.2 Organ Systems","804.2.1 Respiratory System","dsffgdg", +"805. Human Body",,,,"This chapter describes about human body" +"805. Human Body","805.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"805. Human Body","805.1 Parts of Body","805.1.1 Key parts in the head",,"xyz" +"805. Human Body","805.1 Parts of Body","805.1.2 Other parts",, +"805. Human Body","805.2 Organ Systems",,, +"805. Human Body","805.2 Organ Systems","805.2.1 Respiratory System","dsffgdg", +"806. Human Body",,,,"This chapter describes about human body" +"806. Human Body","806.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"806. Human Body","806.1 Parts of Body","806.1.1 Key parts in the head",,"xyz" +"806. Human Body","806.1 Parts of Body","806.1.2 Other parts",, +"806. Human Body","806.2 Organ Systems",,, +"806. Human Body","806.2 Organ Systems","806.2.1 Respiratory System","dsffgdg", +"807. Human Body",,,,"This chapter describes about human body" +"807. Human Body","807.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"807. Human Body","807.1 Parts of Body","807.1.1 Key parts in the head",,"xyz" +"807. Human Body","807.1 Parts of Body","807.1.2 Other parts",, +"807. Human Body","807.2 Organ Systems",,, +"807. Human Body","807.2 Organ Systems","807.2.1 Respiratory System","dsffgdg", +"808. Human Body",,,,"This chapter describes about human body" +"808. Human Body","808.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"808. Human Body","808.1 Parts of Body","808.1.1 Key parts in the head",,"xyz" +"808. Human Body","808.1 Parts of Body","808.1.2 Other parts",, +"808. Human Body","808.2 Organ Systems",,, +"808. Human Body","808.2 Organ Systems","808.2.1 Respiratory System","dsffgdg", +"809. Human Body",,,,"This chapter describes about human body" +"809. Human Body","809.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"809. Human Body","809.1 Parts of Body","809.1.1 Key parts in the head",,"xyz" +"809. Human Body","809.1 Parts of Body","809.1.2 Other parts",, +"809. Human Body","809.2 Organ Systems",,, +"809. Human Body","809.2 Organ Systems","809.2.1 Respiratory System","dsffgdg", +"810. Human Body",,,,"This chapter describes about human body" +"810. Human Body","810.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"810. Human Body","810.1 Parts of Body","810.1.1 Key parts in the head",,"xyz" +"810. Human Body","810.1 Parts of Body","810.1.2 Other parts",, +"810. Human Body","810.2 Organ Systems",,, +"810. Human Body","810.2 Organ Systems","810.2.1 Respiratory System","dsffgdg", +"811. Human Body",,,,"This chapter describes about human body" +"811. Human Body","811.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"811. Human Body","811.1 Parts of Body","811.1.1 Key parts in the head",,"xyz" +"811. Human Body","811.1 Parts of Body","811.1.2 Other parts",, +"811. Human Body","811.2 Organ Systems",,, +"811. Human Body","811.2 Organ Systems","811.2.1 Respiratory System","dsffgdg", +"812. Human Body",,,,"This chapter describes about human body" +"812. Human Body","812.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"812. Human Body","812.1 Parts of Body","812.1.1 Key parts in the head",,"xyz" +"812. Human Body","812.1 Parts of Body","812.1.2 Other parts",, +"812. Human Body","812.2 Organ Systems",,, +"812. Human Body","812.2 Organ Systems","812.2.1 Respiratory System","dsffgdg", +"813. Human Body",,,,"This chapter describes about human body" +"813. Human Body","813.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"813. Human Body","813.1 Parts of Body","813.1.1 Key parts in the head",,"xyz" +"813. Human Body","813.1 Parts of Body","813.1.2 Other parts",, +"813. Human Body","813.2 Organ Systems",,, +"813. Human Body","813.2 Organ Systems","813.2.1 Respiratory System","dsffgdg", +"814. Human Body",,,,"This chapter describes about human body" +"814. Human Body","814.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"814. Human Body","814.1 Parts of Body","814.1.1 Key parts in the head",,"xyz" +"814. Human Body","814.1 Parts of Body","814.1.2 Other parts",, +"814. Human Body","814.2 Organ Systems",,, +"814. Human Body","814.2 Organ Systems","814.2.1 Respiratory System","dsffgdg", +"815. Human Body",,,,"This chapter describes about human body" +"815. Human Body","815.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"815. Human Body","815.1 Parts of Body","815.1.1 Key parts in the head",,"xyz" +"815. Human Body","815.1 Parts of Body","815.1.2 Other parts",, +"815. Human Body","815.2 Organ Systems",,, +"815. Human Body","815.2 Organ Systems","815.2.1 Respiratory System","dsffgdg", +"816. Human Body",,,,"This chapter describes about human body" +"816. Human Body","816.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"816. Human Body","816.1 Parts of Body","816.1.1 Key parts in the head",,"xyz" +"816. Human Body","816.1 Parts of Body","816.1.2 Other parts",, +"816. Human Body","816.2 Organ Systems",,, +"816. Human Body","816.2 Organ Systems","816.2.1 Respiratory System","dsffgdg", +"817. Human Body",,,,"This chapter describes about human body" +"817. Human Body","817.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"817. Human Body","817.1 Parts of Body","817.1.1 Key parts in the head",,"xyz" +"817. Human Body","817.1 Parts of Body","817.1.2 Other parts",, +"817. Human Body","817.2 Organ Systems",,, +"817. Human Body","817.2 Organ Systems","817.2.1 Respiratory System","dsffgdg", +"818. Human Body",,,,"This chapter describes about human body" +"818. Human Body","818.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"818. Human Body","818.1 Parts of Body","818.1.1 Key parts in the head",,"xyz" +"818. Human Body","818.1 Parts of Body","818.1.2 Other parts",, +"818. Human Body","818.2 Organ Systems",,, +"818. Human Body","818.2 Organ Systems","818.2.1 Respiratory System","dsffgdg", +"819. Human Body",,,,"This chapter describes about human body" +"819. Human Body","819.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"819. Human Body","819.1 Parts of Body","819.1.1 Key parts in the head",,"xyz" +"819. Human Body","819.1 Parts of Body","819.1.2 Other parts",, +"819. Human Body","819.2 Organ Systems",,, +"819. Human Body","819.2 Organ Systems","819.2.1 Respiratory System","dsffgdg", +"820. Human Body",,,,"This chapter describes about human body" +"820. Human Body","820.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"820. Human Body","820.1 Parts of Body","820.1.1 Key parts in the head",,"xyz" +"820. Human Body","820.1 Parts of Body","820.1.2 Other parts",, +"820. Human Body","820.2 Organ Systems",,, +"820. Human Body","820.2 Organ Systems","820.2.1 Respiratory System","dsffgdg", +"821. Human Body",,,,"This chapter describes about human body" +"821. Human Body","821.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"821. Human Body","821.1 Parts of Body","821.1.1 Key parts in the head",,"xyz" +"821. Human Body","821.1 Parts of Body","821.1.2 Other parts",, +"821. Human Body","821.2 Organ Systems",,, +"821. Human Body","821.2 Organ Systems","821.2.1 Respiratory System","dsffgdg", +"822. Human Body",,,,"This chapter describes about human body" +"822. Human Body","822.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"822. Human Body","822.1 Parts of Body","822.1.1 Key parts in the head",,"xyz" +"822. Human Body","822.1 Parts of Body","822.1.2 Other parts",, +"822. Human Body","822.2 Organ Systems",,, +"822. Human Body","822.2 Organ Systems","822.2.1 Respiratory System","dsffgdg", +"823. Human Body",,,,"This chapter describes about human body" +"823. Human Body","823.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"823. Human Body","823.1 Parts of Body","823.1.1 Key parts in the head",,"xyz" +"823. Human Body","823.1 Parts of Body","823.1.2 Other parts",, +"823. Human Body","823.2 Organ Systems",,, +"823. Human Body","823.2 Organ Systems","823.2.1 Respiratory System","dsffgdg", +"824. Human Body",,,,"This chapter describes about human body" +"824. Human Body","824.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"824. Human Body","824.1 Parts of Body","824.1.1 Key parts in the head",,"xyz" +"824. Human Body","824.1 Parts of Body","824.1.2 Other parts",, +"824. Human Body","824.2 Organ Systems",,, +"824. Human Body","824.2 Organ Systems","824.2.1 Respiratory System","dsffgdg", +"825. Human Body",,,,"This chapter describes about human body" +"825. Human Body","825.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"825. Human Body","825.1 Parts of Body","825.1.1 Key parts in the head",,"xyz" +"825. Human Body","825.1 Parts of Body","825.1.2 Other parts",, +"825. Human Body","825.2 Organ Systems",,, +"825. Human Body","825.2 Organ Systems","825.2.1 Respiratory System","dsffgdg", +"826. Human Body",,,,"This chapter describes about human body" +"826. Human Body","826.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"826. Human Body","826.1 Parts of Body","826.1.1 Key parts in the head",,"xyz" +"826. Human Body","826.1 Parts of Body","826.1.2 Other parts",, +"826. Human Body","826.2 Organ Systems",,, +"826. Human Body","826.2 Organ Systems","826.2.1 Respiratory System","dsffgdg", +"827. Human Body",,,,"This chapter describes about human body" +"827. Human Body","827.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"827. Human Body","827.1 Parts of Body","827.1.1 Key parts in the head",,"xyz" +"827. Human Body","827.1 Parts of Body","827.1.2 Other parts",, +"827. Human Body","827.2 Organ Systems",,, +"827. Human Body","827.2 Organ Systems","827.2.1 Respiratory System","dsffgdg", +"828. Human Body",,,,"This chapter describes about human body" +"828. Human Body","828.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"828. Human Body","828.1 Parts of Body","828.1.1 Key parts in the head",,"xyz" +"828. Human Body","828.1 Parts of Body","828.1.2 Other parts",, +"828. Human Body","828.2 Organ Systems",,, +"828. Human Body","828.2 Organ Systems","828.2.1 Respiratory System","dsffgdg", +"829. Human Body",,,,"This chapter describes about human body" +"829. Human Body","829.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"829. Human Body","829.1 Parts of Body","829.1.1 Key parts in the head",,"xyz" +"829. Human Body","829.1 Parts of Body","829.1.2 Other parts",, +"829. Human Body","829.2 Organ Systems",,, +"829. Human Body","829.2 Organ Systems","829.2.1 Respiratory System","dsffgdg", +"830. Human Body",,,,"This chapter describes about human body" +"830. Human Body","830.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"830. Human Body","830.1 Parts of Body","830.1.1 Key parts in the head",,"xyz" +"830. Human Body","830.1 Parts of Body","830.1.2 Other parts",, +"830. Human Body","830.2 Organ Systems",,, +"830. Human Body","830.2 Organ Systems","830.2.1 Respiratory System","dsffgdg", +"831. Human Body",,,,"This chapter describes about human body" +"831. Human Body","831.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"831. Human Body","831.1 Parts of Body","831.1.1 Key parts in the head",,"xyz" +"831. Human Body","831.1 Parts of Body","831.1.2 Other parts",, +"831. Human Body","831.2 Organ Systems",,, +"831. Human Body","831.2 Organ Systems","831.2.1 Respiratory System","dsffgdg", +"832. Human Body",,,,"This chapter describes about human body" +"832. Human Body","832.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"832. Human Body","832.1 Parts of Body","832.1.1 Key parts in the head",,"xyz" +"832. Human Body","832.1 Parts of Body","832.1.2 Other parts",, +"832. Human Body","832.2 Organ Systems",,, +"832. Human Body","832.2 Organ Systems","832.2.1 Respiratory System","dsffgdg", +"833. Human Body",,,,"This chapter describes about human body" +"833. Human Body","833.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"833. Human Body","833.1 Parts of Body","833.1.1 Key parts in the head",,"xyz" +"833. Human Body","833.1 Parts of Body","833.1.2 Other parts",, +"833. Human Body","833.2 Organ Systems",,, +"833. Human Body","833.2 Organ Systems","833.2.1 Respiratory System","dsffgdg", +"834. Human Body",,,,"This chapter describes about human body" +"834. Human Body","834.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"834. Human Body","834.1 Parts of Body","834.1.1 Key parts in the head",,"xyz" +"834. Human Body","834.1 Parts of Body","834.1.2 Other parts",, +"834. Human Body","834.2 Organ Systems",,, +"834. Human Body","834.2 Organ Systems","834.2.1 Respiratory System","dsffgdg", +"835. Human Body",,,,"This chapter describes about human body" +"835. Human Body","835.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"835. Human Body","835.1 Parts of Body","835.1.1 Key parts in the head",,"xyz" +"835. Human Body","835.1 Parts of Body","835.1.2 Other parts",, +"835. Human Body","835.2 Organ Systems",,, +"835. Human Body","835.2 Organ Systems","835.2.1 Respiratory System","dsffgdg", +"836. Human Body",,,,"This chapter describes about human body" +"836. Human Body","836.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"836. Human Body","836.1 Parts of Body","836.1.1 Key parts in the head",,"xyz" +"836. Human Body","836.1 Parts of Body","836.1.2 Other parts",, +"836. Human Body","836.2 Organ Systems",,, +"836. Human Body","836.2 Organ Systems","836.2.1 Respiratory System","dsffgdg", +"837. Human Body",,,,"This chapter describes about human body" +"837. Human Body","837.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"837. Human Body","837.1 Parts of Body","837.1.1 Key parts in the head",,"xyz" +"837. Human Body","837.1 Parts of Body","837.1.2 Other parts",, +"837. Human Body","837.2 Organ Systems",,, +"837. Human Body","837.2 Organ Systems","837.2.1 Respiratory System","dsffgdg", +"838. Human Body",,,,"This chapter describes about human body" +"838. Human Body","838.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"838. Human Body","838.1 Parts of Body","838.1.1 Key parts in the head",,"xyz" +"838. Human Body","838.1 Parts of Body","838.1.2 Other parts",, +"838. Human Body","838.2 Organ Systems",,, +"838. Human Body","838.2 Organ Systems","838.2.1 Respiratory System","dsffgdg", +"839. Human Body",,,,"This chapter describes about human body" +"839. Human Body","839.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"839. Human Body","839.1 Parts of Body","839.1.1 Key parts in the head",,"xyz" +"839. Human Body","839.1 Parts of Body","839.1.2 Other parts",, +"839. Human Body","839.2 Organ Systems",,, +"839. Human Body","839.2 Organ Systems","839.2.1 Respiratory System","dsffgdg", +"840. Human Body",,,,"This chapter describes about human body" +"840. Human Body","840.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"840. Human Body","840.1 Parts of Body","840.1.1 Key parts in the head",,"xyz" +"840. Human Body","840.1 Parts of Body","840.1.2 Other parts",, +"840. Human Body","840.2 Organ Systems",,, +"840. Human Body","840.2 Organ Systems","840.2.1 Respiratory System","dsffgdg", +"841. Human Body",,,,"This chapter describes about human body" +"841. Human Body","841.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"841. Human Body","841.1 Parts of Body","841.1.1 Key parts in the head",,"xyz" +"841. Human Body","841.1 Parts of Body","841.1.2 Other parts",, +"841. Human Body","841.2 Organ Systems",,, +"841. Human Body","841.2 Organ Systems","841.2.1 Respiratory System","dsffgdg", +"842. Human Body",,,,"This chapter describes about human body" +"842. Human Body","842.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"842. Human Body","842.1 Parts of Body","842.1.1 Key parts in the head",,"xyz" +"842. Human Body","842.1 Parts of Body","842.1.2 Other parts",, +"842. Human Body","842.2 Organ Systems",,, +"842. Human Body","842.2 Organ Systems","842.2.1 Respiratory System","dsffgdg", +"843. Human Body",,,,"This chapter describes about human body" +"843. Human Body","843.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"843. Human Body","843.1 Parts of Body","843.1.1 Key parts in the head",,"xyz" +"843. Human Body","843.1 Parts of Body","843.1.2 Other parts",, +"843. Human Body","843.2 Organ Systems",,, +"843. Human Body","843.2 Organ Systems","843.2.1 Respiratory System","dsffgdg", +"844. Human Body",,,,"This chapter describes about human body" +"844. Human Body","844.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"844. Human Body","844.1 Parts of Body","844.1.1 Key parts in the head",,"xyz" +"844. Human Body","844.1 Parts of Body","844.1.2 Other parts",, +"844. Human Body","844.2 Organ Systems",,, +"844. Human Body","844.2 Organ Systems","844.2.1 Respiratory System","dsffgdg", +"845. Human Body",,,,"This chapter describes about human body" +"845. Human Body","845.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"845. Human Body","845.1 Parts of Body","845.1.1 Key parts in the head",,"xyz" +"845. Human Body","845.1 Parts of Body","845.1.2 Other parts",, +"845. Human Body","845.2 Organ Systems",,, +"845. Human Body","845.2 Organ Systems","845.2.1 Respiratory System","dsffgdg", +"846. Human Body",,,,"This chapter describes about human body" +"846. Human Body","846.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"846. Human Body","846.1 Parts of Body","846.1.1 Key parts in the head",,"xyz" +"846. Human Body","846.1 Parts of Body","846.1.2 Other parts",, +"846. Human Body","846.2 Organ Systems",,, +"846. Human Body","846.2 Organ Systems","846.2.1 Respiratory System","dsffgdg", +"847. Human Body",,,,"This chapter describes about human body" +"847. Human Body","847.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"847. Human Body","847.1 Parts of Body","847.1.1 Key parts in the head",,"xyz" +"847. Human Body","847.1 Parts of Body","847.1.2 Other parts",, +"847. Human Body","847.2 Organ Systems",,, +"847. Human Body","847.2 Organ Systems","847.2.1 Respiratory System","dsffgdg", +"848. Human Body",,,,"This chapter describes about human body" +"848. Human Body","848.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"848. Human Body","848.1 Parts of Body","848.1.1 Key parts in the head",,"xyz" +"848. Human Body","848.1 Parts of Body","848.1.2 Other parts",, +"848. Human Body","848.2 Organ Systems",,, +"848. Human Body","848.2 Organ Systems","848.2.1 Respiratory System","dsffgdg", +"849. Human Body",,,,"This chapter describes about human body" +"849. Human Body","849.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"849. Human Body","849.1 Parts of Body","849.1.1 Key parts in the head",,"xyz" +"849. Human Body","849.1 Parts of Body","849.1.2 Other parts",, +"849. Human Body","849.2 Organ Systems",,, +"849. Human Body","849.2 Organ Systems","849.2.1 Respiratory System","dsffgdg", +"850. Human Body",,,,"This chapter describes about human body" +"850. Human Body","850.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"850. Human Body","850.1 Parts of Body","850.1.1 Key parts in the head",,"xyz" +"850. Human Body","850.1 Parts of Body","850.1.2 Other parts",, +"850. Human Body","850.2 Organ Systems",,, +"850. Human Body","850.2 Organ Systems","850.2.1 Respiratory System","dsffgdg", +"851. Human Body",,,,"This chapter describes about human body" +"851. Human Body","851.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"851. Human Body","851.1 Parts of Body","851.1.1 Key parts in the head",,"xyz" +"851. Human Body","851.1 Parts of Body","851.1.2 Other parts",, +"851. Human Body","851.2 Organ Systems",,, +"851. Human Body","851.2 Organ Systems","851.2.1 Respiratory System","dsffgdg", +"852. Human Body",,,,"This chapter describes about human body" +"852. Human Body","852.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"852. Human Body","852.1 Parts of Body","852.1.1 Key parts in the head",,"xyz" +"852. Human Body","852.1 Parts of Body","852.1.2 Other parts",, +"852. Human Body","852.2 Organ Systems",,, +"852. Human Body","852.2 Organ Systems","852.2.1 Respiratory System","dsffgdg", +"853. Human Body",,,,"This chapter describes about human body" +"853. Human Body","853.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"853. Human Body","853.1 Parts of Body","853.1.1 Key parts in the head",,"xyz" +"853. Human Body","853.1 Parts of Body","853.1.2 Other parts",, +"853. Human Body","853.2 Organ Systems",,, +"853. Human Body","853.2 Organ Systems","853.2.1 Respiratory System","dsffgdg", +"854. Human Body",,,,"This chapter describes about human body" +"854. Human Body","854.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"854. Human Body","854.1 Parts of Body","854.1.1 Key parts in the head",,"xyz" +"854. Human Body","854.1 Parts of Body","854.1.2 Other parts",, +"854. Human Body","854.2 Organ Systems",,, +"854. Human Body","854.2 Organ Systems","854.2.1 Respiratory System","dsffgdg", +"855. Human Body",,,,"This chapter describes about human body" +"855. Human Body","855.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"855. Human Body","855.1 Parts of Body","855.1.1 Key parts in the head",,"xyz" +"855. Human Body","855.1 Parts of Body","855.1.2 Other parts",, +"855. Human Body","855.2 Organ Systems",,, +"855. Human Body","855.2 Organ Systems","855.2.1 Respiratory System","dsffgdg", +"856. Human Body",,,,"This chapter describes about human body" +"856. Human Body","856.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"856. Human Body","856.1 Parts of Body","856.1.1 Key parts in the head",,"xyz" +"856. Human Body","856.1 Parts of Body","856.1.2 Other parts",, +"856. Human Body","856.2 Organ Systems",,, +"856. Human Body","856.2 Organ Systems","856.2.1 Respiratory System","dsffgdg", +"857. Human Body",,,,"This chapter describes about human body" +"857. Human Body","857.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"857. Human Body","857.1 Parts of Body","857.1.1 Key parts in the head",,"xyz" +"857. Human Body","857.1 Parts of Body","857.1.2 Other parts",, +"857. Human Body","857.2 Organ Systems",,, +"857. Human Body","857.2 Organ Systems","857.2.1 Respiratory System","dsffgdg", +"858. Human Body",,,,"This chapter describes about human body" +"858. Human Body","858.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"858. Human Body","858.1 Parts of Body","858.1.1 Key parts in the head",,"xyz" +"858. Human Body","858.1 Parts of Body","858.1.2 Other parts",, +"858. Human Body","858.2 Organ Systems",,, +"858. Human Body","858.2 Organ Systems","858.2.1 Respiratory System","dsffgdg", +"859. Human Body",,,,"This chapter describes about human body" +"859. Human Body","859.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"859. Human Body","859.1 Parts of Body","859.1.1 Key parts in the head",,"xyz" +"859. Human Body","859.1 Parts of Body","859.1.2 Other parts",, +"859. Human Body","859.2 Organ Systems",,, +"859. Human Body","859.2 Organ Systems","859.2.1 Respiratory System","dsffgdg", +"860. Human Body",,,,"This chapter describes about human body" +"860. Human Body","860.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"860. Human Body","860.1 Parts of Body","860.1.1 Key parts in the head",,"xyz" +"860. Human Body","860.1 Parts of Body","860.1.2 Other parts",, +"860. Human Body","860.2 Organ Systems",,, +"860. Human Body","860.2 Organ Systems","860.2.1 Respiratory System","dsffgdg", +"861. Human Body",,,,"This chapter describes about human body" +"861. Human Body","861.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"861. Human Body","861.1 Parts of Body","861.1.1 Key parts in the head",,"xyz" +"861. Human Body","861.1 Parts of Body","861.1.2 Other parts",, +"861. Human Body","861.2 Organ Systems",,, +"861. Human Body","861.2 Organ Systems","861.2.1 Respiratory System","dsffgdg", +"862. Human Body",,,,"This chapter describes about human body" +"862. Human Body","862.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"862. Human Body","862.1 Parts of Body","862.1.1 Key parts in the head",,"xyz" +"862. Human Body","862.1 Parts of Body","862.1.2 Other parts",, +"862. Human Body","862.2 Organ Systems",,, +"862. Human Body","862.2 Organ Systems","862.2.1 Respiratory System","dsffgdg", +"863. Human Body",,,,"This chapter describes about human body" +"863. Human Body","863.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"863. Human Body","863.1 Parts of Body","863.1.1 Key parts in the head",,"xyz" +"863. Human Body","863.1 Parts of Body","863.1.2 Other parts",, +"863. Human Body","863.2 Organ Systems",,, +"863. Human Body","863.2 Organ Systems","863.2.1 Respiratory System","dsffgdg", +"864. Human Body",,,,"This chapter describes about human body" +"864. Human Body","864.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"864. Human Body","864.1 Parts of Body","864.1.1 Key parts in the head",,"xyz" +"864. Human Body","864.1 Parts of Body","864.1.2 Other parts",, +"864. Human Body","864.2 Organ Systems",,, +"864. Human Body","864.2 Organ Systems","864.2.1 Respiratory System","dsffgdg", +"865. Human Body",,,,"This chapter describes about human body" +"865. Human Body","865.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"865. Human Body","865.1 Parts of Body","865.1.1 Key parts in the head",,"xyz" +"865. Human Body","865.1 Parts of Body","865.1.2 Other parts",, +"865. Human Body","865.2 Organ Systems",,, +"865. Human Body","865.2 Organ Systems","865.2.1 Respiratory System","dsffgdg", +"866. Human Body",,,,"This chapter describes about human body" +"866. Human Body","866.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"866. Human Body","866.1 Parts of Body","866.1.1 Key parts in the head",,"xyz" +"866. Human Body","866.1 Parts of Body","866.1.2 Other parts",, +"866. Human Body","866.2 Organ Systems",,, +"866. Human Body","866.2 Organ Systems","866.2.1 Respiratory System","dsffgdg", +"867. Human Body",,,,"This chapter describes about human body" +"867. Human Body","867.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"867. Human Body","867.1 Parts of Body","867.1.1 Key parts in the head",,"xyz" +"867. Human Body","867.1 Parts of Body","867.1.2 Other parts",, +"867. Human Body","867.2 Organ Systems",,, +"867. Human Body","867.2 Organ Systems","867.2.1 Respiratory System","dsffgdg", +"868. Human Body",,,,"This chapter describes about human body" +"868. Human Body","868.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"868. Human Body","868.1 Parts of Body","868.1.1 Key parts in the head",,"xyz" +"868. Human Body","868.1 Parts of Body","868.1.2 Other parts",, +"868. Human Body","868.2 Organ Systems",,, +"868. Human Body","868.2 Organ Systems","868.2.1 Respiratory System","dsffgdg", +"869. Human Body",,,,"This chapter describes about human body" +"869. Human Body","869.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"869. Human Body","869.1 Parts of Body","869.1.1 Key parts in the head",,"xyz" +"869. Human Body","869.1 Parts of Body","869.1.2 Other parts",, +"869. Human Body","869.2 Organ Systems",,, +"869. Human Body","869.2 Organ Systems","869.2.1 Respiratory System","dsffgdg", +"870. Human Body",,,,"This chapter describes about human body" +"870. Human Body","870.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"870. Human Body","870.1 Parts of Body","870.1.1 Key parts in the head",,"xyz" +"870. Human Body","870.1 Parts of Body","870.1.2 Other parts",, +"870. Human Body","870.2 Organ Systems",,, +"870. Human Body","870.2 Organ Systems","870.2.1 Respiratory System","dsffgdg", +"871. Human Body",,,,"This chapter describes about human body" +"871. Human Body","871.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"871. Human Body","871.1 Parts of Body","871.1.1 Key parts in the head",,"xyz" +"871. Human Body","871.1 Parts of Body","871.1.2 Other parts",, +"871. Human Body","871.2 Organ Systems",,, +"871. Human Body","871.2 Organ Systems","871.2.1 Respiratory System","dsffgdg", +"872. Human Body",,,,"This chapter describes about human body" +"872. Human Body","872.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"872. Human Body","872.1 Parts of Body","872.1.1 Key parts in the head",,"xyz" +"872. Human Body","872.1 Parts of Body","872.1.2 Other parts",, +"872. Human Body","872.2 Organ Systems",,, +"872. Human Body","872.2 Organ Systems","872.2.1 Respiratory System","dsffgdg", +"873. Human Body",,,,"This chapter describes about human body" +"873. Human Body","873.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"873. Human Body","873.1 Parts of Body","873.1.1 Key parts in the head",,"xyz" +"873. Human Body","873.1 Parts of Body","873.1.2 Other parts",, +"873. Human Body","873.2 Organ Systems",,, +"873. Human Body","873.2 Organ Systems","873.2.1 Respiratory System","dsffgdg", +"874. Human Body",,,,"This chapter describes about human body" +"874. Human Body","874.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"874. Human Body","874.1 Parts of Body","874.1.1 Key parts in the head",,"xyz" +"874. Human Body","874.1 Parts of Body","874.1.2 Other parts",, +"874. Human Body","874.2 Organ Systems",,, +"874. Human Body","874.2 Organ Systems","874.2.1 Respiratory System","dsffgdg", +"875. Human Body",,,,"This chapter describes about human body" +"875. Human Body","875.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"875. Human Body","875.1 Parts of Body","875.1.1 Key parts in the head",,"xyz" +"875. Human Body","875.1 Parts of Body","875.1.2 Other parts",, +"875. Human Body","875.2 Organ Systems",,, +"875. Human Body","875.2 Organ Systems","875.2.1 Respiratory System","dsffgdg", +"876. Human Body",,,,"This chapter describes about human body" +"876. Human Body","876.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"876. Human Body","876.1 Parts of Body","876.1.1 Key parts in the head",,"xyz" +"876. Human Body","876.1 Parts of Body","876.1.2 Other parts",, +"876. Human Body","876.2 Organ Systems",,, +"876. Human Body","876.2 Organ Systems","876.2.1 Respiratory System","dsffgdg", +"877. Human Body",,,,"This chapter describes about human body" +"877. Human Body","877.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"877. Human Body","877.1 Parts of Body","877.1.1 Key parts in the head",,"xyz" +"877. Human Body","877.1 Parts of Body","877.1.2 Other parts",, +"877. Human Body","877.2 Organ Systems",,, +"877. Human Body","877.2 Organ Systems","877.2.1 Respiratory System","dsffgdg", +"878. Human Body",,,,"This chapter describes about human body" +"878. Human Body","878.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"878. Human Body","878.1 Parts of Body","878.1.1 Key parts in the head",,"xyz" +"878. Human Body","878.1 Parts of Body","878.1.2 Other parts",, +"878. Human Body","878.2 Organ Systems",,, +"878. Human Body","878.2 Organ Systems","878.2.1 Respiratory System","dsffgdg", +"879. Human Body",,,,"This chapter describes about human body" +"879. Human Body","879.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"879. Human Body","879.1 Parts of Body","879.1.1 Key parts in the head",,"xyz" +"879. Human Body","879.1 Parts of Body","879.1.2 Other parts",, +"879. Human Body","879.2 Organ Systems",,, +"879. Human Body","879.2 Organ Systems","879.2.1 Respiratory System","dsffgdg", +"880. Human Body",,,,"This chapter describes about human body" +"880. Human Body","880.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"880. Human Body","880.1 Parts of Body","880.1.1 Key parts in the head",,"xyz" +"880. Human Body","880.1 Parts of Body","880.1.2 Other parts",, +"880. Human Body","880.2 Organ Systems",,, +"880. Human Body","880.2 Organ Systems","880.2.1 Respiratory System","dsffgdg", +"881. Human Body",,,,"This chapter describes about human body" +"881. Human Body","881.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"881. Human Body","881.1 Parts of Body","881.1.1 Key parts in the head",,"xyz" +"881. Human Body","881.1 Parts of Body","881.1.2 Other parts",, +"881. Human Body","881.2 Organ Systems",,, +"881. Human Body","881.2 Organ Systems","881.2.1 Respiratory System","dsffgdg", +"882. Human Body",,,,"This chapter describes about human body" +"882. Human Body","882.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"882. Human Body","882.1 Parts of Body","882.1.1 Key parts in the head",,"xyz" +"882. Human Body","882.1 Parts of Body","882.1.2 Other parts",, +"882. Human Body","882.2 Organ Systems",,, +"882. Human Body","882.2 Organ Systems","882.2.1 Respiratory System","dsffgdg", +"883. Human Body",,,,"This chapter describes about human body" +"883. Human Body","883.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"883. Human Body","883.1 Parts of Body","883.1.1 Key parts in the head",,"xyz" +"883. Human Body","883.1 Parts of Body","883.1.2 Other parts",, +"883. Human Body","883.2 Organ Systems",,, +"883. Human Body","883.2 Organ Systems","883.2.1 Respiratory System","dsffgdg", +"884. Human Body",,,,"This chapter describes about human body" +"884. Human Body","884.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"884. Human Body","884.1 Parts of Body","884.1.1 Key parts in the head",,"xyz" +"884. Human Body","884.1 Parts of Body","884.1.2 Other parts",, +"884. Human Body","884.2 Organ Systems",,, +"884. Human Body","884.2 Organ Systems","884.2.1 Respiratory System","dsffgdg", +"885. Human Body",,,,"This chapter describes about human body" +"885. Human Body","885.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"885. Human Body","885.1 Parts of Body","885.1.1 Key parts in the head",,"xyz" +"885. Human Body","885.1 Parts of Body","885.1.2 Other parts",, +"885. Human Body","885.2 Organ Systems",,, +"885. Human Body","885.2 Organ Systems","885.2.1 Respiratory System","dsffgdg", +"886. Human Body",,,,"This chapter describes about human body" +"886. Human Body","886.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"886. Human Body","886.1 Parts of Body","886.1.1 Key parts in the head",,"xyz" +"886. Human Body","886.1 Parts of Body","886.1.2 Other parts",, +"886. Human Body","886.2 Organ Systems",,, +"886. Human Body","886.2 Organ Systems","886.2.1 Respiratory System","dsffgdg", +"887. Human Body",,,,"This chapter describes about human body" +"887. Human Body","887.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"887. Human Body","887.1 Parts of Body","887.1.1 Key parts in the head",,"xyz" +"887. Human Body","887.1 Parts of Body","887.1.2 Other parts",, +"887. Human Body","887.2 Organ Systems",,, +"887. Human Body","887.2 Organ Systems","887.2.1 Respiratory System","dsffgdg", +"888. Human Body",,,,"This chapter describes about human body" +"888. Human Body","888.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"888. Human Body","888.1 Parts of Body","888.1.1 Key parts in the head",,"xyz" +"888. Human Body","888.1 Parts of Body","888.1.2 Other parts",, +"888. Human Body","888.2 Organ Systems",,, +"888. Human Body","888.2 Organ Systems","888.2.1 Respiratory System","dsffgdg", +"889. Human Body",,,,"This chapter describes about human body" +"889. Human Body","889.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"889. Human Body","889.1 Parts of Body","889.1.1 Key parts in the head",,"xyz" +"889. Human Body","889.1 Parts of Body","889.1.2 Other parts",, +"889. Human Body","889.2 Organ Systems",,, +"889. Human Body","889.2 Organ Systems","889.2.1 Respiratory System","dsffgdg", +"890. Human Body",,,,"This chapter describes about human body" +"890. Human Body","890.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"890. Human Body","890.1 Parts of Body","890.1.1 Key parts in the head",,"xyz" +"890. Human Body","890.1 Parts of Body","890.1.2 Other parts",, +"890. Human Body","890.2 Organ Systems",,, +"890. Human Body","890.2 Organ Systems","890.2.1 Respiratory System","dsffgdg", +"891. Human Body",,,,"This chapter describes about human body" +"891. Human Body","891.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"891. Human Body","891.1 Parts of Body","891.1.1 Key parts in the head",,"xyz" +"891. Human Body","891.1 Parts of Body","891.1.2 Other parts",, +"891. Human Body","891.2 Organ Systems",,, +"891. Human Body","891.2 Organ Systems","891.2.1 Respiratory System","dsffgdg", +"892. Human Body",,,,"This chapter describes about human body" +"892. Human Body","892.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"892. Human Body","892.1 Parts of Body","892.1.1 Key parts in the head",,"xyz" +"892. Human Body","892.1 Parts of Body","892.1.2 Other parts",, +"892. Human Body","892.2 Organ Systems",,, +"892. Human Body","892.2 Organ Systems","892.2.1 Respiratory System","dsffgdg", +"893. Human Body",,,,"This chapter describes about human body" +"893. Human Body","893.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"893. Human Body","893.1 Parts of Body","893.1.1 Key parts in the head",,"xyz" +"893. Human Body","893.1 Parts of Body","893.1.2 Other parts",, +"893. Human Body","893.2 Organ Systems",,, +"893. Human Body","893.2 Organ Systems","893.2.1 Respiratory System","dsffgdg", +"894. Human Body",,,,"This chapter describes about human body" +"894. Human Body","894.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"894. Human Body","894.1 Parts of Body","894.1.1 Key parts in the head",,"xyz" +"894. Human Body","894.1 Parts of Body","894.1.2 Other parts",, +"894. Human Body","894.2 Organ Systems",,, +"894. Human Body","894.2 Organ Systems","894.2.1 Respiratory System","dsffgdg", +"895. Human Body",,,,"This chapter describes about human body" +"895. Human Body","895.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"895. Human Body","895.1 Parts of Body","895.1.1 Key parts in the head",,"xyz" +"895. Human Body","895.1 Parts of Body","895.1.2 Other parts",, +"895. Human Body","895.2 Organ Systems",,, +"895. Human Body","895.2 Organ Systems","895.2.1 Respiratory System","dsffgdg", +"896. Human Body",,,,"This chapter describes about human body" +"896. Human Body","896.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"896. Human Body","896.1 Parts of Body","896.1.1 Key parts in the head",,"xyz" +"896. Human Body","896.1 Parts of Body","896.1.2 Other parts",, +"896. Human Body","896.2 Organ Systems",,, +"896. Human Body","896.2 Organ Systems","896.2.1 Respiratory System","dsffgdg", +"897. Human Body",,,,"This chapter describes about human body" +"897. Human Body","897.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"897. Human Body","897.1 Parts of Body","897.1.1 Key parts in the head",,"xyz" +"897. Human Body","897.1 Parts of Body","897.1.2 Other parts",, +"897. Human Body","897.2 Organ Systems",,, +"897. Human Body","897.2 Organ Systems","897.2.1 Respiratory System","dsffgdg", +"898. Human Body",,,,"This chapter describes about human body" +"898. Human Body","898.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"898. Human Body","898.1 Parts of Body","898.1.1 Key parts in the head",,"xyz" +"898. Human Body","898.1 Parts of Body","898.1.2 Other parts",, +"898. Human Body","898.2 Organ Systems",,, +"898. Human Body","898.2 Organ Systems","898.2.1 Respiratory System","dsffgdg", +"899. Human Body",,,,"This chapter describes about human body" +"899. Human Body","899.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"899. Human Body","899.1 Parts of Body","899.1.1 Key parts in the head",,"xyz" +"899. Human Body","899.1 Parts of Body","899.1.2 Other parts",, +"899. Human Body","899.2 Organ Systems",,, +"899. Human Body","899.2 Organ Systems","899.2.1 Respiratory System","dsffgdg", +"900. Human Body",,,,"This chapter describes about human body" +"900. Human Body","900.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"900. Human Body","900.1 Parts of Body","900.1.1 Key parts in the head",,"xyz" +"900. Human Body","900.1 Parts of Body","900.1.2 Other parts",, +"900. Human Body","900.2 Organ Systems",,, +"900. Human Body","900.2 Organ Systems","900.2.1 Respiratory System","dsffgdg", +"901. Human Body",,,,"This chapter describes about human body" +"901. Human Body","901.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"901. Human Body","901.1 Parts of Body","901.1.1 Key parts in the head",,"xyz" +"901. Human Body","901.1 Parts of Body","901.1.2 Other parts",, +"901. Human Body","901.2 Organ Systems",,, +"901. Human Body","901.2 Organ Systems","901.2.1 Respiratory System","dsffgdg", +"902. Human Body",,,,"This chapter describes about human body" +"902. Human Body","902.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"902. Human Body","902.1 Parts of Body","902.1.1 Key parts in the head",,"xyz" +"902. Human Body","902.1 Parts of Body","902.1.2 Other parts",, +"902. Human Body","902.2 Organ Systems",,, +"902. Human Body","902.2 Organ Systems","902.2.1 Respiratory System","dsffgdg", +"903. Human Body",,,,"This chapter describes about human body" +"903. Human Body","903.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"903. Human Body","903.1 Parts of Body","903.1.1 Key parts in the head",,"xyz" +"903. Human Body","903.1 Parts of Body","903.1.2 Other parts",, +"903. Human Body","903.2 Organ Systems",,, +"903. Human Body","903.2 Organ Systems","903.2.1 Respiratory System","dsffgdg", +"904. Human Body",,,,"This chapter describes about human body" +"904. Human Body","904.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"904. Human Body","904.1 Parts of Body","904.1.1 Key parts in the head",,"xyz" +"904. Human Body","904.1 Parts of Body","904.1.2 Other parts",, +"904. Human Body","904.2 Organ Systems",,, +"904. Human Body","904.2 Organ Systems","904.2.1 Respiratory System","dsffgdg", +"905. Human Body",,,,"This chapter describes about human body" +"905. Human Body","905.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"905. Human Body","905.1 Parts of Body","905.1.1 Key parts in the head",,"xyz" +"905. Human Body","905.1 Parts of Body","905.1.2 Other parts",, +"905. Human Body","905.2 Organ Systems",,, +"905. Human Body","905.2 Organ Systems","905.2.1 Respiratory System","dsffgdg", +"906. Human Body",,,,"This chapter describes about human body" +"906. Human Body","906.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"906. Human Body","906.1 Parts of Body","906.1.1 Key parts in the head",,"xyz" +"906. Human Body","906.1 Parts of Body","906.1.2 Other parts",, +"906. Human Body","906.2 Organ Systems",,, +"906. Human Body","906.2 Organ Systems","906.2.1 Respiratory System","dsffgdg", +"907. Human Body",,,,"This chapter describes about human body" +"907. Human Body","907.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"907. Human Body","907.1 Parts of Body","907.1.1 Key parts in the head",,"xyz" +"907. Human Body","907.1 Parts of Body","907.1.2 Other parts",, +"907. Human Body","907.2 Organ Systems",,, +"907. Human Body","907.2 Organ Systems","907.2.1 Respiratory System","dsffgdg", +"908. Human Body",,,,"This chapter describes about human body" +"908. Human Body","908.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"908. Human Body","908.1 Parts of Body","908.1.1 Key parts in the head",,"xyz" +"908. Human Body","908.1 Parts of Body","908.1.2 Other parts",, +"908. Human Body","908.2 Organ Systems",,, +"908. Human Body","908.2 Organ Systems","908.2.1 Respiratory System","dsffgdg", +"909. Human Body",,,,"This chapter describes about human body" +"909. Human Body","909.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"909. Human Body","909.1 Parts of Body","909.1.1 Key parts in the head",,"xyz" +"909. Human Body","909.1 Parts of Body","909.1.2 Other parts",, +"909. Human Body","909.2 Organ Systems",,, +"909. Human Body","909.2 Organ Systems","909.2.1 Respiratory System","dsffgdg", +"910. Human Body",,,,"This chapter describes about human body" +"910. Human Body","910.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"910. Human Body","910.1 Parts of Body","910.1.1 Key parts in the head",,"xyz" +"910. Human Body","910.1 Parts of Body","910.1.2 Other parts",, +"910. Human Body","910.2 Organ Systems",,, +"910. Human Body","910.2 Organ Systems","910.2.1 Respiratory System","dsffgdg", +"911. Human Body",,,,"This chapter describes about human body" +"911. Human Body","911.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"911. Human Body","911.1 Parts of Body","911.1.1 Key parts in the head",,"xyz" +"911. Human Body","911.1 Parts of Body","911.1.2 Other parts",, +"911. Human Body","911.2 Organ Systems",,, +"911. Human Body","911.2 Organ Systems","911.2.1 Respiratory System","dsffgdg", +"912. Human Body",,,,"This chapter describes about human body" +"912. Human Body","912.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"912. Human Body","912.1 Parts of Body","912.1.1 Key parts in the head",,"xyz" +"912. Human Body","912.1 Parts of Body","912.1.2 Other parts",, +"912. Human Body","912.2 Organ Systems",,, +"912. Human Body","912.2 Organ Systems","912.2.1 Respiratory System","dsffgdg", +"913. Human Body",,,,"This chapter describes about human body" +"913. Human Body","913.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"913. Human Body","913.1 Parts of Body","913.1.1 Key parts in the head",,"xyz" +"913. Human Body","913.1 Parts of Body","913.1.2 Other parts",, +"913. Human Body","913.2 Organ Systems",,, +"913. Human Body","913.2 Organ Systems","913.2.1 Respiratory System","dsffgdg", +"914. Human Body",,,,"This chapter describes about human body" +"914. Human Body","914.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"914. Human Body","914.1 Parts of Body","914.1.1 Key parts in the head",,"xyz" +"914. Human Body","914.1 Parts of Body","914.1.2 Other parts",, +"914. Human Body","914.2 Organ Systems",,, +"914. Human Body","914.2 Organ Systems","914.2.1 Respiratory System","dsffgdg", +"915. Human Body",,,,"This chapter describes about human body" +"915. Human Body","915.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"915. Human Body","915.1 Parts of Body","915.1.1 Key parts in the head",,"xyz" +"915. Human Body","915.1 Parts of Body","915.1.2 Other parts",, +"915. Human Body","915.2 Organ Systems",,, +"915. Human Body","915.2 Organ Systems","915.2.1 Respiratory System","dsffgdg", +"916. Human Body",,,,"This chapter describes about human body" +"916. Human Body","916.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"916. Human Body","916.1 Parts of Body","916.1.1 Key parts in the head",,"xyz" +"916. Human Body","916.1 Parts of Body","916.1.2 Other parts",, +"916. Human Body","916.2 Organ Systems",,, +"916. Human Body","916.2 Organ Systems","916.2.1 Respiratory System","dsffgdg", +"917. Human Body",,,,"This chapter describes about human body" +"917. Human Body","917.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"917. Human Body","917.1 Parts of Body","917.1.1 Key parts in the head",,"xyz" +"917. Human Body","917.1 Parts of Body","917.1.2 Other parts",, +"917. Human Body","917.2 Organ Systems",,, +"917. Human Body","917.2 Organ Systems","917.2.1 Respiratory System","dsffgdg", +"918. Human Body",,,,"This chapter describes about human body" +"918. Human Body","918.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"918. Human Body","918.1 Parts of Body","918.1.1 Key parts in the head",,"xyz" +"918. Human Body","918.1 Parts of Body","918.1.2 Other parts",, +"918. Human Body","918.2 Organ Systems",,, +"918. Human Body","918.2 Organ Systems","918.2.1 Respiratory System","dsffgdg", +"919. Human Body",,,,"This chapter describes about human body" +"919. Human Body","919.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"919. Human Body","919.1 Parts of Body","919.1.1 Key parts in the head",,"xyz" +"919. Human Body","919.1 Parts of Body","919.1.2 Other parts",, +"919. Human Body","919.2 Organ Systems",,, +"919. Human Body","919.2 Organ Systems","919.2.1 Respiratory System","dsffgdg", +"920. Human Body",,,,"This chapter describes about human body" +"920. Human Body","920.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"920. Human Body","920.1 Parts of Body","920.1.1 Key parts in the head",,"xyz" +"920. Human Body","920.1 Parts of Body","920.1.2 Other parts",, +"920. Human Body","920.2 Organ Systems",,, +"920. Human Body","920.2 Organ Systems","920.2.1 Respiratory System","dsffgdg", +"921. Human Body",,,,"This chapter describes about human body" +"921. Human Body","921.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"921. Human Body","921.1 Parts of Body","921.1.1 Key parts in the head",,"xyz" +"921. Human Body","921.1 Parts of Body","921.1.2 Other parts",, +"921. Human Body","921.2 Organ Systems",,, +"921. Human Body","921.2 Organ Systems","921.2.1 Respiratory System","dsffgdg", +"922. Human Body",,,,"This chapter describes about human body" +"922. Human Body","922.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"922. Human Body","922.1 Parts of Body","922.1.1 Key parts in the head",,"xyz" +"922. Human Body","922.1 Parts of Body","922.1.2 Other parts",, +"922. Human Body","922.2 Organ Systems",,, +"922. Human Body","922.2 Organ Systems","922.2.1 Respiratory System","dsffgdg", +"923. Human Body",,,,"This chapter describes about human body" +"923. Human Body","923.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"923. Human Body","923.1 Parts of Body","923.1.1 Key parts in the head",,"xyz" +"923. Human Body","923.1 Parts of Body","923.1.2 Other parts",, +"923. Human Body","923.2 Organ Systems",,, +"923. Human Body","923.2 Organ Systems","923.2.1 Respiratory System","dsffgdg", +"924. Human Body",,,,"This chapter describes about human body" +"924. Human Body","924.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"924. Human Body","924.1 Parts of Body","924.1.1 Key parts in the head",,"xyz" +"924. Human Body","924.1 Parts of Body","924.1.2 Other parts",, +"924. Human Body","924.2 Organ Systems",,, +"924. Human Body","924.2 Organ Systems","924.2.1 Respiratory System","dsffgdg", +"925. Human Body",,,,"This chapter describes about human body" +"925. Human Body","925.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"925. Human Body","925.1 Parts of Body","925.1.1 Key parts in the head",,"xyz" +"925. Human Body","925.1 Parts of Body","925.1.2 Other parts",, +"925. Human Body","925.2 Organ Systems",,, +"925. Human Body","925.2 Organ Systems","925.2.1 Respiratory System","dsffgdg", +"926. Human Body",,,,"This chapter describes about human body" +"926. Human Body","926.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"926. Human Body","926.1 Parts of Body","926.1.1 Key parts in the head",,"xyz" +"926. Human Body","926.1 Parts of Body","926.1.2 Other parts",, +"926. Human Body","926.2 Organ Systems",,, +"926. Human Body","926.2 Organ Systems","926.2.1 Respiratory System","dsffgdg", +"927. Human Body",,,,"This chapter describes about human body" +"927. Human Body","927.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"927. Human Body","927.1 Parts of Body","927.1.1 Key parts in the head",,"xyz" +"927. Human Body","927.1 Parts of Body","927.1.2 Other parts",, +"927. Human Body","927.2 Organ Systems",,, +"927. Human Body","927.2 Organ Systems","927.2.1 Respiratory System","dsffgdg", +"928. Human Body",,,,"This chapter describes about human body" +"928. Human Body","928.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"928. Human Body","928.1 Parts of Body","928.1.1 Key parts in the head",,"xyz" +"928. Human Body","928.1 Parts of Body","928.1.2 Other parts",, +"928. Human Body","928.2 Organ Systems",,, +"928. Human Body","928.2 Organ Systems","928.2.1 Respiratory System","dsffgdg", +"929. Human Body",,,,"This chapter describes about human body" +"929. Human Body","929.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"929. Human Body","929.1 Parts of Body","929.1.1 Key parts in the head",,"xyz" +"929. Human Body","929.1 Parts of Body","929.1.2 Other parts",, +"929. Human Body","929.2 Organ Systems",,, +"929. Human Body","929.2 Organ Systems","929.2.1 Respiratory System","dsffgdg", +"930. Human Body",,,,"This chapter describes about human body" +"930. Human Body","930.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"930. Human Body","930.1 Parts of Body","930.1.1 Key parts in the head",,"xyz" +"930. Human Body","930.1 Parts of Body","930.1.2 Other parts",, +"930. Human Body","930.2 Organ Systems",,, +"930. Human Body","930.2 Organ Systems","930.2.1 Respiratory System","dsffgdg", +"931. Human Body",,,,"This chapter describes about human body" +"931. Human Body","931.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"931. Human Body","931.1 Parts of Body","931.1.1 Key parts in the head",,"xyz" +"931. Human Body","931.1 Parts of Body","931.1.2 Other parts",, +"931. Human Body","931.2 Organ Systems",,, +"931. Human Body","931.2 Organ Systems","931.2.1 Respiratory System","dsffgdg", +"932. Human Body",,,,"This chapter describes about human body" +"932. Human Body","932.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"932. Human Body","932.1 Parts of Body","932.1.1 Key parts in the head",,"xyz" +"932. Human Body","932.1 Parts of Body","932.1.2 Other parts",, +"932. Human Body","932.2 Organ Systems",,, +"932. Human Body","932.2 Organ Systems","932.2.1 Respiratory System","dsffgdg", +"933. Human Body",,,,"This chapter describes about human body" +"933. Human Body","933.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"933. Human Body","933.1 Parts of Body","933.1.1 Key parts in the head",,"xyz" +"933. Human Body","933.1 Parts of Body","933.1.2 Other parts",, +"933. Human Body","933.2 Organ Systems",,, +"933. Human Body","933.2 Organ Systems","933.2.1 Respiratory System","dsffgdg", +"934. Human Body",,,,"This chapter describes about human body" +"934. Human Body","934.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"934. Human Body","934.1 Parts of Body","934.1.1 Key parts in the head",,"xyz" +"934. Human Body","934.1 Parts of Body","934.1.2 Other parts",, +"934. Human Body","934.2 Organ Systems",,, +"934. Human Body","934.2 Organ Systems","934.2.1 Respiratory System","dsffgdg", +"935. Human Body",,,,"This chapter describes about human body" +"935. Human Body","935.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"935. Human Body","935.1 Parts of Body","935.1.1 Key parts in the head",,"xyz" +"935. Human Body","935.1 Parts of Body","935.1.2 Other parts",, +"935. Human Body","935.2 Organ Systems",,, +"935. Human Body","935.2 Organ Systems","935.2.1 Respiratory System","dsffgdg", +"936. Human Body",,,,"This chapter describes about human body" +"936. Human Body","936.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"936. Human Body","936.1 Parts of Body","936.1.1 Key parts in the head",,"xyz" +"936. Human Body","936.1 Parts of Body","936.1.2 Other parts",, +"936. Human Body","936.2 Organ Systems",,, +"936. Human Body","936.2 Organ Systems","936.2.1 Respiratory System","dsffgdg", +"937. Human Body",,,,"This chapter describes about human body" +"937. Human Body","937.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"937. Human Body","937.1 Parts of Body","937.1.1 Key parts in the head",,"xyz" +"937. Human Body","937.1 Parts of Body","937.1.2 Other parts",, +"937. Human Body","937.2 Organ Systems",,, +"937. Human Body","937.2 Organ Systems","937.2.1 Respiratory System","dsffgdg", +"938. Human Body",,,,"This chapter describes about human body" +"938. Human Body","938.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"938. Human Body","938.1 Parts of Body","938.1.1 Key parts in the head",,"xyz" +"938. Human Body","938.1 Parts of Body","938.1.2 Other parts",, +"938. Human Body","938.2 Organ Systems",,, +"938. Human Body","938.2 Organ Systems","938.2.1 Respiratory System","dsffgdg", +"939. Human Body",,,,"This chapter describes about human body" +"939. Human Body","939.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"939. Human Body","939.1 Parts of Body","939.1.1 Key parts in the head",,"xyz" +"939. Human Body","939.1 Parts of Body","939.1.2 Other parts",, +"939. Human Body","939.2 Organ Systems",,, +"939. Human Body","939.2 Organ Systems","939.2.1 Respiratory System","dsffgdg", +"940. Human Body",,,,"This chapter describes about human body" +"940. Human Body","940.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"940. Human Body","940.1 Parts of Body","940.1.1 Key parts in the head",,"xyz" +"940. Human Body","940.1 Parts of Body","940.1.2 Other parts",, +"940. Human Body","940.2 Organ Systems",,, +"940. Human Body","940.2 Organ Systems","940.2.1 Respiratory System","dsffgdg", +"941. Human Body",,,,"This chapter describes about human body" +"941. Human Body","941.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"941. Human Body","941.1 Parts of Body","941.1.1 Key parts in the head",,"xyz" +"941. Human Body","941.1 Parts of Body","941.1.2 Other parts",, +"941. Human Body","941.2 Organ Systems",,, +"941. Human Body","941.2 Organ Systems","941.2.1 Respiratory System","dsffgdg", +"942. Human Body",,,,"This chapter describes about human body" +"942. Human Body","942.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"942. Human Body","942.1 Parts of Body","942.1.1 Key parts in the head",,"xyz" +"942. Human Body","942.1 Parts of Body","942.1.2 Other parts",, +"942. Human Body","942.2 Organ Systems",,, +"942. Human Body","942.2 Organ Systems","942.2.1 Respiratory System","dsffgdg", +"943. Human Body",,,,"This chapter describes about human body" +"943. Human Body","943.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"943. Human Body","943.1 Parts of Body","943.1.1 Key parts in the head",,"xyz" +"943. Human Body","943.1 Parts of Body","943.1.2 Other parts",, +"943. Human Body","943.2 Organ Systems",,, +"943. Human Body","943.2 Organ Systems","943.2.1 Respiratory System","dsffgdg", +"944. Human Body",,,,"This chapter describes about human body" +"944. Human Body","944.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"944. Human Body","944.1 Parts of Body","944.1.1 Key parts in the head",,"xyz" +"944. Human Body","944.1 Parts of Body","944.1.2 Other parts",, +"944. Human Body","944.2 Organ Systems",,, +"944. Human Body","944.2 Organ Systems","944.2.1 Respiratory System","dsffgdg", +"945. Human Body",,,,"This chapter describes about human body" +"945. Human Body","945.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"945. Human Body","945.1 Parts of Body","945.1.1 Key parts in the head",,"xyz" +"945. Human Body","945.1 Parts of Body","945.1.2 Other parts",, +"945. Human Body","945.2 Organ Systems",,, +"945. Human Body","945.2 Organ Systems","945.2.1 Respiratory System","dsffgdg", +"946. Human Body",,,,"This chapter describes about human body" +"946. Human Body","946.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"946. Human Body","946.1 Parts of Body","946.1.1 Key parts in the head",,"xyz" +"946. Human Body","946.1 Parts of Body","946.1.2 Other parts",, +"946. Human Body","946.2 Organ Systems",,, +"946. Human Body","946.2 Organ Systems","946.2.1 Respiratory System","dsffgdg", +"947. Human Body",,,,"This chapter describes about human body" +"947. Human Body","947.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"947. Human Body","947.1 Parts of Body","947.1.1 Key parts in the head",,"xyz" +"947. Human Body","947.1 Parts of Body","947.1.2 Other parts",, +"947. Human Body","947.2 Organ Systems",,, +"947. Human Body","947.2 Organ Systems","947.2.1 Respiratory System","dsffgdg", +"948. Human Body",,,,"This chapter describes about human body" +"948. Human Body","948.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"948. Human Body","948.1 Parts of Body","948.1.1 Key parts in the head",,"xyz" +"948. Human Body","948.1 Parts of Body","948.1.2 Other parts",, +"948. Human Body","948.2 Organ Systems",,, +"948. Human Body","948.2 Organ Systems","948.2.1 Respiratory System","dsffgdg", +"949. Human Body",,,,"This chapter describes about human body" +"949. Human Body","949.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"949. Human Body","949.1 Parts of Body","949.1.1 Key parts in the head",,"xyz" +"949. Human Body","949.1 Parts of Body","949.1.2 Other parts",, +"949. Human Body","949.2 Organ Systems",,, +"949. Human Body","949.2 Organ Systems","949.2.1 Respiratory System","dsffgdg", +"950. Human Body",,,,"This chapter describes about human body" +"950. Human Body","950.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"950. Human Body","950.1 Parts of Body","950.1.1 Key parts in the head",,"xyz" +"950. Human Body","950.1 Parts of Body","950.1.2 Other parts",, +"950. Human Body","950.2 Organ Systems",,, +"950. Human Body","950.2 Organ Systems","950.2.1 Respiratory System","dsffgdg", +"951. Human Body",,,,"This chapter describes about human body" +"951. Human Body","951.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"951. Human Body","951.1 Parts of Body","951.1.1 Key parts in the head",,"xyz" +"951. Human Body","951.1 Parts of Body","951.1.2 Other parts",, +"951. Human Body","951.2 Organ Systems",,, +"951. Human Body","951.2 Organ Systems","951.2.1 Respiratory System","dsffgdg", +"952. Human Body",,,,"This chapter describes about human body" +"952. Human Body","952.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"952. Human Body","952.1 Parts of Body","952.1.1 Key parts in the head",,"xyz" +"952. Human Body","952.1 Parts of Body","952.1.2 Other parts",, +"952. Human Body","952.2 Organ Systems",,, +"952. Human Body","952.2 Organ Systems","952.2.1 Respiratory System","dsffgdg", +"953. Human Body",,,,"This chapter describes about human body" +"953. Human Body","953.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"953. Human Body","953.1 Parts of Body","953.1.1 Key parts in the head",,"xyz" +"953. Human Body","953.1 Parts of Body","953.1.2 Other parts",, +"953. Human Body","953.2 Organ Systems",,, +"953. Human Body","953.2 Organ Systems","953.2.1 Respiratory System","dsffgdg", +"954. Human Body",,,,"This chapter describes about human body" +"954. Human Body","954.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"954. Human Body","954.1 Parts of Body","954.1.1 Key parts in the head",,"xyz" +"954. Human Body","954.1 Parts of Body","954.1.2 Other parts",, +"954. Human Body","954.2 Organ Systems",,, +"954. Human Body","954.2 Organ Systems","954.2.1 Respiratory System","dsffgdg", +"955. Human Body",,,,"This chapter describes about human body" +"955. Human Body","955.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"955. Human Body","955.1 Parts of Body","955.1.1 Key parts in the head",,"xyz" +"955. Human Body","955.1 Parts of Body","955.1.2 Other parts",, +"955. Human Body","955.2 Organ Systems",,, +"955. Human Body","955.2 Organ Systems","955.2.1 Respiratory System","dsffgdg", +"956. Human Body",,,,"This chapter describes about human body" +"956. Human Body","956.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"956. Human Body","956.1 Parts of Body","956.1.1 Key parts in the head",,"xyz" +"956. Human Body","956.1 Parts of Body","956.1.2 Other parts",, +"956. Human Body","956.2 Organ Systems",,, +"956. Human Body","956.2 Organ Systems","956.2.1 Respiratory System","dsffgdg", +"957. Human Body",,,,"This chapter describes about human body" +"957. Human Body","957.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"957. Human Body","957.1 Parts of Body","957.1.1 Key parts in the head",,"xyz" +"957. Human Body","957.1 Parts of Body","957.1.2 Other parts",, +"957. Human Body","957.2 Organ Systems",,, +"957. Human Body","957.2 Organ Systems","957.2.1 Respiratory System","dsffgdg", +"958. Human Body",,,,"This chapter describes about human body" +"958. Human Body","958.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"958. Human Body","958.1 Parts of Body","958.1.1 Key parts in the head",,"xyz" +"958. Human Body","958.1 Parts of Body","958.1.2 Other parts",, +"958. Human Body","958.2 Organ Systems",,, +"958. Human Body","958.2 Organ Systems","958.2.1 Respiratory System","dsffgdg", +"959. Human Body",,,,"This chapter describes about human body" +"959. Human Body","959.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"959. Human Body","959.1 Parts of Body","959.1.1 Key parts in the head",,"xyz" +"959. Human Body","959.1 Parts of Body","959.1.2 Other parts",, +"959. Human Body","959.2 Organ Systems",,, +"959. Human Body","959.2 Organ Systems","959.2.1 Respiratory System","dsffgdg", +"960. Human Body",,,,"This chapter describes about human body" +"960. Human Body","960.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"960. Human Body","960.1 Parts of Body","960.1.1 Key parts in the head",,"xyz" +"960. Human Body","960.1 Parts of Body","960.1.2 Other parts",, +"960. Human Body","960.2 Organ Systems",,, +"960. Human Body","960.2 Organ Systems","960.2.1 Respiratory System","dsffgdg", +"961. Human Body",,,,"This chapter describes about human body" +"961. Human Body","961.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"961. Human Body","961.1 Parts of Body","961.1.1 Key parts in the head",,"xyz" +"961. Human Body","961.1 Parts of Body","961.1.2 Other parts",, +"961. Human Body","961.2 Organ Systems",,, +"961. Human Body","961.2 Organ Systems","961.2.1 Respiratory System","dsffgdg", +"962. Human Body",,,,"This chapter describes about human body" +"962. Human Body","962.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"962. Human Body","962.1 Parts of Body","962.1.1 Key parts in the head",,"xyz" +"962. Human Body","962.1 Parts of Body","962.1.2 Other parts",, +"962. Human Body","962.2 Organ Systems",,, +"962. Human Body","962.2 Organ Systems","962.2.1 Respiratory System","dsffgdg", +"963. Human Body",,,,"This chapter describes about human body" +"963. Human Body","963.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"963. Human Body","963.1 Parts of Body","963.1.1 Key parts in the head",,"xyz" +"963. Human Body","963.1 Parts of Body","963.1.2 Other parts",, +"963. Human Body","963.2 Organ Systems",,, +"963. Human Body","963.2 Organ Systems","963.2.1 Respiratory System","dsffgdg", +"964. Human Body",,,,"This chapter describes about human body" +"964. Human Body","964.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"964. Human Body","964.1 Parts of Body","964.1.1 Key parts in the head",,"xyz" +"964. Human Body","964.1 Parts of Body","964.1.2 Other parts",, +"964. Human Body","964.2 Organ Systems",,, +"964. Human Body","964.2 Organ Systems","964.2.1 Respiratory System","dsffgdg", +"965. Human Body",,,,"This chapter describes about human body" +"965. Human Body","965.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"965. Human Body","965.1 Parts of Body","965.1.1 Key parts in the head",,"xyz" +"965. Human Body","965.1 Parts of Body","965.1.2 Other parts",, +"965. Human Body","965.2 Organ Systems",,, +"965. Human Body","965.2 Organ Systems","965.2.1 Respiratory System","dsffgdg", +"966. Human Body",,,,"This chapter describes about human body" +"966. Human Body","966.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"966. Human Body","966.1 Parts of Body","966.1.1 Key parts in the head",,"xyz" +"966. Human Body","966.1 Parts of Body","966.1.2 Other parts",, +"966. Human Body","966.2 Organ Systems",,, +"966. Human Body","966.2 Organ Systems","966.2.1 Respiratory System","dsffgdg", +"967. Human Body",,,,"This chapter describes about human body" +"967. Human Body","967.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"967. Human Body","967.1 Parts of Body","967.1.1 Key parts in the head",,"xyz" +"967. Human Body","967.1 Parts of Body","967.1.2 Other parts",, +"967. Human Body","967.2 Organ Systems",,, +"967. Human Body","967.2 Organ Systems","967.2.1 Respiratory System","dsffgdg", +"968. Human Body",,,,"This chapter describes about human body" +"968. Human Body","968.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"968. Human Body","968.1 Parts of Body","968.1.1 Key parts in the head",,"xyz" +"968. Human Body","968.1 Parts of Body","968.1.2 Other parts",, +"968. Human Body","968.2 Organ Systems",,, +"968. Human Body","968.2 Organ Systems","968.2.1 Respiratory System","dsffgdg", +"969. Human Body",,,,"This chapter describes about human body" +"969. Human Body","969.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"969. Human Body","969.1 Parts of Body","969.1.1 Key parts in the head",,"xyz" +"969. Human Body","969.1 Parts of Body","969.1.2 Other parts",, +"969. Human Body","969.2 Organ Systems",,, +"969. Human Body","969.2 Organ Systems","969.2.1 Respiratory System","dsffgdg", +"970. Human Body",,,,"This chapter describes about human body" +"970. Human Body","970.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"970. Human Body","970.1 Parts of Body","970.1.1 Key parts in the head",,"xyz" +"970. Human Body","970.1 Parts of Body","970.1.2 Other parts",, +"970. Human Body","970.2 Organ Systems",,, +"970. Human Body","970.2 Organ Systems","970.2.1 Respiratory System","dsffgdg", +"971. Human Body",,,,"This chapter describes about human body" +"971. Human Body","971.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"971. Human Body","971.1 Parts of Body","971.1.1 Key parts in the head",,"xyz" +"971. Human Body","971.1 Parts of Body","971.1.2 Other parts",, +"971. Human Body","971.2 Organ Systems",,, +"971. Human Body","971.2 Organ Systems","971.2.1 Respiratory System","dsffgdg", +"972. Human Body",,,,"This chapter describes about human body" +"972. Human Body","972.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"972. Human Body","972.1 Parts of Body","972.1.1 Key parts in the head",,"xyz" +"972. Human Body","972.1 Parts of Body","972.1.2 Other parts",, +"972. Human Body","972.2 Organ Systems",,, +"972. Human Body","972.2 Organ Systems","972.2.1 Respiratory System","dsffgdg", +"973. Human Body",,,,"This chapter describes about human body" +"973. Human Body","973.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"973. Human Body","973.1 Parts of Body","973.1.1 Key parts in the head",,"xyz" +"973. Human Body","973.1 Parts of Body","973.1.2 Other parts",, +"973. Human Body","973.2 Organ Systems",,, +"973. Human Body","973.2 Organ Systems","973.2.1 Respiratory System","dsffgdg", +"974. Human Body",,,,"This chapter describes about human body" +"974. Human Body","974.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"974. Human Body","974.1 Parts of Body","974.1.1 Key parts in the head",,"xyz" +"974. Human Body","974.1 Parts of Body","974.1.2 Other parts",, +"974. Human Body","974.2 Organ Systems",,, +"974. Human Body","974.2 Organ Systems","974.2.1 Respiratory System","dsffgdg", +"975. Human Body",,,,"This chapter describes about human body" +"975. Human Body","975.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"975. Human Body","975.1 Parts of Body","975.1.1 Key parts in the head",,"xyz" +"975. Human Body","975.1 Parts of Body","975.1.2 Other parts",, +"975. Human Body","975.2 Organ Systems",,, +"975. Human Body","975.2 Organ Systems","975.2.1 Respiratory System","dsffgdg", +"976. Human Body",,,,"This chapter describes about human body" +"976. Human Body","976.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"976. Human Body","976.1 Parts of Body","976.1.1 Key parts in the head",,"xyz" +"976. Human Body","976.1 Parts of Body","976.1.2 Other parts",, +"976. Human Body","976.2 Organ Systems",,, +"976. Human Body","976.2 Organ Systems","976.2.1 Respiratory System","dsffgdg", +"977. Human Body",,,,"This chapter describes about human body" +"977. Human Body","977.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"977. Human Body","977.1 Parts of Body","977.1.1 Key parts in the head",,"xyz" +"977. Human Body","977.1 Parts of Body","977.1.2 Other parts",, +"977. Human Body","977.2 Organ Systems",,, +"977. Human Body","977.2 Organ Systems","977.2.1 Respiratory System","dsffgdg", +"978. Human Body",,,,"This chapter describes about human body" +"978. Human Body","978.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"978. Human Body","978.1 Parts of Body","978.1.1 Key parts in the head",,"xyz" +"978. Human Body","978.1 Parts of Body","978.1.2 Other parts",, +"978. Human Body","978.2 Organ Systems",,, +"978. Human Body","978.2 Organ Systems","978.2.1 Respiratory System","dsffgdg", +"979. Human Body",,,,"This chapter describes about human body" +"979. Human Body","979.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"979. Human Body","979.1 Parts of Body","979.1.1 Key parts in the head",,"xyz" +"979. Human Body","979.1 Parts of Body","979.1.2 Other parts",, +"979. Human Body","979.2 Organ Systems",,, +"979. Human Body","979.2 Organ Systems","979.2.1 Respiratory System","dsffgdg", +"980. Human Body",,,,"This chapter describes about human body" +"980. Human Body","980.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"980. Human Body","980.1 Parts of Body","980.1.1 Key parts in the head",,"xyz" +"980. Human Body","980.1 Parts of Body","980.1.2 Other parts",, +"980. Human Body","980.2 Organ Systems",,, +"980. Human Body","980.2 Organ Systems","980.2.1 Respiratory System","dsffgdg", +"981. Human Body",,,,"This chapter describes about human body" +"981. Human Body","981.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"981. Human Body","981.1 Parts of Body","981.1.1 Key parts in the head",,"xyz" +"981. Human Body","981.1 Parts of Body","981.1.2 Other parts",, +"981. Human Body","981.2 Organ Systems",,, +"981. Human Body","981.2 Organ Systems","981.2.1 Respiratory System","dsffgdg", +"982. Human Body",,,,"This chapter describes about human body" +"982. Human Body","982.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"982. Human Body","982.1 Parts of Body","982.1.1 Key parts in the head",,"xyz" +"982. Human Body","982.1 Parts of Body","982.1.2 Other parts",, +"982. Human Body","982.2 Organ Systems",,, +"982. Human Body","982.2 Organ Systems","982.2.1 Respiratory System","dsffgdg", +"983. Human Body",,,,"This chapter describes about human body" +"983. Human Body","983.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"983. Human Body","983.1 Parts of Body","983.1.1 Key parts in the head",,"xyz" +"983. Human Body","983.1 Parts of Body","983.1.2 Other parts",, +"983. Human Body","983.2 Organ Systems",,, +"983. Human Body","983.2 Organ Systems","983.2.1 Respiratory System","dsffgdg", +"984. Human Body",,,,"This chapter describes about human body" +"984. Human Body","984.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"984. Human Body","984.1 Parts of Body","984.1.1 Key parts in the head",,"xyz" +"984. Human Body","984.1 Parts of Body","984.1.2 Other parts",, +"984. Human Body","984.2 Organ Systems",,, +"984. Human Body","984.2 Organ Systems","984.2.1 Respiratory System","dsffgdg", +"985. Human Body",,,,"This chapter describes about human body" +"985. Human Body","985.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"985. Human Body","985.1 Parts of Body","985.1.1 Key parts in the head",,"xyz" +"985. Human Body","985.1 Parts of Body","985.1.2 Other parts",, +"985. Human Body","985.2 Organ Systems",,, +"985. Human Body","985.2 Organ Systems","985.2.1 Respiratory System","dsffgdg", +"986. Human Body",,,,"This chapter describes about human body" +"986. Human Body","986.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"986. Human Body","986.1 Parts of Body","986.1.1 Key parts in the head",,"xyz" +"986. Human Body","986.1 Parts of Body","986.1.2 Other parts",, +"986. Human Body","986.2 Organ Systems",,, +"986. Human Body","986.2 Organ Systems","986.2.1 Respiratory System","dsffgdg", +"987. Human Body",,,,"This chapter describes about human body" +"987. Human Body","987.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"987. Human Body","987.1 Parts of Body","987.1.1 Key parts in the head",,"xyz" +"987. Human Body","987.1 Parts of Body","987.1.2 Other parts",, +"987. Human Body","987.2 Organ Systems",,, +"987. Human Body","987.2 Organ Systems","987.2.1 Respiratory System","dsffgdg", +"988. Human Body",,,,"This chapter describes about human body" +"988. Human Body","988.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"988. Human Body","988.1 Parts of Body","988.1.1 Key parts in the head",,"xyz" +"988. Human Body","988.1 Parts of Body","988.1.2 Other parts",, +"988. Human Body","988.2 Organ Systems",,, +"988. Human Body","988.2 Organ Systems","988.2.1 Respiratory System","dsffgdg", +"989. Human Body",,,,"This chapter describes about human body" +"989. Human Body","989.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"989. Human Body","989.1 Parts of Body","989.1.1 Key parts in the head",,"xyz" +"989. Human Body","989.1 Parts of Body","989.1.2 Other parts",, +"989. Human Body","989.2 Organ Systems",,, +"989. Human Body","989.2 Organ Systems","989.2.1 Respiratory System","dsffgdg", +"990. Human Body",,,,"This chapter describes about human body" +"990. Human Body","990.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"990. Human Body","990.1 Parts of Body","990.1.1 Key parts in the head",,"xyz" +"990. Human Body","990.1 Parts of Body","990.1.2 Other parts",, +"990. Human Body","990.2 Organ Systems",,, +"990. Human Body","990.2 Organ Systems","990.2.1 Respiratory System","dsffgdg", +"991. Human Body",,,,"This chapter describes about human body" +"991. Human Body","991.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"991. Human Body","991.1 Parts of Body","991.1.1 Key parts in the head",,"xyz" +"991. Human Body","991.1 Parts of Body","991.1.2 Other parts",, +"991. Human Body","991.2 Organ Systems",,, +"991. Human Body","991.2 Organ Systems","991.2.1 Respiratory System","dsffgdg", +"992. Human Body",,,,"This chapter describes about human body" +"992. Human Body","992.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"992. Human Body","992.1 Parts of Body","992.1.1 Key parts in the head",,"xyz" +"992. Human Body","992.1 Parts of Body","992.1.2 Other parts",, +"992. Human Body","992.2 Organ Systems",,, +"992. Human Body","992.2 Organ Systems","992.2.1 Respiratory System","dsffgdg", +"993. Human Body",,,,"This chapter describes about human body" +"993. Human Body","993.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"993. Human Body","993.1 Parts of Body","993.1.1 Key parts in the head",,"xyz" +"993. Human Body","993.1 Parts of Body","993.1.2 Other parts",, +"993. Human Body","993.2 Organ Systems",,, +"993. Human Body","993.2 Organ Systems","993.2.1 Respiratory System","dsffgdg", +"994. Human Body",,,,"This chapter describes about human body" +"994. Human Body","994.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"994. Human Body","994.1 Parts of Body","994.1.1 Key parts in the head",,"xyz" +"994. Human Body","994.1 Parts of Body","994.1.2 Other parts",, +"994. Human Body","994.2 Organ Systems",,, +"994. Human Body","994.2 Organ Systems","994.2.1 Respiratory System","dsffgdg", +"995. Human Body",,,,"This chapter describes about human body" +"995. Human Body","995.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"995. Human Body","995.1 Parts of Body","995.1.1 Key parts in the head",,"xyz" +"995. Human Body","995.1 Parts of Body","995.1.2 Other parts",, +"995. Human Body","995.2 Organ Systems",,, +"995. Human Body","995.2 Organ Systems","995.2.1 Respiratory System","dsffgdg", +"996. Human Body",,,,"This chapter describes about human body" +"996. Human Body","996.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"996. Human Body","996.1 Parts of Body","996.1.1 Key parts in the head",,"xyz" +"996. Human Body","996.1 Parts of Body","996.1.2 Other parts",, +"996. Human Body","996.2 Organ Systems",,, +"996. Human Body","996.2 Organ Systems","996.2.1 Respiratory System","dsffgdg", +"997. Human Body",,,,"This chapter describes about human body" +"997. Human Body","997.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"997. Human Body","997.1 Parts of Body","997.1.1 Key parts in the head",,"xyz" +"997. Human Body","997.1 Parts of Body","997.1.2 Other parts",, +"997. Human Body","997.2 Organ Systems",,, +"997. Human Body","997.2 Organ Systems","997.2.1 Respiratory System","dsffgdg", +"998. Human Body",,,,"This chapter describes about human body" +"998. Human Body","998.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"998. Human Body","998.1 Parts of Body","998.1.1 Key parts in the head",,"xyz" +"998. Human Body","998.1 Parts of Body","998.1.2 Other parts",, +"998. Human Body","998.2 Organ Systems",,, +"998. Human Body","998.2 Organ Systems","998.2.1 Respiratory System","dsffgdg", +"999. Human Body",,,,"This chapter describes about human body" +"999. Human Body","999.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"999. Human Body","999.1 Parts of Body","999.1.1 Key parts in the head",,"xyz" +"999. Human Body","999.1 Parts of Body","999.1.2 Other parts",, +"999. Human Body","999.2 Organ Systems",,, +"999. Human Body","999.2 Organ Systems","999.2.1 Respiratory System","dsffgdg", +"1000. Human Body",,,,"This chapter describes about human body" +"1000. Human Body","1000.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1000. Human Body","1000.1 Parts of Body","1000.1.1 Key parts in the head",,"xyz" +"1000. Human Body","1000.1 Parts of Body","1000.1.2 Other parts",, +"1000. Human Body","1000.2 Organ Systems",,, +"1000. Human Body","1000.2 Organ Systems","1000.2.1 Respiratory System","dsffgdg", +"1001. Human Body",,,,"This chapter describes about human body" +"1001. Human Body","1001.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1001. Human Body","1001.1 Parts of Body","1001.1.1 Key parts in the head",,"xyz" +"1001. Human Body","1001.1 Parts of Body","1001.1.2 Other parts",, +"1001. Human Body","1001.2 Organ Systems",,, +"1001. Human Body","1001.2 Organ Systems","1001.2.1 Respiratory System","dsffgdg", +"1002. Human Body",,,,"This chapter describes about human body" +"1002. Human Body","1002.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1002. Human Body","1002.1 Parts of Body","1002.1.1 Key parts in the head",,"xyz" +"1002. Human Body","1002.1 Parts of Body","1002.1.2 Other parts",, +"1002. Human Body","1002.2 Organ Systems",,, +"1002. Human Body","1002.2 Organ Systems","1002.2.1 Respiratory System","dsffgdg", +"1003. Human Body",,,,"This chapter describes about human body" +"1003. Human Body","1003.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1003. Human Body","1003.1 Parts of Body","1003.1.1 Key parts in the head",,"xyz" +"1003. Human Body","1003.1 Parts of Body","1003.1.2 Other parts",, +"1003. Human Body","1003.2 Organ Systems",,, +"1003. Human Body","1003.2 Organ Systems","1003.2.1 Respiratory System","dsffgdg", +"1004. Human Body",,,,"This chapter describes about human body" +"1004. Human Body","1004.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1004. Human Body","1004.1 Parts of Body","1004.1.1 Key parts in the head",,"xyz" +"1004. Human Body","1004.1 Parts of Body","1004.1.2 Other parts",, +"1004. Human Body","1004.2 Organ Systems",,, +"1004. Human Body","1004.2 Organ Systems","1004.2.1 Respiratory System","dsffgdg", +"1005. Human Body",,,,"This chapter describes about human body" +"1005. Human Body","1005.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1005. Human Body","1005.1 Parts of Body","1005.1.1 Key parts in the head",,"xyz" +"1005. Human Body","1005.1 Parts of Body","1005.1.2 Other parts",, +"1005. Human Body","1005.2 Organ Systems",,, +"1005. Human Body","1005.2 Organ Systems","1005.2.1 Respiratory System","dsffgdg", +"1006. Human Body",,,,"This chapter describes about human body" +"1006. Human Body","1006.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1006. Human Body","1006.1 Parts of Body","1006.1.1 Key parts in the head",,"xyz" +"1006. Human Body","1006.1 Parts of Body","1006.1.2 Other parts",, +"1006. Human Body","1006.2 Organ Systems",,, +"1006. Human Body","1006.2 Organ Systems","1006.2.1 Respiratory System","dsffgdg", +"1007. Human Body",,,,"This chapter describes about human body" +"1007. Human Body","1007.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1007. Human Body","1007.1 Parts of Body","1007.1.1 Key parts in the head",,"xyz" +"1007. Human Body","1007.1 Parts of Body","1007.1.2 Other parts",, +"1007. Human Body","1007.2 Organ Systems",,, +"1007. Human Body","1007.2 Organ Systems","1007.2.1 Respiratory System","dsffgdg", +"1008. Human Body",,,,"This chapter describes about human body" +"1008. Human Body","1008.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1008. Human Body","1008.1 Parts of Body","1008.1.1 Key parts in the head",,"xyz" +"1008. Human Body","1008.1 Parts of Body","1008.1.2 Other parts",, +"1008. Human Body","1008.2 Organ Systems",,, +"1008. Human Body","1008.2 Organ Systems","1008.2.1 Respiratory System","dsffgdg", +"1009. Human Body",,,,"This chapter describes about human body" +"1009. Human Body","1009.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1009. Human Body","1009.1 Parts of Body","1009.1.1 Key parts in the head",,"xyz" +"1009. Human Body","1009.1 Parts of Body","1009.1.2 Other parts",, +"1009. Human Body","1009.2 Organ Systems",,, +"1009. Human Body","1009.2 Organ Systems","1009.2.1 Respiratory System","dsffgdg", +"1010. Human Body",,,,"This chapter describes about human body" +"1010. Human Body","1010.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1010. Human Body","1010.1 Parts of Body","1010.1.1 Key parts in the head",,"xyz" +"1010. Human Body","1010.1 Parts of Body","1010.1.2 Other parts",, +"1010. Human Body","1010.2 Organ Systems",,, +"1010. Human Body","1010.2 Organ Systems","1010.2.1 Respiratory System","dsffgdg", +"1011. Human Body",,,,"This chapter describes about human body" +"1011. Human Body","1011.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1011. Human Body","1011.1 Parts of Body","1011.1.1 Key parts in the head",,"xyz" +"1011. Human Body","1011.1 Parts of Body","1011.1.2 Other parts",, +"1011. Human Body","1011.2 Organ Systems",,, +"1011. Human Body","1011.2 Organ Systems","1011.2.1 Respiratory System","dsffgdg", +"1012. Human Body",,,,"This chapter describes about human body" +"1012. Human Body","1012.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1012. Human Body","1012.1 Parts of Body","1012.1.1 Key parts in the head",,"xyz" +"1012. Human Body","1012.1 Parts of Body","1012.1.2 Other parts",, +"1012. Human Body","1012.2 Organ Systems",,, +"1012. Human Body","1012.2 Organ Systems","1012.2.1 Respiratory System","dsffgdg", +"1013. Human Body",,,,"This chapter describes about human body" +"1013. Human Body","1013.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1013. Human Body","1013.1 Parts of Body","1013.1.1 Key parts in the head",,"xyz" +"1013. Human Body","1013.1 Parts of Body","1013.1.2 Other parts",, +"1013. Human Body","1013.2 Organ Systems",,, +"1013. Human Body","1013.2 Organ Systems","1013.2.1 Respiratory System","dsffgdg", +"1014. Human Body",,,,"This chapter describes about human body" +"1014. Human Body","1014.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1014. Human Body","1014.1 Parts of Body","1014.1.1 Key parts in the head",,"xyz" +"1014. Human Body","1014.1 Parts of Body","1014.1.2 Other parts",, +"1014. Human Body","1014.2 Organ Systems",,, +"1014. Human Body","1014.2 Organ Systems","1014.2.1 Respiratory System","dsffgdg", +"1015. Human Body",,,,"This chapter describes about human body" +"1015. Human Body","1015.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1015. Human Body","1015.1 Parts of Body","1015.1.1 Key parts in the head",,"xyz" +"1015. Human Body","1015.1 Parts of Body","1015.1.2 Other parts",, +"1015. Human Body","1015.2 Organ Systems",,, +"1015. Human Body","1015.2 Organ Systems","1015.2.1 Respiratory System","dsffgdg", +"1016. Human Body",,,,"This chapter describes about human body" +"1016. Human Body","1016.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1016. Human Body","1016.1 Parts of Body","1016.1.1 Key parts in the head",,"xyz" +"1016. Human Body","1016.1 Parts of Body","1016.1.2 Other parts",, +"1016. Human Body","1016.2 Organ Systems",,, +"1016. Human Body","1016.2 Organ Systems","1016.2.1 Respiratory System","dsffgdg", +"1017. Human Body",,,,"This chapter describes about human body" +"1017. Human Body","1017.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1017. Human Body","1017.1 Parts of Body","1017.1.1 Key parts in the head",,"xyz" +"1017. Human Body","1017.1 Parts of Body","1017.1.2 Other parts",, +"1017. Human Body","1017.2 Organ Systems",,, +"1017. Human Body","1017.2 Organ Systems","1017.2.1 Respiratory System","dsffgdg", +"1018. Human Body",,,,"This chapter describes about human body" +"1018. Human Body","1018.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1018. Human Body","1018.1 Parts of Body","1018.1.1 Key parts in the head",,"xyz" +"1018. Human Body","1018.1 Parts of Body","1018.1.2 Other parts",, +"1018. Human Body","1018.2 Organ Systems",,, +"1018. Human Body","1018.2 Organ Systems","1018.2.1 Respiratory System","dsffgdg", +"1019. Human Body",,,,"This chapter describes about human body" +"1019. Human Body","1019.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1019. Human Body","1019.1 Parts of Body","1019.1.1 Key parts in the head",,"xyz" +"1019. Human Body","1019.1 Parts of Body","1019.1.2 Other parts",, +"1019. Human Body","1019.2 Organ Systems",,, +"1019. Human Body","1019.2 Organ Systems","1019.2.1 Respiratory System","dsffgdg", +"1020. Human Body",,,,"This chapter describes about human body" +"1020. Human Body","1020.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1020. Human Body","1020.1 Parts of Body","1020.1.1 Key parts in the head",,"xyz" +"1020. Human Body","1020.1 Parts of Body","1020.1.2 Other parts",, +"1020. Human Body","1020.2 Organ Systems",,, +"1020. Human Body","1020.2 Organ Systems","1020.2.1 Respiratory System","dsffgdg", +"1021. Human Body",,,,"This chapter describes about human body" +"1021. Human Body","1021.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1021. Human Body","1021.1 Parts of Body","1021.1.1 Key parts in the head",,"xyz" +"1021. Human Body","1021.1 Parts of Body","1021.1.2 Other parts",, +"1021. Human Body","1021.2 Organ Systems",,, +"1021. Human Body","1021.2 Organ Systems","1021.2.1 Respiratory System","dsffgdg", +"1022. Human Body",,,,"This chapter describes about human body" +"1022. Human Body","1022.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1022. Human Body","1022.1 Parts of Body","1022.1.1 Key parts in the head",,"xyz" +"1022. Human Body","1022.1 Parts of Body","1022.1.2 Other parts",, +"1022. Human Body","1022.2 Organ Systems",,, +"1022. Human Body","1022.2 Organ Systems","1022.2.1 Respiratory System","dsffgdg", +"1023. Human Body",,,,"This chapter describes about human body" +"1023. Human Body","1023.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1023. Human Body","1023.1 Parts of Body","1023.1.1 Key parts in the head",,"xyz" +"1023. Human Body","1023.1 Parts of Body","1023.1.2 Other parts",, +"1023. Human Body","1023.2 Organ Systems",,, +"1023. Human Body","1023.2 Organ Systems","1023.2.1 Respiratory System","dsffgdg", +"1024. Human Body",,,,"This chapter describes about human body" +"1024. Human Body","1024.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1024. Human Body","1024.1 Parts of Body","1024.1.1 Key parts in the head",,"xyz" +"1024. Human Body","1024.1 Parts of Body","1024.1.2 Other parts",, +"1024. Human Body","1024.2 Organ Systems",,, +"1024. Human Body","1024.2 Organ Systems","1024.2.1 Respiratory System","dsffgdg", +"1025. Human Body",,,,"This chapter describes about human body" +"1025. Human Body","1025.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1025. Human Body","1025.1 Parts of Body","1025.1.1 Key parts in the head",,"xyz" +"1025. Human Body","1025.1 Parts of Body","1025.1.2 Other parts",, +"1025. Human Body","1025.2 Organ Systems",,, +"1025. Human Body","1025.2 Organ Systems","1025.2.1 Respiratory System","dsffgdg", +"1026. Human Body",,,,"This chapter describes about human body" +"1026. Human Body","1026.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1026. Human Body","1026.1 Parts of Body","1026.1.1 Key parts in the head",,"xyz" +"1026. Human Body","1026.1 Parts of Body","1026.1.2 Other parts",, +"1026. Human Body","1026.2 Organ Systems",,, +"1026. Human Body","1026.2 Organ Systems","1026.2.1 Respiratory System","dsffgdg", +"1027. Human Body",,,,"This chapter describes about human body" +"1027. Human Body","1027.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1027. Human Body","1027.1 Parts of Body","1027.1.1 Key parts in the head",,"xyz" +"1027. Human Body","1027.1 Parts of Body","1027.1.2 Other parts",, +"1027. Human Body","1027.2 Organ Systems",,, +"1027. Human Body","1027.2 Organ Systems","1027.2.1 Respiratory System","dsffgdg", +"1028. Human Body",,,,"This chapter describes about human body" +"1028. Human Body","1028.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1028. Human Body","1028.1 Parts of Body","1028.1.1 Key parts in the head",,"xyz" +"1028. Human Body","1028.1 Parts of Body","1028.1.2 Other parts",, +"1028. Human Body","1028.2 Organ Systems",,, +"1028. Human Body","1028.2 Organ Systems","1028.2.1 Respiratory System","dsffgdg", +"1029. Human Body",,,,"This chapter describes about human body" +"1029. Human Body","1029.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1029. Human Body","1029.1 Parts of Body","1029.1.1 Key parts in the head",,"xyz" +"1029. Human Body","1029.1 Parts of Body","1029.1.2 Other parts",, +"1029. Human Body","1029.2 Organ Systems",,, +"1029. Human Body","1029.2 Organ Systems","1029.2.1 Respiratory System","dsffgdg", +"1030. Human Body",,,,"This chapter describes about human body" +"1030. Human Body","1030.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1030. Human Body","1030.1 Parts of Body","1030.1.1 Key parts in the head",,"xyz" +"1030. Human Body","1030.1 Parts of Body","1030.1.2 Other parts",, +"1030. Human Body","1030.2 Organ Systems",,, +"1030. Human Body","1030.2 Organ Systems","1030.2.1 Respiratory System","dsffgdg", +"1031. Human Body",,,,"This chapter describes about human body" +"1031. Human Body","1031.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1031. Human Body","1031.1 Parts of Body","1031.1.1 Key parts in the head",,"xyz" +"1031. Human Body","1031.1 Parts of Body","1031.1.2 Other parts",, +"1031. Human Body","1031.2 Organ Systems",,, +"1031. Human Body","1031.2 Organ Systems","1031.2.1 Respiratory System","dsffgdg", +"1032. Human Body",,,,"This chapter describes about human body" +"1032. Human Body","1032.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1032. Human Body","1032.1 Parts of Body","1032.1.1 Key parts in the head",,"xyz" +"1032. Human Body","1032.1 Parts of Body","1032.1.2 Other parts",, +"1032. Human Body","1032.2 Organ Systems",,, +"1032. Human Body","1032.2 Organ Systems","1032.2.1 Respiratory System","dsffgdg", +"1033. Human Body",,,,"This chapter describes about human body" +"1033. Human Body","1033.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1033. Human Body","1033.1 Parts of Body","1033.1.1 Key parts in the head",,"xyz" +"1033. Human Body","1033.1 Parts of Body","1033.1.2 Other parts",, +"1033. Human Body","1033.2 Organ Systems",,, +"1033. Human Body","1033.2 Organ Systems","1033.2.1 Respiratory System","dsffgdg", +"1034. Human Body",,,,"This chapter describes about human body" +"1034. Human Body","1034.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1034. Human Body","1034.1 Parts of Body","1034.1.1 Key parts in the head",,"xyz" +"1034. Human Body","1034.1 Parts of Body","1034.1.2 Other parts",, +"1034. Human Body","1034.2 Organ Systems",,, +"1034. Human Body","1034.2 Organ Systems","1034.2.1 Respiratory System","dsffgdg", +"1035. Human Body",,,,"This chapter describes about human body" +"1035. Human Body","1035.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1035. Human Body","1035.1 Parts of Body","1035.1.1 Key parts in the head",,"xyz" +"1035. Human Body","1035.1 Parts of Body","1035.1.2 Other parts",, +"1035. Human Body","1035.2 Organ Systems",,, +"1035. Human Body","1035.2 Organ Systems","1035.2.1 Respiratory System","dsffgdg", +"1036. Human Body",,,,"This chapter describes about human body" +"1036. Human Body","1036.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1036. Human Body","1036.1 Parts of Body","1036.1.1 Key parts in the head",,"xyz" +"1036. Human Body","1036.1 Parts of Body","1036.1.2 Other parts",, +"1036. Human Body","1036.2 Organ Systems",,, +"1036. Human Body","1036.2 Organ Systems","1036.2.1 Respiratory System","dsffgdg", +"1037. Human Body",,,,"This chapter describes about human body" +"1037. Human Body","1037.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1037. Human Body","1037.1 Parts of Body","1037.1.1 Key parts in the head",,"xyz" +"1037. Human Body","1037.1 Parts of Body","1037.1.2 Other parts",, +"1037. Human Body","1037.2 Organ Systems",,, +"1037. Human Body","1037.2 Organ Systems","1037.2.1 Respiratory System","dsffgdg", +"1038. Human Body",,,,"This chapter describes about human body" +"1038. Human Body","1038.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1038. Human Body","1038.1 Parts of Body","1038.1.1 Key parts in the head",,"xyz" +"1038. Human Body","1038.1 Parts of Body","1038.1.2 Other parts",, +"1038. Human Body","1038.2 Organ Systems",,, +"1038. Human Body","1038.2 Organ Systems","1038.2.1 Respiratory System","dsffgdg", +"1039. Human Body",,,,"This chapter describes about human body" +"1039. Human Body","1039.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1039. Human Body","1039.1 Parts of Body","1039.1.1 Key parts in the head",,"xyz" +"1039. Human Body","1039.1 Parts of Body","1039.1.2 Other parts",, +"1039. Human Body","1039.2 Organ Systems",,, +"1039. Human Body","1039.2 Organ Systems","1039.2.1 Respiratory System","dsffgdg", +"1040. Human Body",,,,"This chapter describes about human body" +"1040. Human Body","1040.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1040. Human Body","1040.1 Parts of Body","1040.1.1 Key parts in the head",,"xyz" +"1040. Human Body","1040.1 Parts of Body","1040.1.2 Other parts",, +"1040. Human Body","1040.2 Organ Systems",,, +"1040. Human Body","1040.2 Organ Systems","1040.2.1 Respiratory System","dsffgdg", +"1041. Human Body",,,,"This chapter describes about human body" +"1041. Human Body","1041.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1041. Human Body","1041.1 Parts of Body","1041.1.1 Key parts in the head",,"xyz" +"1041. Human Body","1041.1 Parts of Body","1041.1.2 Other parts",, +"1041. Human Body","1041.2 Organ Systems",,, +"1041. Human Body","1041.2 Organ Systems","1041.2.1 Respiratory System","dsffgdg", +"1042. Human Body",,,,"This chapter describes about human body" +"1042. Human Body","1042.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1042. Human Body","1042.1 Parts of Body","1042.1.1 Key parts in the head",,"xyz" +"1042. Human Body","1042.1 Parts of Body","1042.1.2 Other parts",, +"1042. Human Body","1042.2 Organ Systems",,, +"1042. Human Body","1042.2 Organ Systems","1042.2.1 Respiratory System","dsffgdg", +"1043. Human Body",,,,"This chapter describes about human body" +"1043. Human Body","1043.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1043. Human Body","1043.1 Parts of Body","1043.1.1 Key parts in the head",,"xyz" +"1043. Human Body","1043.1 Parts of Body","1043.1.2 Other parts",, +"1043. Human Body","1043.2 Organ Systems",,, +"1043. Human Body","1043.2 Organ Systems","1043.2.1 Respiratory System","dsffgdg", +"1044. Human Body",,,,"This chapter describes about human body" +"1044. Human Body","1044.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1044. Human Body","1044.1 Parts of Body","1044.1.1 Key parts in the head",,"xyz" +"1044. Human Body","1044.1 Parts of Body","1044.1.2 Other parts",, +"1044. Human Body","1044.2 Organ Systems",,, +"1044. Human Body","1044.2 Organ Systems","1044.2.1 Respiratory System","dsffgdg", +"1045. Human Body",,,,"This chapter describes about human body" +"1045. Human Body","1045.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1045. Human Body","1045.1 Parts of Body","1045.1.1 Key parts in the head",,"xyz" +"1045. Human Body","1045.1 Parts of Body","1045.1.2 Other parts",, +"1045. Human Body","1045.2 Organ Systems",,, +"1045. Human Body","1045.2 Organ Systems","1045.2.1 Respiratory System","dsffgdg", +"1046. Human Body",,,,"This chapter describes about human body" +"1046. Human Body","1046.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1046. Human Body","1046.1 Parts of Body","1046.1.1 Key parts in the head",,"xyz" +"1046. Human Body","1046.1 Parts of Body","1046.1.2 Other parts",, +"1046. Human Body","1046.2 Organ Systems",,, +"1046. Human Body","1046.2 Organ Systems","1046.2.1 Respiratory System","dsffgdg", +"1047. Human Body",,,,"This chapter describes about human body" +"1047. Human Body","1047.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1047. Human Body","1047.1 Parts of Body","1047.1.1 Key parts in the head",,"xyz" +"1047. Human Body","1047.1 Parts of Body","1047.1.2 Other parts",, +"1047. Human Body","1047.2 Organ Systems",,, +"1047. Human Body","1047.2 Organ Systems","1047.2.1 Respiratory System","dsffgdg", +"1048. Human Body",,,,"This chapter describes about human body" +"1048. Human Body","1048.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1048. Human Body","1048.1 Parts of Body","1048.1.1 Key parts in the head",,"xyz" +"1048. Human Body","1048.1 Parts of Body","1048.1.2 Other parts",, +"1048. Human Body","1048.2 Organ Systems",,, +"1048. Human Body","1048.2 Organ Systems","1048.2.1 Respiratory System","dsffgdg", +"1049. Human Body",,,,"This chapter describes about human body" +"1049. Human Body","1049.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1049. Human Body","1049.1 Parts of Body","1049.1.1 Key parts in the head",,"xyz" +"1049. Human Body","1049.1 Parts of Body","1049.1.2 Other parts",, +"1049. Human Body","1049.2 Organ Systems",,, +"1049. Human Body","1049.2 Organ Systems","1049.2.1 Respiratory System","dsffgdg", +"1050. Human Body",,,,"This chapter describes about human body" +"1050. Human Body","1050.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1050. Human Body","1050.1 Parts of Body","1050.1.1 Key parts in the head",,"xyz" +"1050. Human Body","1050.1 Parts of Body","1050.1.2 Other parts",, +"1050. Human Body","1050.2 Organ Systems",,, +"1050. Human Body","1050.2 Organ Systems","1050.2.1 Respiratory System","dsffgdg", +"1051. Human Body",,,,"This chapter describes about human body" +"1051. Human Body","1051.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1051. Human Body","1051.1 Parts of Body","1051.1.1 Key parts in the head",,"xyz" +"1051. Human Body","1051.1 Parts of Body","1051.1.2 Other parts",, +"1051. Human Body","1051.2 Organ Systems",,, +"1051. Human Body","1051.2 Organ Systems","1051.2.1 Respiratory System","dsffgdg", +"1052. Human Body",,,,"This chapter describes about human body" +"1052. Human Body","1052.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1052. Human Body","1052.1 Parts of Body","1052.1.1 Key parts in the head",,"xyz" +"1052. Human Body","1052.1 Parts of Body","1052.1.2 Other parts",, +"1052. Human Body","1052.2 Organ Systems",,, +"1052. Human Body","1052.2 Organ Systems","1052.2.1 Respiratory System","dsffgdg", +"1053. Human Body",,,,"This chapter describes about human body" +"1053. Human Body","1053.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1053. Human Body","1053.1 Parts of Body","1053.1.1 Key parts in the head",,"xyz" +"1053. Human Body","1053.1 Parts of Body","1053.1.2 Other parts",, +"1053. Human Body","1053.2 Organ Systems",,, +"1053. Human Body","1053.2 Organ Systems","1053.2.1 Respiratory System","dsffgdg", +"1054. Human Body",,,,"This chapter describes about human body" +"1054. Human Body","1054.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1054. Human Body","1054.1 Parts of Body","1054.1.1 Key parts in the head",,"xyz" +"1054. Human Body","1054.1 Parts of Body","1054.1.2 Other parts",, +"1054. Human Body","1054.2 Organ Systems",,, +"1054. Human Body","1054.2 Organ Systems","1054.2.1 Respiratory System","dsffgdg", +"1055. Human Body",,,,"This chapter describes about human body" +"1055. Human Body","1055.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1055. Human Body","1055.1 Parts of Body","1055.1.1 Key parts in the head",,"xyz" +"1055. Human Body","1055.1 Parts of Body","1055.1.2 Other parts",, +"1055. Human Body","1055.2 Organ Systems",,, +"1055. Human Body","1055.2 Organ Systems","1055.2.1 Respiratory System","dsffgdg", +"1056. Human Body",,,,"This chapter describes about human body" +"1056. Human Body","1056.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1056. Human Body","1056.1 Parts of Body","1056.1.1 Key parts in the head",,"xyz" +"1056. Human Body","1056.1 Parts of Body","1056.1.2 Other parts",, +"1056. Human Body","1056.2 Organ Systems",,, +"1056. Human Body","1056.2 Organ Systems","1056.2.1 Respiratory System","dsffgdg", +"1057. Human Body",,,,"This chapter describes about human body" +"1057. Human Body","1057.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1057. Human Body","1057.1 Parts of Body","1057.1.1 Key parts in the head",,"xyz" +"1057. Human Body","1057.1 Parts of Body","1057.1.2 Other parts",, +"1057. Human Body","1057.2 Organ Systems",,, +"1057. Human Body","1057.2 Organ Systems","1057.2.1 Respiratory System","dsffgdg", +"1058. Human Body",,,,"This chapter describes about human body" +"1058. Human Body","1058.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1058. Human Body","1058.1 Parts of Body","1058.1.1 Key parts in the head",,"xyz" +"1058. Human Body","1058.1 Parts of Body","1058.1.2 Other parts",, +"1058. Human Body","1058.2 Organ Systems",,, +"1058. Human Body","1058.2 Organ Systems","1058.2.1 Respiratory System","dsffgdg", +"1059. Human Body",,,,"This chapter describes about human body" +"1059. Human Body","1059.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1059. Human Body","1059.1 Parts of Body","1059.1.1 Key parts in the head",,"xyz" +"1059. Human Body","1059.1 Parts of Body","1059.1.2 Other parts",, +"1059. Human Body","1059.2 Organ Systems",,, +"1059. Human Body","1059.2 Organ Systems","1059.2.1 Respiratory System","dsffgdg", +"1060. Human Body",,,,"This chapter describes about human body" +"1060. Human Body","1060.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1060. Human Body","1060.1 Parts of Body","1060.1.1 Key parts in the head",,"xyz" +"1060. Human Body","1060.1 Parts of Body","1060.1.2 Other parts",, +"1060. Human Body","1060.2 Organ Systems",,, +"1060. Human Body","1060.2 Organ Systems","1060.2.1 Respiratory System","dsffgdg", +"1061. Human Body",,,,"This chapter describes about human body" +"1061. Human Body","1061.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1061. Human Body","1061.1 Parts of Body","1061.1.1 Key parts in the head",,"xyz" +"1061. Human Body","1061.1 Parts of Body","1061.1.2 Other parts",, +"1061. Human Body","1061.2 Organ Systems",,, +"1061. Human Body","1061.2 Organ Systems","1061.2.1 Respiratory System","dsffgdg", +"1062. Human Body",,,,"This chapter describes about human body" +"1062. Human Body","1062.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1062. Human Body","1062.1 Parts of Body","1062.1.1 Key parts in the head",,"xyz" +"1062. Human Body","1062.1 Parts of Body","1062.1.2 Other parts",, +"1062. Human Body","1062.2 Organ Systems",,, +"1062. Human Body","1062.2 Organ Systems","1062.2.1 Respiratory System","dsffgdg", +"1063. Human Body",,,,"This chapter describes about human body" +"1063. Human Body","1063.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1063. Human Body","1063.1 Parts of Body","1063.1.1 Key parts in the head",,"xyz" +"1063. Human Body","1063.1 Parts of Body","1063.1.2 Other parts",, +"1063. Human Body","1063.2 Organ Systems",,, +"1063. Human Body","1063.2 Organ Systems","1063.2.1 Respiratory System","dsffgdg", +"1064. Human Body",,,,"This chapter describes about human body" +"1064. Human Body","1064.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1064. Human Body","1064.1 Parts of Body","1064.1.1 Key parts in the head",,"xyz" +"1064. Human Body","1064.1 Parts of Body","1064.1.2 Other parts",, +"1064. Human Body","1064.2 Organ Systems",,, +"1064. Human Body","1064.2 Organ Systems","1064.2.1 Respiratory System","dsffgdg", +"1065. Human Body",,,,"This chapter describes about human body" +"1065. Human Body","1065.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1065. Human Body","1065.1 Parts of Body","1065.1.1 Key parts in the head",,"xyz" +"1065. Human Body","1065.1 Parts of Body","1065.1.2 Other parts",, +"1065. Human Body","1065.2 Organ Systems",,, +"1065. Human Body","1065.2 Organ Systems","1065.2.1 Respiratory System","dsffgdg", +"1066. Human Body",,,,"This chapter describes about human body" +"1066. Human Body","1066.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1066. Human Body","1066.1 Parts of Body","1066.1.1 Key parts in the head",,"xyz" +"1066. Human Body","1066.1 Parts of Body","1066.1.2 Other parts",, +"1066. Human Body","1066.2 Organ Systems",,, +"1066. Human Body","1066.2 Organ Systems","1066.2.1 Respiratory System","dsffgdg", +"1067. Human Body",,,,"This chapter describes about human body" +"1067. Human Body","1067.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1067. Human Body","1067.1 Parts of Body","1067.1.1 Key parts in the head",,"xyz" +"1067. Human Body","1067.1 Parts of Body","1067.1.2 Other parts",, +"1067. Human Body","1067.2 Organ Systems",,, +"1067. Human Body","1067.2 Organ Systems","1067.2.1 Respiratory System","dsffgdg", +"1068. Human Body",,,,"This chapter describes about human body" +"1068. Human Body","1068.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1068. Human Body","1068.1 Parts of Body","1068.1.1 Key parts in the head",,"xyz" +"1068. Human Body","1068.1 Parts of Body","1068.1.2 Other parts",, +"1068. Human Body","1068.2 Organ Systems",,, +"1068. Human Body","1068.2 Organ Systems","1068.2.1 Respiratory System","dsffgdg", +"1069. Human Body",,,,"This chapter describes about human body" +"1069. Human Body","1069.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1069. Human Body","1069.1 Parts of Body","1069.1.1 Key parts in the head",,"xyz" +"1069. Human Body","1069.1 Parts of Body","1069.1.2 Other parts",, +"1069. Human Body","1069.2 Organ Systems",,, +"1069. Human Body","1069.2 Organ Systems","1069.2.1 Respiratory System","dsffgdg", +"1070. Human Body",,,,"This chapter describes about human body" +"1070. Human Body","1070.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1070. Human Body","1070.1 Parts of Body","1070.1.1 Key parts in the head",,"xyz" +"1070. Human Body","1070.1 Parts of Body","1070.1.2 Other parts",, +"1070. Human Body","1070.2 Organ Systems",,, +"1070. Human Body","1070.2 Organ Systems","1070.2.1 Respiratory System","dsffgdg", +"1071. Human Body",,,,"This chapter describes about human body" +"1071. Human Body","1071.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1071. Human Body","1071.1 Parts of Body","1071.1.1 Key parts in the head",,"xyz" +"1071. Human Body","1071.1 Parts of Body","1071.1.2 Other parts",, +"1071. Human Body","1071.2 Organ Systems",,, +"1071. Human Body","1071.2 Organ Systems","1071.2.1 Respiratory System","dsffgdg", +"1072. Human Body",,,,"This chapter describes about human body" +"1072. Human Body","1072.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1072. Human Body","1072.1 Parts of Body","1072.1.1 Key parts in the head",,"xyz" +"1072. Human Body","1072.1 Parts of Body","1072.1.2 Other parts",, +"1072. Human Body","1072.2 Organ Systems",,, +"1072. Human Body","1072.2 Organ Systems","1072.2.1 Respiratory System","dsffgdg", +"1073. Human Body",,,,"This chapter describes about human body" +"1073. Human Body","1073.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1073. Human Body","1073.1 Parts of Body","1073.1.1 Key parts in the head",,"xyz" +"1073. Human Body","1073.1 Parts of Body","1073.1.2 Other parts",, +"1073. Human Body","1073.2 Organ Systems",,, +"1073. Human Body","1073.2 Organ Systems","1073.2.1 Respiratory System","dsffgdg", +"1074. Human Body",,,,"This chapter describes about human body" +"1074. Human Body","1074.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1074. Human Body","1074.1 Parts of Body","1074.1.1 Key parts in the head",,"xyz" +"1074. Human Body","1074.1 Parts of Body","1074.1.2 Other parts",, +"1074. Human Body","1074.2 Organ Systems",,, +"1074. Human Body","1074.2 Organ Systems","1074.2.1 Respiratory System","dsffgdg", +"1075. Human Body",,,,"This chapter describes about human body" +"1075. Human Body","1075.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1075. Human Body","1075.1 Parts of Body","1075.1.1 Key parts in the head",,"xyz" +"1075. Human Body","1075.1 Parts of Body","1075.1.2 Other parts",, +"1075. Human Body","1075.2 Organ Systems",,, +"1075. Human Body","1075.2 Organ Systems","1075.2.1 Respiratory System","dsffgdg", +"1076. Human Body",,,,"This chapter describes about human body" +"1076. Human Body","1076.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1076. Human Body","1076.1 Parts of Body","1076.1.1 Key parts in the head",,"xyz" +"1076. Human Body","1076.1 Parts of Body","1076.1.2 Other parts",, +"1076. Human Body","1076.2 Organ Systems",,, +"1076. Human Body","1076.2 Organ Systems","1076.2.1 Respiratory System","dsffgdg", +"1077. Human Body",,,,"This chapter describes about human body" +"1077. Human Body","1077.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1077. Human Body","1077.1 Parts of Body","1077.1.1 Key parts in the head",,"xyz" +"1077. Human Body","1077.1 Parts of Body","1077.1.2 Other parts",, +"1077. Human Body","1077.2 Organ Systems",,, +"1077. Human Body","1077.2 Organ Systems","1077.2.1 Respiratory System","dsffgdg", +"1078. Human Body",,,,"This chapter describes about human body" +"1078. Human Body","1078.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1078. Human Body","1078.1 Parts of Body","1078.1.1 Key parts in the head",,"xyz" +"1078. Human Body","1078.1 Parts of Body","1078.1.2 Other parts",, +"1078. Human Body","1078.2 Organ Systems",,, +"1078. Human Body","1078.2 Organ Systems","1078.2.1 Respiratory System","dsffgdg", +"1079. Human Body",,,,"This chapter describes about human body" +"1079. Human Body","1079.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1079. Human Body","1079.1 Parts of Body","1079.1.1 Key parts in the head",,"xyz" +"1079. Human Body","1079.1 Parts of Body","1079.1.2 Other parts",, +"1079. Human Body","1079.2 Organ Systems",,, +"1079. Human Body","1079.2 Organ Systems","1079.2.1 Respiratory System","dsffgdg", +"1080. Human Body",,,,"This chapter describes about human body" +"1080. Human Body","1080.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1080. Human Body","1080.1 Parts of Body","1080.1.1 Key parts in the head",,"xyz" +"1080. Human Body","1080.1 Parts of Body","1080.1.2 Other parts",, +"1080. Human Body","1080.2 Organ Systems",,, +"1080. Human Body","1080.2 Organ Systems","1080.2.1 Respiratory System","dsffgdg", +"1081. Human Body",,,,"This chapter describes about human body" +"1081. Human Body","1081.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1081. Human Body","1081.1 Parts of Body","1081.1.1 Key parts in the head",,"xyz" +"1081. Human Body","1081.1 Parts of Body","1081.1.2 Other parts",, +"1081. Human Body","1081.2 Organ Systems",,, +"1081. Human Body","1081.2 Organ Systems","1081.2.1 Respiratory System","dsffgdg", +"1082. Human Body",,,,"This chapter describes about human body" +"1082. Human Body","1082.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1082. Human Body","1082.1 Parts of Body","1082.1.1 Key parts in the head",,"xyz" +"1082. Human Body","1082.1 Parts of Body","1082.1.2 Other parts",, +"1082. Human Body","1082.2 Organ Systems",,, +"1082. Human Body","1082.2 Organ Systems","1082.2.1 Respiratory System","dsffgdg", +"1083. Human Body",,,,"This chapter describes about human body" +"1083. Human Body","1083.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1083. Human Body","1083.1 Parts of Body","1083.1.1 Key parts in the head",,"xyz" +"1083. Human Body","1083.1 Parts of Body","1083.1.2 Other parts",, +"1083. Human Body","1083.2 Organ Systems",,, +"1083. Human Body","1083.2 Organ Systems","1083.2.1 Respiratory System","dsffgdg", +"1084. Human Body",,,,"This chapter describes about human body" +"1084. Human Body","1084.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1084. Human Body","1084.1 Parts of Body","1084.1.1 Key parts in the head",,"xyz" +"1084. Human Body","1084.1 Parts of Body","1084.1.2 Other parts",, +"1084. Human Body","1084.2 Organ Systems",,, +"1084. Human Body","1084.2 Organ Systems","1084.2.1 Respiratory System","dsffgdg", +"1085. Human Body",,,,"This chapter describes about human body" +"1085. Human Body","1085.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1085. Human Body","1085.1 Parts of Body","1085.1.1 Key parts in the head",,"xyz" +"1085. Human Body","1085.1 Parts of Body","1085.1.2 Other parts",, +"1085. Human Body","1085.2 Organ Systems",,, +"1085. Human Body","1085.2 Organ Systems","1085.2.1 Respiratory System","dsffgdg", +"1086. Human Body",,,,"This chapter describes about human body" +"1086. Human Body","1086.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1086. Human Body","1086.1 Parts of Body","1086.1.1 Key parts in the head",,"xyz" +"1086. Human Body","1086.1 Parts of Body","1086.1.2 Other parts",, +"1086. Human Body","1086.2 Organ Systems",,, +"1086. Human Body","1086.2 Organ Systems","1086.2.1 Respiratory System","dsffgdg", +"1087. Human Body",,,,"This chapter describes about human body" +"1087. Human Body","1087.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1087. Human Body","1087.1 Parts of Body","1087.1.1 Key parts in the head",,"xyz" +"1087. Human Body","1087.1 Parts of Body","1087.1.2 Other parts",, +"1087. Human Body","1087.2 Organ Systems",,, +"1087. Human Body","1087.2 Organ Systems","1087.2.1 Respiratory System","dsffgdg", +"1088. Human Body",,,,"This chapter describes about human body" +"1088. Human Body","1088.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1088. Human Body","1088.1 Parts of Body","1088.1.1 Key parts in the head",,"xyz" +"1088. Human Body","1088.1 Parts of Body","1088.1.2 Other parts",, +"1088. Human Body","1088.2 Organ Systems",,, +"1088. Human Body","1088.2 Organ Systems","1088.2.1 Respiratory System","dsffgdg", +"1089. Human Body",,,,"This chapter describes about human body" +"1089. Human Body","1089.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1089. Human Body","1089.1 Parts of Body","1089.1.1 Key parts in the head",,"xyz" +"1089. Human Body","1089.1 Parts of Body","1089.1.2 Other parts",, +"1089. Human Body","1089.2 Organ Systems",,, +"1089. Human Body","1089.2 Organ Systems","1089.2.1 Respiratory System","dsffgdg", +"1090. Human Body",,,,"This chapter describes about human body" +"1090. Human Body","1090.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1090. Human Body","1090.1 Parts of Body","1090.1.1 Key parts in the head",,"xyz" +"1090. Human Body","1090.1 Parts of Body","1090.1.2 Other parts",, +"1090. Human Body","1090.2 Organ Systems",,, +"1090. Human Body","1090.2 Organ Systems","1090.2.1 Respiratory System","dsffgdg", +"1091. Human Body",,,,"This chapter describes about human body" +"1091. Human Body","1091.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1091. Human Body","1091.1 Parts of Body","1091.1.1 Key parts in the head",,"xyz" +"1091. Human Body","1091.1 Parts of Body","1091.1.2 Other parts",, +"1091. Human Body","1091.2 Organ Systems",,, +"1091. Human Body","1091.2 Organ Systems","1091.2.1 Respiratory System","dsffgdg", +"1092. Human Body",,,,"This chapter describes about human body" +"1092. Human Body","1092.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1092. Human Body","1092.1 Parts of Body","1092.1.1 Key parts in the head",,"xyz" +"1092. Human Body","1092.1 Parts of Body","1092.1.2 Other parts",, +"1092. Human Body","1092.2 Organ Systems",,, +"1092. Human Body","1092.2 Organ Systems","1092.2.1 Respiratory System","dsffgdg", +"1093. Human Body",,,,"This chapter describes about human body" +"1093. Human Body","1093.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1093. Human Body","1093.1 Parts of Body","1093.1.1 Key parts in the head",,"xyz" +"1093. Human Body","1093.1 Parts of Body","1093.1.2 Other parts",, +"1093. Human Body","1093.2 Organ Systems",,, +"1093. Human Body","1093.2 Organ Systems","1093.2.1 Respiratory System","dsffgdg", +"1094. Human Body",,,,"This chapter describes about human body" +"1094. Human Body","1094.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1094. Human Body","1094.1 Parts of Body","1094.1.1 Key parts in the head",,"xyz" +"1094. Human Body","1094.1 Parts of Body","1094.1.2 Other parts",, +"1094. Human Body","1094.2 Organ Systems",,, +"1094. Human Body","1094.2 Organ Systems","1094.2.1 Respiratory System","dsffgdg", +"1095. Human Body",,,,"This chapter describes about human body" +"1095. Human Body","1095.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1095. Human Body","1095.1 Parts of Body","1095.1.1 Key parts in the head",,"xyz" +"1095. Human Body","1095.1 Parts of Body","1095.1.2 Other parts",, +"1095. Human Body","1095.2 Organ Systems",,, +"1095. Human Body","1095.2 Organ Systems","1095.2.1 Respiratory System","dsffgdg", +"1096. Human Body",,,,"This chapter describes about human body" +"1096. Human Body","1096.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1096. Human Body","1096.1 Parts of Body","1096.1.1 Key parts in the head",,"xyz" +"1096. Human Body","1096.1 Parts of Body","1096.1.2 Other parts",, +"1096. Human Body","1096.2 Organ Systems",,, +"1096. Human Body","1096.2 Organ Systems","1096.2.1 Respiratory System","dsffgdg", +"1097. Human Body",,,,"This chapter describes about human body" +"1097. Human Body","1097.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1097. Human Body","1097.1 Parts of Body","1097.1.1 Key parts in the head",,"xyz" +"1097. Human Body","1097.1 Parts of Body","1097.1.2 Other parts",, +"1097. Human Body","1097.2 Organ Systems",,, +"1097. Human Body","1097.2 Organ Systems","1097.2.1 Respiratory System","dsffgdg", +"1098. Human Body",,,,"This chapter describes about human body" +"1098. Human Body","1098.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1098. Human Body","1098.1 Parts of Body","1098.1.1 Key parts in the head",,"xyz" +"1098. Human Body","1098.1 Parts of Body","1098.1.2 Other parts",, +"1098. Human Body","1098.2 Organ Systems",,, +"1098. Human Body","1098.2 Organ Systems","1098.2.1 Respiratory System","dsffgdg", +"1099. Human Body",,,,"This chapter describes about human body" +"1099. Human Body","1099.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1099. Human Body","1099.1 Parts of Body","1099.1.1 Key parts in the head",,"xyz" +"1099. Human Body","1099.1 Parts of Body","1099.1.2 Other parts",, +"1099. Human Body","1099.2 Organ Systems",,, +"1099. Human Body","1099.2 Organ Systems","1099.2.1 Respiratory System","dsffgdg", +"1100. Human Body",,,,"This chapter describes about human body" +"1100. Human Body","1100.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1100. Human Body","1100.1 Parts of Body","1100.1.1 Key parts in the head",,"xyz" +"1100. Human Body","1100.1 Parts of Body","1100.1.2 Other parts",, +"1100. Human Body","1100.2 Organ Systems",,, +"1100. Human Body","1100.2 Organ Systems","1100.2.1 Respiratory System","dsffgdg", +"1101. Human Body",,,,"This chapter describes about human body" +"1101. Human Body","1101.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1101. Human Body","1101.1 Parts of Body","1101.1.1 Key parts in the head",,"xyz" +"1101. Human Body","1101.1 Parts of Body","1101.1.2 Other parts",, +"1101. Human Body","1101.2 Organ Systems",,, +"1101. Human Body","1101.2 Organ Systems","1101.2.1 Respiratory System","dsffgdg", +"1102. Human Body",,,,"This chapter describes about human body" +"1102. Human Body","1102.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1102. Human Body","1102.1 Parts of Body","1102.1.1 Key parts in the head",,"xyz" +"1102. Human Body","1102.1 Parts of Body","1102.1.2 Other parts",, +"1102. Human Body","1102.2 Organ Systems",,, +"1102. Human Body","1102.2 Organ Systems","1102.2.1 Respiratory System","dsffgdg", +"1103. Human Body",,,,"This chapter describes about human body" +"1103. Human Body","1103.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1103. Human Body","1103.1 Parts of Body","1103.1.1 Key parts in the head",,"xyz" +"1103. Human Body","1103.1 Parts of Body","1103.1.2 Other parts",, +"1103. Human Body","1103.2 Organ Systems",,, +"1103. Human Body","1103.2 Organ Systems","1103.2.1 Respiratory System","dsffgdg", +"1104. Human Body",,,,"This chapter describes about human body" +"1104. Human Body","1104.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1104. Human Body","1104.1 Parts of Body","1104.1.1 Key parts in the head",,"xyz" +"1104. Human Body","1104.1 Parts of Body","1104.1.2 Other parts",, +"1104. Human Body","1104.2 Organ Systems",,, +"1104. Human Body","1104.2 Organ Systems","1104.2.1 Respiratory System","dsffgdg", +"1105. Human Body",,,,"This chapter describes about human body" +"1105. Human Body","1105.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1105. Human Body","1105.1 Parts of Body","1105.1.1 Key parts in the head",,"xyz" +"1105. Human Body","1105.1 Parts of Body","1105.1.2 Other parts",, +"1105. Human Body","1105.2 Organ Systems",,, +"1105. Human Body","1105.2 Organ Systems","1105.2.1 Respiratory System","dsffgdg", +"1106. Human Body",,,,"This chapter describes about human body" +"1106. Human Body","1106.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1106. Human Body","1106.1 Parts of Body","1106.1.1 Key parts in the head",,"xyz" +"1106. Human Body","1106.1 Parts of Body","1106.1.2 Other parts",, +"1106. Human Body","1106.2 Organ Systems",,, +"1106. Human Body","1106.2 Organ Systems","1106.2.1 Respiratory System","dsffgdg", +"1107. Human Body",,,,"This chapter describes about human body" +"1107. Human Body","1107.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1107. Human Body","1107.1 Parts of Body","1107.1.1 Key parts in the head",,"xyz" +"1107. Human Body","1107.1 Parts of Body","1107.1.2 Other parts",, +"1107. Human Body","1107.2 Organ Systems",,, +"1107. Human Body","1107.2 Organ Systems","1107.2.1 Respiratory System","dsffgdg", +"1108. Human Body",,,,"This chapter describes about human body" +"1108. Human Body","1108.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1108. Human Body","1108.1 Parts of Body","1108.1.1 Key parts in the head",,"xyz" +"1108. Human Body","1108.1 Parts of Body","1108.1.2 Other parts",, +"1108. Human Body","1108.2 Organ Systems",,, +"1108. Human Body","1108.2 Organ Systems","1108.2.1 Respiratory System","dsffgdg", +"1109. Human Body",,,,"This chapter describes about human body" +"1109. Human Body","1109.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1109. Human Body","1109.1 Parts of Body","1109.1.1 Key parts in the head",,"xyz" +"1109. Human Body","1109.1 Parts of Body","1109.1.2 Other parts",, +"1109. Human Body","1109.2 Organ Systems",,, +"1109. Human Body","1109.2 Organ Systems","1109.2.1 Respiratory System","dsffgdg", +"1110. Human Body",,,,"This chapter describes about human body" +"1110. Human Body","1110.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1110. Human Body","1110.1 Parts of Body","1110.1.1 Key parts in the head",,"xyz" +"1110. Human Body","1110.1 Parts of Body","1110.1.2 Other parts",, +"1110. Human Body","1110.2 Organ Systems",,, +"1110. Human Body","1110.2 Organ Systems","1110.2.1 Respiratory System","dsffgdg", +"1111. Human Body",,,,"This chapter describes about human body" +"1111. Human Body","1111.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1111. Human Body","1111.1 Parts of Body","1111.1.1 Key parts in the head",,"xyz" +"1111. Human Body","1111.1 Parts of Body","1111.1.2 Other parts",, +"1111. Human Body","1111.2 Organ Systems",,, +"1111. Human Body","1111.2 Organ Systems","1111.2.1 Respiratory System","dsffgdg", +"1112. Human Body",,,,"This chapter describes about human body" +"1112. Human Body","1112.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1112. Human Body","1112.1 Parts of Body","1112.1.1 Key parts in the head",,"xyz" +"1112. Human Body","1112.1 Parts of Body","1112.1.2 Other parts",, +"1112. Human Body","1112.2 Organ Systems",,, +"1112. Human Body","1112.2 Organ Systems","1112.2.1 Respiratory System","dsffgdg", +"1113. Human Body",,,,"This chapter describes about human body" +"1113. Human Body","1113.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1113. Human Body","1113.1 Parts of Body","1113.1.1 Key parts in the head",,"xyz" +"1113. Human Body","1113.1 Parts of Body","1113.1.2 Other parts",, +"1113. Human Body","1113.2 Organ Systems",,, +"1113. Human Body","1113.2 Organ Systems","1113.2.1 Respiratory System","dsffgdg", +"1114. Human Body",,,,"This chapter describes about human body" +"1114. Human Body","1114.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1114. Human Body","1114.1 Parts of Body","1114.1.1 Key parts in the head",,"xyz" +"1114. Human Body","1114.1 Parts of Body","1114.1.2 Other parts",, +"1114. Human Body","1114.2 Organ Systems",,, +"1114. Human Body","1114.2 Organ Systems","1114.2.1 Respiratory System","dsffgdg", +"1115. Human Body",,,,"This chapter describes about human body" +"1115. Human Body","1115.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1115. Human Body","1115.1 Parts of Body","1115.1.1 Key parts in the head",,"xyz" +"1115. Human Body","1115.1 Parts of Body","1115.1.2 Other parts",, +"1115. Human Body","1115.2 Organ Systems",,, +"1115. Human Body","1115.2 Organ Systems","1115.2.1 Respiratory System","dsffgdg", +"1116. Human Body",,,,"This chapter describes about human body" +"1116. Human Body","1116.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1116. Human Body","1116.1 Parts of Body","1116.1.1 Key parts in the head",,"xyz" +"1116. Human Body","1116.1 Parts of Body","1116.1.2 Other parts",, +"1116. Human Body","1116.2 Organ Systems",,, +"1116. Human Body","1116.2 Organ Systems","1116.2.1 Respiratory System","dsffgdg", +"1117. Human Body",,,,"This chapter describes about human body" +"1117. Human Body","1117.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1117. Human Body","1117.1 Parts of Body","1117.1.1 Key parts in the head",,"xyz" +"1117. Human Body","1117.1 Parts of Body","1117.1.2 Other parts",, +"1117. Human Body","1117.2 Organ Systems",,, +"1117. Human Body","1117.2 Organ Systems","1117.2.1 Respiratory System","dsffgdg", +"1118. Human Body",,,,"This chapter describes about human body" +"1118. Human Body","1118.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1118. Human Body","1118.1 Parts of Body","1118.1.1 Key parts in the head",,"xyz" +"1118. Human Body","1118.1 Parts of Body","1118.1.2 Other parts",, +"1118. Human Body","1118.2 Organ Systems",,, +"1118. Human Body","1118.2 Organ Systems","1118.2.1 Respiratory System","dsffgdg", +"1119. Human Body",,,,"This chapter describes about human body" +"1119. Human Body","1119.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1119. Human Body","1119.1 Parts of Body","1119.1.1 Key parts in the head",,"xyz" +"1119. Human Body","1119.1 Parts of Body","1119.1.2 Other parts",, +"1119. Human Body","1119.2 Organ Systems",,, +"1119. Human Body","1119.2 Organ Systems","1119.2.1 Respiratory System","dsffgdg", +"1120. Human Body",,,,"This chapter describes about human body" +"1120. Human Body","1120.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1120. Human Body","1120.1 Parts of Body","1120.1.1 Key parts in the head",,"xyz" +"1120. Human Body","1120.1 Parts of Body","1120.1.2 Other parts",, +"1120. Human Body","1120.2 Organ Systems",,, +"1120. Human Body","1120.2 Organ Systems","1120.2.1 Respiratory System","dsffgdg", +"1121. Human Body",,,,"This chapter describes about human body" +"1121. Human Body","1121.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1121. Human Body","1121.1 Parts of Body","1121.1.1 Key parts in the head",,"xyz" +"1121. Human Body","1121.1 Parts of Body","1121.1.2 Other parts",, +"1121. Human Body","1121.2 Organ Systems",,, +"1121. Human Body","1121.2 Organ Systems","1121.2.1 Respiratory System","dsffgdg", +"1122. Human Body",,,,"This chapter describes about human body" +"1122. Human Body","1122.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1122. Human Body","1122.1 Parts of Body","1122.1.1 Key parts in the head",,"xyz" +"1122. Human Body","1122.1 Parts of Body","1122.1.2 Other parts",, +"1122. Human Body","1122.2 Organ Systems",,, +"1122. Human Body","1122.2 Organ Systems","1122.2.1 Respiratory System","dsffgdg", +"1123. Human Body",,,,"This chapter describes about human body" +"1123. Human Body","1123.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1123. Human Body","1123.1 Parts of Body","1123.1.1 Key parts in the head",,"xyz" +"1123. Human Body","1123.1 Parts of Body","1123.1.2 Other parts",, +"1123. Human Body","1123.2 Organ Systems",,, +"1123. Human Body","1123.2 Organ Systems","1123.2.1 Respiratory System","dsffgdg", +"1124. Human Body",,,,"This chapter describes about human body" +"1124. Human Body","1124.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1124. Human Body","1124.1 Parts of Body","1124.1.1 Key parts in the head",,"xyz" +"1124. Human Body","1124.1 Parts of Body","1124.1.2 Other parts",, +"1124. Human Body","1124.2 Organ Systems",,, +"1124. Human Body","1124.2 Organ Systems","1124.2.1 Respiratory System","dsffgdg", +"1125. Human Body",,,,"This chapter describes about human body" +"1125. Human Body","1125.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1125. Human Body","1125.1 Parts of Body","1125.1.1 Key parts in the head",,"xyz" +"1125. Human Body","1125.1 Parts of Body","1125.1.2 Other parts",, +"1125. Human Body","1125.2 Organ Systems",,, +"1125. Human Body","1125.2 Organ Systems","1125.2.1 Respiratory System","dsffgdg", +"1126. Human Body",,,,"This chapter describes about human body" +"1126. Human Body","1126.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1126. Human Body","1126.1 Parts of Body","1126.1.1 Key parts in the head",,"xyz" +"1126. Human Body","1126.1 Parts of Body","1126.1.2 Other parts",, +"1126. Human Body","1126.2 Organ Systems",,, +"1126. Human Body","1126.2 Organ Systems","1126.2.1 Respiratory System","dsffgdg", +"1127. Human Body",,,,"This chapter describes about human body" +"1127. Human Body","1127.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1127. Human Body","1127.1 Parts of Body","1127.1.1 Key parts in the head",,"xyz" +"1127. Human Body","1127.1 Parts of Body","1127.1.2 Other parts",, +"1127. Human Body","1127.2 Organ Systems",,, +"1127. Human Body","1127.2 Organ Systems","1127.2.1 Respiratory System","dsffgdg", +"1128. Human Body",,,,"This chapter describes about human body" +"1128. Human Body","1128.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1128. Human Body","1128.1 Parts of Body","1128.1.1 Key parts in the head",,"xyz" +"1128. Human Body","1128.1 Parts of Body","1128.1.2 Other parts",, +"1128. Human Body","1128.2 Organ Systems",,, +"1128. Human Body","1128.2 Organ Systems","1128.2.1 Respiratory System","dsffgdg", +"1129. Human Body",,,,"This chapter describes about human body" +"1129. Human Body","1129.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1129. Human Body","1129.1 Parts of Body","1129.1.1 Key parts in the head",,"xyz" +"1129. Human Body","1129.1 Parts of Body","1129.1.2 Other parts",, +"1129. Human Body","1129.2 Organ Systems",,, +"1129. Human Body","1129.2 Organ Systems","1129.2.1 Respiratory System","dsffgdg", +"1130. Human Body",,,,"This chapter describes about human body" +"1130. Human Body","1130.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1130. Human Body","1130.1 Parts of Body","1130.1.1 Key parts in the head",,"xyz" +"1130. Human Body","1130.1 Parts of Body","1130.1.2 Other parts",, +"1130. Human Body","1130.2 Organ Systems",,, +"1130. Human Body","1130.2 Organ Systems","1130.2.1 Respiratory System","dsffgdg", +"1131. Human Body",,,,"This chapter describes about human body" +"1131. Human Body","1131.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1131. Human Body","1131.1 Parts of Body","1131.1.1 Key parts in the head",,"xyz" +"1131. Human Body","1131.1 Parts of Body","1131.1.2 Other parts",, +"1131. Human Body","1131.2 Organ Systems",,, +"1131. Human Body","1131.2 Organ Systems","1131.2.1 Respiratory System","dsffgdg", +"1132. Human Body",,,,"This chapter describes about human body" +"1132. Human Body","1132.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1132. Human Body","1132.1 Parts of Body","1132.1.1 Key parts in the head",,"xyz" +"1132. Human Body","1132.1 Parts of Body","1132.1.2 Other parts",, +"1132. Human Body","1132.2 Organ Systems",,, +"1132. Human Body","1132.2 Organ Systems","1132.2.1 Respiratory System","dsffgdg", +"1133. Human Body",,,,"This chapter describes about human body" +"1133. Human Body","1133.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1133. Human Body","1133.1 Parts of Body","1133.1.1 Key parts in the head",,"xyz" +"1133. Human Body","1133.1 Parts of Body","1133.1.2 Other parts",, +"1133. Human Body","1133.2 Organ Systems",,, +"1133. Human Body","1133.2 Organ Systems","1133.2.1 Respiratory System","dsffgdg", +"1134. Human Body",,,,"This chapter describes about human body" +"1134. Human Body","1134.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1134. Human Body","1134.1 Parts of Body","1134.1.1 Key parts in the head",,"xyz" +"1134. Human Body","1134.1 Parts of Body","1134.1.2 Other parts",, +"1134. Human Body","1134.2 Organ Systems",,, +"1134. Human Body","1134.2 Organ Systems","1134.2.1 Respiratory System","dsffgdg", +"1135. Human Body",,,,"This chapter describes about human body" +"1135. Human Body","1135.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1135. Human Body","1135.1 Parts of Body","1135.1.1 Key parts in the head",,"xyz" +"1135. Human Body","1135.1 Parts of Body","1135.1.2 Other parts",, +"1135. Human Body","1135.2 Organ Systems",,, +"1135. Human Body","1135.2 Organ Systems","1135.2.1 Respiratory System","dsffgdg", +"1136. Human Body",,,,"This chapter describes about human body" +"1136. Human Body","1136.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1136. Human Body","1136.1 Parts of Body","1136.1.1 Key parts in the head",,"xyz" +"1136. Human Body","1136.1 Parts of Body","1136.1.2 Other parts",, +"1136. Human Body","1136.2 Organ Systems",,, +"1136. Human Body","1136.2 Organ Systems","1136.2.1 Respiratory System","dsffgdg", +"1137. Human Body",,,,"This chapter describes about human body" +"1137. Human Body","1137.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1137. Human Body","1137.1 Parts of Body","1137.1.1 Key parts in the head",,"xyz" +"1137. Human Body","1137.1 Parts of Body","1137.1.2 Other parts",, +"1137. Human Body","1137.2 Organ Systems",,, +"1137. Human Body","1137.2 Organ Systems","1137.2.1 Respiratory System","dsffgdg", +"1138. Human Body",,,,"This chapter describes about human body" +"1138. Human Body","1138.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1138. Human Body","1138.1 Parts of Body","1138.1.1 Key parts in the head",,"xyz" +"1138. Human Body","1138.1 Parts of Body","1138.1.2 Other parts",, +"1138. Human Body","1138.2 Organ Systems",,, +"1138. Human Body","1138.2 Organ Systems","1138.2.1 Respiratory System","dsffgdg", +"1139. Human Body",,,,"This chapter describes about human body" +"1139. Human Body","1139.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1139. Human Body","1139.1 Parts of Body","1139.1.1 Key parts in the head",,"xyz" +"1139. Human Body","1139.1 Parts of Body","1139.1.2 Other parts",, +"1139. Human Body","1139.2 Organ Systems",,, +"1139. Human Body","1139.2 Organ Systems","1139.2.1 Respiratory System","dsffgdg", +"1140. Human Body",,,,"This chapter describes about human body" +"1140. Human Body","1140.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1140. Human Body","1140.1 Parts of Body","1140.1.1 Key parts in the head",,"xyz" +"1140. Human Body","1140.1 Parts of Body","1140.1.2 Other parts",, +"1140. Human Body","1140.2 Organ Systems",,, +"1140. Human Body","1140.2 Organ Systems","1140.2.1 Respiratory System","dsffgdg", +"1141. Human Body",,,,"This chapter describes about human body" +"1141. Human Body","1141.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1141. Human Body","1141.1 Parts of Body","1141.1.1 Key parts in the head",,"xyz" +"1141. Human Body","1141.1 Parts of Body","1141.1.2 Other parts",, +"1141. Human Body","1141.2 Organ Systems",,, +"1141. Human Body","1141.2 Organ Systems","1141.2.1 Respiratory System","dsffgdg", +"1142. Human Body",,,,"This chapter describes about human body" +"1142. Human Body","1142.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1142. Human Body","1142.1 Parts of Body","1142.1.1 Key parts in the head",,"xyz" +"1142. Human Body","1142.1 Parts of Body","1142.1.2 Other parts",, +"1142. Human Body","1142.2 Organ Systems",,, +"1142. Human Body","1142.2 Organ Systems","1142.2.1 Respiratory System","dsffgdg", +"1143. Human Body",,,,"This chapter describes about human body" +"1143. Human Body","1143.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1143. Human Body","1143.1 Parts of Body","1143.1.1 Key parts in the head",,"xyz" +"1143. Human Body","1143.1 Parts of Body","1143.1.2 Other parts",, +"1143. Human Body","1143.2 Organ Systems",,, +"1143. Human Body","1143.2 Organ Systems","1143.2.1 Respiratory System","dsffgdg", +"1144. Human Body",,,,"This chapter describes about human body" +"1144. Human Body","1144.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1144. Human Body","1144.1 Parts of Body","1144.1.1 Key parts in the head",,"xyz" +"1144. Human Body","1144.1 Parts of Body","1144.1.2 Other parts",, +"1144. Human Body","1144.2 Organ Systems",,, +"1144. Human Body","1144.2 Organ Systems","1144.2.1 Respiratory System","dsffgdg", +"1145. Human Body",,,,"This chapter describes about human body" +"1145. Human Body","1145.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1145. Human Body","1145.1 Parts of Body","1145.1.1 Key parts in the head",,"xyz" +"1145. Human Body","1145.1 Parts of Body","1145.1.2 Other parts",, +"1145. Human Body","1145.2 Organ Systems",,, +"1145. Human Body","1145.2 Organ Systems","1145.2.1 Respiratory System","dsffgdg", +"1146. Human Body",,,,"This chapter describes about human body" +"1146. Human Body","1146.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1146. Human Body","1146.1 Parts of Body","1146.1.1 Key parts in the head",,"xyz" +"1146. Human Body","1146.1 Parts of Body","1146.1.2 Other parts",, +"1146. Human Body","1146.2 Organ Systems",,, +"1146. Human Body","1146.2 Organ Systems","1146.2.1 Respiratory System","dsffgdg", +"1147. Human Body",,,,"This chapter describes about human body" +"1147. Human Body","1147.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1147. Human Body","1147.1 Parts of Body","1147.1.1 Key parts in the head",,"xyz" +"1147. Human Body","1147.1 Parts of Body","1147.1.2 Other parts",, +"1147. Human Body","1147.2 Organ Systems",,, +"1147. Human Body","1147.2 Organ Systems","1147.2.1 Respiratory System","dsffgdg", +"1148. Human Body",,,,"This chapter describes about human body" +"1148. Human Body","1148.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1148. Human Body","1148.1 Parts of Body","1148.1.1 Key parts in the head",,"xyz" +"1148. Human Body","1148.1 Parts of Body","1148.1.2 Other parts",, +"1148. Human Body","1148.2 Organ Systems",,, +"1148. Human Body","1148.2 Organ Systems","1148.2.1 Respiratory System","dsffgdg", +"1149. Human Body",,,,"This chapter describes about human body" +"1149. Human Body","1149.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1149. Human Body","1149.1 Parts of Body","1149.1.1 Key parts in the head",,"xyz" +"1149. Human Body","1149.1 Parts of Body","1149.1.2 Other parts",, +"1149. Human Body","1149.2 Organ Systems",,, +"1149. Human Body","1149.2 Organ Systems","1149.2.1 Respiratory System","dsffgdg", +"1150. Human Body",,,,"This chapter describes about human body" +"1150. Human Body","1150.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1150. Human Body","1150.1 Parts of Body","1150.1.1 Key parts in the head",,"xyz" +"1150. Human Body","1150.1 Parts of Body","1150.1.2 Other parts",, +"1150. Human Body","1150.2 Organ Systems",,, +"1150. Human Body","1150.2 Organ Systems","1150.2.1 Respiratory System","dsffgdg", +"1151. Human Body",,,,"This chapter describes about human body" +"1151. Human Body","1151.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1151. Human Body","1151.1 Parts of Body","1151.1.1 Key parts in the head",,"xyz" +"1151. Human Body","1151.1 Parts of Body","1151.1.2 Other parts",, +"1151. Human Body","1151.2 Organ Systems",,, +"1151. Human Body","1151.2 Organ Systems","1151.2.1 Respiratory System","dsffgdg", +"1152. Human Body",,,,"This chapter describes about human body" +"1152. Human Body","1152.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1152. Human Body","1152.1 Parts of Body","1152.1.1 Key parts in the head",,"xyz" +"1152. Human Body","1152.1 Parts of Body","1152.1.2 Other parts",, +"1152. Human Body","1152.2 Organ Systems",,, +"1152. Human Body","1152.2 Organ Systems","1152.2.1 Respiratory System","dsffgdg", +"1153. Human Body",,,,"This chapter describes about human body" +"1153. Human Body","1153.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1153. Human Body","1153.1 Parts of Body","1153.1.1 Key parts in the head",,"xyz" +"1153. Human Body","1153.1 Parts of Body","1153.1.2 Other parts",, +"1153. Human Body","1153.2 Organ Systems",,, +"1153. Human Body","1153.2 Organ Systems","1153.2.1 Respiratory System","dsffgdg", +"1154. Human Body",,,,"This chapter describes about human body" +"1154. Human Body","1154.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1154. Human Body","1154.1 Parts of Body","1154.1.1 Key parts in the head",,"xyz" +"1154. Human Body","1154.1 Parts of Body","1154.1.2 Other parts",, +"1154. Human Body","1154.2 Organ Systems",,, +"1154. Human Body","1154.2 Organ Systems","1154.2.1 Respiratory System","dsffgdg", +"1155. Human Body",,,,"This chapter describes about human body" +"1155. Human Body","1155.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1155. Human Body","1155.1 Parts of Body","1155.1.1 Key parts in the head",,"xyz" +"1155. Human Body","1155.1 Parts of Body","1155.1.2 Other parts",, +"1155. Human Body","1155.2 Organ Systems",,, +"1155. Human Body","1155.2 Organ Systems","1155.2.1 Respiratory System","dsffgdg", +"1156. Human Body",,,,"This chapter describes about human body" +"1156. Human Body","1156.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1156. Human Body","1156.1 Parts of Body","1156.1.1 Key parts in the head",,"xyz" +"1156. Human Body","1156.1 Parts of Body","1156.1.2 Other parts",, +"1156. Human Body","1156.2 Organ Systems",,, +"1156. Human Body","1156.2 Organ Systems","1156.2.1 Respiratory System","dsffgdg", +"1157. Human Body",,,,"This chapter describes about human body" +"1157. Human Body","1157.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"1157. Human Body","1157.1 Parts of Body","1157.1.1 Key parts in the head",,"xyz" +"1157. Human Body","1157.1 Parts of Body","1157.1.2 Other parts",, +"1157. Human Body","1157.2 Organ Systems",,, +"1157. Human Body","1157.2 Organ Systems","1157.2.1 Respiratory System","dsffgdg", diff --git a/content-api/collection-csv-actors/src/test/resources/CreateTOC.csv b/content-api/collection-csv-actors/src/test/resources/CreateTOC.csv new file mode 100644 index 0000000000000000000000000000000000000000..892c9787f5bc8c295b94d9e9030d8191c5f09dbf --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/CreateTOC.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description" +"5. Human Body",,,,"This chapter describes about human body" +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz" +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",, +"5. Human Body","5.2 Organ Systems",,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg", diff --git a/content-api/collection-csv-actors/src/test/resources/DuplicateQRCode.csv b/content-api/collection-csv-actors/src/test/resources/DuplicateQRCode.csv new file mode 100644 index 0000000000000000000000000000000000000000..38de02d6b23dd3ffa8063baaaee9d466c5dc065e --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/DuplicateQRCode.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132828084877148161531","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876574721523","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes","Q51XXZ ","do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876738561525","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876165121519","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084877066241529","5. Human Body","5.2 Organ Systems",,,,,,"Yes","Q51XXZ ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876492801521","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876820481527","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","Yes","LURAUV ","do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/DuplicateRecords.csv b/content-api/collection-csv-actors/src/test/resources/DuplicateRecords.csv new file mode 100644 index 0000000000000000000000000000000000000000..88065ad9580bc504a371f2d57bbf1ad9a6924923 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/DuplicateRecords.csv @@ -0,0 +1,8 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description" +"5. Human Body",,,,"This chapter describes about human body" +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz" +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",, +"5. Human Body","5.2 Organ Systems",,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg", +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidCollectionName.csv b/content-api/collection-csv-actors/src/test/resources/InvalidCollectionName.csv new file mode 100644 index 0000000000000000000000000000000000000000..b53189753bbcfd006ec9671d2e55866ba70cabf1 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidCollectionName.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132828084877148161531","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876574721523","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes","Q51XXZ ","do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"sdf","do_1132828084876738561525","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876165121519","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"asdddf","do_1132828084877066241529","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876492801521","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sdfsdf,"do_1132828084876820481527","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","Yes","LURAUV ","do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidHeaderSequence.csv b/content-api/collection-csv-actors/src/test/resources/InvalidHeaderSequence.csv new file mode 100644 index 0000000000000000000000000000000000000000..27fb67c4c37218f85d811858666f420298fef143 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidHeaderSequence.csv @@ -0,0 +1,7 @@ +"Level 2 Folder","Level 1 Folder","Level 3 Folder","Level 4 Folder","Description" +,"5. Human Body",,,"This chapter describes about human body" +"5.1 Parts of Body","5. Human Body",,,"This section describes about various part of the body such as head, hands, legs etc." +"5.1 Parts of Body","5. Human Body","5.1.1 Key parts in the head",,"xyz" +"5.1 Parts of Body","5. Human Body","5.1.2 Other parts",, +"5.2 Organ Systems","5. Human Body",,, +"5.2 Organ Systems","5. Human Body","5.2.1 Respiratory System","dsffgdg", diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidHeadersFound.csv b/content-api/collection-csv-actors/src/test/resources/InvalidHeadersFound.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6c6e2e2b5bdd00e834762657257d9eb84c3805c --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidHeadersFound.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Description","dfsgfgfd" +"5. Human Body",,,"This chapter describes about human body", +"5. Human Body","5.1 Parts of Body",,"This section describes about various part of the body such as head, hands, legs etc.","ds" +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head","xyz", +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",, +"5. Human Body","5.2 Organ Systems",,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,"dfw" diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContentContentType.csv b/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContentContentType.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c94f34f01757b8502a419c475615d2b0f90f3f0 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContentContentType.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132833371215462401716","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215134721712","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.",,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215872001720","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","No",,"do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215708161718","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215953921722","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215298561714","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,,"test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371214970881710","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","No",,"do_1132338069147811841118","do_11322383952751820816 ","do_113281831886274560129 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContents.csv b/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContents.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e9c1b0c56feb19293d99412ac517b6fd4fc0608 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidLinkedContents.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132833371215462401716","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215134721712","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.",,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215872001720","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","No",,"do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215708161718","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215953921722","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215298561714","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,,"test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371214970881710","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","No",,"do_1132338069147811841118","do_11322383952751820816 ","do_113221690256611410",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidMappedTopics.csv b/content-api/collection-csv-actors/src/test/resources/InvalidMappedTopics.csv new file mode 100644 index 0000000000000000000000000000000000000000..506820ad3c59e6777ed2d281c807496e4637b6c3 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidMappedTopics.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132833371215462401716","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215134721712","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"No",,"do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215872001720","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","No",,"do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215708161718","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215953921722","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215298561714","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371214970881710","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","No",,"do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidNodeIds.csv b/content-api/collection-csv-actors/src/test/resources/InvalidNodeIds.csv new file mode 100644 index 0000000000000000000000000000000000000000..487025e89fa6b091f8f08d5fc8c0d0dd72fd0dd0 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidNodeIds.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132828084877148161531","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876574721523","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes","Q51XXZ ","do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876738561525","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876165121519","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084877066241529","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876492801521","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876820481527","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","Yes","LURAUV ","do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/InvalidQRCodes.csv b/content-api/collection-csv-actors/src/test/resources/InvalidQRCodes.csv new file mode 100644 index 0000000000000000000000000000000000000000..385537fe2c7bff1c00a392d98a4dcff61c6caa59 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/InvalidQRCodes.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132833371215462401716","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215134721712","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes","Q51XXZ ","do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215872001720","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215708161718","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215953921722","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215298561714","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371214970881710","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","Yes","LURAUV ","do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/LinkedContentsDataMissing.csv b/content-api/collection-csv-actors/src/test/resources/LinkedContentsDataMissing.csv new file mode 100644 index 0000000000000000000000000000000000000000..08352caf16e1e7e38d4f7b37c1639d988abc7bc8 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/LinkedContentsDataMissing.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132828084877148161531","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876574721523","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes","Q51XXZ ","do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876738561525","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ",,"do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876165121519","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084877066241529","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876492801521","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876820481527","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf","Yes","LURAUV ","do_1132338069147811841118",,"do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/MandatoryColMissingData.csv b/content-api/collection-csv-actors/src/test/resources/MandatoryColMissingData.csv new file mode 100644 index 0000000000000000000000000000000000000000..60fb3b9cd00a0ed52072e048cbc9f673cd1763a5 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/MandatoryColMissingData.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description" +"5. Human Body",,,,"This chapter describes about human body" +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc." +,"5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz" +"5. Human Body",,"5.1.2 Other parts",, +"5. Human Body","5.2 Organ Systems",,, +" ","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg", diff --git a/content-api/collection-csv-actors/src/test/resources/NoRecords.csv b/content-api/collection-csv-actors/src/test/resources/NoRecords.csv new file mode 100644 index 0000000000000000000000000000000000000000..e34adda6b1cfa5bbed5c25f39c20d5f4ea6b462c --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/NoRecords.csv @@ -0,0 +1 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description" diff --git a/content-api/collection-csv-actors/src/test/resources/QRCodeYesNo.csv b/content-api/collection-csv-actors/src/test/resources/QRCodeYesNo.csv new file mode 100644 index 0000000000000000000000000000000000000000..4997450214c1275cbcae4a59c29225f7bc358f35 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/QRCodeYesNo.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132828084877148161531","5. Human Body",,,,"This chapter describes about human body",,,"No","Q51XXZ ","do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876574721523","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.","Role Of The Sense Organs",,"Yes",,"do_1132372524622561281279",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876738561525","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876165121519","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084877066241529","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876492801521","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,"Look and say,Role Of The Sense Organs","test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132828084876820481527","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd, cgf",,"LURAUV ","do_1132338069147811841118","do_11322383952751820816 ","do_1132216902566133761410 ",,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/RecordMaxLength.csv b/content-api/collection-csv-actors/src/test/resources/RecordMaxLength.csv new file mode 100644 index 0000000000000000000000000000000000000000..3227b434f74845db1774958add7903017be46e2f --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/RecordMaxLength.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description",, +"5. Human Body",,,,"This chapter describes about human body",, +"5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.",, +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz","sdf" +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,, +"5. Human Body","5.2 Organ Systems",,,,, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg",,, diff --git a/content-api/collection-csv-actors/src/test/resources/RequiredHeaderMissing.csv b/content-api/collection-csv-actors/src/test/resources/RequiredHeaderMissing.csv new file mode 100644 index 0000000000000000000000000000000000000000..1cb029326b5167bea62e839957d6f136f6c595ed --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/RequiredHeaderMissing.csv @@ -0,0 +1,7 @@ +"Level 1 Folder","Level 2 Folder","Level 3 Folder","Description" +"5. Human Body",,,"This chapter describes about human body" +"5. Human Body","5.1 Parts of Body",,"This section describes about various part of the body such as head, hands, legs etc." +"5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head","xyz" +"5. Human Body","5.1 Parts of Body","5.1.2 Other parts", +"5. Human Body","5.2 Organ Systems",, +"5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System", diff --git a/content-api/collection-csv-actors/src/test/resources/UpdateTOC.csv b/content-api/collection-csv-actors/src/test/resources/UpdateTOC.csv new file mode 100644 index 0000000000000000000000000000000000000000..21d139b341d8bb17cc9deefaee524199785a92cf --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/UpdateTOC.csv @@ -0,0 +1,8 @@ +"Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30" +"TestCSVUpload","do_1132833371215462401716","5. Human Body",,,,"This chapter describes about human body",,,"No",,"do_1132344630588948481134",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215134721712","5. Human Body","5.1 Parts of Body",,,"This section describes about various part of the body such as head, hands, legs etc.",,,"Yes","Q51XXZ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215872001720","5. Human Body","5.1 Parts of Body","5.1.1 Key parts in the head",,"xyz",,"legs etc.","Yes","VZKAFQ","do_1132339274094346241120","do_113223967141863424174",,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215708161718","5. Human Body","5.1 Parts of Body","5.1.2 Other parts",,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215953921722","5. Human Body","5.2 Organ Systems",,,,,,"No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371215298561714","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System",,,,"test key,check","No",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"TestCSVUpload","do_1132833371214970881710","5. Human Body","5.2 Organ Systems","5.2.1 Respiratory System","dsffgdg","labeled new",,"abcd,cgf","No",,"do_1132338069147811841118","do_11322383952751820816",,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/content-api/collection-csv-actors/src/test/resources/application.conf b/content-api/collection-csv-actors/src/test/resources/application.conf new file mode 100644 index 0000000000000000000000000000000000000000..c15dd760faf0173978b81e58647094b4f7049b92 --- /dev/null +++ b/content-api/collection-csv-actors/src/test/resources/application.conf @@ -0,0 +1,115 @@ +schema.base_path = "../../schemas/" + +# Configuration +graph.dir=/data/testingGraphDB +akka.request_timeout=30 +environment.id=10000000 +graph.ids=["domain"] +graph.passport.key.base=31b6fd1c4d64e745c867e61a45edc34a +route.domain="bolt://localhost:7687" +route.bolt.write.domain="bolt://localhost:7687" +route.bolt.read.domain="bolt://localhost:7687" +route.bolt.comment.domain="bolt://localhost:7687" +route.all="bolt://localhost:7687" +route.bolt.write.all="bolt://localhost:7687" +route.bolt.read.all="bolt://localhost:7687" +route.bolt.comment.all="bolt://localhost:7687" + +# Consistency Level for Multi Node Cassandra cluster +cassandra.lp.consistency.level=QUORUM + + +contentTypeToPrimaryCategory { + ClassroomTeachingVideo: "Explanation Content" + ConceptMap: "Learning Resource" + Course: ["Course", "Curriculum Course", "Professional Development Course"] + CuriosityQuestionSet: "Practice Question Set" + eTextBook: "eTextbook" + Event: "Event" + EventSet: "Event Set" + ExperientialResource: "Learning Resource" + ExplanationResource: "Explanation Content" + ExplanationVideo: "Explanation Content" + FocusSpot: "Teacher Resource" + LearningOutcomeDefinition: "Teacher Resource" + MarkingSchemeRubric: "Teacher Resource" + PedagogyFlow: "Teacher Resource" + PracticeQuestionSet: "Practice Question Set" + PracticeResource: "Practice Question Set" + SelfAssess: "Course Assessment" + TeachingMethod: "Teacher Resource" + TextBook: "Digital Textbook" + Collection: "Content Playlist" + ExplanationReadingMaterial: "Learning Resource" + LearningActivity: "Learning Resource" + LessonPlan: "Content Playlist" + LessonPlanResource: "Teacher Resource" + PreviousBoardExamPapers: "Learning Resource" + TVLesson: "Explanation Content" + OnboardingResource: "Learning Resource" + ReadingMaterial: "Learning Resource" + Template: "Template" + Asset: "Asset" + Plugin: "Plugin" + LessonPlanUnit: "Lesson Plan Unit" + CourseUnit: "Course Unit" + TextBookUnit: "Textbook Unit" + Asset: "Certificate Template" +} + +resourceTypeToPrimaryCategory { + Learn: "Learning Resource" + Read: "Learning Resource" + Practice: "Learning Resource" + Teach: "Teacher Resource" + Test: "Learning Resource" + Experiment: "Learning Resource" + LessonPlan: "Teacher Resource" +} + +mimeTypeToPrimaryCategory { + "application/vnd.ekstep.h5p-archive": ["Learning Resource"] + "application/vnd.ekstep.html-archive": ["Learning Resource"] + "application/vnd.android.package-archive": ["Learning Resource"] + "video/webm": ["Explanation Content"] + "video/x-youtube": ["Explanation Content"] + "video/mp4": ["Explanation Content"] + "application/pdf": ["Learning Resource", "Teacher Resource"] + "application/epub": ["Learning Resource", "Teacher Resource"] + "application/vnd.ekstep.ecml-archive": ["Learning Resource", "Teacher Resource"] + "text/x-url": ["Learnin Resource", "Teacher Resource"] +} + + +# Collection CSV Hierarchy API +csv_folder_identifier_col_header = ["Folder Identifier"] +collection_create_csv_toc_headers = {"Level 1 Folder":0,"Level 2 Folder":1,"Level 3 Folder":2,"Level 4 Folder":3,"Description":4} +collection_update_csv_toc_headers = {"Collection Name":0,"Folder Identifier":1,"Level 1 Folder":2,"Level 2 Folder":3,"Level 3 Folder":4,"Level 4 Folder":5,"Description":6,"Mapped Topics":7,"Keywords":8,"QR Code Required?":9,"QR Code":10,"Linked Content 1":11,"Linked Content 2":12,"Linked Content 3":13,"Linked Content 4":14,"Linked Content 5":15,"Linked Content 6":16,"Linked Content 7":17,"Linked Content 8":18,"Linked Content 9":19,"Linked Content 10":20,"Linked Content 11":21,"Linked Content 12":22,"Linked Content 13":23,"Linked Content 14":24,"Linked Content 15":25,"Linked Content 16":26,"Linked Content 17":27,"Linked Content 18":28,"Linked Content 19":29,"Linked Content 20":30,"Linked Content 21":31,"Linked Content 22":32,"Linked Content 23":33,"Linked Content 24":34,"Linked Content 25":35,"Linked Content 26":36,"Linked Content 27":37,"Linked Content 28":38,"Linked Content 29":39,"Linked Content 30":40} +collection_toc_create_csv_mandatory_fields=["Level 1 Folder"] +collection_toc_update_csv_mandatory_fields=["Collection Name","Folder Identifier"] +collection_csv_hierarchy_headers = ["Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder"] +collection_csv_qr_headers = ["QR Code Required?","QR Code"] +collection_csv_linked_content_fields = ["Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30"] +collection_csv_linked_content_seq = {"Linked Content 1":0,"Linked Content 2":1,"Linked Content 3":2,"Linked Content 4":3,"Linked Content 5":4,"Linked Content 6":5,"Linked Content 7":6,"Linked Content 8":7,"Linked Content 9":8,"Linked Content 10":9,"Linked Content 11":10,"Linked Content 12":11,"Linked Content 13":12,"Linked Content 14":13,"Linked Content 15":14,"Linked Content 16":15,"Linked Content 17":16,"Linked Content 18":17,"Linked Content 19":18,"Linked Content 20":19,"Linked Content 21":20,"Linked Content 22":21,"Linked Content 23":22,"Linked Content 24":23,"Linked Content 25":24,"Linked Content 26":25,"Linked Content 27":26,"Linked Content 28":27,"Linked Content 29":28,"Linked Content 30":29} +collection_csv_mapped_topics_header = ["Mapped Topics"] +collection_csv_collection_name = ["Collection Name"] +collection_toc_max_csv_rows=6500 +collection_toc_allowed_content_types=["TextBook","Collection","LessonPlan","Resource"] +collection_content_type_unit_type = {"TextBook": "TextBookUnit", "Course": "CourseUnit", "Collection":"CollectionUnit"} +collection_output_toc_headers = ["Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30"] +sunbird_collection_toc_csv_ttl=86400 +sunbird_toc_max_first_level_units=30 + +framework_read_api_url=/framework/v1/read +sunbird_dialcode_search_api=/dialcode/v1/list +sunbird_content_search_url=/content/v1/search +sunbird_link_dial_code_api=/collection/v3/dialcode/link + +sunbird_cs_base_url="https://dev.sunbirded.org/api" + +learning_service { + api { + base_url : "" + auth_key : "" + } +} diff --git a/content-api/collection-csv-actors/src/test/scala/org/sunbird/collectioncsv/TestCollectionCSVActor.scala b/content-api/collection-csv-actors/src/test/scala/org/sunbird/collectioncsv/TestCollectionCSVActor.scala new file mode 100644 index 0000000000000000000000000000000000000000..d330cff018b66e2dc6c43ac88e4e5e344473b50e --- /dev/null +++ b/content-api/collection-csv-actors/src/test/scala/org/sunbird/collectioncsv/TestCollectionCSVActor.scala @@ -0,0 +1,605 @@ +package org.sunbird.collectioncsv + +import akka.actor.{ActorSystem, Props} +import akka.testkit.TestKit +import org.scalamock.scalatest.MockFactory +import org.scalatest.{FlatSpec, Matchers} +import org.sunbird.cloudstore.StorageService +import org.sunbird.collectioncsv.actors.CollectionCSVActor +import org.sunbird.collectioncsv.util.CollectionTOCConstants +import org.sunbird.common.{HttpUtil, JsonUtils} +import org.sunbird.common.dto.{Request, Response} +import org.sunbird.common.exception.ResponseCode +import org.sunbird.graph.dac.model.{Node, SearchCriteria} +import org.sunbird.graph.{GraphService, OntologyEngineContext} + +import java.io.File +import java.util.concurrent.TimeUnit +import scala.concurrent.{ExecutionContext, Future} +import scala.concurrent.duration.FiniteDuration + + +class TestCollectionCSVActor extends FlatSpec with Matchers with MockFactory { + + implicit val ec: ExecutionContext = ExecutionContext.global + val system: ActorSystem = ActorSystem.create("system") + val httpUtil: HttpUtil = mock[HttpUtil] + implicit val ss: StorageService = mock[StorageService] + implicit val oec: OntologyEngineContext = mock[OntologyEngineContext] + val graphDB: GraphService = mock[GraphService] + val currentDirectory: String = new java.io.File(".").getCanonicalPath + val resourceDirectory: String = if(currentDirectory.contains("collection-csv-actors")) currentDirectory+"/src/test/resources/" else currentDirectory+"/content-api/collection-csv-actors/src/test/resources/" + + "CollectionCSVActor" should "return failed response for 'unknown' operation" in { + testUnknownOperation( Props(new CollectionCSVActor()), getCollectionRequest()) + } + + it should "return client error on giving content Id with no children" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + + val node = createNode() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(new Response())).anyNumberOfTimes() + + val collectionID = "do_113293355858984960134" + + val response = callActorDownload(collectionID) + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode === ResponseCode.CLIENT_ERROR) + } + + it should "return success response on giving valid content Id" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + (ss.getUri(_:String)).expects(*).returns("").once() + (ss.uploadFile(_:String, _: File, _: Option[Boolean])).expects(*, *, *).returns(Array("/content/textbook/toc/do_11329104609801011211_testcsvuploaddemo_1622453851546.csv", "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/textbook/toc/do_11329104609801011211_testcsvuploaddemo_1622453851546.csv")).once() + + val response = callActorDownload(collectionID) + val result = response.getResult + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.OK) + assert(result.get("collection") != null) + } + + it should "return client error on input of blank csv" in { + val collectionID = "do_1132828073514926081518" + val response = uploadFileToActor(collectionID, resourceDirectory + "Blank.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equals("INVALID_CSV_FILE")) + } + + it should "return client error on input of create csv with collection Id already having children" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val response = uploadFileToActor(collectionID, resourceDirectory + "CreateTOC.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("COLLECTION_CHILDREN_EXISTS")) + } + + it should "return client error on input of create csv with missing column and additional column" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidHeadersFound.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("INVALID_HEADERS_FOUND")) + } + + it should "return client error on input of create csv with missing column" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "RequiredHeaderMissing.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("REQUIRED_HEADER_MISSING") || response.getParams.getErr.equalsIgnoreCase("INVALID_HEADER_SEQUENCE")) + } + + it should "return client error on input of create csv with additional column" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "AdditionalHeaderFound.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("ADDITIONAL_HEADER_FOUND")) + } + + it should "return client error on input of create csv with no records" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "NoRecords.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("BLANK_CSV_DATA")) + } + + it should "return client error on input of create csv with records exceeding maximum allowed rows" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "CSVMaxRows.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_ROWS_EXCEEDS")) + } + + it should "return client error on input of create csv with record having missing data in mandatory columns" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "MandatoryColMissingData.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("REQUIRED_FIELD_MISSING")) + } + + it should "return client error on input of create csv with duplicate record rows" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_113293355858984960134" + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "DuplicateRecords.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("DUPLICATE_ROWS")) + } + + it should "return client error on input of update csv with invalid QRCodeRequired and QRCode combination" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "QRCodeYesNo.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("ERROR_QR_CODE_ENTRY")) + } + + it should "return client error on input of update csv with duplicate QRCode entry" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "DuplicateQRCode.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("DUPLICATE_QR_CODE_ENTRY")) + } + + it should "return client error on input of update csv with linked content data missing" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "LinkedContentsDataMissing.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("LINKED_CONTENTS_DATA_MISSING")) + } + + it should "return client error on input of update csv with invalid collection name" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidCollectionName.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_COLLECTION_NAME")) + } + + it should "return client error on input of update csv with invalid child nodes" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidNodeIds.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_COLLECTION_NODE_ID")) + } + + it should "return client error on input of update csv with invalid QR Codes" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects(*, *, *).returns(getDIALSearchResponse()).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidQRCodes.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_DIAL_CODES")) + } + + it should "return client error on input of update csv with invalid Mapped Topics" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.get(_: String, _: String, _:java.util.Map[String, String])).expects(*, *, *).returns(getFrameworkResponse()).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidMappedTopics.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_MAPPED_TOPICS")) + } + + it should "return client error on input of update csv with invalid linked contents" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects(*, *, *).returns(searchLinkedContentsResponse()).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidLinkedContents.csv") + + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_LINKED_CONTENTS")) + } + + it should "return client error on input of update csv with invalid contentType of linked contents" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects(*, *, *).returns(linkedContentsInvalidContentTypeResponse()).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "InvalidLinkedContentContentType.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.CLIENT_ERROR) + assert(response.getParams.getErr.equalsIgnoreCase("CSV_INVALID_LINKED_CONTENTS_CONTENT_TYPE")) + } + + it should "return success response on input of valid update TOC csv" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val collectionID = "do_1132828073514926081518" + val node = updateNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects("https://dev.sunbirded.org/api" + "/dialcode/v1/list", *, *).returns(getDIALSearchResponse()).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects("https://dev.sunbirded.org/api" + "/content/v1/search", *, *).returns(searchLinkedContentsResponse()).anyNumberOfTimes() + (oec.httpUtil _).expects().returns(httpUtil) + (httpUtil.post(_: String, _:java.util.Map[String, AnyRef], _:java.util.Map[String, String])).expects("" + "/collection/v3/dialcode/link" + "/" + collectionID, *, *).returns(linkDIALCodesResponse()).anyNumberOfTimes() + + val response = uploadFileToActor(collectionID, resourceDirectory + "UpdateTOC.csv") + assert(response != null) + println("uploadTOC should return success response on input of validate update TOC csv --> response.getParams: " + response.getParams) + assert(response.getResponseCode != ResponseCode.OK) + } + + it should "return success response on giving a valid create TOC csv" in { + (oec.graphService _).expects().returns(graphDB).anyNumberOfTimes() + val node = createNode() + (graphDB.upsertNode(_: String, _: Node, _: Request)).expects(*, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueId(_: String, _: String, _: Boolean, _: Request)).expects(*, *, *, *).returns(Future(node)).anyNumberOfTimes() + (graphDB.getNodeByUniqueIds(_: String, _: SearchCriteria)).expects(*, *).returns(Future(getNodes(node))).anyNumberOfTimes() + (graphDB.readExternalProps(_: Request, _: List[String])).expects(*, *).returns(Future(getEmptyCassandraHierarchy())).anyNumberOfTimes() + (graphDB.updateExternalProps(_:Request)).expects(*).returns(Future(getCassandraHierarchy())).anyNumberOfTimes() + + + val collectionID = "do_113293355858984960134" + val response = uploadFileToActor(collectionID, resourceDirectory + "CreateTOC.csv") + assert(response != null) + println("TestCollectionCSVActor --> response.getParams: " + response.getParams) + assert(response.getResponseCode == ResponseCode.OK) + } + + def uploadFileToActor(collectionID: String, uploadFilePath: String): Response = { + val uploadTOCFile = new File(uploadFilePath) + val request = getCollectionRequest() + request.put(CollectionTOCConstants.IDENTIFIER, collectionID) + request.setOperation(CollectionTOCConstants.COLLECTION_IMPORT) + request.getRequest.put("file",uploadTOCFile) + + callActorUpload(request) + } + + def callActorUpload(request: Request)(implicit oec: OntologyEngineContext, ss:StorageService): Response = { + val probe = new TestKit(system) + val actorRef = system.actorOf(Props(new CollectionCSVActor())) + actorRef.tell(request, probe.testActor) + probe.expectMsgType[Response](FiniteDuration.apply(100, TimeUnit.SECONDS)) + } + + def callActorDownload(collectionID: String)(implicit oec: OntologyEngineContext, ss:StorageService): Response = { + val probe = new TestKit(system) + val actorRef = system.actorOf(Props(new CollectionCSVActor())) + val request = getCollectionRequest() + request.put(CollectionTOCConstants.IDENTIFIER, collectionID) + request.put("fileType", "csv") + request.setOperation(CollectionTOCConstants.COLLECTION_EXPORT) + actorRef.tell(request, probe.testActor) + probe.expectMsgType[Response](FiniteDuration.apply(100, TimeUnit.SECONDS)) + } + + private def getCollectionRequest(): Request = { + val request = new Request() + request.setContext(new java.util.HashMap[String, AnyRef]() { + { + put("graph_id", "domain") + put("version", "1.0") + put("objectType", "Collection") + put("schemaName", "collection") + } + }) + request.setObjectType("Collection") + request + } + + def testUnknownOperation(props: Props, request: Request) = { + implicit val oec: OntologyEngineContext = mock[OntologyEngineContext] + request.setOperation("unknown") + val response = callActor(request, props) + assert("failed".equals(response.getParams.getStatus)) + } + + def callActor(request: Request, props: Props): Response = { + val probe = new TestKit(system) + val actorRef = system.actorOf(props) + actorRef.tell(request, probe.testActor) + probe.expectMsgType[Response](FiniteDuration.apply(30, TimeUnit.SECONDS)) + } + + private def updateNode(): Node = { + val childNodes = new java.util.ArrayList[String]() + childNodes.add("do_1132339274094346241120") + childNodes.add("do_1132833371215872001720") + childNodes.add("do_1132833371215134721712") + childNodes.add("do_1132833371215462401716") + childNodes.add("do_113223967141863424174") + childNodes.add("do_1132833371214970881710") + childNodes.add("do_1132833371215708161718") + childNodes.add("do_1132372524622561281279") + childNodes.add("do_1132338069147811841118") + childNodes.add("do_1132833371215298561714") + childNodes.add("do_1132833371215953921722") + childNodes.add("do_11322383952751820816") + childNodes.add("do_1132216902566133761410") + childNodes.add("do_1132344630588948481134") + + val collectionID = "do_1132828073514926081518" + val LATEST_CONTENT_VERSION: Integer = 2 + val depth: Integer = 0 + + val node = new Node() + node.setIdentifier(collectionID) + node.setNodeType("TextBook") + node.setObjectType("Collection") + node.setMetadata(new java.util.HashMap[String, AnyRef]() { + { + put("identifier", collectionID) + put("objectType", "Collection") + put("name", "TestCSVUpload") + put("mimeType", "application/vnd.ekstep.content-collection") + put("contentType","TextBook") + put("language", "English") + put("primaryCategory", "Digital Textbook") + put("versionKey", "1621501113536") + put("childNodes", childNodes) + put("channel", "0126825293972439041") + put("framework", "tn_k-12") + put("version", LATEST_CONTENT_VERSION) + put("status","Draft") + put("depth",depth) + put("visibility","Default") + } + }) + node + } + + private def createNode(): Node = { + val LATEST_CONTENT_VERSION: Integer = 2 + val depth: Integer = 0 + val node = new Node() + val collectionID = "do_113293355858984960134" + node.setIdentifier(collectionID) + node.setNodeType("TextBook") + node.setObjectType("Collection") + node.setMetadata(new java.util.HashMap[String, AnyRef]() { + { + put("identifier", collectionID) + put("objectType", "Collection") + put("name", "TestCSVUpload") + put("mimeType", "application/vnd.ekstep.content-collection") + put("contentType","TextBook") + put("primaryCategory", "Digital Textbook") + put("versionKey","1622724103891") + put("channel", "0126825293972439041") + put("framework", "tn_k-12") + put("version", LATEST_CONTENT_VERSION) + put("mediaType","content") + put("generateDIALCodes","No") + put("resourceType","Book") + put("code","testing") + put("status","Draft") + put("depth",depth) + put("visibility","Default") + + } + }) + node + } + + def getCassandraHierarchy(): Response = { + val hierarchyString: String = + """{"ownershipType": ["createdBy"],"subject": ["Mathematics"],"channel": "0126825293972439041","organisation": ["Sunbird"], + |"language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","objectType": "Content","gradeLevel": ["Class 4"], + |"primaryCategory": "Digital Textbook","children": [{"ownershipType": ["createdBy"],"parent": "do_1132828073514926081518","code": "do_1132828084877148161531", + |"keywords": [],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "This chapter describes about human body", + |"language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.470+0000", + |"objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371215462401716", + |"code": "do_1132828084876574721523","keywords": [],"credentials": {"enabled": "No"},"channel": "0126825293972439041", + |"description": "This section describes about various part of the body such as head, hands, legs etc.","language": ["English"], + |"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.466+0000", + |"objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371215134721712", + |"code": "do_1132828084876738561525","keywords": ["legs etc."],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "xyz", + |"language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.475+0000", + |"objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371215872001720", + |"previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132339274094346241120/test-874-kb.mp4", + |"channel": "b00bc992ef25f1a9a8d63291e20efc8d", + |"downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132339274094346241120/untitled-content_1616331971279_do_1132339274094346241120_14.0.ecar", + |"organisation": ["Sunbird"],"language": ["English"],"mimeType": "video/mp4","variants": {"spine": + |{"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132339274094346241120/untitled-content_1616331975047_do_1132339274094346241120_14.0_spine.ecar","size": 1381.0}},"objectType": "Content","primaryCategory": "Learning Resource","appId": "local.sunbird.portal","contentEncoding": "identity","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132339274094346241120/test-874-kb.mp4", + |"lockKey": "34a029c4-ac81-4934-9792-11b7a57d6c13","sYS_INTERNAL_LAST_UPDATED_ON": "2021-03-21T13:20:24.579+0000","contentType": "Resource", + |"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132339274094346241120","audience": ["Student"],"visibility": "Default", + |"consumerId": "273f3b18-5dda-4a27-984a-060c7cd398d3","index": 1,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"], + |"lastPublishedBy": "8454cb21-3ce9-4e30-85b5-fade097880d8","version": 2,"license": "CC BY 4.0","prevState": "Live","size": 849897.0, + |"lastPublishedOn": "2021-03-21T13:06:11.272+0000","name": "Untitled Content","status": "Live","code": "a88b0257-670b-455b-98b8-6e359ebac009","credentials": {"enabled": "No"},"prevStatus": "Processing","description": "updated","streamingUrl": "https://sunbirddevmedia-inct.streaming.media.azure.net/9c0ebb33-af08-403f-afb4-eb24749f40a1/test-874-kb.ism/manifest(format=m3u8-aapl-v3)","idealScreenSize": "normal","createdOn": "2021-03-11T13:34:14.475+0000","contentDisposition": "inline","lastUpdatedOn": "2021-03-21T13:06:09.526+0000","dialcodeRequired": "No","lastStatusChangedOn": "2021-03-21T18:36:15.799+0530","createdFor": ["ORG_001"],"creator": "Reviewer User","os": ["All"],"se_FWIds": ["NCFCOPY"],"pkgVersion": 14.0,"versionKey": "1616331969523","idealScreenDensity": "hdpi","framework": "NCFCOPY","depth": 4,"s3Key": "ecar_files/do_1132339274094346241120/untitled-content_1616331971279_do_1132339274094346241120_14.0.ecar","createdBy": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8","compatibilityLevel": 1,"resourceType": "Learn"},{"ownershipType": ["createdBy"],"parent": "do_1132833371215872001720","unitIdentifiers": ["do_1132239562839900161634"],"copyright": "2021 MIT","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_113223967141863424174-latest","plugins": [{"identifier": "org.sunbird.questionunit.quml","semanticVersion": "1.1"}],"subject": ["Hindi"],"channel": "01309282781705830427","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_113223967141863424174/esa_1614253812772_do_113223967141863424174_1.0.ecar","language": ["English"],"source": "https://dock.sunbirded.org/api/content/v1/read/do_1132239617341767681638","mimeType": "application/vnd.ekstep.ecml-archive","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_113223967141863424174/esa_1614253813394_do_113223967141863424174_1.0_spine.ecar","size": 24293.0}},"objectType": "Content","se_mediums": ["English"],"gradeLevel": ["Class 10"],"primaryCategory": "Exam Question","appId": "dev.dock.portal","contentEncoding": "gzip","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_113223967141863424174/artifact/1614253223147_do_1132239617341767681638.zip","sYS_INTERNAL_LAST_UPDATED_ON": "2021-02-25T11:50:16.032+0000","contentType": "Resource","se_gradeLevels": ["Class 10"],"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_113223967141863424174","audience": ["Student"],"visibility": "Default","author": "anusha","maxQuestions": 1,"consumerId": "b7054510-3ca4-49fd-b373-b100b3f65e18","index": 2,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "5a587cc1-e018-4859-a0a8-e842650b9d64","version": 2,"se_subjects": ["Hindi"],"license": "CC BY 4.0","prevState": "Review","size": 384798.0,"lastPublishedOn": "2021-02-25T11:50:12.771+0000","name": "esa","topic": ["तोप"],"status": "Live","code": "d19f43ce-753d-2c70-a9fd-70302af424a0","credentials": {"enabled": "No"},"prevStatus": "Processing","origin": "do_1132239617341767681638","streamingUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_113223967141863424174-latest","medium": ["English"],"idealScreenSize": "normal","createdOn": "2021-02-25T11:50:01.500+0000","se_boards": ["CBSE"],"processId": "2b00cca7-42d5-4e35-aa03-1c22dfe03de8","contentDisposition": "inline","lastUpdatedOn": "2021-02-25T11:50:12.678+0000","originData": {"identifier": "do_1132239617341767681638","repository": "https://dock.sunbirded.org/api/content/v1/read/do_1132239617341767681638"},"collectionId": "do_1132239562836049921627","dialcodeRequired": "No","editorVersion": 3,"lastStatusChangedOn": "2021-02-25T11:50:16.017+0000","creator": "anusha","os": ["All"],"questionCategories": ["SA"],"cloudStorageKey": "content/do_113223967141863424174/artifact/1614253223147_do_1132239617341767681638.zip","se_FWIds": ["ekstep_ncert_k-12"],"marks": "12","bloomsLevel": ["Apply"],"pkgVersion": 1.0,"versionKey": "1614253812678","idealScreenDensity": "hdpi","framework": "ekstep_ncert_k-12","depth": 4,"s3Key": "ecar_files/do_113223967141863424174/esa_1614253812772_do_113223967141863424174_1.0.ecar","lastSubmittedOn": "2021-02-25T11:50:11.539+0000","createdBy": "19ba0e4e-9285-4335-8dd0-f674bf03fa4d","se_topics": ["तोप"],"compatibilityLevel": 1,"itemSetPreviewUrl": "https://dockstorage.blob.core.windows.net/sunbird-content-dock/content/do_1132239617341767681638/artifact/do_1132239617341767681638_1614253222002.pdf","board": "CBSE","programId": "463cfa30-775c-11eb-8c56-93946e419809"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.475+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "Yes","identifier": "do_1132833371215872001720","lastStatusChangedOn": "2021-05-20T08:58:33.475+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 1,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113475","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 3,"compatibilityLevel": 1,"name": "5.1.1 Key parts in the head","topic": [],"status": "Draft"},{"ownershipType": ["createdBy"],"parent": "do_1132833371215134721712","code": "do_1132828084876165121519","keywords": [],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "","language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.473+0000","objectType": "Content","primaryCategory": "Textbook Unit","contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.473+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "No","identifier": "do_1132833371215708161718","lastStatusChangedOn": "2021-05-20T08:58:33.473+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 2,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113473","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 3,"compatibilityLevel": 1,"name": "5.1.2 Other parts","topic": [],"status": "Draft"},{"ownershipType": ["createdBy"],"parent": "do_1132833371215134721712","unitIdentifiers": ["do_11323721176414617611924"],"copyright": "2021 MIT","organisationId": "e7328d77-42a7-44c8-84f4-8cfea235f07d","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_1132372524622561281279-latest","plugins": [{"identifier": "org.sunbird.questionunit.quml","semanticVersion": "1.1"}],"subject": ["Mathematics"],"channel": "01309282781705830427","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132372524622561281279/untitled_1615875562931_do_1132372524622561281279_1.0.ecar","language": ["English"],"source": "https://dock.sunbirded.org/api/content/v1/read/do_11323724954450329611930","mimeType": "application/vnd.ekstep.ecml-archive","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132372524622561281279/untitled_1615875563539_do_1132372524622561281279_1.0_spine.ecar","size": 19563.0}},"objectType": "Content","se_mediums": ["English"],"gradeLevel": ["Class 5"],"primaryCategory": "Exam Question","appId": "dev.dock.portal","contentEncoding": "gzip","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_1132372524622561281279/artifact/1615875430184_do_11323724954450329611930.zip","sYS_INTERNAL_LAST_UPDATED_ON": "2021-03-16T06:19:26.162+0000","contentType": "Resource","se_gradeLevels": ["Class 5"],"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132372524622561281279","audience": ["Student"],"visibility": "Default","author": "N18","maxQuestions": 1,"consumerId": "f73cfcc5-4d43-4fa0-8b81-46166c81bc2b","learningOutcome": ["identify the need to find area and perimeter of rectangle and square."],"index": 3,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "5a587cc1-e018-4859-a0a8-e842650b9d64","version": 2,"se_subjects": ["Mathematics"],"license": "CC BY 4.0","prevState": "Review","size": 374996.0,"lastPublishedOn": "2021-03-16T06:19:22.931+0000","name": "Untitled","topic": ["Speed, Distance and Time"],"status": "Live","code": "2544c8b8-7946-b6c0-e1c7-ced4aee4ea8c","credentials": {"enabled": "No"},"prevStatus": "Processing","origin": "do_11323724954450329611930","streamingUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_1132372524622561281279-latest","medium": ["English"],"idealScreenSize": "normal","createdOn": "2021-03-16T06:19:04.712+0000","se_boards": ["CBSE"],"processId": "9995e013-a7c9-4da1-b2c9-2f59da33414a","contentDisposition": "inline","lastUpdatedOn": "2021-03-16T06:19:20.817+0000","originData": {"identifier": "do_11323724954450329611930","repository": "https://dock.sunbirded.org/api/content/v1/read/do_11323724954450329611930"},"collectionId": "do_11323721176353996811921","dialcodeRequired": "No","editorVersion": 3,"lastStatusChangedOn": "2021-03-16T06:19:26.147+0000","creator": "N18","os": ["All"],"questionCategories": ["MTF"],"cloudStorageKey": "content/do_1132372524622561281279/artifact/1615875430184_do_11323724954450329611930.zip","se_FWIds": ["ekstep_ncert_k-12"],"marks": "2","bloomsLevel": ["Apply"],"pkgVersion": 1.0,"versionKey": "1615875560817","idealScreenDensity": "hdpi","framework": "ekstep_ncert_k-12","depth": 3,"s3Key": "ecar_files/do_1132372524622561281279/untitled_1615875562931_do_1132372524622561281279_1.0.ecar","lastSubmittedOn": "2021-03-16T06:19:17.005+0000","createdBy": "60f91e9e-34ee-4f9f-a907-d312d0e8063e","se_topics": ["Speed, Distance and Time"],"compatibilityLevel": 1,"itemSetPreviewUrl": "https://dockstorage.blob.core.windows.net/sunbird-content-dock/content/do_11323724954450329611930/artifact/do_11323724954450329611930_1615875429226.pdf","board": "CBSE","programId": "800eb440-8613-11eb-a663-4f63bbe94184"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.466+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "Yes","identifier": "do_1132833371215134721712","lastStatusChangedOn": "2021-05-20T08:58:33.466+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 1,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113466","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 2,"compatibilityLevel": 1,"name": "5.1 Parts of Body","topic": ["Role Of The Sense Organs"],"status": "Draft"},{"ownershipType": ["createdBy"],"parent": "do_1132833371215462401716","code": "do_1132828084877066241529","keywords": [],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "","language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.476+0000","objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371215953921722","code": "do_1132828084876492801521","keywords": ["test key","check"],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "","language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.468+0000","objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371215298561714","code": "do_1132828084876820481527","keywords": ["abcd","cgf"],"credentials": {"enabled": "No"},"channel": "0126825293972439041","description": "labeled new","language": ["English"],"mimeType": "application/vnd.ekstep.content-collection","idealScreenSize": "normal","createdOn": "2021-05-20T08:58:33.464+0000","objectType": "Content","primaryCategory": "Textbook Unit","children": [{"ownershipType": ["createdBy"],"parent": "do_1132833371214970881710","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132338069147811841118/test-874-kb.mp4","channel": "b00bc992ef25f1a9a8d63291e20efc8d","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132338069147811841118/untitled-content_1615468830522_do_1132338069147811841118_2.0.ecar","organisation": ["Sunbird"],"language": ["English"],"mimeType": "video/mp4","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132338069147811841118/untitled-content_1615468834470_do_1132338069147811841118_2.0_spine.ecar","size": 1361.0}},"objectType": "Content","primaryCategory": "Learning Resource","appId": "dev.sunbird.portal","contentEncoding": "identity","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132338069147811841118/test-874-kb.mp4","lockKey": "d73707c8-9999-4fc9-9b34-0207f74faf43","sYS_INTERNAL_LAST_UPDATED_ON": "2021-03-12T08:10:31.335+0000","contentType": "Resource","trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132338069147811841118","audience": ["Student"],"visibility": "Default","consumerId": "273f3b18-5dda-4a27-984a-060c7cd398d3","index": 1,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "8454cb21-3ce9-4e30-85b5-fade097880d8","version": 2,"license": "CC BY 4.0","prevState": "Live","size": 849876.0,"lastPublishedOn": "2021-03-11T13:20:30.514+0000","name": "Untitled Content","status": "Live","code": "9deb2c69-7240-472a-98e7-ed438e76262b","credentials": {"enabled": "No"},"prevStatus": "Processing","streamingUrl": "https://sunbirddevmedia-inct.streaming.media.azure.net/f17bccc5-cab3-4da8-a5eb-11d7211f1507/test-874-kb.ism/manifest(format=m3u8-aapl-v3)","idealScreenSize": "normal","createdOn": "2021-03-11T09:29:05.654+0000","contentDisposition": "inline","lastUpdatedOn": "2021-03-11T13:20:28.256+0000","dialcodeRequired": "No","lastStatusChangedOn": "2021-03-11T18:50:28.256+0530","createdFor": ["ORG_001"],"creator": "Reviewer User","os": ["All"],"se_FWIds": ["NCFCOPY"],"pkgVersion": 2.0,"versionKey": "1615455090358","idealScreenDensity": "hdpi","framework": "NCFCOPY","depth": 5,"s3Key": "ecar_files/do_1132338069147811841118/untitled-content_1615468830522_do_1132338069147811841118_2.0.ecar","createdBy": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8","compatibilityLevel": 1,"resourceType": "Learn"},{"ownershipType": ["createdBy"],"parent": "do_1132833371214970881710","unitIdentifiers": ["do_1132238266042040321422"],"copyright": "2021 MIT","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_11322383952751820816-latest","plugins": [{"identifier": "org.sunbird.questionunit.quml","semanticVersion": "1.1"}],"subject": ["Hindi"],"channel": "01309282781705830427","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_11322383952751820816/sapractice_1614238238045_do_11322383952751820816_1.0.ecar","language": ["English"],"source": "https://dock.sunbirded.org/api/content/v1/read/do_1132238287156183041424","mimeType": "application/vnd.ekstep.ecml-archive","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_11322383952751820816/sapractice_1614238238800_do_11322383952751820816_1.0_spine.ecar","size": 13171.0}},"objectType": "Content","se_mediums": ["English"],"gradeLevel": ["Class 10"],"primaryCategory": "Exam Question","appId": "dev.dock.portal","contentEncoding": "gzip","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_11322383952751820816/artifact/1614237122171_do_1132238287156183041424.zip","sYS_INTERNAL_LAST_UPDATED_ON": "2021-02-25T07:30:44.916+0000","contentType": "Resource","se_gradeLevels": ["Class 10"],"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_11322383952751820816","audience": ["Student"],"visibility": "Default","author": "anusha","maxQuestions": 1,"consumerId": "273f3b18-5dda-4a27-984a-060c7cd398d3","index": 2,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "5a587cc1-e018-4859-a0a8-e842650b9d64","version": 2,"se_subjects": ["Hindi"],"license": "CC BY 4.0","prevState": "Review","size": 362236.0,"lastPublishedOn": "2021-02-25T07:30:38.043+0000","name": "sa:practice","status": "Live","code": "f239c77e-ed71-9133-0145-7468a92bce79","credentials": {"enabled": "No"},"prevStatus": "Processing","origin": "do_1132238287156183041424","streamingUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_11322383952751820816-latest","medium": ["English"],"idealScreenSize": "normal","createdOn": "2021-02-25T07:30:23.577+0000","se_boards": ["CBSE"],"processId": "04d5aec9-ed09-4a57-963d-9fa654fecf8d","contentDisposition": "inline","lastUpdatedOn": "2021-02-25T07:30:37.956+0000","originData": {"identifier": "do_1132238287156183041424","repository": "https://dock.sunbirded.org/api/content/v1/read/do_1132238287156183041424"},"collectionId": "do_1132238266036551681415","dialcodeRequired": "No","editorVersion": 3,"lastStatusChangedOn": "2021-02-25T07:30:44.908+0000","creator": "anusha","os": ["All"],"questionCategories": ["SA"],"cloudStorageKey": "content/do_11322383952751820816/artifact/1614237122171_do_1132238287156183041424.zip","se_FWIds": ["ekstep_ncert_k-12"],"marks": "12","pkgVersion": 1.0,"versionKey": "1614238237956","idealScreenDensity": "hdpi","framework": "ekstep_ncert_k-12","depth": 5,"s3Key": "ecar_files/do_11322383952751820816/sapractice_1614238238045_do_11322383952751820816_1.0.ecar","lastSubmittedOn": "2021-02-25T07:30:36.709+0000","createdBy": "19ba0e4e-9285-4335-8dd0-f674bf03fa4d","compatibilityLevel": 1,"itemSetPreviewUrl": "https://dockstorage.blob.core.windows.net/sunbird-content-dock/content/do_1132238287156183041424/artifact/do_1132238287156183041424_1614237121022.pdf","board": "CBSE","programId": "94564340-7737-11eb-96e0-29a9f8ed81cf"},{"ownershipType": ["createdBy"],"parent": "do_1132833371214970881710","unitIdentifiers": ["do_11322165488232038412588"],"copyright": "2021 MIT","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_1132216902566133761410-latest","plugins": [{"identifier": "org.sunbird.questionunit.quml","semanticVersion": "1.1"}],"subject": ["Environmental Studies"],"channel": "01309282781705830427","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132216902566133761410/mcqmcq_1613975872529_do_1132216902566133761410_1.0.ecar","language": ["English"],"source": "https://dock.sunbirded.org/api/content/v1/read/do_11322168163282944012605","mimeType": "application/vnd.ekstep.ecml-archive","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132216902566133761410/mcqmcq_1613975873161_do_1132216902566133761410_1.0_spine.ecar","size": 17182.0}},"objectType": "Content","se_mediums": ["English"],"gradeLevel": ["Class 10"],"primaryCategory": "Exam Question","appId": "dev.dock.portal","contentEncoding": "gzip","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_1132216902566133761410/artifact/1613975740738_do_11322168163282944012605.zip","sYS_INTERNAL_LAST_UPDATED_ON": "2021-02-22T06:37:55.328+0000","contentType": "Resource","se_gradeLevels": ["Class 10"],"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132216902566133761410","audience": ["Student"],"visibility": "Default","author": "color4","maxQuestions": 1,"consumerId": "7411b6bd-89f3-40ec-98d1-229dc64ce77d","learningOutcome": ["Understand the importance of values in life"],"index": 3,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "ae94b68c-a535-4dce-8e7a-fb9662b0ad68","version": 2,"se_subjects": ["Environmental Studies"],"license": "CC BY 4.0","prevState": "Review","size": 370363.0,"lastPublishedOn": "2021-02-22T06:37:52.529+0000","name": "MCQMCQ","topic": ["Animals"],"status": "Live","code": "0cbae0f8-e3eb-1d31-e2e5-0337dc7d697d","credentials": {"enabled": "No"},"prevStatus": "Processing","origin": "do_11322168163282944012605","streamingUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/ecml/do_1132216902566133761410-latest","medium": ["English"],"idealScreenSize": "normal","createdOn": "2021-02-22T06:37:41.405+0000","se_boards": ["CBSE"],"processId": "fbcec2af-cb7a-4ed1-8683-ff04b475947e","contentDisposition": "inline","lastUpdatedOn": "2021-02-22T06:37:52.447+0000","originData": {"identifier": "do_11322168163282944012605","repository": "https://dock.sunbirded.org/api/content/v1/read/do_11322168163282944012605"},"collectionId": "do_11322165488181248012584","dialcodeRequired": "No","editorVersion": 3,"lastStatusChangedOn": "2021-02-22T06:37:55.314+0000","creator": "color4","os": ["All"],"questionCategories": ["MCQ"],"cloudStorageKey": "content/do_1132216902566133761410/artifact/1613975740738_do_11322168163282944012605.zip","se_FWIds": ["ekstep_ncert_k-12"],"marks": "1","bloomsLevel": ["Understand"],"pkgVersion": 1.0,"versionKey": "1613975872447","idealScreenDensity": "hdpi","framework": "ekstep_ncert_k-12","depth": 5,"s3Key": "ecar_files/do_1132216902566133761410/mcqmcq_1613975872529_do_1132216902566133761410_1.0.ecar","lastSubmittedOn": "2021-02-22T06:37:51.179+0000","createdBy": "0ce5b67e-b48e-489b-a818-e938e8bfc14b","se_topics": ["Animals"],"compatibilityLevel": 1,"itemSetPreviewUrl": "https://dockstorage.blob.core.windows.net/sunbird-content-dock/content/do_11322168163282944012605/artifact/do_11322168163282944012605_1613975739805.pdf","board": "CBSE","programId": "b2433a00-74cd-11eb-9f3c-f39a9ab9f5ce"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.464+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "Yes","identifier": "do_1132833371214970881710","lastStatusChangedOn": "2021-05-20T08:58:33.464+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 1,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113464","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 4,"compatibilityLevel": 1,"name": "dsffgdg","topic": [],"status": "Draft"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.468+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "No","identifier": "do_1132833371215298561714","lastStatusChangedOn": "2021-05-20T08:58:33.468+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 1,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113468","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 3,"compatibilityLevel": 1,"name": "5.2.1 Respiratory System","topic": ["Look and say","Role Of The Sense Organs"],"status": "Draft"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.476+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "No","identifier": "do_1132833371215953921722","lastStatusChangedOn": "2021-05-20T08:58:33.476+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 2,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113476","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 2,"compatibilityLevel": 1,"name": "5.2 Organ Systems","topic": [],"status": "Draft"},{"ownershipType": ["createdBy"],"parent": "do_1132833371215462401716","copyright": "Sunbird","previewUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132344630588948481134/test-874-kb.mp4","subject": ["Math"],"channel": "b00bc992ef25f1a9a8d63291e20efc8d","downloadUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132344630588948481134/untitled-content_1615535618825_do_1132344630588948481134_2.0.ecar","organisation": ["Sunbird"],"showNotification": true,"language": ["English"],"mimeType": "video/mp4","variants": {"spine": {"ecarUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/ecar_files/do_1132344630588948481134/untitled-content_1615535619590_do_1132344630588948481134_2.0_spine.ecar","size": 35301.0}},"objectType": "Content","se_mediums": ["English"],"gradeLevel": ["Grade 1"],"appIcon": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_1132344630588948481134/artifact/2a4b8abd789184932399d222d03d9b5c.thumb.jpg","primaryCategory": "Learning Resource","appId": "dev.sunbird.portal","contentEncoding": "identity","artifactUrl": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/assets/do_1132344630588948481134/test-874-kb.mp4","lockKey": "1d28d983-2704-44bd-803e-5feb4e62da62","sYS_INTERNAL_LAST_UPDATED_ON": "2021-03-12T08:10:34.367+0000","contentType": "Resource","se_gradeLevels": ["Grade 1"],"trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132344630588948481134","lastUpdatedBy": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8","audience": ["Student"],"visibility": "Default","consumerId": "273f3b18-5dda-4a27-984a-060c7cd398d3","index": 3,"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"lastPublishedBy": "8454cb21-3ce9-4e30-85b5-fade097880d8","version": 2,"se_subjects": ["Math"],"license": "CC BY 4.0","prevState": "Review","size": 883817.0,"lastPublishedOn": "2021-03-12T07:53:38.825+0000","name": "Untitled Content","status": "Live","code": "8851e754-6e20-44d4-9070-e1a9664163ad","credentials": {"enabled": "No"},"prevStatus": "Review","description": "updated desrciption","streamingUrl": "https://sunbirddevmedia-inct.streaming.media.azure.net/40ae07aa-069e-4056-8f2b-014bc9a2d21b/test-874-kb.ism/manifest(format=m3u8-aapl-v3)","medium": ["English"],"posterImage": "https://sunbirddev.blob.core.windows.net/sunbird-content-dev/content/do_11299104587967692816/artifact/2a4b8abd789184932399d222d03d9b5c.jpg","idealScreenSize": "normal","createdOn": "2021-03-12T07:44:01.371+0000","se_boards": ["NCERT"],"copyrightYear": 2020,"contentDisposition": "inline","licenseterms": "By creating any type of content (resources, books, courses etc.) on DIKSHA, you consent to publish it under the Creative Commons License Framework. Please choose the applicable creative commons license you wish to apply to your content.","lastUpdatedOn": "2021-03-12T07:53:38.505+0000","dialcodeRequired": "No","lastStatusChangedOn": "2021-03-12T07:53:38.494+0000","createdFor": ["ORG_001"],"creator": "Reviewer User","os": ["All"],"se_FWIds": ["NCFCOPY"],"pkgVersion": 2.0,"versionKey": "1615535618583","idealScreenDensity": "hdpi","framework": "NCFCOPY","depth": 2,"s3Key": "ecar_files/do_1132344630588948481134/untitled-content_1615535618825_do_1132344630588948481134_2.0.ecar","lastSubmittedOn": "2021-03-12T07:53:10.005+0000","createdBy": "95e4942d-cbe8-477d-aebd-ad8e6de4bfc8","compatibilityLevel": 1,"board": "NCERT","resourceType": "Learn"}],"contentDisposition": "inline","lastUpdatedOn": "2021-05-20T08:58:33.470+0000","contentEncoding": "gzip","contentType": "TextBookUnit","dialcodeRequired": "No","identifier": "do_1132833371215462401716","lastStatusChangedOn": "2021-05-20T08:58:33.470+0000","audience": ["Student"],"os": ["All"],"visibility": "Parent","discussionForum": {"enabled": "Yes"},"index": 1,"mediaType": "content","osId": "org.ekstep.launcher","languageCode": ["en"],"version": 2,"versionKey": "1621501113470","license": "CC BY 4.0","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 1,"compatibilityLevel": 1,"name": "5. Human Body","topic": [],"status": "Draft"}],"appId": "dev.sunbird.portal","contentEncoding": "gzip","sYS_INTERNAL_LAST_UPDATED_ON": "2021-05-20T09:12:06.988+0000","contentType": "TextBook","trackable": {"enabled": "No","autoBatch": "No"},"identifier": "do_1132828073514926081518","audience": ["Student"],"visibility": "Default","consumerId": "01814e02-fc27-4165-ae53-3d1816e55817","childNodes": ["do_1132339274094346241120","do_1132833371215872001720","do_1132833371215134721712","do_1132833371215462401716","do_113223967141863424174","do_1132833371214970881710","do_1132833371215708161718","do_1132372524622561281279","do_1132338069147811841118","do_1132833371215298561714","do_1132833371215953921722","do_11322383952751820816","do_1132216902566133761410","do_1132344630588948481134"],"discussionForum": {"enabled": "Yes"},"mediaType": "content","osId": "org.ekstep.quiz.app","languageCode": ["en"],"version": 2,"license": "CC BY 4.0","name": "TestCSVUpload","status": "Draft","code": "org.sunbird.yhqB6L","credentials": {"enabled": "No"},"description": "Enter description for TextBook","medium": ["English"],"idealScreenSize": "normal","createdOn": "2021-05-19T15:00:44.279+0000","contentDisposition": "inline","additionalCategories": ["Textbook"],"lastUpdatedOn": "2021-05-20T07:10:32.805+0000","dialcodeRequired": "No","lastStatusChangedOn": "2021-05-19T15:00:44.279+0000","createdFor": ["0126825293972439041"],"creator": "Book Creator","os": ["All"],"versionKey": "1621501113536","idealScreenDensity": "hdpi","framework": "tn_k-12","depth": 0,"createdBy": "8454cb21-3ce9-4e30-85b5-fade097880d8","compatibilityLevel": 1,"userConsent": "Yes","board": "State (Tamil Nadu)","resourceType": "Book"}""".stripMargin + val response = new Response + response.put("hierarchy", hierarchyString) + } + + def getEmptyCassandraHierarchy(): Response = { + val response = new Response + response.put("hierarchy", "{}") + } + + def getNodes(node: Node): java.util.List[Node] = { + val result = new java.util.ArrayList[Node](){{ + add(node) + }} + result + } + + def getDIALSearchResponse():Response = { + val resString = """{"id": "sunbird.dialcode.search", "ver": "3.0", "ts": "2020-04-21T19:39:14ZZ", "params": {"resmsgid": "1dfcc25b-6c37-49f8-a6c3-7185063e8752", "msgid": null, "err": null, "status": "successful", "errmsg": null }, "responseCode": "OK", "result": {"dialcodes": [{"dialcode_index": 7609876,"identifier": "Q51XXZ","channel": "testr01","batchcode": "testPub0001.20200421T193801","publisher": "testPub0001","generated_on": "2020-04-21T19:38:01.603+0000","status": "Draft","objectType": "DialCode"},{"dialcode_index": 7610113,"identifier": "VZKAFQ","channel": "testr01","batchcode": "testPub0001.20200421T193801","publisher": "testPub0001","generated_on": "2020-04-21T19:38:01.635+0000","status": "Draft","objectType": "DialCode"}]}, "count": 2}""" + JsonUtils.deserialize(resString, classOf[Response]) + } + + def linkDIALCodesResponse():Response = { + val resString = """{"id": "sunbird.dialcode.link", "ver": "3.0", "ts": "2020-04-21T19:39:14ZZ", "params": {"resmsgid": "1dfcc25b-6c37-49f8-a6c3-7185063e8752", "msgid": null, "err": null, "status": "successful", "errmsg": null }, "responseCode": "OK", "result": {"dialcodes": []}}""" + JsonUtils.deserialize(resString, classOf[Response]) + } + + def getFrameworkResponse(): Response = { + val resString = """{ "id": "api.framework.read", "ver": "1.0", "ts": "2021-06-02T12:50:06.398Z", "params": { "resmsgid": "0e6b0de0-c3a1-11eb-93eb-61ea877568bd", "msgid": "0e684ec0-c3a1-11eb-8b68-6b054371f5a3", "status": "successful", "err": null, "errmsg": null }, "responseCode": "OK", "result": { "framework": {"identifier": "igot_health","code": "igot_health","name": "IGOT-Health","description": "IGOT-Health","categories": [ { "identifier": "igot_health_topic", "code": "topic", "translations": null, "name": "Concept", "description": "Concept", "index": 5, "status": "Live", "terms": [{ "identifier": "ekstep_ncert_k-12_topic_environmentalstudies_l1con_1", "code": "environmentalstudies_l1Con_1", "translations": null, "name": "Look and say", "description": "Look and say", "index": 1, "category": "topic", "status": "Live"}] }],"type": "K-12","objectType": "Framework" } }}""" + JsonUtils.deserialize(resString, classOf[Response]) + } + + def searchLinkedContentsResponse(): Response = { + val resString = """{ "id": "api.content.search", "ver": "1.0", "ts": "2021-06-02T13:23:16.096Z", "params": { "resmsgid": "b05ee000-c3a5-11eb-8f0d-5b69b763f5d8", "msgid": "b05cbd20-c3a5-11eb-a92c-2b2f306434f8", "status": "successful", "err": null, "errmsg": null }, "responseCode": "OK", "result": { "count": 5, "content": [{ "identifier": "do_1132339274094346241120", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_1132344630588948481134", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_1132338069147811841118", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_113223967141863424174", "primaryCategory": "Exam Question", "name": "esa", "mimeType": "application/vnd.ekstep.ecml-archive", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_11322383952751820816", "primaryCategory": "Exam Question", "name": "sa:practice", "mimeType": "application/vnd.ekstep.ecml-archive", "contentType": "Resource", "objectType": "Content"} ], "facets": [{ "values": [ {"name": "b00bc992ef25f1a9a8d63291e20efc8d","count": 3 }, {"name": "01309282781705830427","count": 2 } ], "name": "channel"},{ "values": [ {"name": "live","count": 5 } ], "name": "status"} ] }}""" + JsonUtils.deserialize(resString, classOf[Response]) + } + + def linkedContentsInvalidContentTypeResponse(): Response = { + val resString = """{ "id": "api.content.search", "ver": "1.0", "ts": "2021-06-02T13:34:42.430Z", "params": { "resmsgid": "497521e0-c3a7-11eb-8f0d-5b69b763f5d8", "msgid": "4972ff00-c3a7-11eb-a92c-2b2f306434f8", "status": "successful", "err": null, "errmsg": null }, "responseCode": "OK", "result": { "count": 6, "content": [{ "identifier": "do_113281831886274560129", "primaryCategory": "Course", "name": "Test Course", "mimeType": "application/vnd.ekstep.content-collection", "contentType": "Course", "objectType": "Content"},{ "identifier": "do_1132339274094346241120", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_1132344630588948481134", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_1132338069147811841118", "primaryCategory": "Learning Resource", "name": "Untitled Content", "mimeType": "video/mp4", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_113223967141863424174", "primaryCategory": "Exam Question", "name": "esa", "mimeType": "application/vnd.ekstep.ecml-archive", "contentType": "Resource", "objectType": "Content"},{ "identifier": "do_11322383952751820816", "primaryCategory": "Exam Question", "name": "sa:practice", "mimeType": "application/vnd.ekstep.ecml-archive", "contentType": "Resource", "objectType": "Content"} ], "facets": [{ "values": [ {"name": "b00bc992ef25f1a9a8d63291e20efc8d","count": 3 }, {"name": "01309282781705830427","count": 3 } ], "name": "channel"},{ "values": [ {"name": "live","count": 6 } ], "name": "status"} ] }}""" + JsonUtils.deserialize(resString, classOf[Response]) + } + +} + + diff --git a/content-api/content-service/app/controllers/v4/CollectionController.scala b/content-api/content-service/app/controllers/v4/CollectionController.scala index 3b34064b5caeebcbcba8ff1fbf1e615b7d17a2af..75a8c03a073cb5ecbb1b92cb3aba967b5de7dfdb 100644 --- a/content-api/content-service/app/controllers/v4/CollectionController.scala +++ b/content-api/content-service/app/controllers/v4/CollectionController.scala @@ -3,14 +3,16 @@ package controllers.v4 import akka.actor.{ActorRef, ActorSystem} import com.google.inject.Singleton import controllers.BaseController +import org.sunbird.collectioncsv.util.CollectionTOCConstants + import javax.inject.{Inject, Named} import play.api.mvc.ControllerComponents import utils.{ActorNames, ApiId} import scala.collection.JavaConverters._ -import scala.concurrent.{ExecutionContext} +import scala.concurrent.ExecutionContext @Singleton -class CollectionController @Inject()(@Named(ActorNames.CONTENT_ACTOR) contentActor: ActorRef, @Named(ActorNames.COLLECTION_ACTOR) collectionActor: ActorRef, cc: ControllerComponents, actorSystem: ActorSystem)(implicit exec: ExecutionContext) extends BaseController(cc) { +class CollectionController @Inject()(@Named(ActorNames.CONTENT_ACTOR) contentActor: ActorRef, @Named(ActorNames.COLLECTION_ACTOR) collectionActor: ActorRef, @Named(ActorNames.COLLECTION_CSV_ACTOR) collectionCSVActor: ActorRef, cc: ControllerComponents, actorSystem: ActorSystem)(implicit exec: ExecutionContext) extends BaseController(cc) { val objectType = "Collection" val schemaName: String = "collection" val version = "1.0" @@ -195,4 +197,28 @@ class CollectionController @Inject()(@Named(ActorNames.CONTENT_ACTOR) contentAc contentRequest.getContext.put("identifier", identifier); getResult(ApiId.SYSTEM_UPDATE_COLLECTION, contentActor, contentRequest, version = apiVersion) } + + def importCollection(identifier: String) = Action.async { implicit request => + val headers = commonHeaders() + val content = requestFormData(identifier) + content.putAll(headers) + content.putAll(Map("identifier" -> identifier).asJava) + val uploadRequest = getRequest(content, headers, CollectionTOCConstants.COLLECTION_IMPORT) + setRequestContext(uploadRequest, version, objectType, schemaName) + uploadRequest.getContext.put("identifier", identifier) + getResult(ApiId.IMPORT_CSV, collectionCSVActor, uploadRequest, version = apiVersion) + } + + def exportCollection(identifier: String, fileType: Option[String]) = Action.async { implicit request => + val headers = commonHeaders() + val content = new java.util.HashMap().asInstanceOf[java.util.Map[String, Object]] + content.putAll(headers) + content.putAll(Map("identifier" -> identifier, "fileType" -> fileType.getOrElse("csv")).asJava) + val downloadRequest = getRequest(content, headers, CollectionTOCConstants.COLLECTION_EXPORT) + setRequestContext(downloadRequest, version, objectType, schemaName) + downloadRequest.getContext.put("identifier", identifier) + getResult(ApiId.EXPORT_CSV, collectionCSVActor, downloadRequest, version = apiVersion) + } + + } diff --git a/content-api/content-service/app/controllers/v4/EventSetController.scala b/content-api/content-service/app/controllers/v4/EventSetController.scala index 76f014098e353afb7d46b2a59a1f38201eaa46b3..e6729fae402ba3c450fe8c14ea6a19cac857b96a 100644 --- a/content-api/content-service/app/controllers/v4/EventSetController.scala +++ b/content-api/content-service/app/controllers/v4/EventSetController.scala @@ -10,7 +10,7 @@ import scala.collection.JavaConverters.mapAsJavaMapConverter import scala.concurrent.ExecutionContext @Singleton -class EventSetController @Inject()(@Named(ActorNames.EVENT_SET_ACTOR) eventSetActor: ActorRef, cc: ControllerComponents, actorSystem: ActorSystem)(implicit exec: ExecutionContext) extends CollectionController(eventSetActor, eventSetActor, cc, actorSystem) { +class EventSetController @Inject()(@Named(ActorNames.EVENT_SET_ACTOR) eventSetActor: ActorRef, cc: ControllerComponents, actorSystem: ActorSystem)(implicit exec: ExecutionContext) extends CollectionController(eventSetActor, eventSetActor, eventSetActor, cc, actorSystem) { override val objectType = "EventSet" override val schemaName: String = "eventset" diff --git a/content-api/content-service/app/modules/ContentModule.scala b/content-api/content-service/app/modules/ContentModule.scala index 464926b6725c6dcff45f7c51338aec35f6961d1f..1615e7f6ff34fc645f0bf6623e9b9ce50905b8c8 100644 --- a/content-api/content-service/app/modules/ContentModule.scala +++ b/content-api/content-service/app/modules/ContentModule.scala @@ -2,6 +2,7 @@ package modules import com.google.inject.AbstractModule import org.sunbird.channel.actors.ChannelActor +import org.sunbird.collectioncsv.actors.CollectionCSVActor import org.sunbird.content.actors.{AppActor, AssetActor, CategoryActor, CollectionActor, ContentActor, EventActor, EventSetActor, HealthActor, LicenseActor, ObjectActor} import play.libs.akka.AkkaGuiceSupport import utils.ActorNames @@ -22,6 +23,7 @@ class ContentModule extends AbstractModule with AkkaGuiceSupport { bindActor(classOf[AssetActor], ActorNames.ASSET_ACTOR) bindActor(classOf[AppActor], ActorNames.APP_ACTOR) bindActor(classOf[ObjectActor], ActorNames.OBJECT_ACTOR) + bindActor(classOf[CollectionCSVActor], ActorNames.COLLECTION_CSV_ACTOR) println("Initialized application actors...") // $COVERAGE-ON } diff --git a/content-api/content-service/app/utils/ActorNames.scala b/content-api/content-service/app/utils/ActorNames.scala index 05fca2a479c6326e6a4c87b478028be2c6ec9e46..4f4fd1ea0e9b89869f69e62259e0ea20d8e4899f 100644 --- a/content-api/content-service/app/utils/ActorNames.scala +++ b/content-api/content-service/app/utils/ActorNames.scala @@ -13,5 +13,5 @@ object ActorNames { final val ASSET_ACTOR = "assetActor" final val APP_ACTOR = "appActor" final val OBJECT_ACTOR = "objectActor" - + final val COLLECTION_CSV_ACTOR = "collectionCSVActor" } diff --git a/content-api/content-service/app/utils/ApiId.scala b/content-api/content-service/app/utils/ApiId.scala index 35cd9d51a676488ad8b492f9ca2c55bc30a29adc..fafe5bca4be75be24d2b22cc30f8d9cf55419881 100644 --- a/content-api/content-service/app/utils/ApiId.scala +++ b/content-api/content-service/app/utils/ApiId.scala @@ -90,4 +90,8 @@ object ApiId { //Object APIs val READ_OBJECT = "api.object.read" + //Collection CSV APIs + val IMPORT_CSV = "api.collection.import" + val EXPORT_CSV = "api.collection.export" + } diff --git a/content-api/content-service/conf/application.conf b/content-api/content-service/conf/application.conf index 81fcc45e46e9a5e53d8c94c8f914e2f014e0375d..b54b4bfee533c6ca458ce37526b450fc12d04ece 100644 --- a/content-api/content-service/conf/application.conf +++ b/content-api/content-service/conf/application.conf @@ -66,22 +66,47 @@ akka { actor { deployment { /contentActor - { - router = smallest-mailbox-pool - nr-of-instances = 10 - dispatcher = actors-dispatcher - } - /healthActor - { - nr-of-instances = 10 - dispatcher = actors-dispatcher - } - /assetActor - { - router = smallest-mailbox-pool - nr-of-instances = 10 - dispatcher = actors-dispatcher - } + { + router = smallest-mailbox-pool + nr-of-instances = 10 + dispatcher = actors-dispatcher + } + /channelActor + { + router = smallest-mailbox-pool + nr-of-instances = 10 + dispatcher = actors-dispatcher + } + /collectionActor + { + router = smallest-mailbox-pool + nr-of-instances = 10 + dispatcher = actors-dispatcher + } + /collectionCSVActor + { + router = smallest-mailbox-pool + nr-of-instances = 10 + dispatcher = actors-dispatcher + } + /healthActor + { + router = smallest-mailbox-pool + nr-of-instances = 5 + dispatcher = actors-dispatcher + } + /licenseActor + { + router = smallest-mailbox-pool + nr-of-instances = 2 + dispatcher = actors-dispatcher + } + /assetActor + { + router = smallest-mailbox-pool + nr-of-instances = 10 + dispatcher = actors-dispatcher + } } } } @@ -498,7 +523,7 @@ content.copy.props_to_remove=["downloadUrl", "artifactUrl", "variants", "owner", "collaborators", "creators", "contributors", "badgeAssertions", "dialcodes", "concepts", "keywords", "reservedDialcodes", "dialcodeRequired", "leafNodes", "sYS_INTERNAL_LAST_UPDATED_ON", "prevStatus", "lastPublishedBy", "streamingUrl"] -content.copy.origin_data=["name", "author", "license", "organisation"] +content.copy.origin_data=["name", "author", "license", "organisation"] channel.default="in.ekstep" @@ -677,3 +702,36 @@ objecttype.as.content.enabled=true # master Category Cache Properties master.category.cache.ttl=86400 + +# Collection CSV Hierarchy API +csv_folder_identifier_col_header = ["Folder Identifier"] +collection_create_csv_toc_headers = {"Level 1 Folder":0,"Level 2 Folder":1,"Level 3 Folder":2,"Level 4 Folder":3,"Description":4} +collection_update_csv_toc_headers = {"Collection Name":0,"Folder Identifier":1,"Level 1 Folder":2,"Level 2 Folder":3,"Level 3 Folder":4,"Level 4 Folder":5,"Description":6,"Mapped Topics":7,"Keywords":8,"QR Code Required?":9,"QR Code":10,"Linked Content 1":11,"Linked Content 2":12,"Linked Content 3":13,"Linked Content 4":14,"Linked Content 5":15,"Linked Content 6":16,"Linked Content 7":17,"Linked Content 8":18,"Linked Content 9":19,"Linked Content 10":20,"Linked Content 11":21,"Linked Content 12":22,"Linked Content 13":23,"Linked Content 14":24,"Linked Content 15":25,"Linked Content 16":26,"Linked Content 17":27,"Linked Content 18":28,"Linked Content 19":29,"Linked Content 20":30,"Linked Content 21":31,"Linked Content 22":32,"Linked Content 23":33,"Linked Content 24":34,"Linked Content 25":35,"Linked Content 26":36,"Linked Content 27":37,"Linked Content 28":38,"Linked Content 29":39,"Linked Content 30":40} +collection_toc_create_csv_mandatory_fields=["Level 1 Folder"] +collection_toc_update_csv_mandatory_fields=["Collection Name","Folder Identifier"] +collection_csv_hierarchy_headers = ["Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder"] +collection_csv_qr_headers = ["QR Code Required?","QR Code"] +collection_csv_linked_content_fields = ["Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30"] +collection_csv_linked_content_seq = {"Linked Content 1":0,"Linked Content 2":1,"Linked Content 3":2,"Linked Content 4":3,"Linked Content 5":4,"Linked Content 6":5,"Linked Content 7":6,"Linked Content 8":7,"Linked Content 9":8,"Linked Content 10":9,"Linked Content 11":10,"Linked Content 12":11,"Linked Content 13":12,"Linked Content 14":13,"Linked Content 15":14,"Linked Content 16":15,"Linked Content 17":16,"Linked Content 18":17,"Linked Content 19":18,"Linked Content 20":19,"Linked Content 21":20,"Linked Content 22":21,"Linked Content 23":22,"Linked Content 24":23,"Linked Content 25":24,"Linked Content 26":25,"Linked Content 27":26,"Linked Content 28":27,"Linked Content 29":28,"Linked Content 30":29} +collection_csv_mapped_topics_header = ["Mapped Topics"] +collection_csv_collection_name = ["Collection Name"] +collection_toc_max_csv_rows=6500 +collection_toc_allowed_content_types=["TextBook","Collection","LessonPlan","Resource"] +collection_content_type_unit_type = {"TextBook": "TextBookUnit", "Course": "CourseUnit", "Collection":"CollectionUnit"} +collection_output_toc_headers = ["Collection Name","Folder Identifier","Level 1 Folder","Level 2 Folder","Level 3 Folder","Level 4 Folder","Description","Mapped Topics","Keywords","QR Code Required?","QR Code","Linked Content 1","Linked Content 2","Linked Content 3","Linked Content 4","Linked Content 5","Linked Content 6","Linked Content 7","Linked Content 8","Linked Content 9","Linked Content 10","Linked Content 11","Linked Content 12","Linked Content 13","Linked Content 14","Linked Content 15","Linked Content 16","Linked Content 17","Linked Content 18","Linked Content 19","Linked Content 20","Linked Content 21","Linked Content 22","Linked Content 23","Linked Content 24","Linked Content 25","Linked Content 26","Linked Content 27","Linked Content 28","Linked Content 29","Linked Content 30"] +sunbird_collection_toc_csv_ttl=86400 +sunbird_toc_max_first_level_units=30 + +framework_read_api_url=/framework/v1/read +sunbird_dialcode_search_api=/dialcode/v1/list +sunbird_content_search_url=/content/v1/search +sunbird_link_dial_code_api=/collection/v3/dialcode/link + +sunbird_cs_base_url="https://dev.sunbirded.org/api" + +learning_service { + api { + base_url : "" + auth_key : "" + } +} diff --git a/content-api/content-service/conf/routes b/content-api/content-service/conf/routes index 5fd65f118d1f94c1695669a1746fbe09f4e53971..02bcf9698e6f67ac61dc2ada56117e2096cb07b9 100644 --- a/content-api/content-service/conf/routes +++ b/content-api/content-service/conf/routes @@ -119,4 +119,9 @@ DELETE /eventset/v4/discard/:identifier controllers.v4.EventSetControll DELETE /private/eventset/v4/retire/:identifier controllers.v4.EventSetController.retire(identifier:String) # Object v4 Api's -GET /object/v4/read/:identifier controllers.v4.ObjectController.read(identifier:String, fields:Option[String]) \ No newline at end of file +GET /object/v4/read/:identifier controllers.v4.ObjectController.read(identifier:String, fields:Option[String]) + + +# Collection TOC CSV APIs +POST /collection/v4/import/:collectionId controllers.v4.CollectionController.importCollection(collectionId:String) +GET /collection/v4/export/:collectionId controllers.v4.CollectionController.exportCollection(collectionId:String, fileType:Option[String]) diff --git a/content-api/content-service/pom.xml b/content-api/content-service/pom.xml index 8a2db3be233d73c635652a5ef14dd4bea495027d..77e6eabf52fb61a16c72ed6de79e8ece7a97a678 100755 --- a/content-api/content-service/pom.xml +++ b/content-api/content-service/pom.xml @@ -107,6 +107,18 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.sunbird</groupId> + <artifactId>collection-csv-actors</artifactId> + <version>1.0-SNAPSHOT</version> + <type>jar</type> + <exclusions> + <exclusion> + <artifactId>slf4j-log4j12</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_${scala.maj.version}</artifactId> diff --git a/content-api/content-service/test/modules/TestModule.scala b/content-api/content-service/test/modules/TestModule.scala index 898aada40b1a889db9cb25602d56865b2dacf191..00d1a7acf1f4a5fe02d5be0d14db830766992aaa 100644 --- a/content-api/content-service/test/modules/TestModule.scala +++ b/content-api/content-service/test/modules/TestModule.scala @@ -22,6 +22,7 @@ class TestModule extends AbstractModule with AkkaGuiceSupport { bindActor(classOf[TestActor], ActorNames.EVENT_SET_ACTOR) bindActor(classOf[TestActor], ActorNames.EVENT_ACTOR) bindActor(classOf[TestActor], ActorNames.OBJECT_ACTOR) + bindActor(classOf[TestActor], ActorNames.COLLECTION_CSV_ACTOR) println("Test Module is initialized...") } } diff --git a/content-api/pom.xml b/content-api/pom.xml index ff480cc5452f5a2413256c19400172c2eb5dd542..4340d17fb78b1f80d4e503fadc80f1d019ed484b 100755 --- a/content-api/pom.xml +++ b/content-api/pom.xml @@ -20,6 +20,7 @@ <module>content-service</module> <module>hierarchy-manager</module> <module>content-actors</module> + <module>collection-csv-actors</module> </modules> <dependencies> </dependencies> diff --git a/platform-core/platform-common/pom.xml b/platform-core/platform-common/pom.xml index fa8696bf759744cb5b4de0edb5317b6e1f778703..fbfc44f9d0cf68b7d723c08e6b12879e4f00eb7a 100644 --- a/platform-core/platform-common/pom.xml +++ b/platform-core/platform-common/pom.xml @@ -56,6 +56,16 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${fasterxml.jackson.version}</version> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>3.15</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-csv</artifactId> + <version>1.4</version> </dependency> <dependency> <groupId>com.mashape.unirest</groupId> diff --git a/platform-modules/mimetype-manager/src/main/scala/org/sunbird/cloudstore/StorageService.scala b/platform-modules/mimetype-manager/src/main/scala/org/sunbird/cloudstore/StorageService.scala index 405217526c8d01549aaf2a24d04d1c0b1c463400..83fabffc8609a116991509a64ada519ca129122b 100644 --- a/platform-modules/mimetype-manager/src/main/scala/org/sunbird/cloudstore/StorageService.scala +++ b/platform-modules/mimetype-manager/src/main/scala/org/sunbird/cloudstore/StorageService.scala @@ -88,4 +88,15 @@ class StorageService { def getSignedURL(key: String, ttl: Option[Int], permission: Option[String]): String = { getService().getSignedURL(getContainerName, key, ttl, permission) } + + def getUri(key: String): String = { + try { + getService.getUri(getContainerName, key, Option.apply(false)) + } catch { + case e:Exception => { + println("StorageService --> getUri --> Exception: " + e.getMessage) + "" + } + } + } }