File size: 43,494 Bytes
3881076 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 |
1
00:00:04,980 --> 00:00:09,220
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ู
ุญุงุถุฑุชูุง ุงูููู
ู
ู ุงูุฑุงุจุนุฉ
2
00:00:09,220 --> 00:00:14,300
ูู ู
ุณุงู ุงูุชุดุฑูุญ ุนูู
ุงูุชุดุฑูุญ ุงุชููู
ูููุง ุนู
3
00:00:14,300 --> 00:00:17,540
connective tissue ูู type ู
ู ุงู tissue ุงูู
ูุฌูุฏุฉ ูู
4
00:00:17,540 --> 00:00:22,320
ุงูุฌุณู
ูุงุชูููุง ุงูู ู
ู ุงูู
ุญุงุถุฑุฉ ุงูุณุงุจูุฉ ุงูู types of
5
00:00:22,320 --> 00:00:28,040
tissue ุนูุฏูุง four types ุงู four main types ูู
6
00:00:28,040 --> 00:00:36,070
ุนูุฏูุง ุงู epithelialtissue ู ูู ุนูุฏูุง ุงู connective
7
00:00:36,070 --> 00:00:47,650
tissue ู ูู ุนูุฏูุง ุงู muscle ุฃู ุงู muscular tissue
8
00:00:47,650 --> 00:00:54,890
ู ูู ุนูุฏูุง ุงู nervous ุฃู ุงู nerve tissue
9
00:00:57,800 --> 00:01:01,300
ุชุญุฏุซูุง ูู ุงูู
ุฑุฉ ุงูุณุงุจูุฉ ุนู ุงู epithelial cells
10
00:01:01,300 --> 00:01:06,500
ููุธูุชูุง .. epithelial tissue ููุธูุชูุง ู ุงูุฃู
ุงูู
11
00:01:06,500 --> 00:01:10,100
ุงููู ูุฌุฏุชูุง ููููุง ุฅู ูู ุจุชู
ูุฃ ูู ุงู cavities ุจุชุนู
ู
12
00:01:10,100 --> 00:01:14,300
covering ููู ุงู body ุจุชู
ูุฃ ูู ุงู cavities ููู
13
00:01:14,300 --> 00:01:19,680
ุงููููุงุช ุงููู ู
ูุฌูุฏุฉ ูู ุงูุฌุณู
ุงูููู
ููุชููู
ุนู ุงู
14
00:01:19,680 --> 00:01:24,720
connective tissue ูู ุนุจุงุฑุฉ ุนู ุงูุฃูุณุฌุฉ ุฃู ูุณูุฌ
15
00:01:24,720 --> 00:01:29,300
ุงูุถุงู
ู ุทุจุนุง ูู ููุน ู
ู ุฃููุงุน ุงู tissue ุงููู widely
16
00:01:29,300 --> 00:01:37,520
distributed ูู ุงูุฌุณู
mostly abundant ููู
ุงููู ุฅููุง
17
00:01:37,520 --> 00:01:42,420
ุนุฏุฉ ูุธุงุฆู ููุชุนุฑู ุนููุง ุนูููุง ุงู ุดุงุก ุงููู ู
ู ุฎูุงู
18
00:01:42,420 --> 00:01:47,920
ู
ุญุงุถุฑุชูุง ููููู
ุ ุทุจุนุงู ุฅููุง ู
ูููุงุชูุง ุงูุฎุงุตุฉ ูุฅููุง
19
00:01:47,920 --> 00:01:54,220
ูุธุงุฆููุง ุงูุฎุงุตุฉ ูุจุงูุชุงูู ูู ุงูุชุดุงุฑูุง ุจุชุณุงุนุฏ ุนูู
20
00:01:54,220 --> 00:02:00,000
ุจูุงุก ุงูุฌุณู
ุฅูุด ุจุฏูุง ูุดุจู ุงู connective tissue ุฏู ู
ู
21
00:02:00,000 --> 00:02:06,300
ุงุณู
ู ูุณูุฌ ุงูุฏุนู
ุงููู ูู ุจูุฑูุจ ูู ู
ูููุงุช ุงูุฌุณู
ูุฐู
22
00:02:06,300 --> 00:02:12,720
ู
ุน ุจุนุถูุง ุจุฏูุง ูุญุงูู ูุดุจููุง ุจุงูุฌุณู
ุงู body build ุฒู
23
00:02:12,720 --> 00:02:20,420
ุงู structure ุงูุจูุงุก ุชุจุนุช ุงูู
ุจูู ุฅูุด ู
ูููุงุช ุฃู ุจูุงุก
24
00:02:20,420 --> 00:02:27,970
ู
ูุฌูุฏ ุนูุฏูุงุงูู ุฃูุชุฑ ู
ู ู
ููู ูุงุฒู
ูููู ููู ุฃุฑุถ ู
25
00:02:27,970 --> 00:02:31,350
ูุงุฒู
ูููู ุฃุฑุถ ู ุฃุณุงุณุงุช ู ูุงุฒู
ูููู ููู ุนูุฏุงู ู
26
00:02:31,350 --> 00:02:36,130
ูุงุฒู
ูููู ููู ุทูุจ ุนุดุงู ูุนูู ูุบูู ุงููููู ู ูุนู
ู
27
00:02:36,130 --> 00:02:44,410
ุงููููู ูุฐุง ู ูููู ู
ุชูุงู
ู ูุนูู ูู ุงุญูุง ุฃุฎุฏูุง ู
ุจูู ู
28
00:02:44,410 --> 00:02:53,790
ุตูุทูุง ุทูุจ ุทูุจ ุทูุจ ุชู
ุงู
ููู ุจุนุถูู
ุจุฏูู ู
ุง ูุฑุจุท ูุฐุง
29
00:02:53,790 --> 00:02:59,170
ุงูุทูุจ ู
ุน ุจุนุถูุ ุฅูุด ุจูุตูุฑุ ุจูุตูุฑ ุงูู
ุจูู ูู ู
ูุฏ
30
00:02:59,170 --> 00:03:04,790
ุจุงูุฑูุญุ ุจููุน ุฅุฐุง ู
ุง ู
ููุงุด ุฅุญูุงู
ูุฐุง ุงูุทูุจ ู
ุน ุจุนุถู
31
00:03:04,790 --> 00:03:09,590
ูู
ุงุนู
ููุงููุด ุฃุณุงุณ .. ุฃุณุงุณ ูู
ุงุฑูุนูุงููุด ุนู
ุฏุงูุ ูุฐุง
32
00:03:09,590 --> 00:03:14,810
ุงูู
ุจูู ุจูููู ูุชูุฑ ุถุนูู ููุงูู ูุจูู ุงุณู
ู ุฅูุด ูุธููุฉ
33
00:03:14,810 --> 00:03:20,530
ุงู connective tissue ูู ุงูุฌุณู
ุ ูู bending ุชุงุชููู
34
00:03:21,450 --> 00:03:27,130
ุจุชุนุทููู ุงู structure ุงููุธููุฉ ุฎูููุง ูููู ููุง ูุงุญุฏ
35
00:03:27,130 --> 00:03:33,130
function ุจุชุนุทููู
36
00:03:33,130 --> 00:03:37,390
ุงู structure ูู
ุงู
37
00:03:37,390 --> 00:03:47,150
ุจุชุนุทููู ุงู protection ุชุญู
ู ูู
ุงู
38
00:03:48,250 --> 00:03:51,910
ูููุง ุงูู Epithelial cell ู
ูุฌูุฏ ุชุญุช ุงูุด ุจูููู
39
00:03:51,910 --> 00:03:55,470
connective tissue ุงุชูุงุฐ ุงู structure ุนู ุจุนุถูุง
40
00:03:55,470 --> 00:04:00,470
Insulating Insulation
41
00:04:00,470 --> 00:04:08,370
ุงูุด ูู
ุงู ู
ู
ูู ูููู ูู ุนูุง immune system ุชุนุทููู
42
00:04:08,370 --> 00:04:09,670
immune ู
ูุงุนุฉ
43
00:04:16,480 --> 00:04:25,280
ุงูุด ูู
ุงู ู
ู
ูู ุชุนุทููู storage ุจุชุนู
ูู storage ููู
ูุงุฏ
44
00:04:25,280 --> 00:04:31,800
ุงูุบุฐุงุฆูุฉ ุงูู
ูุฌูุฏุฉ ูู ุงูุฌุณู
ูุจูู
45
00:04:31,800 --> 00:04:37,520
ูุฐู ูุธููุฉ ุงู connective tissue bend and support
46
00:04:37,520 --> 00:04:43,600
the strength of the body ูู ุงู bodyุจุชุฑูุจูุง ู
ุน ุจุนุถู
47
00:04:43,600 --> 00:04:49,800
ู ุจุชุฌุนููุง ู
ุชู
ุงุณู protect and insulate internal
48
00:04:49,800 --> 00:04:55,680
organs ุจุชุญู
ู ูุงู organs ุงูุฏุงุฎููุฉ ู ุจุชุนุฒููุง ุนู
49
00:04:55,680 --> 00:05:01,240
ุจุนุถูุง ุนุดุงู ู
ุงูุตุงุฑุด ูู ุงูุฌุณู
ู
ู ุฌูุง ู
ุฎููุท
50
00:05:04,350 --> 00:05:07,530
Convertmentalize Convertmentalize ุฅูุด ูุนููุ ุนูุฏู
51
00:05:07,530 --> 00:05:12,290
ุงูุนุถูุงุช ู
ูุฌูุฏุฉ ูููุง ุชุญุช ุงูุฌูุฏุ ุชู
ุงู
ุ ุทูุจุ ุชุญุช
52
00:05:12,290 --> 00:05:15,570
ุงูุฌูุฏ ูู ุนูุฏูุง ู
ุฌู
ูุนุฉ ู
ู ุงูุนุถูุงุช ููู ุนุถูุฉ ุฅููุง
53
00:05:15,570 --> 00:05:19,670
function ูู ุงุฎุชูุทุช ุงูุนุถูุงุช ูุฐูุ ุจุตูุฑ ุงูุญุฑูุฉ ุตุนุจุฉ
54
00:05:19,670 --> 00:05:26,910
ูุจุชุนุฒู ุงู tendon sheets ุจุชุนุฒู ุนู ุทุฑูู ุงูุฃุบุดูุฉ ุงููู
55
00:05:26,910 --> 00:05:31,170
ู
ูุฌูุฏุฉ ูุฐู ุงูุนุถูุงุช ุนู ุจุนุถูุง ุญุชู ุชุชุญูู ุงููุธุงุฆู
56
00:05:31,170 --> 00:05:36,970
ุงูู
ุทููุจุฉ ู
ููุงtransport ุงู ูุงูุง ูุณููุง
57
00:05:36,970 --> 00:05:42,390
transportation transportation
58
00:05:42,390 --> 00:05:49,570
ูุธููุฉ ุงูุฏู
ุจูููู ุงูู
ูุงุฏ ุงูุบุฐุงุฆูุฉ ูุงูุฃูุณุฌู
ูู ุงูุฌุณู
59
00:05:49,570 --> 00:05:58,090
site of store energyุจูุฎุฒู ุงููู ุจูุฏ ุงููู ุจูุนุทููุง
60
00:05:58,090 --> 00:06:01,230
energy ูู ุงู tissue ูู ุงูุฌุณู
ู
ุญุชุงุฌุฉ ู energy to
61
00:06:01,230 --> 00:06:05,150
function main site of ูููู
ูุฃูู ูููุง ุงููุงุบู
62
00:06:05,150 --> 00:06:11,690
ุณุงูุชูุณุณ ูุฏูู ุงู connective tissue ุงูุด ุชุฑูุจุชูู
63
00:06:11,690 --> 00:06:15,990
ุญูููุง ุงุญูุง ุนู ุงูุจูุงุก ุงูุจูุงุก ุจูููู ูู ุนูุฏูุง ุงู
64
00:06:15,990 --> 00:06:21,050
ground ู ุจูููู ูู ุนูุฏูุง ุงุนู
ุฏุฉ ู ุจูููู ูู ุนูุฏูุง
65
00:06:21,050 --> 00:06:31,260
ุงูุทูุจ ุงููู ุจูุฑุจุทูุจูุนู
ู ุดูู ููู
ูุงู ุชู
ุงู
ูู ุฑูุญูุง
66
00:06:31,260 --> 00:06:38,220
ุนูู ุงู connective tissue ูู ุนูุง three main parts
67
00:06:38,220 --> 00:06:45,680
ุงู components ุงู ground substance ููููู ุงูุด ูู ูู
68
00:06:45,680 --> 00:06:48,260
ุฎูููุง ูููู ุงูุฃุฑุถูุฉ ุงููู ู
ูุฌูุฏุฉ ุนูููุง ูุฐู ุงู
69
00:06:48,260 --> 00:06:53,760
connective tissue ูู ุนูุง ุงู fibers ููู ุนุจุงุฑุฉ ุนู
70
00:06:53,760 --> 00:07:04,460
ุงูุฃุนู
ุฏุฉุงููู ุจุชู
ุชุฏ ุนุดุงู ุชุนู
ู ุดูู ุฃู ุชูุทู ุณูุงุก ูุงู
71
00:07:04,460 --> 00:07:08,580
ุงู solidity ุฃู ุงู flexibility ูุฌุฒุก ุงููู ูู ู
ูุฌูุฏุฉ
72
00:07:08,580 --> 00:07:12,260
ููู ูุทุจุนุง ุงู tissue ูุฃูู ุงุญูุง ููููุง ุงู tissue ูู
73
00:07:12,260 --> 00:07:14,700
ุนุจุงุฑุฉ ุนู ู
ุฌู
ูุนุฉ ู
ู cells
74
00:07:17,330 --> 00:07:20,150
ูุจูู ูู ุนูุฏูุง ุงู ground substance ูู ุนูุฏูุง ุงู
75
00:07:20,150 --> 00:07:24,670
fibers ูู ุนูุฏูุง ุงู cells ุงู cells ูุฐู ูู ุงูู
ูุงุฏ
76
00:07:24,670 --> 00:07:29,110
ุงูุขุฆู
ุฉ ุงููู ุจุชู
ุซู ุงูุทูุจ ูู ุงูุจูุงุก ุชู
ุงู
ุ ุงูุทูุจ ู
77
00:07:29,110 --> 00:07:32,690
ุงูุฒูุท ู ุงูุญุตุฉ ู ุงูุฃุดูุงุก ุงููู ุจูุฎูุทูุง ูููุง ุงูู
ููู
78
00:07:32,690 --> 00:07:37,430
ุนุดุงู ูุนู
ููุง ุงู mattress ุทูุจ ูุฐู ุงูุงุชููู ู
ุน ุจุนุถ ุงู
79
00:07:37,430 --> 00:07:42,630
fibers ู ุงู ground substance ููู
ุนุจุงุฑุฉ ุนู matrix
80
00:07:42,630 --> 00:07:45,870
ุทูุจ
81
00:07:46,590 --> 00:07:52,230
Matrix ุงููู ูู ุนุจุงุฑุฉ ุนู ู
ุตูููุฉ ูุฐู ุงูู
ุตูููุฉ ุงุณู
ูุง
82
00:07:52,230 --> 00:07:56,230
ุจุชุชููู ู
ู ุงู ground substances ู ุงู fibers ุงููู
83
00:07:56,230 --> 00:08:01,110
ุจุชููู ู
ุชูุงุฌุฏุฉ ุนูููุง ุฃู ู
ุชุฑูุจุฉ ุนูููุง ุงู cells ูุฐู
84
00:08:01,110 --> 00:08:05,530
ุนุดุงู ูุฐู ุงุณู
ูุง cells ูุจูู ูุฐู extracellular
85
00:08:05,530 --> 00:08:10,570
extracellular ุชู
ุงู
ุ ูุฐู ุงุชุณู
ุช ุงู ground substance
86
00:08:10,570 --> 00:08:16,780
ู
ุน ุงู fibers ูู ุงู extracellular matrixุทูุจ ููุนุฏ
87
00:08:16,780 --> 00:08:22,000
ุนุดุงู ูุดูู ูู ูุงุญุฏุฉ ู
ู ูุฏูู ุฅูุด ุชุฑูุจุชูุง ุทุจุนุง
88
00:08:22,000 --> 00:08:26,980
extracellular matrix ู
ู
ูู ุชููู ู
ุงุฏุฉ ุฌููุงุชูููุฉ
89
00:08:26,980 --> 00:08:35,320
ู
ูุฌูุฏุฉ ูู ุงูู
ูุงู ุนุดุงู ุชููุฌุฏ ูููุง ุงู cells ุทูุจ ูุจูู
90
00:08:35,320 --> 00:08:37,640
connective tissue ูู three main components ุงู
91
00:08:37,640 --> 00:08:42,260
ground substance ุงู fibers and the cellstogether
92
00:08:42,260 --> 00:08:45,920
the ground substance and fibers make up the
93
00:08:45,920 --> 00:08:53,400
extracellular matrix ุงู extracellular matrix ุฃู ูู
94
00:08:53,400 --> 00:08:59,520
ุงูู
ุตูููุฉ ูุฎุงุฑุฌ ุงู cells unstructural
95
00:08:59,520 --> 00:09:03,500
material fills the spaces between the cells ูุจูู
96
00:09:03,500 --> 00:09:08,690
ูู ุนูุฏู ูุงุนุฏุฉ ุฒู ุงูุฌููู ูุฏูู
ูุฌูุฏ ูููุง ุงุชุฎูููุง
97
00:09:08,690 --> 00:09:12,670
ุงูุชูุง ูู ุนูุฏูุง ูุจู ุจูุฑูุณ ูู ุฌูููู ูู
ูุฌูุฏ ููู ูุทุน
98
00:09:12,670 --> 00:09:16,310
ู
ู ุงููุฑุงููุฉ
99
00:09:16,310 --> 00:09:20,810
ุงูู
ูุฒ ุฒู ู
ุง ุจูุนู
ู ุจุนุถ ุงูุฌูููู ูุฐู ูู ุงู ground
100
00:09:20,810 --> 00:09:25,690
substance ุงููู ุจุฏู ุชููู ู
ูุฌูุฏ ูููุง ุงู cells ุทุจุนุง
101
00:09:25,690 --> 00:09:31,690
ูู created by cells ุจุชุนุทููุง consistency ูุงู liquid
102
00:09:32,820 --> 00:09:37,840
ู
ู
ูู ุชููู ุฏุงุฑูุฒู from liquid to gel to solid ูุนูู
103
00:09:37,840 --> 00:09:43,480
ู
ู
ูู ุชููู liquid ุฎุงูุต ุฒู ุงูุฏู
ู
ู
ูู ุชููู gel ู ู
ู
ูู
104
00:09:43,480 --> 00:09:49,860
ุชููู solid ุฌุงู
ุฏุฉ ุงู
105
00:09:49,860 --> 00:09:54,160
fibers ุงูู
ููู ุงูุชุงูู ูู extra cellular ูู ุงู
106
00:09:54,160 --> 00:10:00,060
fibers ููู ุจุชุชููู ู
ู ุงู collagen ู
107
00:10:01,680 --> 00:10:08,000
ุงูู elastane fibers ู ุงู reticular fibers ุงูู
108
00:10:08,000 --> 00:10:12,540
collision ูุชูุฑ ุจูุณู
ุน ุงุญูุง ุงูุด ูู ุงู collisionุ ูู
109
00:10:12,540 --> 00:10:18,670
ุนุจุงุฑุฉ ุนูfilaments ุฃู fibers ุงูู
ููู ุงูุฃุณุงุณู ุงููู
110
00:10:18,670 --> 00:10:23,550
ุนูุฏูุง ุงู protein ุงู collagen ุฃู ุงู protein ููุน ู
ู
111
00:10:23,550 --> 00:10:28,730
ุฃููุงุน ุงู protein ูู ุงุณู
ู ุงู collagen ุงู collagen
112
00:10:28,730 --> 00:10:35,730
ูุฐุง ุงูุด ุฎุตุงุฆุตู ุงูู ุจูุนุทููู tensile strength ูุนูู
113
00:10:35,730 --> 00:10:43,690
ููุฏุฑุด ูุดุฏู ุจูุงูู
ุงู mechanicalุฎููููู ุฃููู
114
00:10:43,690 --> 00:10:51,530
compression ุฃู tensile ูุนูู ุงูุดุฏ ุจูุงูู
ุงูุดุฏ ุทุจุนุง
115
00:10:51,530 --> 00:10:57,190
ู
ูุชุดุฑ ุฌุฏุง abundant in the dense connective tissue
116
00:10:58,390 --> 00:11:01,750
hold structure together ุจูุนู
ู ุนูู ุชู
ุงุซู ุงูู
117
00:11:01,750 --> 00:11:06,070
structure ูุฐู ู
ูุฌูุฏุฉ ูู ุงูู tendon and ligaments
118
00:11:06,070 --> 00:11:09,170
tendon and ligaments ูุฐู ู
ู ุฎุตุงุฆุต ุงูู
119
00:11:09,170 --> 00:11:14,090
musculoskeletal system ู
ููู ุฃุณุงุณู ุงูู tendon ู
ู
120
00:11:14,090 --> 00:11:17,570
ู
ูููุงุช ุงูุนุถูุงุช ุงููู ูู ุจุชุนู
ู ุนู
ููุฉ ุงูุณุญุจ ู ุงูุดุฏ
121
00:11:17,570 --> 00:11:24,640
ุงููู ูู ุจุชู
ุซู ุงู movementูุฃู ูู ุนูุฏู ุงูุง bone ูู
122
00:11:24,640 --> 00:11:28,520
ุนูุฏู joints ูู ุนูุฏู muscles ูู ุงู muscles ูู ุนู
123
00:11:28,520 --> 00:11:33,460
ุทุฑูู ุชุณุญุจ ูุฐู ุงู bone ุนุณู ุงุณุชุนู
ุงู ุงูุญุฑูุฉ ุงูู
ุทููุจุฉ
124
00:11:33,460 --> 00:11:36,780
ู
ููู ุงู ligament ููู ู
ูุฌูุฏุฉุ ุงู ligament ูู ุนุจุงุฑุฉ
125
00:11:36,780 --> 00:11:41,260
ุนู ุงูุฃุฑุจุทุฉ ุงููู ู
ูุฌูุฏุฉ ุจูู two adjacent bone ุญุชู
126
00:11:41,260 --> 00:11:48,020
ุชุชููู ููู
ูุตู ุงู ุงู joints in a reticular ุนู ุทุฑูู
127
00:11:48,020 --> 00:11:54,050
ุดุจูุฉvery thin collagenous fibers highly branched
128
00:11:54,050 --> 00:11:57,530
ูุนูู ุจููุฏุฑ ูููู ุงู ุงู collagen ูุฐุง
129
00:12:00,190 --> 00:12:04,350
ุนุจุงุฑุฉ ุนู fibers ูู ู
ุฌู
ูุนุฉ ู
ู ุงู fibers ุจุชุชุฑุงุณ ู
130
00:12:04,350 --> 00:12:07,790
ุจุชููู ุจูุฐุง ุงูุดูู ุฒู ุงูุญุจู ุจุชุจูู ุนุงู
ูุฉ ุญุจู ูู
131
00:12:07,790 --> 00:12:13,670
elastic ุจุณ ู
ุด .. ู
ุด ูุชูุฑ ูู ูููุง elasticity ุงู
132
00:12:13,670 --> 00:12:16,610
structure ูุงุฒู
ูููู ูุชู
ุชุน ุจุฌุฒุก ู
ู ุงู elasticity
133
00:12:16,610 --> 00:12:21,850
ุญุชู ููุงูู
ุงู compressions ุงู the tensile strength
134
00:12:21,850 --> 00:12:26,470
ุงู ูุงูู
mechanical forces ุงููู ู
ู
ูู ุชูุฌู ุนููู ุงู
ุง
135
00:12:26,470 --> 00:12:28,530
ุงู reticular ููู ู
ุชุดุนุจุฉ
136
00:12:31,900 --> 00:12:39,120
ุจูุฐุง ุงูุดูู ุจุชุจูู ุนุงู
ูุฉ ุฒู ุงูุดุจูุฉ ููุฐุง ุทูุจ elastic
137
00:12:39,120 --> 00:12:43,500
ููุง non-elasticุ ูุนู
ูู very thin collagenous
138
00:12:43,500 --> 00:12:46,700
fibers ููู highly branched
139
00:12:48,540 --> 00:12:52,640
network ุจุชุนู
ู ุนุงู
ูุฉ ุฒู ุงูุดุจูุฉ ูุฐู provide support
140
00:12:52,640 --> 00:12:56,660
for the wall of blood vessels ูุจูู ุจุฑุถู ูู elastic
141
00:12:56,660 --> 00:13:01,840
ุทุจุนุง ู
ู
ูู ุฃููุง ุจุชููู ูููุง ุฌุฒุก ู
ู ุงูู
ุฑููุฉ ุฃู
ุง ุงู
142
00:13:01,840 --> 00:13:09,440
elastic fibers ููู ููุนุง ู
ู ุงู fibers ุงูู
ูุชุดุฑุฉ ุฌุฏุง
143
00:13:09,440 --> 00:13:17,470
microfilaments ูุชูุฑ thinูู
ุงู ูููุง ูุชูุฑ ู
ู ุงู
144
00:13:17,470 --> 00:13:23,910
ุงูุณุชูู ุงููู ุจูุณุงุนุฏ ุนูู ุงูู
ุฑููุฉ ููุง ุฏู ุจุชููู ุนุงู
ูุฉ
145
00:13:23,910 --> 00:13:30,070
ุฒู ููู ูุนูู ุชู
ุงู
ุ
146
00:13:30,070 --> 00:13:35,960
ุจูุฐู ุงูุดููุงุญูุง ู
ุญุชุงุฌ ุงูู
ุฑููุฉ ูุฐู ู
ุซูุง ูู ุงู vocal
147
00:13:35,960 --> 00:13:40,160
cords ูุฃู ูู ุจุชุนุชู
ุฏ ุนูู ุงูุงูุชุฒุงุฒ ูู ุชุฎูููุง ุงุญูุง ุงู
148
00:13:40,160 --> 00:13:44,320
vocal cord ูุฐู ู
ู ุงู collision fibers ููู ุงูุงูุชุฒุงุฒ
149
00:13:44,320 --> 00:13:48,780
ุจุฏู ูุตูุฑ ุนุดุงู ุนู
ููุฉ ุงูุตูุช ูุฐู ุชุทูุน ุงู air passages
150
00:13:48,780 --> 00:13:52,740
ูู
ุงู ุชุญุชุงุฌ ูู elasticity ููุฐุง ุงูู
ูุน ู
ู ุงู fibers
151
00:13:52,740 --> 00:13:58,160
ุจุชููู ุจุชู
ุซููุง ุฑูุญ
152
00:13:58,160 --> 00:14:05,460
ูู Sims ูู ุงููุงููุน ู
ู ุงู cells ุงู fixed ุงูู
ูุฌูุฏุฉ
153
00:14:05,460 --> 00:14:11,240
ูู ุงูู
ูุงู ูู ููุณ ู
ูุงููุง ูุฏุงุฆู
ุง ู
ูุฌูุฏุฉ ููู ุนูุฏูุง ุงู
154
00:14:11,240 --> 00:14:19,540
cells ุงูู
ุชูููุฉ ุงููู ุจุชุชุญุฑู ู
ู ู
ูุงู ูู
ูุงู ููู ุนูุฏูุง
155
00:14:19,540 --> 00:14:26,540
ุงู cells ู
ู
ูู ุชููู mature or immature ูู ุนูุฏูุง ุงู
156
00:14:26,540 --> 00:14:28,240
suffix ููุช ุจุชุชููู
ุนู ุงู plus
157
00:14:31,140 --> 00:14:36,100
ุงููุฑู ุจูู ููู
ุฉ Plast ูุจูู
158
00:14:36,100 --> 00:14:42,060
ููู
ุฉ Sites Sites
159
00:14:42,060 --> 00:14:46,100
ู
ุซูุง ูู ูููุง Fibrocytes ุฃู Chondrocytes ุฃู ูุฐุง
160
00:14:46,100 --> 00:14:51,100
ูู
ุนูู mature ูุฐู immature
161
00:14:53,920 --> 00:14:58,560
ุชู
ุงู
ุ ููู
ุชู ุจูุง ุงู suffix ุงููู ูู ุงูููู
ุฉ ุฃู ุงูุฃุญุฑู
162
00:14:58,560 --> 00:15:05,300
ุงููู ูู ููุงูุฉ ุงูููู
ุฉ ุจุชุฏูู ุนูู ุฅูุด ุงูููู
ุฉ ููู
163
00:15:05,300 --> 00:15:08,260
ุนูุฏูุง ู
ู ุฃููุงุน ุงู cells ุฃู ุงู major type ูู ุนูุฏูุง
164
00:15:08,260 --> 00:15:14,610
ุงู fibroblast ูู fixed cell ู
ูุฌูุฏุฉ ุฏุงุฆู
ุงmost
165
00:15:14,610 --> 00:15:19,630
common cells large star shape ุดูููุง ุฒู ุดูู ุงููุฌู
ุฉ
166
00:15:19,630 --> 00:15:25,610
ู produce fibers ูุฃู ูู immature ูู
ุง ุจุชุชุดูู ู
167
00:15:25,610 --> 00:15:30,170
ุจุชุตูุฑ mature ุจุชูุถุฌ ุชุนู
ู ููู ุงู fibers ุงููู ุงุญูุง
168
00:15:30,170 --> 00:15:40,410
ุงููู ู
ุชูุงุฌุฏุฉ ูู ุงูุฌุณู
ุงูู
ุฎุชูู ุงู
ุง ุงู muscles ููู
169
00:15:40,410 --> 00:15:46,410
ุจุฑุถู fixedููู ู
ูุฌูุฏุฉ ูู ุงูุฃุดูุงุก ุงูู
ู
ูุนุฉ ูู ุงูุฏู
170
00:15:46,410 --> 00:15:52,010
ูุจุชุนู
ู ููู release ููููุจุฑูู ุฃู ุงูููุณุชุงู
ูู ูุฑูุญ
171
00:15:52,010 --> 00:15:59,330
ููู
ุงูุฑููุงุฌุฒ wandering cells wandering ูุนูู ู
ุชูููุฉ
172
00:15:59,330 --> 00:16:06,730
ุฑูุงูุฉ ุญุงูู
ุฉ ูููุง ุงููุงูููุณุงูุชู ุงููุงุฌู ุณุงูุชููุฃููุง
173
00:16:06,730 --> 00:16:11,210
ุจุชุนู
ู vacocytosis ุจุชุนู
ู ุนูู ุชุฃูู ูุชูุงุฌู
ุฃู ุจูุชูุฑูุง
174
00:16:11,210 --> 00:16:15,690
ุฃู ุฃู ุฌุณู
ูุฑูุจ ูุฏุฎู ุนูู ุงูุฌุณู
ู
ูู
ุฉ ูุชูุฑ ูู ุญุงูุฉ ุงู
175
00:16:15,690 --> 00:16:20,290
injury ุฃู ุงู infection ุญุชู ุชุฎูุต ุงูุฌุณู
ู
ู ุฃู ููุน ู
ู
176
00:16:20,290 --> 00:16:21,830
ุงู infection ุฃู ุงู inflammation
177
00:16:41,880 --> 00:16:45,220
ุทูุจ ุฅูุด ุฃููุงุน ุงู connective tissueุ ููู ุนูุฏูุง ุงู
178
00:16:45,220 --> 00:16:49,920
proper ู ุงู specialized ุงู proper ุฎูููุง ูุณู
ููุง ุงู
179
00:16:49,920 --> 00:16:54,850
connective tissue ุงูุฃุณุงุณูุฉุงูุฃุณุงุณูุฉ ูู ุงู proper
180
00:16:54,850 --> 00:16:57,330
ุฃู
ุง ุงู specialized ุงููู ูู ุงุชุดููุช ูู ูุฐู ุงู
181
00:16:57,330 --> 00:17:01,790
connective tissue ุนุดุงู ุชููู ุงูู
ููู ุขุฎุฑ ุงููู ูู ู
ุซู
182
00:17:01,790 --> 00:17:06,970
ุงู cartilage ุงู bone ู ุงู blood ุทุจุนุง ุงุญูุง ุจููุงุญุธ
183
00:17:06,970 --> 00:17:11,810
ุจููุงุญุธ ุงู ุงู cartilage ู ุงู bone ู ุงู blood ุงู
184
00:17:11,810 --> 00:17:17,850
solidity ุชุจุนุชูู
ุจุชุฎุชูู ุงู bloodุณุงุฆู ุงูู bone hard
185
00:17:17,850 --> 00:17:22,190
ุตูุจ ุงูู cartilage ุจูู ุงูุจูุงููู ูู ุนูุฏูุง ุฃููุงุน ู
ู
186
00:17:22,190 --> 00:17:24,290
ุงู cartilage ุนูุฏูุง ูุชุนุฑู ุนูููุง ูู ู
ููุง ุงู elastic
187
00:17:24,290 --> 00:17:27,910
ู
ููุง ุงู yelling cartilage ููู ูู ูููุง ุญูููุฉ ู
ูุงุฏ
188
00:17:27,910 --> 00:17:33,470
ุบูุฑ ุตูุจุฉ ูุชุนุฑู ุนูููุง ูู ุจุฏุงูุฉ ู
ุญุงุถุฑุชูุง ุนูู ุงููููุฉ
189
00:17:33,890 --> 00:17:36,290
ุงูู connective tissue proper ูู ู
ููุง ุงูู loose
190
00:17:36,290 --> 00:17:40,110
ู
ููุง ุงู adipose ุงู reticular ุงู dense ู ุงู elastic
191
00:17:40,110 --> 00:17:47,170
ุฃููุงุน ู
ุฎุชููุฉ ู
ู ุงู connective tissue proper ู
ููุง
192
00:17:47,170 --> 00:17:54,290
ุงู loose connective tissue mainly fibroblasts
193
00:17:54,290 --> 00:18:00,490
ูุฃููุง ุงูู
ููู ูุณูุฎูุงูุง ุบูุฑ ูุงุฏุฌุฉ fluid to gel-like
194
00:18:00,490 --> 00:18:05,050
matrix ูุนูู ูู ู
ููุง ุงูุณุงุฆูุฉ ุงูู
ู
ูุนุฉ ุนูู ุงูุขุฎุฑ
195
00:18:05,050 --> 00:18:15,100
ูู
ููุง ุงูุฌู ุงูููุงู
ูุฉ ุฃู ุงู gelatinous ููู ุฌูุณู ุงู
196
00:18:15,100 --> 00:18:18,960
elastic fibers bring the skin to the structure
197
00:18:18,960 --> 00:18:22,520
ุจูููุช ุทุจุนุง ูู ุนูุฏูุง .. ุงุญูุง ูู ุนูุฏูุง ุทุจูุฉ ุงูุฌูุฏ
198
00:18:22,520 --> 00:18:25,860
ุจูู ุงูุฌูุฏ ูู .. ุชุญุช ุงูุฌูุฏ ูู ุงู subcutaneous
199
00:18:25,860 --> 00:18:29,380
tissue ุจุนุฏูุง ูู ุนูุฏูุง ู
ูุฌูุฏ ุงู muscles ู ุจุนุฏูุง ูู
200
00:18:29,380 --> 00:18:33,540
.. ู ูู ู
ุฑุฉ ุฑูุญูุง ุฏูุจ ูุฑูุญูุง ูุนูู ุงู .. ุงู deeper
201
00:18:33,540 --> 00:18:40,060
tissue ุจูุฑูุญ ู ุงูุจู ุทุจุนุง ุจุชุฎุฐู ูู ุชุญุชุงูู
202
00:18:40,060 --> 00:18:44,020
Epithelium ุงููู ูููุง ุทุจูุฉ ุงูุฎุงุฑุฌูุฉ ุจุชุนู
ู ุญููุฉ ูุตู
203
00:18:44,020 --> 00:18:50,280
ุจุชุนู
ู ูููุง ูููุงุช ุจุชูุตู ุนูู ู
ู ุงูุฏู
ุฅูู ุงู tissue
204
00:18:50,280 --> 00:18:55,060
ูุฐู ุงูู
ูุฌูุฏุฉ that visit the nourishment near by
205
00:18:55,060 --> 00:19:00,220
the epithelial cells and between the muscles ูุฌูุฏุฉ
206
00:19:00,220 --> 00:19:05,800
ูู ุนูุฏูุง ุงู membranes ุงูู
ูุฌูุฏุฉ ุจูู ุงูุนุถูุงุช ุฃู
ุง ุงู
207
00:19:05,800 --> 00:19:11,740
adiposeAdipocytes ูููุง ุฎูุงูุง ุฏูููุฉ ุจุชุนู
ู ุงู
208
00:19:11,740 --> 00:19:15,360
cushions ุงูุด ูุธููุฉ ุงู cushions ุฏุงูู
ุง ุงููุง ุชุนู
ู ุงู
209
00:19:15,360 --> 00:19:19,180
shock absorption ุงู cushions ุฏุงุฆู
ุง ูู
ุง ูุตูุฑ ููู
210
00:19:19,180 --> 00:19:22,280
mechanical compression ููู ุจุชุนู
ู shock absorption
211
00:19:22,280 --> 00:19:28,960
ุนูู ุงูู
ูุงู Insulators ุจุชุนู
ู ุงูุนุฒู ูู
ุงู Story fat
212
00:19:29,840 --> 00:19:35,940
ูุฃููุง ุจุชุฎุฒู ููุงุช ู
ูุฌูุฏุฉ under the skin behind the
213
00:19:35,940 --> 00:19:40,140
eyeballs around the kidney and the head ุญุชู ุชุนู
ู
214
00:19:40,140 --> 00:19:46,020
ุนูู ุญู
ุงูุชูุง ุฃู
ุง reticular reticular connective
215
00:19:46,020 --> 00:19:50,940
tissue composed of reticular fibers supporting the
216
00:19:50,940 --> 00:19:56,020
internal organs ูุฃููุง ุจุชุนู
ู ุฒู ุดุจูุฉ ูุฏู ู
ุญูุทุฉ ููู
217
00:19:56,020 --> 00:20:02,240
ู
ูุฌูุฏ ุนูุฏูุง ุจุนุถ ุงูุฃุดูุงู ูุฅููุงwall of the liver and
218
00:20:02,240 --> 00:20:08,540
spleen and lymphatic organs ุฃู
ุง ุงูู dense tissue
219
00:20:08,540 --> 00:20:14,340
ุจุงุนุฏ collagen fibers ุจุชุนู
ู ุนูู ุชู
ุณููุง ุฃูุชุฑุ ูููุง
220
00:20:14,340 --> 00:20:18,440
elastic fibersุ a few fibroblastsุ ุจูู the body
221
00:20:18,440 --> 00:20:23,420
part ููุฏุฑ ุชู
ุณู ุงู body partุ ุชูุฏุนูุ ูุฌู
ููุ ุฏุฑู
ุณุ
222
00:20:23,420 --> 00:20:26,620
ููู poorly in blood supply
223
00:20:31,670 --> 00:20:36,010
ุงูู elastic connective tissue ู
ูุฌูุฏุฉ ูู
ูุชุดุฑุฉ
224
00:20:36,010 --> 00:20:39,930
abound in the elastic fibers ูููุง ุจุนุถ ุงููcollagen
225
00:20:39,930 --> 00:20:44,230
ุนุดุงู ูุนู
ู ุดููุฉ support ูููุง fibroblasts attached
226
00:20:44,230 --> 00:20:49,890
between the bones ุชูุตู ุฃู ุจุชุนู
ู ุนู
ููุฉ ุงูุชุตุงู ุฃู
227
00:20:49,890 --> 00:20:55,370
ูุตู ููุจูู walls of the arteries and airway and
228
00:20:55,370 --> 00:20:59,270
heart ุงูุจูู ููู ุฃุตุจุญุช osseous
229
00:21:02,590 --> 00:21:06,390
ุงูุนุฏู ุงูุชุฑ ุงุดู ุตูุจ ูู ุงู muscle skeletal system
230
00:21:06,390 --> 00:21:11,470
ูุจุชุนุทููู solid matrix ุจุชุนุทููู support protection
231
00:21:11,470 --> 00:21:19,070
ุญู
ุงูุฉ forms blood cells ููุดุ ูุฃูู ุงุญูุง ูู ุงู bone
232
00:21:19,070 --> 00:21:23,550
ุงู bone ู
ุง ูู ุงููู ุจูุนู
ู synthesis ู blood cells
233
00:21:23,550 --> 00:21:28,710
attachment for muscle and skeleton ู
ุนุฑููู ุงู ูู
234
00:21:28,710 --> 00:21:33,150
ุงูุนุถูุงุชู
ูุฌูุฏุฉ ููู ูููุง origin ููููุง insertion ุงู
235
00:21:33,150 --> 00:21:35,010
insertion ู ุงู origin ูุฏูู ุงููู ูุงุฒู
ูููููุง
236
00:21:35,010 --> 00:21:37,750
ู
ุดุจูููู ุจุงูุนุถู ู
ูููู ููู ุงูุนุถูู ุจุชููู ุณุงุจุญุฉ ูุฏู
237
00:21:37,750 --> 00:21:42,410
ุนุดุงู ุชูุฏุฑ ุชุนู
ู pull ุนูู ู
ุซูุง ุฎุฏูุง ูููู ุฒู ุงู
238
00:21:42,410 --> 00:21:49,370
biceps ุงู biceps ุจุชุนู
ู pull ุนูู ุงููุฑูุฑ ุนุดุงู ุชุนู
ู
239
00:21:49,370 --> 00:21:57,730
ุนู
ููุฉ reflection of the upper limb ุงู ุงูุจูู
240
00:22:02,780 --> 00:22:07,360
ูุฑูุญ ููููุช ุชุงูู ู
ู ู
ูููุงุช ุงู connective tissue
241
00:22:07,360 --> 00:22:13,180
ุดูููุง ุงู boom ูู ุนูุฏูุง ุงู cartilage ุงู cartilage
242
00:22:13,180 --> 00:22:20,030
ูุถูุง ูู ุงู boomflexible ุฃูุชุฑ ูุฅู ูู ุจููุงูู
two
243
00:22:20,030 --> 00:22:24,910
kind of compressions tensile compression and two
244
00:22:24,910 --> 00:22:30,730
kind of forces tensile and compression forces ูุนูู
245
00:22:30,730 --> 00:22:34,410
ุทุจูุนุฉ ุงูู
ูุตู ูู
ุง ุจูููู ุงูุนุถู
ุชูู ุจูุตูุฑ ููู
246
00:22:34,410 --> 00:22:38,550
compression and tensile force ุจูุฐุง ุงูุดูู ูุฅู ุงุญูุง
247
00:22:38,550 --> 00:22:44,740
ุจุฏุฃุช ุชุชู
ุงูุนุถู
ุฉ ูุชุฑูุญ ุชุถุบุท ุฏุงุฆู
ุง ุงู cartilageุงููู
248
00:22:44,740 --> 00:22:47,660
ู
ูุฌูุฏ under compression ู
ุน ุงู graphite ูุนูู ุงุญูุง
249
00:22:47,660 --> 00:22:50,980
ูุงูููู ูู ุงู cartilage ุงููู ู
ูุฌูุฏ between two
250
00:22:50,980 --> 00:22:54,700
adjacent points ู ุงุญูุง ูุงูููู ู
ุซูุง ุนูู ุงู lower
251
00:22:54,700 --> 00:22:58,920
limb ุนูู ุงู knee ุนูู ุงู ankle ุนูู ุงู head ููู all
252
00:22:58,920 --> 00:23:03,240
the time compression forces ุนูู ุงูู
ูุงุตู ูุฐู ุงู ุนูู
253
00:23:03,240 --> 00:23:07,180
ุงู cartilage ุงููู ู
ูุฌูุฏ ูู ุงูุชุฑุถูุงูู
ุงู ุฃุซูุงุก
254
00:23:07,180 --> 00:23:12,200
ุงูุญุฑูุฉ ุจุชุตูุฑ ูู ุงุญุชูุงู ููู
ุงู ุดุฏ ุนูููุง ุฏู ููู all
255
00:23:12,200 --> 00:23:16,720
the time under mechanical forces ูุงุฒู
ูููู ุงูุฎูุงุต
256
00:23:16,720 --> 00:23:21,700
ุชุจุนุชู ุงุจุชุฏุง ูุจูู weaker than bone more flexible
257
00:23:21,700 --> 00:23:23,100
than bone
258
00:23:26,780 --> 00:23:30,420
ุจุฑุถู ู
ูุชุดุฑุฉ ุนูู ุดูู mattress ุงู cell type
259
00:23:30,420 --> 00:23:34,300
chondroblast and chondrocyte ุงู chondroblast ูู
260
00:23:34,300 --> 00:23:40,000
ูู
ุง ุจุชููู ูุงุจูุฉ ููุจูุงุก ูุชุนู
ู ุนู
ููุฉ ุงูุจูุงุก ุฃู
ุง ุงู
261
00:23:40,000 --> 00:23:44,880
chondrocyte ูู mature ููู ุฅูุด ุงูููุงูู
ู
ูุฒ ูู
262
00:23:44,880 --> 00:23:49,340
Cartilage ุงู ูู Avascular ู
ุงููุด ุงู ููุน ู
ู ุงู
263
00:23:49,340 --> 00:23:53,200
Vascularization ุจุฏุฎู ุนูู ุงู Cartilage ูุฐุง ุนุดุงู
264
00:23:53,200 --> 00:23:57,200
ููุฐุง ุนู
ููุฉ ุงู regeneration ู
ุด ู
ูุฌูุฏุฉ ูู ุงู
265
00:23:57,200 --> 00:23:59,760
Cartilage ูุนูู ูู
ุง ุจูุตูุฑ ูู ุนูุง ุฅุตุงุจุฉ ุนูู ุงู
266
00:23:59,760 --> 00:24:03,400
Cartilage ุงููู ู
ูุฌูุฏ ูู ุงูุชุณูู
ุณ ู ุฃูุตุงุฑ ูู ุนูุง
267
00:24:03,550 --> 00:24:07,490
ุฅุตุงุจุฉ ู
ุซูุง ูู ุงูููุจ ูู ุงู hip ูู ุงู elbow ู ุฃุตูุจ
268
00:24:07,490 --> 00:24:10,530
ุงู cartilage ู
ุงููุด ุนู
ููุฉ regeneration ููุดุ ูุฃูู
269
00:24:10,530 --> 00:24:13,870
ู
ุงููุด ููู vascularization ููุณุฃู ููุณูุง ุทุจ ูู ููู
270
00:24:13,870 --> 00:24:17,510
ุจุชุบุฐูุ ูุจุชุบุฐู ุนู ุทุฑูู ุงูุณูุงุฆู ุงููู ุจุชููู ู
ูุฌูุฏุฉ
271
00:24:17,510 --> 00:24:21,130
ุฏุงุฎู ุงู cartilage ูุฐู ุนู
ููุฉ ุงู compression ุจุชุทูุน
272
00:24:21,130 --> 00:24:25,110
ุงูุณูุงุฆู ูู ุงู synovial fluid ู ุจุชุงุฎุฏ ุงูุชุบุฐูุฉ ู
273
00:24:25,110 --> 00:24:28,830
ุจุชุฑุฌุน ู
ุฑุฉ ุชุงููุฉ ุนุดุงู ููู ุชุบุฐูุฉ ุงู cartilage ุจุชุนุชู
ุฏ
274
00:24:28,830 --> 00:24:33,270
ุนูู ุงูุญุฑูุฉูุฏุฑุด ุจูุชุญุฑู ุงูุฌุณู
ุ ูุฏุฑุด ุจูููู ููู ุชูุถูุฉ
275
00:24:33,270 --> 00:24:37,110
ููุฐุง ุงู .. ุงู cartilage ููุด ุงูุดุฎุต ูู
ุง ูููู
276
00:24:37,110 --> 00:24:41,030
bedridden ู
ุงุจูุชุญุฑูุด ูุชูุฑ ุจูุฏุนู ุนูุฏู ู ุจูููู ุนูุฏู
277
00:24:41,030 --> 00:24:46,050
risk ูู osteochondral process ุฃู ุงุญูุง ุจูุณู
ูู
278
00:24:46,050 --> 00:24:50,700
ostearthritisููุดุ ูุฃูู ุจูููู ููู ุงูุนุถู
ุนูุฏู ุฃู ุงูู
279
00:24:50,700 --> 00:24:54,240
cartilage ู
ุง ุจุชูุฌูุด ุงูุชุฎุถูู ุงููุงุฒู
ุฉ ูุฃูู ู
ุงููุด
280
00:24:54,240 --> 00:24:56,940
ุนู
ููุฉ compression and release ุงููู ุจุชุทูุน ุงูุณูุงุฆู
281
00:24:56,940 --> 00:25:04,280
ุชุงุฎุฏ ุงูุชุฎุถูู ูุชุฑุฌุน ุนูู ุงูู
ูุงู ุทุจุนุง ุฅูุด ูุธููุฉ ุงู
282
00:25:04,280 --> 00:25:08,320
cartilageุ subparts of tissue provided gliding
283
00:25:08,320 --> 00:25:12,580
surface of the articulation ูุฃู ูู ุงูุณุทุญ ุงูู
ุณุคูู
284
00:25:12,580 --> 00:25:15,840
ุงุญูุง ุชุฎูู ุงูุนุถู
ูููุง
285
00:25:17,830 --> 00:25:21,670
ุงูุนุฏู
ุทุจุนุง ููู ุฅุญุณุงุณุ ูู ูุงู ุงูุนุถู
ุจูุญู ูู ุจุนุถูุ
286
00:25:21,670 --> 00:25:24,850
ุฅูุด ุจูุตูุฑ ุฏุงุฆู
ุง ุจูููู ูู ุนูุฏูุง ุฃูู
ูููุด ุนูุฏูุง ูุฏุฑุฉ
287
00:25:24,850 --> 00:25:33,330
ุนูู ุงูุญุฑูุฉุ ุงูุฎูู ูู ุนุถู
ุฉ ุนูููุง ุณุทุญ ู
ู ุณุทุญ ุฃู
ูุณู
288
00:25:33,330 --> 00:25:38,590
ูุงุนู
ูุฏู ู
ู ุงู cartilage ูุฐุง ุจูู
ูุน ุงูุงุญุชูุงู ุนุณุงุณ
289
00:25:38,590 --> 00:25:42,230
ุงูู ูู
ุง ูุตูุฑ ูู gliding ูู bones on each others
290
00:25:42,230 --> 00:25:46,990
ุชููู ุงูุญุฑูุฉ ุณููุฉ provide a model for formation of
291
00:25:46,990 --> 00:25:51,470
most of the bone ู
ุนูุงู ุงู ุงู immature bone ุจุชููู
292
00:25:51,470 --> 00:25:56,510
ุฃุตููุง cartilage ูุนูู ุนุถุงู
ุงูุฃุทูุงู ูุจู ู
ุง ุงู
293
00:25:56,510 --> 00:26:01,710
maturationุจุชููู ูููุง ุฃู ู
ุนุธู
ูุง ุบุถุจูุฉ ูู ุงุจุชูุงูู ุนู
294
00:26:01,710 --> 00:26:06,890
ุทุฑูู ุงูู Epiphyseal Plate ุงููู ูู ุชููู ุนูุตุฑ ุงููู
ู
295
00:26:06,890 --> 00:26:12,110
ูู ุงูุจูู ุทุจุนุง ุฅูุด ุงู types of cartilageุ ูููุง ููู
296
00:26:12,110 --> 00:26:16,900
ุฃูููู ุงูุชุฑ ู
ู ููุน three types of cartilage ูู
297
00:26:16,900 --> 00:26:20,140
ุงูููุงููู ู ุงู fiber cartilage ู ุงู elastic
298
00:26:20,140 --> 00:26:23,800
cartilage ูุจุฏุฃ ู
ู ุงูุฃุฎุฑ ุงู elastic ูู ุทูุนูุง ุนูู
299
00:26:23,800 --> 00:26:28,040
ุงูุฃุฐู ุณูุงู ุงูุฃุฐู ุจูู
ุณู ููู ุนุจุงุฑุฉ ุนู cartilage ุจุณ
300
00:26:28,040 --> 00:26:36,100
ุทุฑุฏ ุงู elastic ุงู fibers ููู ูุชูุฑุฉ ุจุชุดูู ุทุจุนุง ุงู
301
00:26:36,100 --> 00:26:42,310
earุงูู Respiratory Tracts Tubes ุฒู ุงูุชุฑุงููุง ู
ุซูุง
302
00:26:42,310 --> 00:26:45,850
ุฅุญูุง ูู ุญุงุณูุง ุฃูู ุจูุญุณูุง ุนุจุฑ ุนูู ุฏุฑูุจ ูุต ู
ุซูุง
303
00:26:45,850 --> 00:26:50,180
ุจุญุทูุง ุฅูุฏูุง ููุง ุจููุงูู ูุฐู ุงูุนุถู
ุฉ ุทุฑููุฉููุฐู ุงูู
304
00:26:50,180 --> 00:26:53,980
elastic ุฃู
ุง ุงูู fibrocartilage ูููุง collagen
305
00:26:53,980 --> 00:26:58,740
fibers ุฒู ุงูู intervertebral discs ุฃู ุงูู pupic
306
00:26:58,740 --> 00:27:02,660
symphysis ุงูู intervertebral discs ููุงุฎุฏู ูู ุงู ..
307
00:27:02,660 --> 00:27:05,580
ูู ุงู Anatomy ุชุจุน ุงู skeletal system ูู ุนูุฏูุง ุงู
308
00:27:05,580 --> 00:27:11,160
vertebra ูู ุนูุฏูุง between each adjacent vertebra
309
00:27:11,160 --> 00:27:14,980
ูู
310
00:27:14,980 --> 00:27:20,360
ุนูุฏูุงุงูู Vertebral Colon ุนุจุงุฑุฉ ุนู Vertebrae ุจูู ุงู
311
00:27:20,360 --> 00:27:25,420
Vertebrae ูุฐู ูู ุงูู Intervertebral disk ูุธููุชู
312
00:27:25,420 --> 00:27:29,140
ูุนู
ู shock absorption ููุณุงุนุฏ ุนูู ุงู ุงูุนู
ูุฏ ุงูููุฑู
313
00:27:29,140 --> 00:27:37,750
ูุฐุง ูุตูุฑ ููู ุญุฑูุฉ ูุจูู ูุฐู ุจุชููู ุฒู ูุฃููุงุนุงุฒู ู
ุง
314
00:27:37,750 --> 00:27:41,230
ุจููุชู ุงู vertebrae ุจูุณุงุนุฏ ุนูู ุงูุญุฑูุฉ ุจูููู ุทุฑูุจ
315
00:27:41,230 --> 00:27:44,670
ุจูุนู
ู shock absorption ุจุญูุซ ุงูู ุงุญูุง ุฒู ู
ุง ููุชูููุง
316
00:27:44,670 --> 00:27:47,650
ุงุญูุง ูุงูููู ููู ุฏุงูู
ุง ูู ุถุบุท ู
ู ุงู head ุนูู ุงู
317
00:27:47,650 --> 00:27:50,130
shoulder ุนูู ุงู vertebral column ุจูุชูู
318
00:27:50,130 --> 00:27:55,580
transmission ุนูู ุงู two hipsูุฐู ุงูุชุฑููุจุฉ ุจุชุฎูู
319
00:27:55,580 --> 00:27:59,020
ุงูุงู
ุชุตุงุต ุงูุตุฏู
ุงุช ู ุงู weight bearing ูุฐุง ุงููู
320
00:27:59,020 --> 00:28:02,340
ุฏุงูู
ุง ุนู ุทุฑูู ุงูุฌุงุฐุจูุฉ ุจุชุฌุฐุจูุง ูุชุญุช ุจูุฎูู ุงููุฑุงุบ
321
00:28:02,340 --> 00:28:05,280
ูุฐุง ุทุจุนุง ู
ุน ุงููุจุฑ ู ู
ุน ุงูุณู ุจูููุฏ ุงู elasticity
322
00:28:05,280 --> 00:28:10,340
ุชุจุนุชู ู ุจูุตูุฑ ุงูุฃูู
ู ุงูุฃูุฌุงุน ุงููู ุจุชุตูุฑ ุนูุฏ ุงููุงุณ
323
00:28:10,890 --> 00:28:15,030
ุทูุจุ ูู
ุงู ู
ูุฌูุฏ ูู ุงูู biopic synthesis ุงุญูุง ุจูุนุฑู
324
00:28:15,030 --> 00:28:19,090
ุงู ุงูู pelvic bones ุนุจุงุฑุฉ ุนู ุชูุงุชุฉ ุนุถู
ุงุช ู
ููุง ูู
325
00:28:19,090 --> 00:28:23,990
pubis ุงูู pubis bone ุจูููู ูู ู
ุงุจูููู
cartilage
326
00:28:23,990 --> 00:28:30,610
ูุนูู ูุฐู ุงููู ุจุชุณู
ุญ ุจุงูุชู
ุฏุฏ ูุงู .. ูุนูู ูู ุทุจุนุง ุงู
327
00:28:30,610 --> 00:28:35,330
.. ุงู fibro .. ุงู fibrosis ูุฐู ู
ุชุณู
ุญุด ูุชูุฑ ุจุงูุญุฑูุฉ
328
00:28:35,330 --> 00:28:40,270
ููู ู
ูุฌูุฏุฉ ุจุชูุตู ู
ุงุจูููุง ุนู ุทุฑูู ุงู fibrocartilage
329
00:28:40,760 --> 00:28:43,820
ุฃู
ุง ุงูู Healing cartilage ุงูู Healing cartilage ูู
330
00:28:43,820 --> 00:28:48,280
ุนุจุงุฑุฉ ุนู ุงูู cartilage ุงููู ู
ูุฌูุฏ ุจูู two adjacent
331
00:28:48,280 --> 00:28:53,200
bone movable bone ูุนูู ุงูุนุถู
ุงุช ุงููู ุจุชุชุญุฑู ูุชูุฑ ู
332
00:28:53,200 --> 00:28:57,460
ุญุฑูุชูุง wide ุงู joints ูููุง ุจูููู Healing cartilage
333
00:28:57,460 --> 00:29:06,290
ูู ู
ุชุดุฑ ุฃูุชุฑ ูู ุงูุฌุณู
has aุจูุฑูู ููุฏุฑูุง ู
ู
ุจุฑุงู
334
00:29:06,290 --> 00:29:09,730
ู
ูุฌูุฏ ูู ุนูุฏูุง ุณูููููุง ุงูููููุฏ ูุณู
ู ุงูุณูููููุง
335
00:29:09,730 --> 00:29:14,130
ุงูู
ู
ุจุฑุงู ุงููู ุจูุจูู ู
ูุฌูุฏ ูู ุณูููููุง ุงูููููุฏ ูู
336
00:29:14,130 --> 00:29:15,170
ุงููู ุจูุบุฒู
337
00:29:18,660 --> 00:29:23,140
ุจูุบุฐู ุงู .. ุงู cartilage ุนู ุทุฑูู ุงูุญุฑูุฉ ุจุชุทูุน
338
00:29:23,140 --> 00:29:26,740
ุงูุณูุงุฆู ู
ู ุงู cartilage ูุฐู ุจุชุงุฎุฏ ุงู fluid ุจุชุงุฎุฏ
339
00:29:26,740 --> 00:29:29,900
ุงู nutrition ู ุจุชููุช ุนูู ุงู cartilage ุจุชุนุทู
340
00:29:29,900 --> 00:29:37,240
ุงูุชุบุฐูุฉ ู ู
ุนุธู
ุงู .. ุงู bones ูู ุจุฏุงูุฉ ุฎูููุง ูููู
341
00:29:37,240 --> 00:29:41,740
ูู ุงูุทูููุฉ ูุญุฏ ุงูุณู ุงููุถูุฌ ุจุชููู ูููู cartilage
342
00:29:42,230 --> 00:29:50,920
ููุฐู ุจุนุถ ุงูุฃุดุบุงู ู
ู ุงู ..ุงูู cartilage ูุดูู ุนูุฏ ุงู
343
00:29:50,920 --> 00:29:54,480
nose ูู ุนูุฏูุง ุงู elastic ุงู ear ุงู elastic
344
00:29:54,480 --> 00:30:00,400
ุงูุชุฑุงููุง ุงู elastic ุฒู ู
ุง ุงุญูุง ุดุงูููู ูู ุนูุฏูุง
345
00:30:00,400 --> 00:30:05,660
ุงูุฃุฒุฑู ูุฐุง ููู cartilage ูุฐุง ุงููู ูู ุงูู
ูุงุตู ูู
346
00:30:05,660 --> 00:30:10,180
ููู cartilage ููุง ุงู pubis synthesis ู
ูุฌูุฏ ุนูุฏูุง
347
00:30:10,180 --> 00:30:16,530
ุงู pubic fibrocartilage ููุง between ุฏูvertibrae ุฒู
348
00:30:16,530 --> 00:30:20,550
ู
ุง ุงุญูุง ุดุงูููู ููู ุนูุฏูุง ุงู fibrocartilage ุฏู
349
00:30:20,550 --> 00:30:25,810
ู
ู
ุซูุฉ ุจุงู intervertebral disc ุงู
ุง ุจุงููุฉ ุงูู
ูุงุตู
350
00:30:25,810 --> 00:30:33,390
ููู ูููุง ูู lean cartilage ุฑูุญ
351
00:30:33,390 --> 00:30:39,970
ู muscle tissue general
352
00:30:41,840 --> 00:30:46,220
characteristics of muscle tissue ุงูู ูููุง ุงู ุงู
353
00:30:46,220 --> 00:30:51,540
muscle cell ู ุงู muscle fibers ู
ู ู
ูุฒุชูุง ุงููุง
354
00:30:51,540 --> 00:30:55,900
contractile ุงูุด ูุนูู contractile ุงู ูู ูุงุจูุฉ
355
00:30:55,900 --> 00:30:59,880
ูุนู
ููุฉ ุงู contraction ุงููู ุจุชูุฑุจ to adjacent bone
356
00:30:59,880 --> 00:31:04,060
ุงู ูู
ุงู ุญุชู ูู
ุง ุจุชุจุนุฏ ุจุชู
ูุน ุณููุทูุง ูุนูุง ุงูุชุฑ ู
ู
357
00:31:04,060 --> 00:31:08,220
ููุน ู
ู ุงู contraction ู
ู
ูู ุชุนู
ูู ุงู muscle
358
00:31:10,190 --> 00:31:13,410
ูุนูู ุงู three type ูู ุงู skeletal ูู ุงู smooth ูู
359
00:31:13,410 --> 00:31:17,150
ุงู cardiac ุงูุด ุงููุฑู ู
ุง ุจูููู
ุงู skeletal ูู
360
00:31:17,150 --> 00:31:22,750
ุงูุนุถูุงุช ุงููู ู
ูุฌูุฏุฉ ุนูู ุงู bone ููุนูุง striated and
361
00:31:22,750 --> 00:31:26,670
voluntary movement ูุนูู ุงูุง ุจูุฑุฑ ุงุชูู ุงูุฏู ุจุงุชูููุง
362
00:31:26,670 --> 00:31:30,210
ุงุญุท ุงูุฏู ุน ุฑุงุณู ุจุญุท ุงูุฏู ุน ุฑุงุณู ูุฐุง ูู ุจุงุณุชุฎุฏุงู
ุงู
363
00:31:30,210 --> 00:31:34,630
skeletal muscles ุนูู ุฃุณุงุณ ุงูู ุงูุง ุงููู
ุจุงูุญุฑูุฉ
364
00:31:34,630 --> 00:31:39,460
ุงูambulation ุงู locomotionูู daily activity ุชุจุนุช
365
00:31:39,460 --> 00:31:43,500
ุงูุฌุณู
ูู ุจุชููู ูููุง ุงูุนุถูุงุช ุงู smooth muscle ุงู
366
00:31:43,500 --> 00:31:47,960
skeletal muscle ุฃู
ุง ุงู smooth ูู ู
ุจุงุทูุฉ ู ุงู walls
367
00:31:47,960 --> 00:31:52,790
of the organ ูู
ุงู ู
ูุฌูุฏุฉ ููุงู role of the blood
368
00:31:52,790 --> 00:31:57,890
vessel ูู ุทุจุนุง involuntary ุงูุง ู
ุง ุจูุฑุฑ ุงูู ุงูุง ูุง
369
00:31:57,890 --> 00:32:03,850
ุงุชุญูู
ุจุนู
ููุฉ ูุฏู
ููุง ุจุนู
ููุฉ ุงุฎุฑุงุฌ ููุง ูู ูุฐู ุงู
370
00:32:03,850 --> 00:32:08,570
smooth muscle involuntary and non-istriated ุงู
371
00:32:08,570 --> 00:32:14,930
cardiac muscle ูู ุนุจุงุฑุฉ ุนู ุงูุนุถูุงุก ุงูู
ูููุฉ ููููุจ
372
00:32:14,930 --> 00:32:21,330
ูู ุงูููุจ ุนุจุงุฑุฉ ุนู ุนุถูุฉinvoluntary ุงุญูุง ู
ุงุจููุฑุฑุด
373
00:32:21,330 --> 00:32:24,510
ูุฏู ููุจูุง ูููุช ุงู ู
ุงูุฏูุด ู ูุตูุฑ ูู ุนูุฏูุง ุฏูุฉ ููุจ
374
00:32:24,510 --> 00:32:28,250
ุณุฑูุนุฉ ุงู ุฏูุฉ ููุจ ุจุทููุฉ ูุฐุง ุงุดู ุงุญูุง ู
ุงุจูุชุญูู
ููู
375
00:32:28,250 --> 00:32:29,150
ููู serrated
376
00:32:37,850 --> 00:32:42,890
intercalated ุดูู ู
ู ุฃุดูุงู ูู ููุน ู
ู ุฃููุงุน ุงู
377
00:32:42,890 --> 00:32:47,450
muscle ุงู skeletal muscle ุงููู ูููุง ุงู protein ุฃู
378
00:32:47,450 --> 00:32:52,730
ูููุง ูุฑู
ุงูุฃูุชูู ูุงูู
ูุณูู ุนุดุงู ุชุชู
ุชุน ุจุฎุงุตุฉ ุงู
379
00:32:52,730 --> 00:32:57,610
contractility ูู smooth muscle ุงููู ู
ูุฌูุฏุฉ ูู
380
00:32:57,610 --> 00:33:01,630
ุงูุฃู
ุนุงุก ูู
ุจุทูุฉ ููุฌูุงุฒ ุงูุบุถุจู ุฃู
ุง ุงู cardiac muscle
381
00:33:01,630 --> 00:33:07,200
ูู ุงูููุจุฑูุญ ูุขุฎุฑ ุฅุดู ู
ู ุงู tissue ุงููู ู
ูุฌูุฏุฉ
382
00:33:07,200 --> 00:33:10,880
ู
ุนูุงู ููู nervous tissue ุงููู ู
ุณุฆููุฉ ุนู ุงู
383
00:33:10,880 --> 00:33:15,540
conduction ุนู ุนู
ููุฉ ุชูุตูู ู
ุนููู
ุงุช ู
ู ุงู brain ูู
384
00:33:15,540 --> 00:33:19,140
spinal cord ูู other part of the body ูุจูู
385
00:33:19,140 --> 00:33:22,860
sometimes termed as neural tissuefound in the
386
00:33:22,860 --> 00:33:26,240
brain and spinal cord and peripheral nerves ููุนุฑู
387
00:33:26,240 --> 00:33:31,360
ู
ูููุงุช ุงูุฌูุงุฒ ุงูุนุตุจู ุงู ุดุงุก ุงููู ูู ุญูููุง ุจุชุชููู
388
00:33:31,360 --> 00:33:33,960
ู
ู ุงู neurons ุงู neurons ูู ุนุจุงุฑุฉ ุนู ุฃููุ ุงู
389
00:33:33,960 --> 00:33:37,940
neurons ูู ุงูุฎููุฉ ุงูุนุตุจูุฉ ุงููู ูู ุจุชุนู
ู ุนู
ููุฉ
390
00:33:37,940 --> 00:33:42,400
conduction ูุชูุตูู ุงู electricity ุฒู ู
ูุงุตูุงุช
391
00:33:42,400 --> 00:33:46,800
ุงูููุฑุจุง ุงููู ู
ูุฌูุฏุฉ consists of neurons or nerve
392
00:33:46,800 --> 00:33:51,620
cellsู ุงูู glial cells ุงููู ูู ุจุชุนู
ู ุงู supportive
393
00:33:51,620 --> 00:33:56,180
tissue ูุฐู ู
ูุฌูุฏุฉ ุงู supportive cell ู protect ู ู
394
00:33:56,180 --> 00:34:02,660
provide a framework of the neuron ุงู neuron ุทุจุนุง
395
00:34:02,660 --> 00:34:06,400
ุงุญูุง ููู ุจูุนุฑู ุงู ุงูุฌู ุจุงุฑุฏ ุงู ุฌู ุณุฎู ู
ุถุทูู ู
ู
396
00:34:06,400 --> 00:34:10,280
external stimulus ุงูู ูุงููู ุงูุง ุฏุฎููุง ููุง ูู ุชูููู
397
00:34:10,280 --> 00:34:14,190
ูุงูุฌู ููุง ุจุงุฑุฏ ุจุชุฑูุญ ุนูู ุทููุจูุนู
ู ุชูุตูู ููู
398
00:34:14,190 --> 00:34:17,270
impulse ูุจูุนู
ู interpretation ูุฃูู ุจููุตููุง ููุฏู
ุงุบุ
399
00:34:17,270 --> 00:34:20,570
ููุฏู
ุงุบ ุงููู ุจูุชุฑุฌู
ูุง ูุจูุฑุฌุน ุจุนุฏูุง ุงูุดุนูุฑ ุงููู ุงุญูุง
400
00:34:20,570 --> 00:34:24,950
ุจูุญุณ ููู ุฃู ุจุฏูุง ูุฏูุน ุญุงููุง ุฃู ุจุฏูุง ููุจุณ ุฃู ุบูุฑุ
401
00:34:24,950 --> 00:34:29,900
ูุจูู detect stimuliprocess information quickly ุนูู
402
00:34:29,900 --> 00:34:33,220
ุทูู ุจุชูุตููุง rapidly transmit electrical impulse
403
00:34:33,220 --> 00:34:39,240
from one region of the body to another ุงูุจุฑู
ููุณ ุงู
404
00:34:39,240 --> 00:34:43,920
body function in control information processing
405
00:34:43,920 --> 00:34:48,950
storage and retrieval internal communicationุทุจุนุง
406
00:34:48,950 --> 00:34:54,410
ุงุญูุง ุจุงุณุชุฎุฏุงู
ุฃู ุจูุฌูุฏ ุงูุฌูุงุฒ ุงูุนุตุจูุ ุจูุฌูุฏ ุงู
407
00:34:54,410 --> 00:35:00,090
neurons ูุฐูุ ุจููุฏุฑ ูููู ุฃุดุฎุงุต ุฃุตุญุงุกุ ุจููุฏุฑ ููุณุฑ
408
00:35:00,090 --> 00:35:04,150
ุงูุดูุงูุฏ ุงููู ูุฏุงู
ูุงุ ุจููุฏุฑ ูููู
ุฎูููุง ูููู
409
00:35:04,150 --> 00:35:08,750
ุจุงูุญู
ุงูุฉ ูุฃููุณูุงุ ุจููุฏุฑ ูุนู
ู ุงู .. ุงู function
410
00:35:08,750 --> 00:35:13,770
ุงููู ุงุญูุง ุจุฏูุง ูุฑููุง in a well coordinated manner
411
00:35:14,940 --> 00:35:19,340
ุงูููุฑูู ูู ุนุจุงุฑุฉ ุนู ุฅูุดุ Process Extended from
412
00:35:19,340 --> 00:35:23,780
Nerve Cell Bodyุ ููู ุนูุฏูุง Dendrites ููู ุนูุฏูุง ุงูู
413
00:35:23,780 --> 00:35:26,140
Axon ุฒู ู
ุง ุฅุญูุง ุดุงูููู ููู ุนูุฏูุง ุงูู Cell Body
414
00:35:26,140 --> 00:35:29,220
ุงููู ูู ุงูููุงุฒู
ุ ุฅุญูุง ุดุงูููู ููุง ุงูู Axon ุงููู ูู
415
00:35:29,220 --> 00:35:32,960
ุงูุดุฑูุท ุงูุทููู ุงููู ู
ูุฌูุฏ ู ุงูู Dendrites ูู ุนุจุงุฑุฉ
416
00:35:32,960 --> 00:35:37,980
ุนู ุดุจูุฉ ู
ู ุงูุฎูุงูุง
417
00:35:37,980 --> 00:35:38,940
ุฃู ุฎูููู ุฃููู
418
00:35:41,470 --> 00:35:46,130
ุงูููุช ุชุณุชูุจู ุงู impulse ู ุงุญูุง ููุชููู
ุนููุง
419
00:35:46,130 --> 00:35:50,250
ุจุงูุชูุตูู ูู
ุง ูุชุญุฏุซ ุนู ุงู nervous system ู ูุนุทููู
420
00:35:50,250 --> 00:35:53,910
ุงูุนุงููุฉ ู ู
ุงุดูู ููู ุงูู
ุญุงุถุฑุฉ ุงููุงุฏู
ุฉ
|