File size: 44,316 Bytes
2b0c9a7 |
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 1682 1683 1684 1685 1686 1687 1688 1689 |
1
00:00:01,180 --> 00:00:03,560
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุงูุตูุงุฉ ูุงูุณูุงู
ุนูู ุณูุฏูุง
2
00:00:03,560 --> 00:00:07,800
ู
ุญู
ุฏ ุณูุฏ ุงูู
ุฑุณููู ูุนูู ุฃูู ูุตุญุจู ุฃุฌู
ุนูู ุงุณุชูู
ููุง
3
00:00:07,800 --> 00:00:11,880
ู
ุญุงุถุฑุชูุง ูู ู
ุณุญู ุงู bio mechanics two ุงูููู
ูุตููุง
4
00:00:11,880 --> 00:00:18,040
ุชูุฑูุจุง ูุขุฎุฑ ู
ุญุทุฉ ูู ุงู bio mechanics of joints
5
00:00:18,040 --> 00:00:21,180
ููุชุนุฑู ุนูู ุฃููุงุน ุงู joints ููุชุนุฑู ุนูู stability
6
00:00:21,180 --> 00:00:25,900
ุชุจุน ุงู joints ุนูู ุงู flexibilityุจุฏุงูุฉ ูุงุฒู
ูุชุนุฑู
7
00:00:25,900 --> 00:00:32,760
ุนูู ุฃููุงุน ุงู joints ุงููู ู
ูุฌูุฏุฉ ูู ุดุณู
ุงูุฅูุณุงู
8
00:00:32,760 --> 00:00:36,540
ุทุจุนุง ูู ุงูุจุฏุงูุฉ ุจูุงุนุฑู ุฅูุด ูู ุงู joint ุงู joint ูู
9
00:00:36,540 --> 00:00:41,080
ุนุจุงุฑุฉ ุนู ุงู site of motion between ุงู articulating
10
00:00:41,080 --> 00:00:44,440
bone ูุนูู ุฃูู ุจูุงูููู
ุฃู ุงู joint ูู ุชุนุฑููู ูู
11
00:00:44,440 --> 00:00:49,440
ุนุจุงุฑุฉ ุนู ุงูู
ูุตู ุงููู ุจูุฑุจุท two bones ุฃู two bone
12
00:00:49,440 --> 00:00:55,190
endsุทุจุนุง ูุฏูู ุงู bone ุจูููููุด ุจุณ ูุนูู ู
ุดุจูููู ู
ุน
13
00:00:55,190 --> 00:01:00,350
ุจุนุถ ูุฏู ุจุฏูู ุฃู ูุณุงุฆู ุญู
ุงูุฉ ูุณุงุฆู ุงูุญู
ุงูุฉ ุจุชููู
14
00:01:00,350 --> 00:01:03,710
ู
ุฑุจุทุงูู
ุนู ุทุฑูู ุงู connective tissue structure
15
00:01:03,710 --> 00:01:07,810
ุงููู ูุธูุชูุง ุฅููุง ุชุญุงูุธ ุนูู ุงู integrity of the
16
00:01:07,810 --> 00:01:11,780
junction ููู
ุงู ุจุฏูุง ุชุญุงูุธ ุนูู ุงู movementูุนูู ููุง
17
00:01:11,780 --> 00:01:14,460
ุจุฏูุง ูุฑูุฒ ุนูู ุดุบูุชูู ูู ุงู joint ุงู joint ูุงุฒู
18
00:01:14,460 --> 00:01:18,440
ูููู ุจุชู
ุชุน ุจุญุงุฌุชูู ุฃุณุงุณูุงุช ุงู mobility ู ุงู
19
00:01:18,440 --> 00:01:21,980
stability ุทุจุนุง ุฃูุจุฑ ุชุญุฏู ุนูุฏ ุงูู
ูุตู ุนูุฏ ุฃู ู
ูุตู
20
00:01:21,980 --> 00:01:27,180
ุงุญูุง ูุนูู ุจูููู ูู ุญุฑูุฉ ุจุฏู ูููู ูู ุงู mobility ู
21
00:01:27,180 --> 00:01:30,240
ุงู stability ููู ุฃูู ูุตูุฑ ูู ุชูุงุฒู ุจูู ุงู mobility
22
00:01:30,240 --> 00:01:34,400
ู ุงู stabilityุู
ูุฏุด ูู ุชูุงุฒู ุจูู ูุฏูู ุงูุชูุชูู ุงุญูุง
23
00:01:34,400 --> 00:01:38,140
ููููุง ุฏุงูู
ุง ูู ุชูุงุณุจ ุนูุณู ู
ุง ุจูู ุงู mobility ู ุงู
24
00:01:38,140 --> 00:01:41,740
stability ูู ู
ุง ุฒุงุฏุช ุงู mobility ูู ู
ุง ููุช ุงู
25
00:01:41,740 --> 00:01:45,680
stability ููุฐุง ุงูุงุดู ูุงูุนู ูู
ูุทูู ุญุชู ูู ุญูุงุชูุง
26
00:01:45,680 --> 00:01:52,530
ุงูุนู
ููุฉ ุจุนูุฏุง ุนู ุงูู
ูุงุตู ุทูุจ ูุฐุง ุงูู
ูุตูุฃู ูุฐู ูู
ูุฉ
27
00:01:52,530 --> 00:01:55,570
ุงู mobility ู ุงู stability ูุชุฎุชูู ู
ู ู
ูุตู ูู
ูุตู
28
00:01:55,570 --> 00:02:00,050
ูุชุนุชู
ุฏ ุนูู ุฃุดูุงุก ูุชูุฑุฉ ูู ุงููุง ู
ูุงุตู ุซุงุจุชุฉ ุฌุฏุง ู
29
00:02:00,050 --> 00:02:03,210
stability ูููุง ุนุงููุฉ ูุฃููุง ุจุฑุถู ูู
ุงู ุงู mobility
30
00:02:03,210 --> 00:02:10,730
ูููุง ููููุฉ ุฌุฏุง ุฒู ุงู ุงู joint ุงููู ู
ูุฌูุฏ ูู ุงู
31
00:02:10,730 --> 00:02:14,680
skullุทุจุนุง ูุฏูู ุงูุฌูุช ุงูู
ูุฌูุฏุฉ ูู ุงู .. ูู ุงู skull
32
00:02:14,680 --> 00:02:19,360
ูู ุฅู ุฎููุช ุฑุจูุง ุณุจุญุงูู ูุชุนุงูู ุฎูููุง ุญุชู ุช .. ุชููู
33
00:02:19,360 --> 00:02:24,460
ุช .. ูุนูู ุชูุฌุฏ ู
ุณุงุญุฉ ููู
ู .. ููู
ู ุงูุฌู
ุฌู
ุฉ ูุฅูู ู
ุด
34
00:02:24,460 --> 00:02:28,520
ู
ุนููู ุฅู ุงูุฅูุณุงู ููููุฏ ุจุฌู
ุฌู
ุฉ ูุจูุฑุฉุฃููุฏ ูุนูู ุจูุตูุฑ
35
00:02:28,520 --> 00:02:31,580
ูุชุฑุฉ ุงููู
ู ูุงูุชุฑูุช ุงููุชุญุงุช ูุฐู ุงููู ู
ูุฌูุฏุฉ ุฃู
36
00:02:31,580 --> 00:02:35,420
ุงูู
ูุงุตู ุงููู ู
ูุฌูุฏุฉ ุญุชู ุชุณู
ุน ูู ุนู
ููุฉ ุงููู
ู ูุงู ูู
37
00:02:35,420 --> 00:02:39,920
ุฃุณุงุณุง ูุชุญุงุช ู
ู
ูู ุชุตูุฑ ููุง ุถุบุท ุฃุซูุงุก ุนู
ููุฉ ุงูู
ููุงุฏ
38
00:02:39,920 --> 00:02:44,860
ููุฐู ู
ุน ุงู growing ุฃู ู
ุน ุงู age ุจุชุช .. ุจุชุชุณูุฑ ู
39
00:02:44,860 --> 00:02:51,910
ุจุชุตุจุญ ู
ูุงุตู ุดุจู ุซุงุจุชุฉุทุจุนุง ูู ุจุนุถ ุงูู
ูุงุตูุฉ ุงูุชุงููุฉ
40
00:02:51,910 --> 00:02:57,330
ุฒู ุงู shoulder ุฒู ุงู hip joint ููู ูููุง mobility
41
00:02:57,330 --> 00:03:01,910
ุฎูููุง ูููู ุนุงููุฉ ูุฃููุง ุจุฏูุง ุชุณู
ุญ ุจุงูุญุฑูุฉ ูู range
42
00:03:01,910 --> 00:03:05,910
of motion ู wide range of motion ูุนุงุฏุฉ ุจุชููู ูุณู
43
00:03:05,910 --> 00:03:10,650
stable ูุนูู ูู ุงุชููู
ูุง ุนู ุงู glenohumeral joint of
44
00:03:10,650 --> 00:03:14,880
the shoulder ูููุฃูุชุฑ ุฌูููุช ูู ุงูุฌุณู
ูู mobile
45
00:03:14,880 --> 00:03:19,100
ููู
ุงู ูู ุฃูุชุฑ ุฌูููุช ูุณู stableุ ููุดุ ูุฃูู ุจุชู
ุชุน
46
00:03:19,100 --> 00:03:24,260
ุจmobility ุนุงููุฉ ููู ุงูุฃููุฏ ุงู stability ุชุจุนุชู ุฃูู
47
00:03:24,260 --> 00:03:27,800
ูุฃูู ุงุญูุง ููุชุนุฑู ุนูู ุฅูุด ุงูุนูุงู
ู ุงููู ุจุชุณุงุนุฏ ุนูู
48
00:03:27,800 --> 00:03:32,840
ุฒูุงุฏุฉ ุงู stability ูุนูู ุฒูุงุฏุฉ ุงู mobility ุงู most
49
00:03:32,840 --> 00:03:37,560
movable joint must demonstrate combination between
50
00:03:37,560 --> 00:03:41,630
stability and mobilityุนุณุงุณ ุงู ุชุนุทููุง stable
51
00:03:41,630 --> 00:03:46,450
movement ุงู stable movement ูุฐู ุจุชุชู
ูููุง ู
ู ุงู
52
00:03:46,450 --> 00:03:52,190
function ุทูุจ ูููุช ุงูุง ุนุดุงู ุงูุง ุงุญู
ู ุดุบูุฉ ุนูู ุงูู
53
00:03:52,190 --> 00:03:56,390
ุจุงูุฏู ูุงุฒู
ูููู ูู ุนูุฏู ุซุจุงุช ูู ู
ูุตู ุงููุชู ู
ุซูุง
54
00:03:56,390 --> 00:03:59,530
ุนุดุงู ุงูู ูุงุฒู
ูููู ูู ุนูุฏู ุซุจุงุช ูู ูู ู
ูุงุตู ุงู
55
00:03:59,530 --> 00:04:03,510
upper limb ุนุดุงู ุงู
ุดู ุจุฑุถู ูุงุฒู
ูููู ูู ููุงูุฉ ุงู
56
00:04:03,510 --> 00:04:07,740
motion ูุฐู ุงููู ุงูุง ุจุชู
ูู ุงู ุงุนู
ููุงุฃู ุจุฏู ุฃุนู
ููุง
57
00:04:07,740 --> 00:04:11,140
ูุงุฒู
ุชููู functional ู ุงู function ุจุฏูุง stability
58
00:04:11,140 --> 00:04:14,660
ูุฅูู ุงุฐุง ุจุฏู ุฃู
ุณู ูุจุงูุฉ ุงูุดุงู ู ุฃุดุฑุจ ู ุจุฏูุง ุชููุน
59
00:04:14,660 --> 00:04:17,760
ู
ูู ุจุฏูุง ุชููุน ุณุฎูุฉ ุจุฏูุง ุชุญุฑููู ูุจุงูุชุงูู ูุฃ ุงูุง
60
00:04:17,760 --> 00:04:21,820
ูุงุฒู
ู
ุงูุตูู ูููู ูููุง ุญุฑูุฉ ุงุชู
ููู ู
ู ุฃูู ุฃู
ุณู
61
00:04:21,820 --> 00:04:26,080
ูุจุงูุฉ ุงูุดุงู ุงุชููููุง ู
ู ุงูุทุงููุฉ ูุญุฏ ู
ุง ุฃูุตููุง ูุทู
62
00:04:26,080 --> 00:04:30,540
ููุงุก ู ุฃุดุฑุจู ุฃุฑุฌุนูุง ูุฐู ูุงุฒู
ูููู ูู ุนูุฏู mobility
63
00:04:30,540 --> 00:04:34,580
ู ูุงุฒู
ูููู ูู
ุงู as well stability ุทุจุนุง ุดูู the
64
00:04:34,580 --> 00:04:37,660
structure of the joint must be able to support a
65
00:04:37,660 --> 00:04:41,860
wide range of function from extreme stability
66
00:04:41,860 --> 00:04:46,790
ููู
ุนุธู
mobilityูุนูู ุฎููููู ุฃููู ุงูู
ูุงุตูุฉ ุงููู
67
00:04:46,790 --> 00:04:51,070
ู
ูุฌูุฏุฉ ูู ุงู suture ุงููู ู
ูุฌูุฏุฉ ูู ุงู skull ูุงุฒู
68
00:04:51,070 --> 00:04:55,510
ุชุนุทููุง ุณุคุงู ูุฃู ู
ุด ู
ุนููู ูู ู
ุง ูุฎุจุท ุฎุจุทุฉ ุฃู ูุชุนุฑุถ
69
00:04:55,510 --> 00:04:59,710
ูุฃู trauma ุฃูู ุชุชุญุฑู ู
ูุงุตูุฉ ุงูุฌู
ุฌู
ุฉ ูุฃู ูู ุงูุฌู
ุฌู
ุฉ
70
00:04:59,710 --> 00:05:02,950
ูุธููุชูุง ุญู
ุงูุฉ ุงู brain ุงู brain ูู ุฎููููู ุฃููู ุงู
71
00:05:02,950 --> 00:05:07,110
monitor ุชุจุน ุงูุฌุณู
ุงููู ูู ุงููู ุจูุณุชูุจู ู ุจูุฑุณู ูู
72
00:05:07,110 --> 00:05:12,920
ุงูุฅุดุงุฑุงุช ุงูุญุณูุฉููู ู
ุฑูุฒ ุงูู central nervous system
73
00:05:12,920 --> 00:05:17,140
ุงููู ุจูุชุญูู
ูู ูู ุงูุฌุณู
ุทุจุนุง ูุจูุนุทู ุฃูุงู
ุฑู ูุจูุชููู
74
00:05:17,140 --> 00:05:23,560
ู
ู ุงูุฌุณู
ููู ุทุจุนุง ูุชุฎุชูู ูููุงุช ุงูู
ูุงุตู ุนูู ุญุณุจ ุงู
75
00:05:23,560 --> 00:05:28,740
structure ุจุงููุณุจุฉ ู stability and mobility ุทุจุนุง ุงู
76
00:05:28,740 --> 00:05:32,860
architecture ุทุจุนุง ุชุฑููุจุฉ ุงูู
ูุงุตู ูู ู
ูุตู ุชุฑููุจุชู
77
00:05:32,860 --> 00:05:37,240
ูู ุงููู ุจุชุชุญูู
ูู ูุงู
plan of movement could this
78
00:05:37,620 --> 00:05:43,500
joint play or work or do a function ุทุจุนุง ุงู
79
00:05:43,500 --> 00:05:49,200
anatomists ุงููู ูู
ุงูุนูู
ุงุก ุงูุนูู
ุงูุชุดุฑูุญ ูุณู
ูุง
80
00:05:49,200 --> 00:05:57,260
ุงูู
ูุงุตู ูุนุฏุฉ ุฃูุณุงู
based on the motion ุฒู ุฃุฎุฏูุง ุงู
81
00:05:57,260 --> 00:06:00,420
immovable ู ุงู slightly movable ู ุงู freely
82
00:06:00,420 --> 00:06:05,330
movableุทุจ ูุชุนุฑู ุนูู ุงูู immovable ูุณู
ููู
sin
83
00:06:05,330 --> 00:06:09,430
arthrosis joints ุทุจุนุง ูู fibrous joints permit
84
00:06:09,430 --> 00:06:13,290
little or no movement of the articulation ู
ู
85
00:06:13,290 --> 00:06:17,050
ุฃููุงุนูุง ุงูุฃูู ูู ุงูู suture joint ุงููู ูู ู
ูุฌูุฏุฉ
86
00:06:17,050 --> 00:06:21,190
ููุท ูู ุงู skull ุฃู ูู ุงูุฌู
ุฌู
ุฉ ุงููู ูู ู
ุณุฆููุฉ ุนู
87
00:06:21,190 --> 00:06:25,950
ุญู
ุงูุฉ ุงู brain inside and this joint articulating
88
00:06:25,950 --> 00:06:33,080
bone sheets met closelyand are tightly connected
89
00:06:33,080 --> 00:06:38,020
by fibers that are continuous with the periosteum
90
00:06:38,020 --> 00:06:44,780
ูุนูู ูู ุนุจุงุฑุฉ ุนู ุนู
ููุฉ ุฎููุท ู
ู ุงู fibers ู
ุดุจููุฉ ู
ุน
91
00:06:44,780 --> 00:06:48,740
ุงู periosteum ู
ุจุงุดุฑุฉ ู
ุจุงุดุฑุฉ ู ูุฃููุง ุนุงู
ูุฉ sutures
92
00:06:48,740 --> 00:06:53,840
ุฃู ุบุฑุฒ ูุฏู ุฒู ู
ุง ุงุญูุง ุดุงูููููุง ุจุดูู ุงูู ูุฐุง ุงุญูุง
93
00:06:53,840 --> 00:06:58,670
ุดุงูููููุง ู ูุฃูู ูู ู
ูููุฉ ู ุนุงู
ูุฉ ุฏุฑุฒุฉูุฏุง ุญูุงููู ุงู
94
00:06:58,670 --> 00:07:04,230
boon ูุฐู ุทุจุนุง ุชูุชุฆู
ุจุชุตูุฑ ossified ูู ุงู adulthood
95
00:07:04,230 --> 00:07:09,250
ุจุชุญูู ู ossification ุจุทู ููู ูุชุญุงุช ุงู ูุฑูุงุช and
96
00:07:09,250 --> 00:07:13,270
eventually replaced by completely by boon ุทุจุนุง ูุฐุง
97
00:07:13,270 --> 00:07:17,570
ุงูููุงู
ูู
ุง ุจูู ููุงุฏู ุงู baby ุงู ุงูุทูู ุจุชููู ูุงุฏู
98
00:07:17,570 --> 00:07:21,650
ูู ู
ุฌุงู ูุญุฑูุฉ ุงู ููู
ู ุจูููุง ุงู ูู
ุงู ู
ุน ูุชุญุงุช
99
00:07:21,650 --> 00:07:25,370
ุงูููููุงู ุงููู ุจูุณู
ูู ุงุญูุง ุงู .. ุงู .. ุจุงูุนุฑุจู ู
100
00:07:25,370 --> 00:07:29,150
ุจุงูุจูุฏู ุงู ูููุฎ ุงูุทูู ุงููู ูู
ุง ุจูุญุณู ุจูุญุณ ูุฃูู ููู
101
00:07:29,150 --> 00:07:33,910
membrane ู
ูุฌูุฏ ู
ู ุนูุฏ ุงู frontal part of the skull
102
00:07:33,910 --> 00:07:39,500
ู ุจูุฑูุญ ููุณุท ุงู skullุงูุดูู ุงููุญูุฏ ุงูู
ูุฌูุฏ ููุง ุจุณ
103
00:07:39,500 --> 00:07:44,480
ูู ุงูู Sintesmosis joint ูุนูู ุฎููููู ุฃููู ูุฐู
104
00:07:44,480 --> 00:07:49,500
dense fiber tissue ุจุชุนู
ู ุนูู ุฑุจุท two bones
105
00:07:49,500 --> 00:07:53,700
together ูุทุจุนุง ุงู movement ูุชูุฑ limited ุทุจุนุง ูุฐู
106
00:07:53,700 --> 00:07:57,100
ุจุชููู ู
ูุฌูุฏุฉ ุจูู ุงูุนุถู
ุงุช ุงูุทูููุฉ ุงููู ุจุชููู
107
00:07:57,100 --> 00:08:02,040
ู
ุชุฌุงูุฑุฉ ููู
ุงู ูู ู
ุซู ููุง ุชุงูู ุงูููุฑุงูู ุฃูุฑูู
ููู
108
00:08:02,040 --> 00:08:04,980
ุงููู ูู ุงูู
ูุตู ุจูู ุงูููุฑุงูููุฏ ุจุฑูุณูุณ ูุงูุฃูุฑูู
ููู
109
00:08:04,980 --> 00:08:09,480
ุฅุจุฑูุณุณุนุณุงุณ ู
ุง ุชุตูุฑุด ุงูู ุฒูุงุฌุงู ูู movement ุฃุซูุงุก
110
00:08:09,480 --> 00:08:13,940
ุญุฑูุฉ ุงู shoulder ู ุงู radio ulnar ุงู mid radio
111
00:08:13,940 --> 00:08:17,640
ulnar joints ูู
ุงู joint ู ุงู mid tibiofibular
112
00:08:17,640 --> 00:08:20,840
joint ู ุฒู ู
ุง ุงุญูุง ุดุงูููู ู ุงู inferior
113
00:08:20,840 --> 00:08:25,100
tibiofibular joints ููุฐู ุจุนุถ ุงูุฃู
ุซูุฉ ุงูู
ูุฌูุฏุฉ ุฒู
114
00:08:25,100 --> 00:08:30,730
ู
ุง ุงุญูุง ุดุงูููู ุงููู ุชุฑุจุท ุนุธุงู
ุงูุญุฑูุฉ ุจุงูุจูููุงุจุชููู
115
00:08:30,730 --> 00:08:34,030
ููููุฉ ูุนูู ุงุญูุง ุจูุนุฑู ุงู ุงูููุจูุง ูู ุชูุจูุง ุจุชุญุฑููุง
116
00:08:34,030 --> 00:08:37,430
ู
ุน ุจุนุถ ู ูุฏู ุงูููุฑูุฏูุง ู ูุฃู ุงูููุจูุง ูู
ุญุฑูุฉ ุงู
117
00:08:37,430 --> 00:08:41,970
subination ู ุงู pronation ููุฐู ุจุชุนู
ู ุนู
ููุฉ ุฑุงุจุท
118
00:08:41,970 --> 00:08:47,050
ุญุชู ูุฏูู ุงูุนุถู
ุชูู ู
ุง ูููููุง ุนู ุจุนุถูู
ุงูู slightly
119
00:08:47,050 --> 00:08:51,590
movable joint ุงููู ุจูุณู
ูู ุงูู Amphiarthrosis joint
120
00:08:51,590 --> 00:08:55,970
ูุฐู ุนุจุงุฑุฉ ุนู ูุงุฑุชูููุฌูุณ ุฌูุงูุณ ุจุฑู
ุช ู
ูุดู ุฃู more
121
00:08:55,970 --> 00:09:00,850
motion of the adjacent bone ุฃูุชุฑ ู
ู ุงูุณู ุฃุฑุถูุงู
122
00:09:00,850 --> 00:09:06,130
ุฌูุงูุณ ุทุจุนุง ู
ููุง ุงูุณูููุฏุฑูุณูุฒ ุงููู ูู ุงูู
ุซู ุนูููุง
123
00:09:06,710 --> 00:09:12,510
ุงูู sternocostal joints ููู
ุงู ุงูุงุจูููุฒูุง ุงูุงุจูุงุชู
124
00:09:12,510 --> 00:09:17,050
ุงููู ู
ูุฌูุฏ ูุฐุง ุจูููู ูู ุงูุนุธุงู
ุญุชู ุจูุจุฏุฃ ุจุนู
ููุฉ
125
00:09:17,050 --> 00:09:22,910
ุงููู
ู ู
ู ุฎูุงู ุนู
ููุฉ ูู
ู ู ุชุทูุฑ ููุจูู ูุฐุง ุงุจุชุฏู
126
00:09:22,910 --> 00:09:27,530
ูุชุฑุฉ ูุนูู ู
ุฌุงู ูุฅู ุงูุนุธุงู
ุฃููุง ุชุทูู ู ุชูุงูุจ ุงููู
127
00:09:27,530 --> 00:09:31,890
ูู ูู
ู ู ุงูุชุทูุฑ ุชุจุน ุงูุฅูุณุงู ููู ุนุจุงุฑุฉ ุนู thin
128
00:09:31,890 --> 00:09:35,170
layer of hyaline cartilage
129
00:09:38,830 --> 00:09:43,710
ุฃู
ุง ุงููSynthesis Jones ููู ุฒู ุงููPubic Synthesis
130
00:09:43,710 --> 00:09:49,590
ุงููู ุจูุฑุจุท two pubic bone of the pelvic bone ูู
131
00:09:49,590 --> 00:09:52,890
ูุฐุง ุงููJones ูู ุนูุฏูุง ุซูุจูุงุช ุฃูููุงููู ูุนูู ุฒู ุฏุณู
132
00:09:52,890 --> 00:09:57,310
ูุฏู ุนุงู
ู separated a disc fibro cartilage from the
133
00:09:57,310 --> 00:10:01,930
bone ูุนูู ุฎููููู ุฃููู ุงูุนุถู
ุชูู ููู ุจูููู
ูุฏููู ุฒู
134
00:10:01,930 --> 00:10:08,590
disk ูุฏู ุฃู ูุฑุต ุฎูููุง ูุณู
ูู ุจุงูุนุฑุจู ุจูููู ู
ูุฌูุฏ
135
00:10:08,590 --> 00:10:13,110
ุญุชู ูู
ูุน ุงูุงุญุชูุงู ู
ุง ุจูู ุงูุนุถู
ุชูู ูุจููุณ ุงูููุช ููุตู
136
00:10:13,110 --> 00:10:18,850
ุนุถู
ุชูู ุนู ุจุนุถ ู ูููู ู
ูุตู ุจูุนุทููุง ุญุฑูุฉ ุจุณูุทุฉ ุฒู ุงู
137
00:10:18,850 --> 00:10:22,150
disk ุงููู ู
ูุฌูุฏ ูู ุงู intervertebral disk ู ุฒู
138
00:10:22,150 --> 00:10:27,590
ุงูpupus synthesis ุงููู ูู ู
ูุถุญ ููุง ุจุงูุดูู
139
00:10:28,520 --> 00:10:33,080
ุงู freely movable joints ูู ุงู diaarthrosis or
140
00:10:33,080 --> 00:10:38,580
synovial joints ููุง ุจูุชููู
ุนู ู
ุนุธู
ู
ูุงุตู ุฌุณู
141
00:10:38,580 --> 00:10:42,420
ุงูุฅูุณุงูุ ู
ูุงุตู ุฌุณู
ุงูุฅูุณุงู ุงููู ูู ุจุชุณู
ุญ ุจุงู
142
00:10:42,420 --> 00:10:46,180
functional movementุ ุงู locomotionุ ุงู .. ูู
143
00:10:46,180 --> 00:10:48,320
ุงูุญุฑูุงุช ุงููู ุฅุญูุง ุจูุนู
ููุง ูู ุงู daily activity
144
00:10:48,320 --> 00:10:52,520
ุจุชุญุชุงุฌ ู
ููุง ุญุฑูุฉ ูุฑุฉ ูู ุงูู
ูุงุตูุ ูุฐู ุงู joints
145
00:10:52,880 --> 00:10:57,400
ุงูุญูุงุธ ุนูู ุงูุฌุณุฏ ูุชู
ุชุบุทูู ุจุงูู Articular
146
00:10:57,400 --> 00:11:01,980
Cartilage ุงููู ูู ุงูููุงููู ูุงุฑุชููุงุฌ ูุงููุงุจุณูู ูู
ุงู
147
00:11:01,980 --> 00:11:06,420
ุจูููู ู
ุญุงุทุฉ ุจุงููุงุจุณูู ููู ุนูุฏูุง Senovial Membrane
148
00:11:06,420 --> 00:11:10,600
ููู ุนูุฏูุง Senovial Fluid inside ูุฐุง ุงู Senovial
149
00:11:10,600 --> 00:11:13,740
Membrane ุฃู Lining ุจูุนุทููู ุงู labrication
150
00:11:14,790 --> 00:11:19,510
ุงูุณูููููุงู ุงููููุฏ ูุนูู ูุฐุง ุงูู
ุซู ุนูู ุงู ููุฌูู ุฒู
151
00:11:19,510 --> 00:11:22,850
ู
ุง ุงุญูุง ุดุงูููู ูู ุนูุฏูุง capsule ู ูู ุนูุฏูุง
152
00:11:22,850 --> 00:11:25,910
ุณูููููุงู membrane ู ูู ุนูุฏูุง ุณูููููุงู cavity ู
153
00:11:25,910 --> 00:11:29,090
ุงูุณูููููุงู cavity ุจุชููู full of ุณูููููุงู fluid
154
00:11:29,090 --> 00:11:31,670
ุงููู ูู ู ูู ุนูุฏูุง cartilage ุทุจูุชูู ู
ู ุงู
155
00:11:31,670 --> 00:11:35,680
cartilageุทุจูุชูู ู
ู ุงู .. ุงู cartilageุ ุงู
156
00:11:35,680 --> 00:11:41,940
cartilage ุญุชู ูู
ูุน ุงูุงุญุชูุงู ู
ุน ุงู .. ุญุชู ูู
ูุน
157
00:11:41,940 --> 00:11:44,000
ุงูุงุญุชูุงู ู
ุน ุงู two bones
158
00:11:48,650 --> 00:11:52,450
ุทุจุนุง ุนูุฏูุง many types of synovial joints ูู ุนูุฏูุง
159
00:11:52,450 --> 00:11:55,390
ุงู gliding joints ูู in these joints the
160
00:11:55,390 --> 00:12:00,350
articulating bone surface are nearly flat ุทุจุนุง ุงู
161
00:12:00,350 --> 00:12:04,510
gliding ูู ุนูุฏูุง ุญุฑูุฉ ุจุณ ุงูุญุฑูุฉ ุนู ุทุฑูู ุงูุฅุฒุงุญุฉ
162
00:12:04,510 --> 00:12:09,850
ููุท ููู non axial gliding ุงููู ุงููู ุจุชุตูุฑ ุทุจุนุง
163
00:12:09,850 --> 00:12:13,030
examples include intermetatarsal ู ุงู
164
00:12:13,030 --> 00:12:17,800
intermetacarpal ู ุงู intertarsal jointsูุงูู facet
165
00:12:17,800 --> 00:12:21,380
joints ุงููู ู
ูุฌูุฏุฉ ูู ุงู vertebral ูู ู
ุซู ุนูู ุงู
166
00:12:21,380 --> 00:12:28,440
gliding joints ุฃู
ุง ุงู hinge joint ูู ุนูุฏูุง ุฃูุชุฑ
167
00:12:28,440 --> 00:12:32,600
mobility ุงูุฃูู
ุตุงุฑ ูู ุนูุฏูุง ูู ุนูุฏูุง two surfaces
168
00:12:32,600 --> 00:12:38,460
ู
ููุง convex ู ู
ููุง concave surface ุทุจุนุง ูุงุฒู
ุชููู
169
00:12:38,460 --> 00:12:44,060
two ends of the bone ู
ุฑุจุทูู ุนู ุทุฑูู strong ููุฉ ุชุฑู
170
00:12:44,060 --> 00:12:48,030
ุงููู ุฌู
ุช ุนูู ุงูุฌุงูุจูู ุจุชุนู
ู ุนููRestriction ููู
171
00:12:48,030 --> 00:12:52,590
movement ูู ุงู planner ููู ุจุชููู ุดูููุง ุนูู ุงู
172
00:12:52,590 --> 00:12:58,450
hinge-like motion ุงู example ููุง ุงู ulnar humeral
173
00:12:58,450 --> 00:13:01,330
joint ุงููู ูู ุงู elbow joint ู ุงู interphalangeal
174
00:13:01,330 --> 00:13:06,830
joint ุฃู
ุง ุงู pivot joint ููู ุญุฑูุฉ ุงู rotation ุทุจุนุง
175
00:13:06,830 --> 00:13:09,510
ุงุญูุง ูู ูุงุญุฏ ู
ู ุฃููุงุน ุงู joints ูุฐู ูุชููู ุงูุญุฑูุฉ
176
00:13:09,510 --> 00:13:14,710
ูููุง limitedูู plan ู
ุนูู ูุนูู ูู ูุงุญุฏุฉ ู
ููู
ุจุชุณู
ุญ
177
00:13:14,710 --> 00:13:18,230
ุงูุญุฑูุฉ ู
ุซูุง ุงู hinge joint ุจุณู
ุญ ุงูุญุฑูุฉ ุนูู ูู one
178
00:13:18,230 --> 00:13:22,290
plan ุงููู ูู ุงู societal ุจplan ุฃู
ุง ุงู pivot joint
179
00:13:22,290 --> 00:13:26,490
ููู ุจูุนุทููุง ุจุณู
ุญูู ุจุญุฑูุฉ ุงู rotation ุงู rotation
180
00:13:26,490 --> 00:13:30,950
ุนุงุฏุฉ ุจุชููู ูู ุงู horizontal plan ุจุชููู ุนุจุงุฑุฉ ุนู
181
00:13:30,950 --> 00:13:34,810
rotation around and axis ุทุจุนุง ุงูู
ุซู ุงููู ููุง
182
00:13:34,810 --> 00:13:38,810
ุงูatlanto axial jointู ุงู proximal ู ุงู distal
183
00:13:38,810 --> 00:13:42,490
radio ulnar joint ุงููู ุจูุนู
ูููุง ุญุฑูุฉ ุงู subination
184
00:13:42,490 --> 00:13:46,070
ู ุงู pronation ุฃู
ุง ุงู Atlanta axial ููู movement
185
00:13:46,070 --> 00:13:50,530
of the neck in right and left rotation ููุฐุง ุดูู ุงู
186
00:13:50,530 --> 00:13:54,450
hinge joint ุฒู ู
ุง ุฅุญูุง ุดุงููููู ุฒู ููุง ุนูุฏูุง ู
ุซู ูู
187
00:13:54,450 --> 00:13:58,790
elbow joint ุฃู
ุง ููุง ุงู pivot ุญุฑูุฉ ุงูุฏูุฑุงู around
188
00:13:58,790 --> 00:14:03,780
and axisููุง ุบุงูุจุง ุงูุญุฑูุฉ ุจุชููู ูู Sagittal Plan
189
00:14:03,780 --> 00:14:10,160
ุฃู
ุง ููุง ุญุฑูุฉ ูู Transverse Plan ุฃู
ุง ุงู Condyloid
190
00:14:10,160 --> 00:14:14,100
Joint ุงู Condyloid Joint ูุนูู ู ูุฃูู ูู ุนูููุง two
191
00:14:14,100 --> 00:14:18,360
oval convex and concave surface ูุฏููุฉ ุจูููููุง
192
00:14:18,360 --> 00:14:23,500
ู
ุซุจุชูู ููู ุจุนุถ Reciprocallyูุนูู ู ูุฃูู ุฒู ู
ุง ุงุญูุง
193
00:14:23,500 --> 00:14:27,880
ุดุงูููู ุจุงู .. ุจุงู .. ุจุงูุดูู ูุฐุง one convex and one
194
00:14:27,880 --> 00:14:31,920
concave surface ู ุจุชููู ููุง ุงูุญุฑูุฉ afflection ู
195
00:14:31,920 --> 00:14:34,800
extension ูู ุงูุณุฌูุฉ ุงูุฅุจูุงู ู abduction ู
196
00:14:34,800 --> 00:14:38,700
adduction ูู ุงู frontal ุฅุจูุงู ู ู
ู
ูู ุชุณู
ุญ ุงููุงุฆุจ
197
00:14:38,700 --> 00:14:44,560
ุญุฑูุฉ ู
ู ุงู circumduction ูู
ุงู ุฎูููุฉ ุฎููุง ูููู ู
ุด
198
00:14:44,560 --> 00:14:50,990
ูุชุฑู ุฅุจูุงูุทุจุนุง ููุง ุงู example ููุง ุจุชููู ุจุงู meta
199
00:14:50,990 --> 00:14:56,010
-carbo-phalangeal joints ุงูุฃุฑุจุนุฉ ุงููู ูู ุจูุจุฏุฃ ู
ู
200
00:14:56,010 --> 00:15:00,490
ุงู index ู ุงู fifth .. ุงู second ู ุงู fifth joint
201
00:15:00,490 --> 00:15:04,590
ู .. ู ุงู radio-carbal joints ุงููู ูู ุงููู ูุณู
ููุง
202
00:15:04,590 --> 00:15:07,210
ุงู wrist joint ุงููู ุจูุนู
ููู ุญุฑูุฉ flexion,
203
00:15:07,350 --> 00:15:12,980
extension, adduction ุฃู radialradio ู ulnar
204
00:15:12,980 --> 00:15:16,980
movement ููุง ุงู radial deviation ู ุงู ulnar
205
00:15:16,980 --> 00:15:22,220
deviation ุฃู
ุง ุงูุตุฏู joint ููู ู ูุฃูู ุจุดุจู ุจุญุฑูุฉ
206
00:15:22,220 --> 00:15:25,660
ุงูุตุฏู
207
00:15:25,660 --> 00:15:30,190
ุงููู ูู ุงูุณุฑุฌ ุงูุญุตุงูููู ูููู ุงููุงุฑุณ ูุงุนุฏ ุนูู ุณุฑุฌ
208
00:15:30,190 --> 00:15:35,890
ุงูุญุตุงูุ ุจูููู ุนู
ููุฉ ุงูุชุทุงุจู ู
ุง ุจูู ุงู .. ุฒู .. ุฒู
209
00:15:35,890 --> 00:15:38,850
ุงููุฑุณู ุงููู ุจูุจูู ูุงุนุฏ ุนููู ุงููุงุฑุณ ุนูู ุงูุญุตุงู ุงููู
210
00:15:38,850 --> 00:15:42,550
ุงุญูุง ุจูุณู
ูู ุณุฑุฌ ุงูุญุตุงูุ ุงู movement ุฏุงูู
ุง ุจุชููู ุฒู
211
00:15:42,550 --> 00:15:45,690
ุงูcondyloid joint ููู ุจุชุนุทู greater movement ุฒู ุงู
212
00:15:45,690 --> 00:15:50,340
metacarbophalangeal joint of the thumbุฃู
ุง ุงู ball
213
00:15:50,340 --> 00:15:56,680
and socket ููู freely movable joints ุจูุนุทููู
214
00:15:56,680 --> 00:16:00,700
movement in three planes of movement ูุงูู
ุซู ุนูููุง
215
00:16:00,700 --> 00:16:04,880
ุทุจุนุง ุนุงุฏุฉ ุจูููู ูู ุนูุฏูุง convex and concave shape
216
00:16:04,880 --> 00:16:10,500
ููู ููุฃููุง ุนุงู
ูุฉ ุงููุฑุฉ ู ุงูุฌุฑุงุจ ุชุจุนูุง ุจุชุนุทููู
217
00:16:10,500 --> 00:16:14,300
rotation ูู ุงู three planes ุฒู ุงู hip and shoulder
218
00:16:14,300 --> 00:16:19,670
joint ุทุจุนุง ุงู synaphear joints veryุจุชุฎุชูู ูุซูุฑูุง
219
00:16:19,670 --> 00:16:25,050
ูู ูุฏุฑุฉ ุญุฑูุฉ ุงูู
ุญุฑูุฉ ูู
ุง ุดูุฏุช ูู ุงูููุฌูุฑูุฉ ุงูุชู
220
00:16:25,050 --> 00:16:30,530
ุณูุดุงูุฏูุง ุฅููู
ุนุงู
ูุง ู
ุณุชุฎุฏู
ูู ุจุงููุณุจุฉ ููุนุฏุฏ ู
ู
221
00:16:30,530 --> 00:16:34,710
ุงูุณุณุงุช ุงูุชุญูู ุทุจุนูุง ูู ุนูุฏูุง ุงูุณุณ ูุงุญุฏ ุฃู ุงูุณุณ
222
00:16:34,710 --> 00:16:39,190
ุงุซูุงู ุงู ุงูุณุณ ุซูุงุซ ูุงูุงูุณุณ ูุงุญุฏ ูุณู
ู uniaxialูุงูู
223
00:16:39,190 --> 00:16:43,170
two axis ุจูุณู
ู biaxial ูุงูู three axis ุจูุณู
ู
224
00:16:43,170 --> 00:16:51,510
triaxial ูููุง ุงูููุฌุฑ ูุฐุง ุงููู ุจููุถุญูู ุงูู
ูุงุตู ุจุดูู
225
00:16:51,510 --> 00:16:55,490
ุนุงู
ูุฐุง ุงูููุฏูุงูุฏ ุงููู ุจูุนุทููู ุงู two axisููุง ุงู
226
00:16:55,490 --> 00:16:58,770
ball and socket ุจูุนุทููู three axis ุฅู ุงู gliding
227
00:16:58,770 --> 00:17:03,270
joint ุงู movement non axial movement ููุท ูู ุนู
ููุฉ
228
00:17:03,270 --> 00:17:06,970
gliding ูููุง ุงู pivot ุงููู ุจูุนุทููู ุญุฑูุฉ ุงู
229
00:17:06,970 --> 00:17:11,010
rotation ูููุง ุงูุตุฏู ุงููู ูู ุงู metacarpophalangeal
230
00:17:11,010 --> 00:17:16,970
joint of the thumb ุงููู ุจูุนุทููู ุญุฑูุฉ ุจ two plantsุ
231
00:17:16,970 --> 00:17:19,690
deflection, extension, abduction, adduction ููู
ุงู
232
00:17:19,690 --> 00:17:21,670
ุจูุนุทููู ุญุฑูุฉ ุจูุณู
ููุง ุงู opposition
233
00:17:24,110 --> 00:17:28,070
ุทุจุนุง ุงูู few joints where only limited motion is
234
00:17:28,070 --> 00:17:32,530
permitted in any direction are termed non-axial ู
235
00:17:32,530 --> 00:17:35,890
ุงูู joint motion capability also sometimes
236
00:17:35,890 --> 00:17:39,470
described in terms of degree of freedom ููู
ุง ูุชููู
237
00:17:39,470 --> 00:17:42,290
ุนู movement in one plan ุจูุณู
ููุง one degree of
238
00:17:42,290 --> 00:17:46,740
freedom ุงููู ูู ุงูู uniaxialู ูู ูุงูุช ุงู two plan
239
00:17:46,740 --> 00:17:51,080
ุจุชุณู
ู bi-axial ุจุชุณู
ู two degree of freedom ู ูุฐูู
240
00:17:51,080 --> 00:17:55,040
ุงู tri-axial joint ุจุชุณู
ู three degree of freedom
241
00:17:55,040 --> 00:17:59,640
ุทุจุนุง ูุงู ู
ุตู
ูุงุช ู
ุฎุชููุฉ ููู
ูุงุตู ู
ู
ูู ููุฑุฃูุง ูู ุนุฏุฉ
242
00:17:59,640 --> 00:18:03,440
ู
ุฑุงุฌุน ุญุชู ูููู ุงุญูุง ุนุงุฑููููุง ุทุจุนุง ุงู synovial
243
00:18:03,440 --> 00:18:07,240
structure ุฏุงุฆู
ุง ุจูููู ูู ุนูุฏู associated with the
244
00:18:07,240 --> 00:18:11,550
diarthroุฃุฑุซุฑูุฏูุงู ุฌููุณ ูู ูู ุนูุฏูุง ุงูุจุฑุตุฉ
245
00:18:11,550 --> 00:18:14,750
ูุงูุชูุฏููุดูุช ุงูุด ูุธููุฉ ุงูุจุฑุตุฉ ูุงูุชูุฏููุดูุช ุชุนู
ู
246
00:18:14,750 --> 00:18:19,650
ุนู
ููุฉ facilitation ูุงูู
ovement ู ุญู
ุงูุฉ ููุชูุฏูู ุงู
247
00:18:19,650 --> 00:18:22,710
ูู structure ุงููู ูู ุจุชููู ู
ูุฌูุฏุฉ ูุนูู ู
ูุฌูุฏุฉ
248
00:18:22,710 --> 00:18:29,390
ุงูุจุฑุตุฉ ุชูุฑูุจุง ูู ุนุจุงุฑุฉ ุนู small capsules ู
ูุฌูุฏุฉ
249
00:18:29,390 --> 00:18:34,530
ุฎููููู ุฃููู ู
ุฎุฏุฉ ู
ูุฌูุฏุฉ within the synovial
250
00:18:34,530 --> 00:18:39,190
membraneู ุจุชููู ู
ูุฌูุฏุฉ ูููุง synovial fluid ูุธููุชูุง
251
00:18:39,190 --> 00:18:42,990
ุชุนู
ู ู
ุฎุฏุฉ separating ุงู bone ุนู ุงู bone ุงู ุงู
252
00:18:42,990 --> 00:18:47,190
tendon ุนู ุงู bone ุญุชู ุชู
ูุน ุนู
ููุฉ ุงูุงุญุชูุงู ุงููู
253
00:18:47,190 --> 00:18:51,290
ูุชููู heart from the structure ุงููู ุจูู
ุฑ ู
ู ุฎูุงูู
254
00:18:51,290 --> 00:18:54,090
ูุนูู ุงุญูุง ูุชุฎูู ุงูู ูู ุนูุฏูุง tendon ูู ูุงุนุฏ ุทูู ู
ุง
255
00:18:54,090 --> 00:18:57,990
ูู ุจูุนู
ู ุญุฑูุฉ ูู ุจูุญู ูู ุงูุนุถู
ุชุฎูููุง ุงูู ูู
ุณู ุญุจู
256
00:18:57,990 --> 00:19:05,070
ุงุญูุง ู ูุถููุง ุงูุญุช ูููู ุนุถู
ุฉ ุงู ูู ููุญ ุฎุดุจู ุงุด ุจุตูุฑ
257
00:19:05,070 --> 00:19:08,790
ูููุง ุจุชููุทุน ุงู
ุง ูู ุงุญูุง ุญุทููุง ุญู
ุงูุฉ ุญุทููุง ูุฎุฏุฉ ู
258
00:19:08,790 --> 00:19:12,970
ููุง ุจูู
ุฑุฑ ูุฐุง ุงููู ู
ุด ู
ู
ูู ุงูู ููุทู ุงู most bursa
259
00:19:12,970 --> 00:19:16,870
separate tendon from bone reducing the friction of
260
00:19:16,870 --> 00:19:21,210
the tendon during joint motion ุทุจุนุง some bursaู
ุซู
261
00:19:21,210 --> 00:19:25,470
ุงูุงููููุฑุงููู ุงูุจุฑุตุฉ ุงูู
ูุฌูุฏุฉ ุชุญุช ุงูุงููููุฑุงููู ู
ู
262
00:19:25,470 --> 00:19:30,130
ุงูุจูู ุจุชูุตู ุงูุจูู ุนู ุงู skin ุนุดุงู ู
ุงููููุด ุงู skin
263
00:19:30,130 --> 00:19:36,290
ู
ุจุงุดุฑุฉ ุนูู ุงูุจูู ุงู
ุง ุงู tendon sheets ููู ุนุจุงุฑุฉ ุนู
264
00:19:36,290 --> 00:19:40,870
ุบูุงู ุญู
ุงูุฉ ุฒู ุงูุบูุงู ุงููู ุจูุญุทู ุนูู ุงู ุงุดู ุงุญูุง
265
00:19:40,870 --> 00:19:44,530
ุญุชู ูุญู
ูู ุนุจุงุฑุฉ ุนู double layer synovial structure
266
00:19:44,530 --> 00:19:48,100
that surround ุงู tendonpositioned in clothes
267
00:19:48,100 --> 00:19:51,560
associated with moonุ ุงู tendon sheet ูุฐุง ุงู sheet
268
00:19:51,560 --> 00:19:55,260
ุงููู ุจูุนู
ู ุญู
ุงูุฉ ูู tendon ูู
ุง ุจูููู ุจูู
ุฑ ุนูู
269
00:19:55,260 --> 00:20:01,060
ุงูุนุถู
ุงูุนุถูุ many of the long muscle tendon ุงููู
270
00:20:01,060 --> 00:20:04,880
ุจุชุนุฏู ุนูู ุงู wrist ู ุงู finger ุจุชููู protected by
271
00:20:04,880 --> 00:20:09,140
tendon sheets ุญุชู ุชู
ูุน ุงูุงุนุฏููุงุงูุฑูุญ ูู
ูุถูุน ู
ูู
272
00:20:09,140 --> 00:20:11,780
related ูููุงู
ุงููู ุงุญูุง ุจูุญูู ุงููู ูู ุงู joint
273
00:20:11,780 --> 00:20:16,080
stabilityุ ุทุจุนุง the stability of an articulation
274
00:20:16,080 --> 00:20:21,860
is its ability to resist dislocationุ ุฅูุด ูุนููุ
275
00:20:21,860 --> 00:20:25,620
ุฃูุง ุจุชููู
ุนู jointุ ุงู joint ูุฐุง ูุธู ูู ู
ูุงููุ
276
00:20:25,620 --> 00:20:29,900
ู
ุงูููุตู ุฃู ู
ุงููุฒุญ ุฃู ู
ุงููุณูุฑุ ูู ูุง dislocation
277
00:20:29,900 --> 00:20:33,900
ููุง subluxationุ ูุนูู ูุงุจุฏ ููุฎูุน ู
ู ู
ูุงูููุงููู
278
00:20:33,900 --> 00:20:37,580
ุจุฏูู ูู
ุงู ุฃูู ูุชุญุฑู ู
ู ู
ูุงูู ุจุญูุซ ู
ุง ูุนู
ููุด ุฃูู
279
00:20:37,580 --> 00:20:43,440
ุดุฏูุฏ ุนูู ุงูู
ูุณุฏ especially it is the ability to
280
00:20:43,440 --> 00:20:46,740
resist the displacement of one bone end with
281
00:20:46,740 --> 00:20:51,860
respect to another ููู
ุงู to prevent injury to the
282
00:20:51,860 --> 00:20:52,320
ligament
283
00:21:00,060 --> 00:21:04,400
ุฃูู ุญุงุฌุฉ ุงูู shape of the articulating bone
284
00:21:04,400 --> 00:21:10,120
surface ุทุจุนุง ู
ูู
ูุชูุฑ ูู ุงู mechanical joints ุงู
285
00:21:10,120 --> 00:21:14,960
articulating part are exact opposition in shape so
286
00:21:14,960 --> 00:21:18,480
that fit tightly together ูุนูู ุงูู ู ูุฃูู ูู ุงู
287
00:21:18,480 --> 00:21:23,290
ุงูุณุทุญูุงูุณุทุญ ููููุงุจ ูู
ุชูุจุณูู ูู ุจุนุถ ูุฒู ู
ุง ุดุงูููู
288
00:21:23,290 --> 00:21:26,710
ููุง ุดูู ุงููู ุงูุฌุงููุฏ ุจุฏู ูููู ููู ุชุทุงุจู ููุฐูู
289
00:21:26,710 --> 00:21:30,130
ุงูุตุฏุฑ ุงูุฌุงูุฏ ู ุงู ball and socket ุฌุงูุฏ ููู ูู
290
00:21:30,130 --> 00:21:33,790
ุนูุงู
ู ู
ุฎุชููุฉ ุจุชุฃุซุฑ ูู ุงู human body the
291
00:21:33,790 --> 00:21:35,950
articulating end of the bone
292
00:21:44,540 --> 00:21:50,240
ู
ุนุธู
ุงูู
ุฌูุฏุงุช ูุฏููุง ู
ุฌูุฏุงุช ู
ุชุตุฑูุฉ ูู
ุชุทุงุจููู
293
00:21:50,240 --> 00:21:54,180
ูู
ุชุทุงุจููู ูู
ุชุทุงุจููู
294
00:21:54,340 --> 00:21:59,000
ูุชููู
ุนู ู
ุซู ุงูู
ูุตู ุงูุดูุฑุฏุฑุ ุงูุดูุฑุฏุฑุ ูุฃ ูุงููู ุงู
295
00:21:59,000 --> 00:22:03,880
head of the humerus ู
ุด ู
ุชุทุงุจูุฉ ุชู
ุงู
ุง ู
ุน ุงู
296
00:22:03,880 --> 00:22:06,820
leganoid cavity ุนุดุงู ููู ุญุงุฌุฉ ุงุณู
ูุง labrum
297
00:22:06,820 --> 00:22:10,680
acetaglialaeุ ูุฐู ุจุชุฒูุฏ ุงู congruence ุชุจุน ุงูุฌูุงุฒุฉ
298
00:22:10,680 --> 00:22:14,260
and there is typical one position of best fit in
299
00:22:14,260 --> 00:22:17,580
which the area of contact is maximumููุฐุง ุงู
300
00:22:17,580 --> 00:22:20,780
position ุงููู ุงุญูุง ุนุงุฏุฉ ุจูุณู
ูู closed back
301
00:22:20,780 --> 00:22:24,900
position ูู ุงู position ุงููู ุจููู ููู ุงูู
ูุตู ุฃูุชุฑ
302
00:22:24,900 --> 00:22:28,360
ุฅุดู ูู ุนูุฏูุง greatest stability ู
ูุฌูุฏุฉ ููู ุงููู
303
00:22:28,360 --> 00:22:33,340
ุจููู ุฃูุชุฑ ุฅุดู ู
ูุฌูุฏ ูู ุงูู
ูุตู ูู ุญุงูุฉ stability
304
00:22:33,340 --> 00:22:40,830
ููู ุชู
ุงุซ ุฃู ูู contact ุจูู ุงู two ends of boneุทุจุนุง
305
00:22:40,830 --> 00:22:44,830
ุฃู ุญุฑูุฉ ุจุชููู ูุนูู ุจุนูุฏุฉ ุนู ุงู closed back
306
00:22:44,830 --> 00:22:48,990
ูุจูุณู
ููุง ุงู lose back position ูู ูุฐู ุงูุญุฑูุฉ ุจุชููู
307
00:22:48,990 --> 00:23:01,150
ุฃูู ุงู contact ุจูู ุงู two bone endsู ุฃู
308
00:23:01,150 --> 00:23:05,450
ุญุฑูุฉ ุชุงููุฉ ูู ุงูู
ูุตู ูุนูู ุฒู ู
ุง ุงุญูุง ุจูุชููู
ุนู
309
00:23:05,450 --> 00:23:10,790
ุงูู
ูุงุตู ูู ูุฐู ุงูุญุฑูุฉ ุจููุฏุฑ ุงุญูุง ูุนู
ููุง ูุฅูู ููุง
310
00:23:10,790 --> 00:23:15,930
ุงูู
ูุตู ูุชูุฑ stable some articulating surfaces are
311
00:23:15,930 --> 00:23:20,970
shaped so that in both close and in back position
312
00:23:21,380 --> 00:23:25,420
there is either a large or small amount of contact
313
00:23:25,420 --> 00:23:29,540
area and consequently more or less stability ุทุจุนุง
314
00:23:29,540 --> 00:23:34,000
ูุฐุง ูุนูู ุงุญูุง ุจูุนุฑู ุงู ุงูู
ูุงุตู ูู ุจุนุถ ุงูู
ูุงุตู ูููู
315
00:23:34,000 --> 00:23:37,880
ูุงููู ูุฐุง relaxing position ูุนูู ุงู ุงู ligaments
316
00:23:37,880 --> 00:23:41,800
ุจุชููู ูุชูุฑ ุฑุงููุฉ ูุฃ ูุงููู ูุฐุง ููุง ุจููุฏุฑ ูุนู
ู ุญุฑูุฉ
317
00:23:41,800 --> 00:23:45,290
ุงู ู
ุงุจููุฏุฑุด ูุนู
ู ุญุฑูุฉุทุจุนุง ููุง ุงู acetabulum
318
00:23:45,290 --> 00:23:49,170
provide a relatively deep socket for the head ุทุจุนุง
319
00:23:49,170 --> 00:23:53,930
ู
ูุฌูุฏุฉ ุงู acetabulum ูู ุฌุฑุงุจ ูุงู
ู ูู
ุญุงุทุฉ ูู ุงู
320
00:23:53,930 --> 00:23:58,230
head of a female ู
ุญุงุทุฉ ุจุงู acetabulum ูุฏุงุฆู
ุง ูู
321
00:23:58,230 --> 00:24:02,350
ุนูุง large amount of contact ุนุดุงู ููู ุงุญูุง ุจูุณู
ู ุงู
322
00:24:02,740 --> 00:24:05,780
ุงูู hip joint is a stable joint ุฃู
ุง ุงูู shoulder
323
00:24:05,780 --> 00:24:09,400
ูุฃ ูู ุนูุฏูุง small glenoid ูุตุฉ ู ูู ููุณ ุงูููุช ูู ุงู
324
00:24:09,400 --> 00:24:12,520
vertical diameter ูู ุงุญูุง ูุตูุง ูู ุนูุฏูุง
325
00:24:12,520 --> 00:24:15,500
approximately 75% of the vertical diameter ูู
326
00:24:15,500 --> 00:24:18,600
contact of the humeral head and horizontal
327
00:24:18,600 --> 00:24:23,080
diameter ุจุณ ูู ุนูุฏูุง 60%ู
ูุงุฑูุฉ ุจู
ูุงุฑูุฉ ู
ูุงุฑูุฉ
328
00:24:23,080 --> 00:24:28,620
ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ
329
00:24:28,620 --> 00:24:36,840
ู
ูุงุฑูุฉ ู
ูุงุฑูุฉ
330
00:24:36,860 --> 00:24:41,680
ุจุงููุณุจุฉ ููู
ุดููุฉ ุงูู
ุฑุชุจุทุฉ ูู ุงูู
ุฌูุฏ ูุญู ูุนุฑู ุฃู
331
00:24:41,680 --> 00:24:45,280
ุงูู
ุฌูุฏ ูู ุฃูุชุฑ ู
ุฌูุฏ ู
ูุจุงูู ููุฐูู ุฃูุชุฑ ู
ุฌูุฏ ู
ุณุชูู
332
00:24:45,280 --> 00:24:50,240
ูุฃูู ูุง ููุฌุฏ ู
ูุงุฑูุฉ ุญููููุฉ ุจูู ุฑุฆูุณ ุงููููู
ูุฑุณ
333
00:24:50,240 --> 00:24:55,100
ูุงูุฃุณุงุชุฑููุงุจ ุฅุตูุงุญุงุช ุฃูุงุทู
ุฉ ููุชุบููุฑ ูู ุดูู ูู
ุนู
ูู
ุฉ
334
00:24:55,100 --> 00:24:58,900
ู
ุฌูุฏ ู
ุฌูุฏ ู
ูุจุงูู ูู
ุนู
ูู
ุฉ ู
ุฌูุฏ ู
ูุจุงูู ูู
ุนู
ูู
ุฉ ู
ุฌูุฏ
335
00:25:01,800 --> 00:25:05,360
Some people have joints that are more or less
336
00:25:05,360 --> 00:25:08,620
stable than averageุ ุฎููููุง ูููู ุฅู ุงููุงุณ ุงููู ูู
337
00:25:08,620 --> 00:25:11,880
ุนูุฏูู
flexibility ูุฏูู ููุชููู
ุนูููู
ูุงุญูุงุ ู ูู
338
00:25:11,880 --> 00:25:14,920
ูุงุณ ุจูููู ุฅู ูู
ูุนูู ุน ุงูุณุฑูุน ู
ู
ูู ูุตูุฑ ูู ุนูุฏู
339
00:25:14,920 --> 00:25:18,420
ุฒูุบุงู ูู ุงูู
ูุตูุ ุน ุงูุณุฑูุน ู
ู
ูู ุฅูู ูุตูุฑ ูู ุนูุฏู
340
00:25:18,420 --> 00:25:22,300
ุฎูู ู
ุซูุง ูู ุงูู
ูุตูุ ูููุฐุง ุงู variations ุจุชููู
341
00:25:22,300 --> 00:25:26,650
individualregion of the ligament and the muscle
342
00:25:26,650 --> 00:25:31,170
ุทุจุนุง ูุฐู ู
ู ุงูุนูุงู
ู ุงู ligament ู ุงู muscle ู ุงู
343
00:25:31,170 --> 00:25:33,790
muscle tendon affect relatively the stability of
344
00:25:33,790 --> 00:25:37,070
the joint ุทุจุนุง ุงู knee joint ุงุญูุง ุจูุชุนุฑู ุงูู ุงู
345
00:25:37,070 --> 00:25:41,790
shoulder joint ุงู bone ุจูููู ุงู configuration is
346
00:25:41,790 --> 00:25:46,970
not particularly stable ููุดุ ูุฃูู ูู ุญุฌู
ุงูุนุถู
347
00:25:46,970 --> 00:25:51,820
ุงููู ู
ูุฌูุฏ ู
ุฎุชูู ู
ุง ุจููุงูู two ends of the bone
348
00:25:51,820 --> 00:25:55,720
ูุนูู ู
ุซูุง ุงูู humerus ุงูู head ุชุจุนุชูุง ุฃูุจุฑ ู
ู ุงูู
349
00:25:55,720 --> 00:26:00,080
acetabulum ุงู femoral condyle ุฃูุชุฑ ู
ู ุงู plateau
350
00:26:00,080 --> 00:26:05,080
ุชุจุนุช ุงูุชูุจูุง ุทุจุนุง ุชููู ูู ุนูุง ุฏุงุฆู
ุง ููุฌุงู
ู ู
351
00:26:05,080 --> 00:26:08,700
muscle contribute in the stability ููู ุงููู ุจุชุณุงุนุฏ
352
00:26:08,700 --> 00:26:12,200
ุนูู ุงู holding the articular bones in together
353
00:26:12,200 --> 00:26:16,360
ุทุจุนุง ุฅุฐุง ูุงูุช ูุฐู ุงู tissue weak ูู
ู ูุชูุฌุฉ disuse
354
00:26:16,360 --> 00:26:20,750
ุฃู laxityfrom being overstretched ุทุจุนุง ุจุชูู ุงู
355
00:26:20,750 --> 00:26:24,370
stability ู ุจุตูุฑ ูู reduction ูู stability ู ุจุตูุฑ
356
00:26:24,370 --> 00:26:27,870
ูู ุนูุฏู ู
ุดููุฉ ู
ู
ูู ูููู ุงูู
ูุตู ู
ุนุฑุถ ูุฅูู ูุตูุฑ ูู
357
00:26:27,870 --> 00:26:31,390
dislocation ุงู subluxation ุทุจุนุง ุงู strong ligament
358
00:26:31,390 --> 00:26:34,970
ุงู muscle ุฏุงุฆู
ุง ุจูุฒูุฏ ุงู stability ุนุดุงูู ุงุญูุง ุญุชู
359
00:26:34,970 --> 00:26:38,410
ูู ูุนูู ูู ุญูุงุชูุง ุงูุนู
ููุฉ ูู ุตุงุฑ ูููุง ุงู ู
ุดููุฉ ูู
360
00:26:38,410 --> 00:26:41,270
ุงู ligament ุจูุนู
ู ุนูู ุชูููุฉ ุงูุนุถูุงุช ุงูู
ุญูุทุฉ
361
00:26:41,270 --> 00:26:46,220
ุจุงูู
ูุตู ุญุชู ุงูููุถ ุงูุฎูู ุงูุญุงุตู ูู ุงู ligamentุนู
362
00:26:46,220 --> 00:26:50,660
ุทุฑูู ุงู stability of the muscle ุทุจุนุง ููุง ุงู
363
00:26:50,660 --> 00:26:53,200
stretching of the quadriceps and the hamstring
364
00:26:53,200 --> 00:26:56,860
group ุฏู ุนุงุฏุฉ ูู ุงููู ุจูุณุงุนุฏูู ูู
ุง ุจูููููุง stable
365
00:26:56,860 --> 00:27:00,980
ูุฏููุฉ to muscle ุจูุณุงุนุฏ ุนูู ุงู stability of the
366
00:27:00,980 --> 00:27:05,340
knee ู ุทุจุนุง ุงุญูุง ููุดูู ุงู complexity ุชุจุน ุงู knee
367
00:27:05,340 --> 00:27:08,220
joint ูู ุงู illustration ุฒู ู
ุง ุงูุชูุง ุดุงูููู ุงู
368
00:27:08,220 --> 00:27:11,380
knee joint ุจุชู
ุชุน ุจุนุฏุฏ ูุจูุฑ ู
ู ุงู ligaments ู ุงู
369
00:27:11,380 --> 00:27:14,380
tendons ุงููู ุจุชู
ุฑุนููู ูู ุนูุง ุงู lateral collateral
370
00:27:14,380 --> 00:27:18,580
ligament ู ุงู media collateral ligament ุฒู ู
ุง ุงุญูุง
371
00:27:18,580 --> 00:27:21,840
ุดุงูููู ู ูู ุนูุง media meniscus ู ูู ุนูุง lateral
372
00:27:21,840 --> 00:27:25,560
meniscus ูุฏููุฉ ุจูุฒูุฏูุง ุงู congruent ุณุจุนุช ุงู joints
373
00:27:25,560 --> 00:27:28,600
ู ูู ุนูุง ุงู anterior ู ุงู posterior ุงูุฌุฑุงููุงุช
374
00:27:28,600 --> 00:27:32,740
ligament ุงููู ุจูุฒูุฏูุง ุงู stabilityTowards the
375
00:27:32,740 --> 00:27:35,800
anterior and posterior drawer of the knee ููู
376
00:27:35,800 --> 00:27:40,160
ุนูุฏูุง ุงูุชูุฏุจุงุช ุงูููู ู ูุฐู ูููุง ุงูู
ูุธูู
ุฉ ุงููุจูุฑุฉ
377
00:27:40,160 --> 00:27:44,740
ุจุชุนู
ู ุนูู ุญู
ุงูุฉ ู
ุตู ุงูููู ู
ู ุฃู ูุตูุฑ ููู ุฃู
378
00:27:44,740 --> 00:27:49,240
displacement ุฃู distraction ุทุจุนุง ูู
ุงู ุงู angle of
379
00:27:49,240 --> 00:27:54,670
attachment of the most tendonto the bone ุจุณุงุนุฏ
380
00:27:54,670 --> 00:27:58,690
ุนุงุฏุฉ ุงู arrangement ูุฐู ุนูู ุฅู ุงูุนุถูุฉ ูู ุนู
ูุช ุฃู
381
00:27:58,690 --> 00:28:01,630
tension when the muscle exert tension ุงู
382
00:28:01,630 --> 00:28:04,470
articulation end of the bone and the joint across
383
00:28:04,470 --> 00:28:08,910
are pulled closer together ุญุชู ุชุชุฒูุฏ ู stability
384
00:28:08,910 --> 00:28:12,260
to enhance stability of the jointูู ูุฐู ุงูุญุงูุฉ
385
00:28:12,260 --> 00:28:15,400
usually found when the muscle on the opposite side
386
00:28:15,400 --> 00:28:18,180
of the joint producing simultaneously ูู ุญุงุฌุฉ ุงุณู
ุฉ
387
00:28:18,180 --> 00:28:22,320
synergy ุจูู ุงูุนุถูุงุช ูุฐู ุจุชุดุบู ูุชุงููุฉ ุจุชุดุบู ุจุชุณุงุนุฏ
388
00:28:22,320 --> 00:28:27,500
ุนูู ุฃููุง ุชุญู
ู ูุชุนู
ู ุญู
ุงูุฉ ุญูู ุงูู
ูุงุตู ุงูู
ูุงุตู ูู
ุง
389
00:28:27,500 --> 00:28:30,600
ุชููู fatigue ูุฐุง ุจูุฃุซุฑ ุนูู ุงู joint stability ู ุงู
390
00:28:30,600 --> 00:28:34,040
injuryุนูู ุทูู ุจุชุญุตู ูุจุตูุฑ ุนูุฏู .. ุงุฐุง ูู ุนูุฏู
391
00:28:34,040 --> 00:28:37,380
fatigability ูู ุงู muscle ูุงููุง ุจูููู ุงูุญู
ุงูุฉ ุนูู
392
00:28:37,380 --> 00:28:42,080
ุงูู
ูุตู ุงูู ููุจูู ุงูู
ูุตู ุจูููู less stable ุทุจุนุง ุงุฐุง
393
00:28:42,080 --> 00:28:46,940
ุตุงุฑ ูู ุนูุฏูุง crushier ligament rupture ุจูููู ูู
ุง
394
00:28:46,940 --> 00:28:50,000
ุงู tension ูู ุงู fatigue muscle surrounding ุฏููู
395
00:28:50,000 --> 00:28:53,560
inadequate to protect ุงู crushier ligament from
396
00:28:53,560 --> 00:28:57,760
being stretched beyond their elastic limitุทุจุนุง ูู
397
00:28:57,760 --> 00:29:00,120
ุนูุฏูุง other connective tissues ุฒู ุญุงุฌุฉ ุงุณู
ูุง
398
00:29:00,120 --> 00:29:03,040
ุงููุงุดูุง ุงููุงุดูุง surrounding the muscle ูููููุง ูู
399
00:29:03,040 --> 00:29:09,740
ุนูุฏูุง ุดูุท ุฏุงูู
ุง ุจุญูุท ุงูุนุถูุงุช ุทุจุนุง ุงู bundles of
400
00:29:09,740 --> 00:29:12,600
muscle fibers within the muscle provide protection
401
00:29:12,600 --> 00:29:16,140
and support ููุฐุง ุงูุดูุก ู
ูุทูู ุงู particularly
402
00:29:16,140 --> 00:29:17,860
strong permanent
403
00:29:22,230 --> 00:29:25,830
ุงููุงุดูุง ุฒู ุงูู ileotapial band ุงููู ู
ูุฌูุฏุฉ ูู ุงูู
404
00:29:25,830 --> 00:29:29,410
lateral aspect of the knee ูุฐู ุจุชุนู
ู ุนูู ุฒูุงุฏุฉ ุงู
405
00:29:29,410 --> 00:29:34,310
stability of the knee joint ุงููุงุดูุง ูุงุดูุง and the
406
00:29:34,310 --> 00:29:39,070
skin on the exterior of the body and other tissue
407
00:29:39,430 --> 00:29:42,670
that contribute and show integrity ุทุจุนุง ุงุญูุง ุงูุฌุณู
408
00:29:42,670 --> 00:29:46,550
ูููุง ูู ู
ุญู ุจุงููุงุดูุฉ ูุจุนุฏ ุงููุงุดูุฉ ูุนูู ุงุญูุง ุจูุชููู
409
00:29:46,550 --> 00:29:51,630
ุนู muscles ุงู muscle ูุฐู sorry ุจูุชููู
ุนู ุงูุฌูุงุฒ
410
00:29:51,630 --> 00:29:57,040
ุงูููููู ุงููู ูู ุจูููู ูููุงูุนุธุงู
ุงูู
ุฑุชุจุทุฉ ู
ุน ุจุนุถ ุนู
411
00:29:57,040 --> 00:30:00,320
ุทุฑูู articulations ุงููู ูู ุงู articulations ูุฐู
412
00:30:00,320 --> 00:30:03,320
ูููุง ุฃุฑุจุทุฉ ู connective tissue ูู
ุงู ุงูู
ุตู ุจุชููู
413
00:30:03,320 --> 00:30:06,620
ู
ุญูุท ูุฐุง ุงูุนุธูู
ุนุดุงู ุชุฒูุฏ ุงู stability ุชุจุนุชู ู
414
00:30:06,620 --> 00:30:09,780
ูู
ุงู ูู ุนููุงู ูุงุดูุฉ ู ูู ุนููุงู skin ูุฐู ูููุง
415
00:30:09,780 --> 00:30:13,360
ู
ูุธูู
ุฉ ุฑุจูุง ุณุจุญุงูู ูุชุนุงูู ุฎูููุง ุญุชู ุชุณุงุนุฏ ุนูู ุงู
416
00:30:13,360 --> 00:30:16,580
stability ู ุชุฒูุฏ ุงู stabilityูุทุจุนุง ููุง ุจููุตู
417
00:30:16,580 --> 00:30:20,600
ูููุงูุฉ ู
ุญุงุถุฑุชูุง ููููู
ุฒู ู
ุง ุงุญูุง ุจุณ ุจููุถุญ ูู
418
00:30:20,600 --> 00:30:24,520
ููุงูุชูุง ุงูุงูููุชูุจูุง ุงู tract ุงููู ุจุชูุฌู ู
ู ุงู hip
419
00:30:24,520 --> 00:30:29,940
ูุฃุณูู knee ุญุชู ุชุฒูุฏ ุงู stability ุชุจุน ุงู lateral
420
00:30:29,940 --> 00:30:35,320
part of the knee joint ุจูู ุงุญูุง ุจูููู ูุตููุง ูููุงูุฉ
421
00:30:35,320 --> 00:30:39,900
ู
ุญุงุถุฑุชูุง ููููู
ูุฑุงูู
ุงู ุดุงุก ุงููู ูู ู
ุญุงุถุฑุฉ ูุงุฏู
ุฉ
422
00:30:39,900 --> 00:30:43,780
ุจุฅุฐู ุงููู ููุชููู
ูููุง ุนู ุงู joint flexibility
|