File size: 40,712 Bytes
9d58f08 |
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 |
1
00:00:04,910 --> 00:00:07,990
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุงูุณูุงู
ุนูููู
ูุฑุญู
ุฉ ุงููู
2
00:00:07,990 --> 00:00:13,110
ูุจุฑูุงุชู ุงูู
ุญุงุถุฑุฉ ุงูููู
ุณุชููู ู
ุญุงุถุฑุฉ ูุณุจูุน ุงูุญุงุฏู
3
00:00:13,110 --> 00:00:18,650
ุนุดุฑ ุนู ุงู somatic sensation ุงูู
ุญุงุถุฑุฉ ุฑุงุญ ุฃูุณู
ูุง
4
00:00:18,650 --> 00:00:23,550
ุฅูู ุฌุฒุฆูู ูู ุงูุจุฏุงูุฉ ุฑุงุญ ุฃุชุทูุน ุฅูู ุงู receptors ุฃู
5
00:00:23,550 --> 00:00:26,030
sensory receptors ูุฃููุงุน ุงู sensory receptors
6
00:00:26,030 --> 00:00:29,470
sensory
7
00:00:29,470 --> 00:00:32,570
system sensory system
8
00:00:35,120 --> 00:00:41,360
ุชููุณู
ุฅูู somatic sensationุ special sensesุ
9
00:00:41,360 --> 00:00:45,280
visceral sensation ู organic sensation
10
00:00:47,150 --> 00:00:50,010
ุงูุงุณุจูุน ูุฐุง ุงููู ูู ุงุณุจูุน ูุฐู ุนุดุฑุฉ ุฑุงุญ ุงุชููู
ุนูู
11
00:00:50,010 --> 00:00:53,050
somatic sensation ุงุณุจูุน ุงูุซุงููุฉ ุนุดุฑุฉ ุฑุงุญ ุงุชููู
ุนูู
12
00:00:53,050 --> 00:00:56,910
ุงู special sensation somatic sensation ูู ุนุจุงุฑุฉ ุนู
13
00:00:56,910 --> 00:01:02,270
sensation from the skin and deep tissue sensation
14
00:01:02,270 --> 00:01:06,270
from the skin and deep tissue ูุนูู ู
ู ูููุ deep
15
00:01:06,270 --> 00:01:12,550
tissueุ muscleุ jointsุ ligaments conducted to CNS
16
00:01:14,700 --> 00:01:20,640
through the somatic nerves ุงูุฅุดุงุฑุฉ ุจุชุตู ููCNS ู
ู
17
00:01:20,640 --> 00:01:25,940
ุงููreceptors ุนู ุทุฑูู somatic nerves special
18
00:01:25,940 --> 00:01:31,100
sensation reaching the central nervous system
19
00:01:31,100 --> 00:01:36,220
through specialized cranial nerves ุงูุฅุดุงุฑุฉ ุจุชุตู
20
00:01:36,220 --> 00:01:39,260
ููcentral nervous system ู
ู ุฎูุงู specialized
21
00:01:39,260 --> 00:01:46,960
nerves ู
ุซู sense of visionุงููุธุฑ ุซุงูู sense of
22
00:01:46,960 --> 00:01:53,920
hearing and equilibrium sense of smell sense of
23
00:01:53,920 --> 00:01:59,040
taste ูููู ุฅู ุงููุธุฑ vision ุงูุณู
ุน ุงูุญุงุณุณ ุงูุดู
24
00:01:59,040 --> 00:02:05,740
ุงูุชุฐูู ูุฐุง ูุนุชุจุฑ special sensation ุชูุงุชุฉ visceral
25
00:02:05,740 --> 00:02:09,180
sensationincluding all sensations from the
26
00:02:09,180 --> 00:02:13,220
visceral structures ุฃู from the internal organs
27
00:02:13,220 --> 00:02:18,000
ุชุตู ู ุงููCNS through autonomic nerves ููู
ุฃุชููู
ูุง
28
00:02:18,000 --> 00:02:22,480
ุนู autonomic nervous system organic sensation ุงููู
29
00:02:22,480 --> 00:02:27,560
ูู hunger, thirst and sexual sensation ููู ูุนุชุจุฑ
30
00:02:27,560 --> 00:02:32,300
ูุฐุง organic sensation ุฑุงุญ ุฃุจุฏุฃ ุงูุฃู ุงูุฌุฒุก ุงูุฃูู
31
00:02:32,300 --> 00:02:37,840
ุจู
ุญุงุถุฑุฉ ุนู sensory receptorsSensory Receptors ูู
32
00:02:37,840 --> 00:02:43,060
ุนุจุงุฑุฉ ุนู Specialized Structures Located at the
33
00:02:43,060 --> 00:02:46,800
Peripheral Beginning of Sensory Neurons ูู
ูู ุฃูุฏู
34
00:02:46,800 --> 00:02:54,280
ูุฐุง nerve ุฑุงูุญ ู cell body ุจุนุฏูู ุจูุทูุน ู
ูู axon
35
00:02:54,280 --> 00:02:58,760
ูุฐุง nerve ุงูุชุฑ ู
ู ููุฑุจ ูููููุง ุงููุงุนูู
multi
36
00:02:58,760 --> 00:03:02,780
neurons ุชู
ุงู
37
00:03:02,780 --> 00:03:09,360
ูุฐุง ุงูููุนูุฐุง ุงูุณู ููุฐู ุฏููุฏุฑูุชุฒ ููุฐู ู
ุฑุชุจุงู
38
00:03:09,360 --> 00:03:12,980
ุฏููุฏุฑูุชุฒ
39
00:03:12,980 --> 00:03:16,760
ูู ุงูุจุฏุงูุฉ ุชุจุนุช ุงู ููุฑูู ุงู ุงู ููุฑู ูุงูุจุฑุฒ ููู
40
00:03:16,760 --> 00:03:24,540
ุฑูุณูุจุชุฑุฒ ูููู ุฑูุณูุจุชุฑุฒ ูุนุชุจุฑูุง beginning of the
41
00:03:24,540 --> 00:03:33,640
sensory neuron what's the function of sensory
42
00:03:33,640 --> 00:03:41,250
receptorsุฃูู ูุธููุฉ ูู Detectors They detect energy
43
00:03:41,250 --> 00:03:45,830
ุฃู stimulus change in both external and internal
44
00:03:45,830 --> 00:03:49,690
environment ูููู ุฅู ูู ุฃูู ุดู ุชุนู
ู ุนู
ููุฉ detection
45
00:03:49,690 --> 00:03:56,630
ุจุชุญุฏุฏ ููู ุงู energy ู ุฅูุด ููุน ุงู energy ุซู
ุงูู
46
00:03:56,630 --> 00:04:04,390
Transducerุนู
ููุฉ transform the stimulus into action
47
00:04:04,390 --> 00:04:10,110
potential ูุนูู ุนู
ููุฉ ุชุญููู ุงู stimulus ู action
48
00:04:10,110 --> 00:04:16,050
potentialุซูุงุซุฉ generator ูุนู
ู generation of nerve
49
00:04:16,050 --> 00:04:20,290
impulses in sensory nerve ูุจุชุนู
ู ุนู
ููุฉ generation
50
00:04:20,290 --> 00:04:24,390
ุจุชุฏุฎู ุงูุฅุดุงุฑุฉ ู
ู node of renvier ู node of renvier
51
00:04:24,390 --> 00:04:27,970
ุนู ุทุฑูู passive transmission ูุจุณุงุนุฏ ูู ุงูุชุฑุงูุณู
ูุดู
52
00:04:27,970 --> 00:04:34,110
ุงููู ูู myelin sheath myelin sheath ุฃุฑุจุน they
53
00:04:34,110 --> 00:04:39,320
inform the CNSabout different sensations or
54
00:04:39,320 --> 00:04:43,080
changes occurring inside and outside the body
55
00:04:43,080 --> 00:04:48,040
ููู
ุงู ุจุชุฎุจุฑ ุงููCNS ุนู ุงูุฃููุงุน ุจุชุงุนุฉ ุงู sensation
56
00:04:48,040 --> 00:04:54,740
ุงููู ุจุชุญุฏุซ ูู ุฏุงุฎู ุงูุฌุณู
ุฃู ุฎุงุฑุฌ ุงูุฌุณู
receptor
57
00:04:54,740 --> 00:05:01,140
potential receptor potential ูู
58
00:05:01,140 --> 00:05:04,700
ุนู
ููุฉ ุชุญููู
59
00:05:06,580 --> 00:05:12,060
ุงูุงุณุชูู
ููุงุณ ุงู ุงู energy ู action potential ูุจูู
60
00:05:12,060 --> 00:05:15,840
ุนู
ููุฉ ุชุญููู ุงูุงุณุชูู
ููุงุณ ุงู ุงู energy ู action
61
00:05:15,840 --> 00:05:26,540
potential ุจูุณู
ููุง receptor potential ูู ุงู ููุงูุชู
62
00:05:26,540 --> 00:05:31,620
ูุฐุง
63
00:05:31,620 --> 00:05:32,620
ุงูุง ุจุฑุณู
ุงู axon
64
00:05:40,520 --> 00:05:48,620
ู ููุฐุง ุญูู ุงู axon ุงูู ููุงูุชู ุจุชููู nonmyelinated
65
00:05:48,620 --> 00:06:05,280
ูุนุฏูู ุจูุฌู ูู
ูููู ุดูุช ูุฐุง
66
00:06:05,280 --> 00:06:11,310
ูู
ูููู ุดูุช ุจูููู ู
ุฑุชุจุท ู
ุน ุฅุดูุงู cellsุงูุง ุจุฑุณู
ููู
67
00:06:11,310 --> 00:06:18,070
ูุฏู ุงุดุงุฑุฉ ุงุชุฌุงูู ุงูุด ุงู signal ููุฃ ูู ุงู wrist ..
68
00:06:18,070 --> 00:06:25,630
ูู ุงู wrist without stimuli .. ุจุฏูู stimuli ุงู
69
00:06:25,630 --> 00:06:30,950
sensory nerve endings are in polarized state ูุนูู
70
00:06:30,950 --> 00:06:34,650
ุงูุด in polarized stateุ ุจูููู ุงูุตูุฏููู
ุฎุงุฑุฌ ุงู ..
71
00:06:34,650 --> 00:06:38,340
ุงู receptors ุงูุตูุฏููู
ุจูููู ุฎุงุฑุฌ ุงู receptorsู ุงู
72
00:06:38,340 --> 00:06:44,920
terminal part ู ููุงูุฉ ุงูุด ุงู nerve ุจุชููู none ุงู
73
00:06:44,920 --> 00:06:53,400
unmyelinated ูุนูู ู
ุงููุด ูููุง myelin ุดูุท ุทูุจ if it
74
00:06:53,400 --> 00:06:57,340
is stimulated ุงุฐุง ุญุฏุซ ุงู stimulation ูู ููู ุฏู
75
00:06:57,340 --> 00:07:02,240
ูููู ูู ุงู wrist ุจูููู ุงู sodium ูู ุงูุฎุงุฑุฌ
76
00:07:07,630 --> 00:07:12,770
ุตูุฏููู
ูู ุงูุฎุงุฑุฌ ูุฐู ุจุชุณู
ููุง ุญุงูุฉ ุงููุ ุงููู ูู
77
00:07:12,770 --> 00:07:16,190
polarized state polarized state ูุฐู ุจุชุณู
ููุง
78
00:07:16,190 --> 00:07:21,390
polarized state ุทูุจ ูู ุญุฏุซ stimulation ุงู partial
79
00:07:21,390 --> 00:07:25,110
stimulation ุจูุญุฏุซ ุนู
ููุฉ ุจุชุณู
ููุง partial
80
00:07:25,110 --> 00:07:31,310
depolarization partial depolarization ุงูุด ุจูุญุฏุซุ
81
00:07:31,310 --> 00:07:37,950
ุจููุชุญูุง ุงู sodium channels ูุงูุตูุฏููู
ุจูุฏุฎู ูููุูู
82
00:07:37,950 --> 00:07:42,750
ุงู cell receptors ุจุฏุฎู ุงูุตูุฏููู
ููู ูู ุงู cell
83
00:07:42,750 --> 00:07:49,390
receptors ู ุจุฒูุฏ ูู
ูุฉ ุงูุตูุฏููู
ูู ุงู intracellular
84
00:07:49,390 --> 00:07:53,710
ุฏุงุฎู ุงู receptors ูุฐู ุงูุนู
ููุฉ ุจูุณู
ููุง partial
85
00:07:53,710 --> 00:08:01,810
depolarization ุนู
ููุฉ
86
00:08:01,810 --> 00:08:07,480
ุฏุฎูู ุงูุตูุฏููู
ูู
ูุถูุน ุงู cell body ู ุญุฏูุท ุงู partial
87
00:08:07,480 --> 00:08:11,100
depolarization ูุฐู ุงูุนู
ููุฉ ุจูุณู
ููุง receptor
88
00:08:11,100 --> 00:08:14,800
potential receptor potential ูุนูู ุงูู ุงู receptor
89
00:08:14,800 --> 00:08:18,320
potential ุงุญูุง ุญูููุง ุงู energy ุงู ุงู stimulus ู
90
00:08:18,320 --> 00:08:24,040
receptor potential ุจุนุฏ ููู ุงู receptor potential
91
00:08:24,040 --> 00:08:31,260
ุงูุฅุดุงุฑุฉ ุฑุงุญ ุชุตู ูู nerve passively ูุชุชูุตู ู
ู ููุถ
92
00:08:31,260 --> 00:08:35,370
overrun ูููุงูู Node of Runway ุนู
ููุฉ ููุฒ ูุชู
ู
93
00:08:35,370 --> 00:08:40,110
ุชูุตูู ููุฅุดุงุฑุฉ ุฑุงุญ ูุณุงุนุฏ ูู ุงูุนู
ููุฉ ูุฐู ุงููู ูู
94
00:08:40,110 --> 00:08:45,290
Myelin Shear The receptor potential is passively
95
00:08:45,290 --> 00:08:51,710
conducted to the first overrun vein causing deep
96
00:08:51,710 --> 00:08:54,850
depolarization ุจุนุฏูุง ูู
ุง ูุญุฏุซ ุนู
ููุฉ ููุฒ ููุง
97
00:08:54,850 --> 00:08:58,950
passive ูุฐู ุงูุนู
ููุฉ ุจูุณู
ููุง deep depolarization
98
00:08:58,950 --> 00:09:02,810
ูุนูู ูุทูุน ุจุงุฎุชุตุงุฑูู ุงู rest ุจูููู ุนู
ููุฉ
99
00:09:02,810 --> 00:09:06,010
polarization ุนู
ููุฉ ุงููุ polarized state ุจูููู
100
00:09:06,010 --> 00:09:09,270
ุงูุณูุฏููู
ุฎุงุฑุฌ ุงูุดุ ุงู receptor cells ุญุฏุซ
101
00:09:09,270 --> 00:09:13,090
stimulation ุจููุชุญูุง ุงู sodium channels ูุงูุณูุฏููู
102
00:09:13,090 --> 00:09:17,110
ุจูููุช ุฏุงุฎู ุงู cell receptorsูุฐู ุงูุนู
ููุฉ ุจูุณู
ููุง
103
00:09:17,110 --> 00:09:23,710
Receptor Potential ุฃู Partial Depolarization ุจุนุฏ
104
00:09:23,710 --> 00:09:27,850
ุงูุฅุดุงุฑุฉ ุจุชุฑูุญ ูู first node of Run Verb Passively
105
00:09:27,850 --> 00:09:30,410
ูุจุนุฏูู ุจูุตูุฑ ุนู
ููุฉ ููุฒ ุนู ุทุฑูู ุงู Myelin Sheath
106
00:09:30,410 --> 00:09:35,070
ูุฐู ุงูุนู
ููุฉ ุงูุฃุฎูุฑุฉ ุจูุณู
ููุง Deep Depolarization
107
00:09:35,070 --> 00:09:40,290
Deep Depolarization Adaptation of Receptors
108
00:09:42,410 --> 00:09:46,470
this is decline in the frequency of discharge of
109
00:09:46,470 --> 00:09:51,030
action potential from receptor that occurs on
110
00:09:51,030 --> 00:09:55,630
maintained stimulation by stimuli of a constant
111
00:09:55,630 --> 00:10:02,490
strength ู
ุซููุง ุงุดุชุฑููุง ุฃุทูุฑ ุฑูุญ ุญููุฉ ุฌุฏูุฏุฉ ุฏูุนูุง
112
00:10:02,490 --> 00:10:07,070
200-300 ุดูู ูุงุดุชุฑููุงูุง ุญุทููุง ุฃูู ููู
ู
ููุง ุฑูุญุชูุง
113
00:10:07,070 --> 00:10:11,350
ุญููุฉ ูู
ุงุดุงุก ุงูููุซุงูู ููู
ุซุงูุซ ููู
ุจุทููุง ูุดูู ู
ู
114
00:10:11,350 --> 00:10:13,870
ุงูุฑูุญุฉ ุงุญูุงุ ุจู
ุง ุงูู ููุณ ุงูููู
ูุงุก ุงููู ุงูุง ุญุงุทุทูุง
115
00:10:13,870 --> 00:10:16,670
ุงูู ููู
ู ู
ู ููุณ ุงูููุจูุงุ ููู ุงูุง ุงูู ุตุงุฑ ุนูุฏู
116
00:10:16,670 --> 00:10:22,350
ุนู
ููุฉ ุชูููู ู
ุนุงูุง adaptationุ ุจูู
ุฑ ู
ู ุนูุฏ ุงููุงุฏูุ
117
00:10:22,350 --> 00:10:24,750
ุจูููู ุงูู ูู ุงููู ููู ุงูุนุงูู
ุนุงูุดูู ููุง ุฌุงูุจ
118
00:10:24,750 --> 00:10:28,360
ุงููุงุฏู ุจุงูุฑูุญุฉุููุง ุญุงุฌุฉ ูุฐูู ุงููุงุณ ุตุงุฑูุง ู
ูุนุฏููุฉ
119
00:10:28,360 --> 00:10:32,000
adaptation ูู smell receptors ุจุทููุง ูุดู
ูุง ุงูุฑูุญุฉ
120
00:10:32,000 --> 00:10:34,880
ููู ุงุญูุง ุงูู ู
ุง ููุฌู ูุดู
ูุง ุตุฏููู ูู ูุนุฏูุง ู
ุนูู
121
00:10:34,880 --> 00:10:38,220
ุณุงุนุฉ ุณุงุนุชูู ุฑุงุญ ูุจุทู ูุดู
ุงูุฑูุญุฉ ูู
ุงู ุฒููู
ุตุงุฑ
122
00:10:38,220 --> 00:10:41,860
ุนู
ููุฉ ุงูุด adaptation ุทุจ ููุด ุตุงุฑ adaptationุ ุงูุด
123
00:10:41,860 --> 00:10:46,720
ุงููู ุญุฏุซุ ุงุญูุง ุนุงุฑููู ุงู stimulus ู
ูุฌูุฏ ูู ุงู
ุง
124
00:10:46,720 --> 00:10:49,280
ุงูุฑูุญุฉ ูููุณุฉ ุงู ุงูุฑูุญุฉ ูุฑููุฉ ู
ูุฌูุฏุฉ ูู ูู ุงูุฑูุญุฉ
125
00:10:49,280 --> 00:10:54,660
ู
ุงุชุบูุฑุชุด ุจููุณ ุงูููุฉ ููู ุงูุง ุงุณุชูุจุงูู ููุง ุฎู ุงุญุณุงุณู
126
00:10:54,660 --> 00:11:00,670
ููุง ุฎูุฅูุด ุงููู ุจูุญุฏุซ ุฅูู ุงู sodium ุฏุฎู ูููู
127
00:11:00,670 --> 00:11:07,650
ุงูุฎูุงูุง ูู ุงูุญุงูุฉ ุฏู ุจุนุฏ ูุชุฑุฉ ู
ู ุงูุฒู
ู ุจูุตูุฑ ุนู
ููุฉ
128
00:11:07,650 --> 00:11:11,650
ุฅุฑูุงู ูุชุนุจ ูู sodium channels ุจูุตูุฑ closureุ
129
00:11:11,650 --> 00:11:15,730
ุจูุณูุฑุ ุจูุตูุฑ ุบูุงู ููุฐู ุงู sodium channel ุจุชุจุทู
130
00:11:15,730 --> 00:11:19,530
ุชููุช ุงู sodium ูููุ Intracellularุ ุฏุงุฎู ุงูุฎููุฉ
131
00:11:19,530 --> 00:11:26,060
ุจููู ุนู
ููุฉ ุฅูุดุุงู potential receptor potential ุจูู
132
00:11:26,060 --> 00:11:31,740
ุงูุด ุงู discharge of impulse ุงููู ุฎุฑุฌ ู
ู ุงู
133
00:11:31,740 --> 00:11:35,160
receptor potential ูุฐุง ูู ุนู
ููุฉ ุงู adaptation
134
00:11:35,160 --> 00:11:40,580
ุนู
ููุฉ ุงูุชูููู ุงู adaptation ูุฐู ู
ุญุงุถุฑุฉ pure
135
00:11:40,580 --> 00:11:43,720
physiology ุงูู
ุญุงุถุฑุฉ ูุฐู pure physiology ูุงุณุจูุน
136
00:11:43,720 --> 00:11:47,940
ุงูุฌุงู ุฑุงุญ ุงุชููู
physiology classification of the
137
00:11:47,940 --> 00:11:55,460
receptors ุงูุด ุงููุงุน ุงู receptorsุฃูู ุดู ุจูุฌุณู
ุงูู
138
00:11:55,460 --> 00:12:02,760
Receptors according to site of receptor ุญุณุจ ู
ูุงู
139
00:12:02,760 --> 00:12:10,260
ุงูู Receptors ุงุซููู according to site of stimulus
140
00:12:10,260 --> 00:12:17,070
ุญุณุจ ู
ูุงู ุงู stimulusุซูุงุซุฉ according to specificity
141
00:12:17,070 --> 00:12:20,750
ุงููู ูู ูุฐู physiological classification it is
142
00:12:20,750 --> 00:12:24,050
more common a classification ุงููู ูู physiological
143
00:12:24,050 --> 00:12:31,370
classification ูุงุญุฏ ุญุณุจ ุงู site of receptors ุญุณุจ
144
00:12:31,370 --> 00:12:37,330
ู
ูุงู ุงู receptor ุงููู ูู ุงูู
ุณุชูุจูุงุช ูุณู
ููู
ูุงุญุฏ
145
00:12:37,330 --> 00:12:43,190
somatic receptorsุงุซููู special receptors ุซูุงุซุฉ
146
00:12:43,190 --> 00:12:47,450
visceral receptors ูุจูู ุญุณุจ ู
ูุงู ุงู receptors
147
00:12:47,450 --> 00:12:53,830
ูููุณู
ู ูุซูุงุซ ุฃููุงุน somatic receptors visceral
148
00:12:53,830 --> 00:12:59,430
receptors ู special receptors ุชูุช ุฃููุงุน ุทูุจ ุฅูุด
149
00:12:59,430 --> 00:13:03,810
ุฃููุงุน ุงู somatic receptors ุฅุฐุง ุงูุฅุดุงุฑุฉ ุฌุงูุฉ ู
ู ุงู
150
00:13:03,810 --> 00:13:09,790
skinุจูุณู
ููุง cotaneous receptors cotaneous
151
00:13:09,790 --> 00:13:15,330
receptors ูุนูู for pain for temperature we touch
152
00:13:15,330 --> 00:13:21,440
sensation ุฅุฐุง ุฌุงู ู
ู ุงูุฏูุจ structuresุจูุณู
ููู
deep
153
00:13:21,440 --> 00:13:25,520
receptors ูุนูู ู
ู ุงู muscleุ ู
ู ุงู tendonsุ ุงู
154
00:13:25,520 --> 00:13:29,820
ligamentุ ุงู joint ุจุทุฑููุฉ ูุฐู ุฃูุง ุฌุณู
ุชูููุง somatic
155
00:13:29,820 --> 00:13:34,780
receptors ุฏู ููุนูู ุฅู
ุง ุฌุงู receptors ุณุทุญู ูู ุงูุฌูุฏ
156
00:13:34,780 --> 00:13:39,040
cotaneous receptors ุจูุณู
ูู ูู
ููุ ูุฃู painุ
157
00:13:39,040 --> 00:13:43,300
temperature ู touch sensation ุงููู ูู ุฃูู
ู ุญุฑุงุฑุฉ
158
00:13:43,300 --> 00:13:49,710
ู ูู
ุณ ูุฅู
ุง ุจูุณู
ูู deep receptorsู
ุณุคูู ุนู ุงูู
159
00:13:49,710 --> 00:13:53,150
muscles ู ุงูู joints ู ุงูู ligaments ู ุงูู tendons
160
00:13:53,150 --> 00:13:57,450
ู ุงูู bone ูู ูุฐุง ูุนุชุจุฑ Deep Receptors ูุนูู ุฎูุตูุง
161
00:13:57,450 --> 00:14:02,310
ุฃูู ููุน Somatic ุงูููุน ุงูุซุงูู Special Receptors
162
00:14:02,310 --> 00:14:07,410
ุงููู ุนูุงูุฉ ุจู
ููุ ุจุงูู Special Sensation ุงู ุดุงุก
163
00:14:07,410 --> 00:14:13,530
ุงููู ุงูู
ุญุงุถุฑุฉ ุณุชุจูู ุงููุงุฏู
ุฉ ุฒู ุงูู Vision Visual
164
00:14:13,530 --> 00:14:21,390
Receptorsูู ุงูุดุจุงูุงุช ุงูุนูู cones and rods ูุงู
165
00:14:21,390 --> 00:14:28,350
smell smell receptors ูู ุงู nasal cavity ูุงู
166
00:14:28,350 --> 00:14:36,870
hearing ูู ุงููููููุง ูู hearing receptors okay ูู
167
00:14:36,870 --> 00:14:42,210
ูุฐุง ูู tasteูู ุงูู tongue ูู ุงููุณุงู ูู taste buds
168
00:14:42,210 --> 00:14:47,390
ูู ูุฐุง ูุนุชุจุฑ taste receptors ู
ูุฌูุฏุฉ ูู special
169
00:14:47,390 --> 00:14:52,510
sensation ููู visceral receptors ูุฐู from the
170
00:14:52,510 --> 00:14:56,690
internal organ ู
ูุฌูุฏุฉ ูููุ ูู ุงู internal organ
171
00:14:57,210 --> 00:15:01,890
ูุงุญุฏ ุดุฑุจ ุณูุงุฆู ูุซูุฑุ ุฅูุด ุจูุตูุฑ ูู ุงููurine
172
00:15:01,890 --> 00:15:05,690
bladderุ ูู ุงูู
ุซุงูุฉุ ุชุชู
ุฏุฏุ ุจูุตูุฑ ุชุฃุซูุฑุ ุจูุจููุง
173
00:15:05,690 --> 00:15:08,950
ูุนุทูุง ุฅุดุงุฑุฉ ููstretch receptors ุฃู ูู pain
174
00:15:08,950 --> 00:15:13,430
receptors ุงูู
ูุฌูุฏุฉุ ุชุตู ุฅุดุงุฑุฉ ููุฏู
ุงุบ ุฅูู ุงูุชู
ุซุงูุฉ
175
00:15:13,430 --> 00:15:18,130
ุตุงุฑุช fullุ ุจูุฒู
ุชุฑูุญ ุงูุขู ูุทูููุฉุ ุชุณุฑููุงุ ูููู ูุฐุง
176
00:15:18,130 --> 00:15:24,010
ุงู receptors ุงุณู
ู ุฅูุดุ Internal receptors ุฃู
177
00:15:24,010 --> 00:15:30,630
visceral receptorsูุจูู ุฃุดุฑุญูุง ุฃูู ุดูุก according to
178
00:15:30,630 --> 00:15:36,910
the site of receptors ุงูุขู ุจูุชููู
according to
179
00:15:36,910 --> 00:15:44,410
site of stimulus ุญุณุจ ุงู stimulus ููู ู
ูุฌูุฏ ุฃู ู
ู
180
00:15:44,410 --> 00:15:49,270
ููู ุฌุงู Extraceptors ูุฐุง ุจูููู ุงู stimulus ุฌุงู ู
ู
181
00:15:49,270 --> 00:15:55,550
ูููุ ู
ู ุงูุฎุงุฑุฌุฃู Intraceptors ุงุณุชูู
ููุงุณ ุฌุงู ู
ู
182
00:15:55,550 --> 00:15:59,190
ุงูุฏุงุฎู ูุจูู ุงู ุฅุฐุง ูุงู ุงูุงุณุชูู
ููุงุณ ุฌุงู ู
ู ุงูุฎุงุฑุฌ
183
00:15:59,190 --> 00:16:02,510
ุงูุฌุณู
ุงู Receptors ุงููู ุฑุงุญูุง ูุณุชูุจููู ุงุณู
ูู
184
00:16:02,510 --> 00:16:07,230
Extraceptors ูุฏู
185
00:16:07,230 --> 00:16:16,670
ุฌุงู ู
ู ุฏุงุฎู ุงูุฌุณู
ุงุณู
ูู
Intraceptors ู
ุซุงู ุนูู
186
00:16:16,670 --> 00:16:18,830
Extraceptors
187
00:16:19,710 --> 00:16:23,130
cotaneous receptors ูุนูู ุฅูุด cotaneous receptors
188
00:16:23,130 --> 00:16:28,530
ุงููู ุฌุงููู ู
ู ูููุ ู
ู ุงูุฌูุฏ ู
ุซู pain temperature
189
00:16:28,530 --> 00:16:34,010
touch receptors teleceptors
190
00:16:34,010 --> 00:16:41,510
ุญููุฉ ููู
ุฉ teleceptors ู
ุฑ ุนูููู
television ู
ุฑ ุนูููู
191
00:16:41,510 --> 00:16:48,150
telephoneู
ุฑ ุนูููู
telegram ุงูุด ููู
ุฉ tele ูุนูู
192
00:16:48,150 --> 00:16:52,830
ู
ุนูุงูุง distance receptors ุดููุช ุงูุด ู
ุนูุงู ุงูุชููุฒููู
193
00:16:52,830 --> 00:17:00,310
television ู
ุดุงูุฏุฉ ุนู ุจุนุถ television ูููู ุนูุฏู
194
00:17:00,310 --> 00:17:04,730
receptors ู vision television ุณู
ููุง television
195
00:17:04,730 --> 00:17:11,420
ูููู ู
ุดุงูุฏุฉ ุนู ุจุนุถdistance phone ุณู
ุงุก ุนู ุจุนุถ
196
00:17:11,420 --> 00:17:16,220
telephone telephone ูุนูู ุงูุณู
ุงุก ุนู ุจุนุถ telegram
197
00:17:16,220 --> 00:17:22,640
ูุชุงุจุฉ ุนู ุจุนุถ tele distance gram okay ูููู ููู
ุฉ
198
00:17:22,640 --> 00:17:27,800
teleceptors ู
ูุตูุฏ ูููุง ุนู ุจุนุถ ุงู distance
199
00:17:27,800 --> 00:17:34,060
receptors ุงู distance receptors ู
ุซูุงููู ูู ุงู
200
00:17:34,060 --> 00:17:37,360
receptors ุจุชุงุนุฉ ุงู vision ู ุงู hearing ู ุงุณู
ุงู ..
201
00:17:37,360 --> 00:17:43,300
ุงูุง ุจุดู
ุนู ุจุนุฏ ูุฐุง ูุนุชุจุฑ teleceptors ุจุณู
ุน ุนู ุจุนุฏ
202
00:17:43,300 --> 00:17:51,710
teleceptors ุจุดุงูุฏ ุนู ุจุนุฏ ูููู ู
ุด ูุงุฒู
ุงูุดูุก ููู
ุณุทุจ
203
00:17:51,710 --> 00:17:54,710
ุงูุชุฐูู ุจูุฏุฑ ุงููู ุชุฐูู teleceptors ูุฃ ููู ุจุฏู
204
00:17:54,710 --> 00:17:57,930
ุฃุชุฐูููุ ุฅูุด ุจุฏู ุฃุญุท ูุทุนุฉ ููุงูุฉ ุนูู ุงูุทุงููุฉ ู ุฃููู
205
00:17:57,930 --> 00:18:00,630
ูุฌู
ุงุนุฉ ูุฎูู ุนููููุง ุฒุงููุฉ ู ุญููุฉุ ุทุจ ูุงุฒู
ุฃุฏูููุง
206
00:18:00,630 --> 00:18:04,330
ุฃุญุทูุง ุนูู ุงู receptors ุนุดุงู ุฃุฏูููุง ุจููุนุ ูููู ูุฐุง
207
00:18:04,330 --> 00:18:09,490
ุงู teleceptors ุงูููุน ุงูุซุงูู interceptors ูุนูู ุงู
208
00:18:09,490 --> 00:18:14,850
stimulus ุฌุงู ู
ู ูููุ ู
ู ุฏุงุฎู ุงูุฌุณู
ู
ุซู ุงู
209
00:18:14,850 --> 00:18:18,430
proprioceptors ุงู proprioceptors ูุฏูู ุจูููููุง ููู
210
00:18:18,430 --> 00:18:22,910
ู
ูุฌูุฏููุ ูู ุงู boneูู ุงู muscle ูู ุงู tendon ูู ุงู
211
00:18:22,910 --> 00:18:27,850
joint ู
ุณุฆูููู ุนู ุงูุด ุนู ุงู deep sensation ูุจููุง ุงู
212
00:18:27,850 --> 00:18:31,490
ุงุฐุง ุงุฌู sensation ููู
ุฑูุถ ู
ู ุงู joint ู
ู ุงู muscle
213
00:18:31,490 --> 00:18:35,470
ุฑุงุญ ูุนู
ู irritation ู ุงู deep receptors deep
214
00:18:35,470 --> 00:18:39,230
receptors ุงููู ูุณู
ููู
proprioceptors ุงู
215
00:18:39,230 --> 00:18:45,230
proprioception ุงุซููู visceroceptors ู
ู ุงุณู
ู
216
00:18:45,230 --> 00:18:49,530
viscero ูุนูู ู
ู ููู ูุงุฏู ู
ู ุงู internal organ ู
ุซู
217
00:18:49,530 --> 00:18:54,550
ุงู chemoreceptorsVisceral stretch receptors for
218
00:18:54,550 --> 00:19:00,770
visceral pain ู
ุซู
219
00:19:00,770 --> 00:19:06,160
ู
ุฑูุถ ุนูุฏูGolgi Bladder stone ุนูุฏู ุญุตูุฉ ูู ุงูู
ุฑุงุฑุฉ
220
00:19:06,160 --> 00:19:12,020
ุจุดุนุฑ ุจู
ุบุต ูุจููู
ุตุญุ ูููุ ูุฃู ูุฐู ุงูุญุตูุฉ ุนู
ูุช
221
00:19:12,020 --> 00:19:15,360
irritation ูุนู
ูุช ุชููุฌ ูู visceral receptors
222
00:19:15,360 --> 00:19:19,200
ุงูู
ูุฌูุฏุฉ ูู ุงู Golgi Bladder ูุจุญุฏุซ ุจููู
ู ุณุจุจ
223
00:19:19,200 --> 00:19:22,940
ุงูููู
ูููู ู
ูู ุดุนุฑ ููู ุงูููู
ูุฐุง ุงู receptors ููู
224
00:19:22,940 --> 00:19:25,380
ู
ูุฌูุฏ ุงู receptors ูู ุงู wall of the Golgi Bladder
225
00:19:25,380 --> 00:19:30,540
ูู ุฌุฏุงุฑ ุงูู ุงููู ูู ุงูู
ุฑุงุฑุฉุทุจ ู
ูู ุงูู ุงููู ููุฌูุงุ
226
00:19:30,540 --> 00:19:36,420
ุงูุญุตุจุฉ ููุณูุง ุนู
ู ููู
ุ ุญุฏุซ ููู
ู ููุฐุง Hypothalamic
227
00:19:36,420 --> 00:19:42,020
Receptors ู
ุซู ุงููGluco Receptorsุ Osmo Receptors
228
00:19:42,020 --> 00:19:46,300
ูHypothalamic Thermal Receptorsุ ูุฐู ู
ูุฌูุฏุฉ ูู
229
00:19:46,300 --> 00:19:50,380
ุงููHypothalamusุ ูุฃู ููุง ุดุฑุญูุง ุชูุณูู
ุงููReceptors
230
00:19:50,380 --> 00:19:55,530
ุญุณุจ site of Receptorsุฃุซููู ูุณู
ูุงูู
ุญุณุจ ุงู site of
231
00:19:55,530 --> 00:20:00,490
stimulusุ ุงูุขู ุฑุงุญ ุงุชููู
ุนูู ุงู receptors as
232
00:20:00,490 --> 00:20:04,850
physiological classification according to
233
00:20:04,850 --> 00:20:10,370
specificityุ ุญุณุจ ุงูููุนุ ุญุณุจ ุฅููุ ุงูููุนุ ุฃูู ููุน
234
00:20:10,370 --> 00:20:16,150
mechanical receptorsุ ุงููู ูู
ุนูุงูุฉ ุจุงู mechanical
235
00:20:16,150 --> 00:20:22,550
form of energyูู
ุณ ุฃูู
ูุฏู ูุนุชุจุฑ ุงูู ุงู temperature
236
00:20:22,550 --> 00:20:28,910
touch ูุฐุง ูุนุชุจุฑ ุงูู ู
ููุงูู ููู
ู ุฑูุณุจุชุฑ ููู
ู ุฑูุณุจุชุฑ
237
00:20:29,750 --> 00:20:33,210
detect change in concentration of certain
238
00:20:33,210 --> 00:20:36,290
chemicals ูุจูู ูุฐุง ุงููู ุนูุงูุฉ ุจุงูchemical
239
00:20:36,290 --> 00:20:42,370
substance ุดู ุญุงู
ุถ ุดู ู
ุงูุญ ู ููุฐุง nociceptors ุงููู
240
00:20:42,370 --> 00:20:46,490
ุนูุงูุฉ ุจุงูุฃูู
ูุฐูู three nerve endings responding
241
00:20:46,490 --> 00:20:52,270
to pain sensation thermoreceptors ูุฐูู ุงููู ุนูุงูุฉ
242
00:20:52,270 --> 00:20:58,320
ุจุงู temperatureู photoreceptors ุงููู ู
ุนููู ุจูุด ุจุงู
243
00:20:58,320 --> 00:21:01,000
vision ูุจูู ูุงุฏ ุงูุชูุณูู
ุฉ ูู physiological
244
00:21:01,000 --> 00:21:06,940
classification according to specificity ุญุณุจ ููุน ุงู
245
00:21:06,940 --> 00:21:11,060
receptors ูู mechanical receptors ููู
ู ุฑูุณุจุชุฑ
246
00:21:11,060 --> 00:21:18,360
ููุณูุจุชุฑ ุซูุฑู
ู ุฑูุณุจุชุฑ ู photoreceptors ูุงู ุงูุชุฌู
247
00:21:18,360 --> 00:21:25,950
ุงุชููู
ุนูู synapse ุงูุด ูู synapseIt is a region at
248
00:21:25,950 --> 00:21:30,390
which a neuron communicates with its target cell
249
00:21:30,390 --> 00:21:36,630
ูุจูู ุงู ูู ุนุจุงุฑุฉ ุนู a region ุงููู ุจูููู ููู ููุณ ุงู
250
00:21:36,630 --> 00:21:39,410
ููุฑูู ุจูุจูู communication ู
ุน ุงู target cell
251
00:21:39,410 --> 00:21:46,830
function of synapse is a transfer electric
252
00:21:46,830 --> 00:21:51,640
activity information from one cell to anotherto
253
00:21:51,640 --> 00:21:55,660
another ูุนูู ุฅููุ ุจูุตู ุฅุดุงุฑุฉ ู
ู one cell ูุฅููุ ู
254
00:21:55,660 --> 00:22:01,260
another cell ูุฐุง ุงุณู
ู synapse the transfer can be
255
00:22:01,260 --> 00:22:05,000
from nerve to nerve ูุนูู ุงูุชูุตูู ู
ู
ูู ูููู ู
ู
256
00:22:05,000 --> 00:22:10,580
nerve ู nerve first order ู second order ูุฐุง ุจูุณู
ู
257
00:22:10,580 --> 00:22:11,760
neural
258
00:22:13,870 --> 00:22:17,130
type ุงูู neuroneural type ูุนูู ุงูุด ู
ูุตูุฏ ุจูู
259
00:22:17,130 --> 00:22:21,350
neuroneural type ูุนูู ุงูู synapse ุจูู two neurons
260
00:22:21,350 --> 00:22:26,590
ุจูู ุงููุ two neurons ูุฐุง ุจุณู
ูู neuroneural type ุงู
261
00:22:26,590 --> 00:22:33,870
ุจูู nerve ู muscle ุจุณู
ูู neuromuscular type ูู
ูู
262
00:22:33,870 --> 00:22:37,310
ููู neuromuscular type ุงู ุจุณู
ูู neuromuscular
263
00:22:37,310 --> 00:22:41,290
junction ูููู neuroneural type ูุฃู neuroneural
264
00:22:41,290 --> 00:22:48,800
type ุจูู two neuronsุงูููุฑู ูู ููุน ุนุถู ุจูู ููุฑูู ุฃู
265
00:22:48,800 --> 00:22:54,580
nerve ู
ุน ู
ููุ ู
ุน muscle fibers ุงูุจุฑูุณูุงุจุชู
266
00:22:54,580 --> 00:22:58,960
ุงููุฒููุงู ูุญุชูู ุนูู ููุฑู ุชุฑุงูุณู
ูุชุงุฑ ูู ุงูุจุฑูุณูุงุจุชู
267
00:22:58,960 --> 00:23:05,040
ุงููุฒููุงู ูููู
ููุฑู ุชุฑุงูุณู
ูุชุงุฑ ูุฏูู ู
ู
ูู ูููููุง
268
00:23:05,040 --> 00:23:11,440
ูุนู
ููุง stimulation ุงู ูุนู
ููุง ุงูููุจุดู ูุจูุณุชุณููุงุจุชู
269
00:23:11,440 --> 00:23:15,180
ููุฑูู ูุนูู ูู ุงูุจุฑูุณูุงุจุชูphysical ูููู
270
00:23:15,180 --> 00:23:18,460
neurotransmitters ูุฐูู ุงู neurotransmitters ุงู
ุง
271
00:23:18,460 --> 00:23:22,460
ูุธููุชูู
ุจุชููู stimulatory ุจูุนู
ููุง stimulation ุงู
272
00:23:22,460 --> 00:23:26,700
inhibitory ุจูุนู
ููุง inhibition ูู post synaptic
273
00:23:26,700 --> 00:23:32,120
neuron structure of the synapse ู
ู ุงูุด ุจุชููู
274
00:23:32,120 --> 00:23:40,440
ุงูุณููุงุจุณุ ุจุชููู ู
ู ุซูุงุซ ุฃุฌุฒุงุก axon terminal ููุงูุฉ
275
00:23:40,440 --> 00:23:43,000
ุงู axon ุงููู ูู ุจูุณู
ู ุงู pre synaptic neuron
276
00:23:44,860 --> 00:23:49,340
Synaptic cleft ูู ุนุจุงุฑุฉ ุนู space between pre
277
00:23:49,340 --> 00:23:53,900
-synaptic and post-synaptic ูุงูู
ู
ุจุฑูุฉ ู
ู ููุฑูู
278
00:23:53,900 --> 00:23:57,440
post-synaptic ูุจูู ุนูุฏู ุฌุฒุก pre-synaptic ููุฑูู
279
00:23:57,440 --> 00:24:02,640
ูุฌุฒุก post-synaptic ูุจูููู
ููู cleft ูุฐู ุจูุณู
ููุง
280
00:24:02,640 --> 00:24:09,280
synaptic cleft ุฒู ู
ุง ุงุญูุง ุดุงูููู ูุฐุง ุงุณู
ู axonal
281
00:24:09,280 --> 00:24:16,500
terminal ุฃู ุจูุณู
ูู pre-synapticููุฑูู ููุฐุง boss
282
00:24:16,500 --> 00:24:20,160
synaptic ุงููู ูู ุฏูู ุฏุฑุงูุชุฒ ู
ู
ูู ูููู ูุงูู
ุณุงุญุฉ
283
00:24:20,160 --> 00:24:25,070
ุจูููู
ูุฐู ุงุณู
ูุง ุงููSynaptic Clift Synaptic Clift
284
00:24:25,070 --> 00:24:28,910
ูุฏุงุฎู ุงูู Pre-Synaptic ุจูููู ูููู
ุงูู
285
00:24:28,910 --> 00:24:32,750
neurotransmitters ุงูู neurotransmitters ููุฃ ุงู
286
00:24:32,750 --> 00:24:35,790
neurotransmitters ูุฏูู ุฅู
ุง ุฑุงุญ ูุคุฏูุง ุฅูู
287
00:24:35,790 --> 00:24:40,590
stimulation ููู post-synaptic ููุฑูู ูุฅู
ุง ูุนู
ููููู
288
00:24:40,590 --> 00:24:45,430
ุฅูุด Inhibition ููู post-synaptic ููุฑูู ูุจูู ุนูุฏู
289
00:24:45,430 --> 00:24:51,200
post-synapticpre-synaptic ู ุจูููู
a-synaptic cleft
290
00:24:51,200 --> 00:24:54,300
ู ุงูู neurotransmitters ููุง ู
ูุฌูุฏูู ุฑุงุญ ูููููุง ูู
291
00:24:54,300 --> 00:24:58,640
ุงูู pre-synaptic ุฅู
ุง ูุนู
ููููุง stimulation ุฃู
292
00:24:58,640 --> 00:25:03,680
inhibition ููู post-synaptic ููุฑูู ุงูู pre
293
00:25:03,680 --> 00:25:08,480
-synaptic ุจูุณู
ูู axonal terminal ู ุงู post
294
00:25:08,480 --> 00:25:17,640
-synaptic ูู ุฌุฒุก ู
ู ุงูุฏููุฏุฑูุช ุงู ion channelsูู
295
00:25:17,640 --> 00:25:22,500
ูุงุชููู ู ุฃููููุ ุงููุงุชููู ูู
ุง ุนุจุงุฑุฉ ุนู ุฃููุ ุตูุฏููู
296
00:25:22,500 --> 00:25:26,520
ูุฃุญูุงูุง
297
00:25:26,520 --> 00:25:32,060
ุจูููููุง ุจุชุงุณููู
ุฃู ูุงูุณููู
ุ ุงูุฃูููู ูููุฑุงูุฏุ
298
00:25:32,060 --> 00:25:37,040
transmitters that open sodium channels leads to
299
00:25:37,040 --> 00:25:42,650
excitationExcitation ุงู Stimulation of both
300
00:25:42,650 --> 00:25:46,470
synaptic neurons ูุจูู ูุชุฑุงูุณู
ูุชุฑ ุงููู ุจููุชุญูุง ุงู
301
00:25:46,470 --> 00:25:51,130
sodium channels ูุฏูู ุจููุฏุฑูุง ุงูุนู
ููุฉ Excitation ุงู
302
00:25:51,130 --> 00:25:57,530
Stimulation of both synaptic neuronsู ุงู
303
00:25:57,530 --> 00:26:04,590
transmitters ุงููู ุจููุชุญูุง ุงู chloride channels
304
00:26:04,590 --> 00:26:10,130
ุจูุนู
ููููุง ุนู
ููุฉ inhibition ู both synaptic neurons
305
00:26:10,130 --> 00:26:13,870
ูุนูู ุจุงุฎุชุตุงุฑููู neurotransmitters ููุนูู ููุนูู
306
00:26:13,870 --> 00:26:17,170
ุจููุชุญูุง ุงู sodium channels ูุจูุคุฏูุง ุฅูู ุฅูู
307
00:26:17,170 --> 00:26:20,150
excitation and stimulation of both synaptic
308
00:26:20,150 --> 00:26:24,390
neurons ูููุน ุจููุชุญูููุง ู
ูู ุงููู ูู ุงู chloride
309
00:26:24,390 --> 00:26:28,810
channels ูุจูุนู
ููููุง ุนู
ููุฉ inhibition ู both
310
00:26:28,810 --> 00:26:37,390
synaptic neurons ุฃููุงุน ุงู neurotransmitters ู
ู
ูู
311
00:26:37,390 --> 00:26:40,690
ููุณู
ูู
ุญุณุจ ุงู chemical structures ูุฅู
ุง ุญุณุจ ุงู
312
00:26:40,690 --> 00:26:44,120
functionุญุณุจ ุงู chemical structures ูู
313
00:26:44,120 --> 00:26:48,960
Acetylcholine ููู Amino Acid ู
ุซู Glutamate,
314
00:26:49,600 --> 00:26:55,100
Aspartate, Glycine, Gamma Amino Biotic Acid ูู
315
00:26:55,100 --> 00:26:59,240
Amine ู
ุซู ุงูุฏูุจุงู
ูู Epinephrine, Norepinephrine,
316
00:26:59,360 --> 00:27:04,620
Serotonin ููู Neuropeptide ู
ุซู Hydrophins ู
317
00:27:04,620 --> 00:27:08,220
Enkephalins ูุฏูู ู
ูุฌูุฏูู ูู ุงู brain ูู
ูุถูุน ุงู
318
00:27:08,220 --> 00:27:14,850
painุงูููุน ุงูุซุงูู ุญุณุจ ุงู functions ุจูุฎุณูู
ูู
ุฅูู
319
00:27:14,850 --> 00:27:20,470
excitatory ู
ุซู ุงู glutamate ุฃู ุงูููุจูุชูุฑู ู
ุซู
320
00:27:20,470 --> 00:27:28,230
ุงูุฌุงู
ุนุฉู
ููู ุจููุฑูุชู ุฃุณุฏ ุฌุงุจุง ุงูุงู
321
00:27:28,230 --> 00:27:35,930
ูุชููู
ุนูู classification of somatic sensation ุงู
322
00:27:35,930 --> 00:27:41,140
classification of somatic sensationุงูุงู ุฑุงุญ ุงุชููู
323
00:27:41,140 --> 00:27:45,680
ุนูู somatic sensation only somatic sensation
324
00:27:45,680 --> 00:27:48,880
according to the site of sensation ุญุณุจ ุงู site of
325
00:27:48,880 --> 00:27:53,120
sensation superficial sensation ุงููู ูู sensation
326
00:27:53,120 --> 00:27:59,320
ู
ู ุงู skin ุฌุงูุฉ ู
ุซู ุงู pain ุงูุฃูู
touch ุงููู
ุณ
327
00:27:59,320 --> 00:28:04,820
temperature ุงูุญุฑุงุฑุฉุฃู deep sensation ูู
ุงู
328
00:28:04,820 --> 00:28:10,140
sensation from the muscles, tendons, joints,
329
00:28:10,400 --> 00:28:15,040
bones, ligaments ูุชุชุนุชุจุฑ ุงูุดุ deep ุงู deep
330
00:28:15,040 --> 00:28:19,240
sensation ูู ุฃููุงุน proprioceptive sensation ููู a
331
00:28:19,240 --> 00:28:23,500
sense of position and sense of movement pressure
332
00:28:23,500 --> 00:28:29,270
sensation muscle tension sensemuscle senseุ
333
00:28:29,270 --> 00:28:33,110
vibration senseุ ุฅูุด ุงู vibration senseุ ูู ุฌูุจูุง
334
00:28:33,110 --> 00:28:38,130
ุฌูุงู ู ุญุทููุงู ุฑุงููู ุฃู ุทุงููู ู ุญุทููุงู ุน ุฌุณู
ูุง
335
00:28:38,130 --> 00:28:42,780
ุจูุดุนุฑ ูููุ ุจูุดุนุฑุ ูู ุฌูุจูุง ุดููุฑ ุฑุงูุงูุฉุู ุฅุถุฑุจูุงูุง
336
00:28:42,780 --> 00:28:45,300
ุดูุฑุงูุง ู ุญุทููุงูุง ุนุจูู ุงู prominance ู ุจูุดุนุฑ ูู ุงู
337
00:28:45,300 --> 00:28:48,420
vibrationุ ุจูุดุนุฑ ูู ุฑูุญูุง ุฏูุชูุฑ ุฃุณูุงู ู ูุญุฑ
338
00:28:48,420 --> 00:28:51,360
ุทุญููุชูุง ุจูุดุนุฑ ููู vibrationุ ุจูุดุนุฑ ูู ุงู vibration
339
00:28:51,360 --> 00:28:56,160
ูุฐุง ุงุณู
ู vibration sense ุทุจ ุงู muscle sense ูู
340
00:28:56,160 --> 00:28:59,200
ุฌููุง ุนู
ููุง palpation ูู muscle ุญุณููุงูุง tenderness
341
00:28:59,200 --> 00:29:02,980
soft legs ู ุงูู
ุฑูุถ ุจุดุนุฑู ุจููู
ุจุดุนุฑุด ุจููู
ูู ุงู
342
00:29:02,980 --> 00:29:07,880
muscle ูุฐุง ุงุณู
ู muscle sensation ุทุจ muscle tension
343
00:29:07,880 --> 00:29:14,000
sense ูู ุฌูุจูุง ูุฒููู ู
ุฎุชููููุญุทูุงูู
ููุฏู ู ุบู
ุทุช
344
00:29:14,000 --> 00:29:18,360
ุนูุงูุฉ ู ุฑูุนุชูู
ูุงุฒู
ุงู
ูุฒ ู
ูู ุงูุฃุซูู ุงูุฌูุงู ููุง
345
00:29:18,360 --> 00:29:23,280
ุงูุฌูู
ู
ูู ุงูุดุนุฑ ูู ุงููุฒู ูุฐุง ุงูุนุถูุฉ ูุจูู ุงู ูุฐุง
346
00:29:23,280 --> 00:29:27,880
ุงุณู
ู muscle tension sense ุทุจ ูู ุฌูุจูุง ูุฒููู
347
00:29:27,880 --> 00:29:32,600
ู
ุฎุชูููู ูุญุทูุงูู
ุนูู ุฅูุฏูุง ููุง ูู ุฅูุฏ ู ูู ุฅูุฏ
348
00:29:32,600 --> 00:29:39,810
ููููุง ู ูู
ูุฒ ุจูููู
ู
ูู ุฃุซูู ุงูุฌูุงู ููุง ุงูุฌูุงู
ูุงูุง
349
00:29:39,810 --> 00:29:43,410
ู
ุบู
ุถ ุงู ูู ูุฐุง ุงุณู
ู pressure sense ู
ุซุงู ุขุฎุฑ ุนูู
350
00:29:43,410 --> 00:29:47,910
pressure sense ูู ุฃุฌู ุฃููุงุฏู ุงููุงุญุฏ ุฃู ุงูุจูุงุช ูููุฏ
351
00:29:47,910 --> 00:29:51,450
ูุงุนุฏ ุนูู ุฑุฌู ุงููู
ูู ุนู
ุฑู ุณูุชูู ูููุฏ ุนู
ุฑู ุนุดุฑ ุณููู
352
00:29:51,450 --> 00:29:54,470
ูุงุนุฏ ุนูู ุงูุดู
ุงู ู
ุด ูุงูุง ูุงุนุฏ ุจุดุนุฑ ูููู
ุฃุซูู ูู
ูู
353
00:29:54,470 --> 00:29:57,670
ุฃุชุนุจูู ูููู ูุฐุง ุงุณู
ู pressure sense ุงูุด ุงููุฑู ุจูู
354
00:29:57,670 --> 00:30:01,170
pressure sense ู muscle tension sense ุงู pressure
355
00:30:01,170 --> 00:30:06,330
sense ุจููููุจูุถุน ูุฒููู ู
ุฎุชูููู ู ุงู upper limbs ุงู
356
00:30:06,330 --> 00:30:09,010
ุงู lower limbs ุนูุฏู ุงูุง fixed ุจูููู ุงูุง ุจุชุญุฑูุด
357
00:30:09,010 --> 00:30:12,330
ุจุญุฑููู
ุด ุงูุง ุดุนุฑุช ุจุงู pressure ุจุชุงุนู ูุฐุง pressure
358
00:30:12,330 --> 00:30:16,050
sense ููู muscle tension sense ุงูุง ุงุฎุฏุช ุธุฑู ุจูุงุช
359
00:30:16,050 --> 00:30:21,640
ููู ุงุบุฑุงุถู ุญู
ูุชู ุจุฏู ุงุดุนุฑ ุงู ุงุญุณ ุงู ุงููุฒู ู
ุธุจูุท 2
360
00:30:21,640 --> 00:30:26,020
ูููู ุงู 3 ูููู ู
ุณูุช ููู ุงุชูู ุจูุชูู ู
ุฎุชูููู ู ููุช
361
00:30:26,020 --> 00:30:29,320
ูุฃ ูุฐุง ุฃุซูู ู
ู ูุฐุง ุงูุง ุดุนุฑุช ุจุงููุฒู ุนู ุทุฑูู ุงูุนุถูุฉ
362
00:30:29,320 --> 00:30:33,180
ููุณูุง ูุฐุง ุงุณู
ู muscle tension ash essence ุงู
363
00:30:33,180 --> 00:30:36,720
proprio reception ุงู proprio receptive ูู
ุนุจุงุฑุฉ ุนู
364
00:30:36,720 --> 00:30:40,500
ash essence of joint ุงููู ูู ู
ูุงูุฉ ุจุงู joint ูู
365
00:30:40,500 --> 00:30:44,970
ุงูุง ุบู
ุทุช ููุงู ุญุฑูุช ุฃุตุจุน ุงูู
ุฑูุถ ูููู ู ูุชุญุช ุงูู
ุฑูุถ
366
00:30:44,970 --> 00:30:49,610
ุฑุงุญ ูุดุนุฑ ุฃู ุนุถูุฉ ุฃู ุฌูููุช ุงูุง ุญุฑูุชู ูุนูู ุฌููุง ุงู
367
00:30:49,610 --> 00:30:55,670
finger ููู ุงู ุชุญุช ุจุฏู ูุญุฏุฏูู ุฃู ุฃุตุจุน ุงูุง ุญุฑูุชู ุจุณ
368
00:30:55,670 --> 00:30:59,970
ูููู ุงูุนูููุฉ ู
ุบู
ุถูู ู ู
ุณูุฑุฉ ุนูููุง ุงูู
ุฑูุถ ูู ุงูุญุงูุฉ
369
00:30:59,970 --> 00:31:07,440
ูุฐู ุงุณู
ูุง joint sense ูู combined sensationุฒู
370
00:31:07,440 --> 00:31:13,600
Stereognosis ุงูุด Stereognosisุ ูู ุฌูุจูุง ุดูุก ูุงู
371
00:31:13,600 --> 00:31:19,780
ุนุตุงุจู ููู
ุซุงู ุนุดุฑุฉ ุดูู ูุฐู ุจุฌูุจ ู
ุจูุบ ู
ู ุงููููุณ ู
372
00:31:19,780 --> 00:31:23,620
ุจุญุทู ูู ุงูุฏ ุงูู
ุฑูุถ ู ุงูู
ุฑูุถ ู
ุบู
ุถ ุงููุง ุจุงููู
ุณ
373
00:31:23,620 --> 00:31:29,740
ุจุฏู
ูุฒูู ุฎู
ุณ ุดูู ุงุชููู ุดูู ุชูุงุชุฉ ุดูู ุงุชููู ุดูู ุดูู
374
00:31:29,740 --> 00:31:37,590
ุนุดุฑุฉ ุดูู ุจุทุฑููุฉ ูุฐู ุจุฏู
ูุฒูู ุทูุจ ุญุทููุง ูู ุงูุฏูุดูู ู
375
00:31:37,590 --> 00:31:42,010
ุงุชููู ุดูู ูุงุฒู
ุจูููููุง ุนูุฏูู ุงูู ูู
ุจูููููุง ุนูุฏูู
376
00:31:42,010 --> 00:31:44,790
ูุฏูู ูุงู
ูู ุฏู ุจูููููู ุชูุงุชุฉ ุดูู ุจุงูู
ุซู ุจูููููู
377
00:31:44,790 --> 00:31:48,590
ูุฏู ุดูู ู ูุฏู ุงุชููู ุดูู ูุนูู ุงู ูู ุจุงููู
ุณ ุญุฏุฏู ุงู
378
00:31:48,590 --> 00:31:52,590
ุฌูุจูุง ุฌูู
ุงู ู
ูุชุงุญ ู ุญุงุทููุง ููู ุฏู ู ูู
ุบู
ุถูุงู
379
00:31:52,590 --> 00:31:56,270
ุจุงููู
ุณ ุจูุดุนุฑ ุงูุด ุงู ูู ุจูููููู ูุฏ ุฌูู
ูุฏ ู
ูุชุงุญ ูุฏ
380
00:31:56,270 --> 00:32:01,870
ุนู
ููุฉ ุงูุด ุจูุณู
ููุง ุนู
ููุฉ stereo diagnosisุงูู
381
00:32:01,870 --> 00:32:06,570
Tactile Discrimination ุจูุฌูุจ ู
ุซู ุซุฑุฌุงุฑ ุจุณููู ู
382
00:32:06,570 --> 00:32:09,250
ุจูุญุทู ุนูู ุงู hand ุจูุจูู ูุดุนุฑ ููููู ููุง ูู two
383
00:32:09,250 --> 00:32:13,470
point ูู ุณู ูุงุญุฏ ุญุงุทูุง one point ุณููู ุจูุจูู ูุดุนุฑูุง
384
00:32:13,470 --> 00:32:16,170
ุงู ูุฏูู two point ูุฐุง ุจูุณู
ููุง Tactile
385
00:32:16,170 --> 00:32:20,870
Discrimination ุงู ุงุณู
ูุง ุซุงูู two point
386
00:32:20,870 --> 00:32:24,650
discrimination two point discrimination
387
00:32:27,140 --> 00:32:31,080
According to modality of sensation it is more
388
00:32:31,080 --> 00:32:35,260
common classification ู
ุซู ุงู receptor ุงููู ุงุดุฑุญุชูู
389
00:32:35,260 --> 00:32:38,780
ุงู somatic sensation ุจููุณู
ูู
ู mecanoreceptive
390
00:32:38,780 --> 00:32:43,120
sensation ู thermoreceptive sensation ู pain
391
00:32:43,120 --> 00:32:47,060
sensation mecanoreceptive sensation ู
ุซู touch
392
00:32:47,060 --> 00:32:52,210
sensation ุญุงุณุณ ุงููู
ุณpressure sensationุ ุถุบุทุ ุงูุง
393
00:32:52,210 --> 00:32:56,930
ุถุบุทุชุ ุถุบุทุช ุจุณูุทุ ุถุบุทุช ุฌููุ ู ููุฐุง muscle tension
394
00:32:56,930 --> 00:32:59,650
senseุ ุดุฑุญุชูููุง ูุงูุ ุญุทููุง ูุฒููู ู
ุฎุชูููู ู ุฑูุนูุงูู
395
00:32:59,650 --> 00:33:03,410
ุจุฅูุฏูุง vibration senseุ ุนู ุทุฑูู ุงูุดููุงุฑ ุฑูุงูุง
396
00:33:05,510 --> 00:33:10,510
Tickle and itch sensationุ tickle ูุนูู ุฒุบุฒุบุฉุ itch
397
00:33:10,510 --> 00:33:16,250
sensation ุงูุญูุฉ ูุนูู ูุงุญุฏ ุจุนูุถ ุฌุฑุณู ู
ู
ูู ูุถููุง ุญู
398
00:33:16,250 --> 00:33:20,290
ูููู
ุ ูุฐุง ุงุณู
ู itching sensationุ itch ุญูุฉ Pro
399
00:33:20,290 --> 00:33:23,330
-proceptive sensation ุงููู ููุง ุนูุงูุฉ ุจุงู joint
400
00:33:23,330 --> 00:33:27,080
sensation ุฃู ุงู deep sensationุงูููุน ุงูุซุงูู
401
00:33:27,080 --> 00:33:31,560
thermoreceptive sensation ุงููู ุนูุงูุฉ ุจุงู heat and
402
00:33:31,560 --> 00:33:34,120
cold sensation ุงููู ุนูุงูุฉ ุจุงู temperature
403
00:33:34,120 --> 00:33:39,260
sensation ูุงูููุน ุงูุซุงูุซ ุงูุฃุฎูุฑ pain sensation ุงููู
404
00:33:39,260 --> 00:33:44,520
ุนูุงูุฉ ุจุงูุฃูู
ุงู ุดุงุก ุงููู ููุง ููู ูู ุงูุฌุฒุก ุงูุฃูู ู
ู
405
00:33:44,520 --> 00:33:48,660
ุงูู
ุญุงุถุฑุฉ ุงูุฌุฒุก ุงูุซุงูู ุงู ุดุงุก ุงูููุฑุงุญ ุงุชููู
ููู ุนูู
406
00:33:48,660 --> 00:33:53,240
pain sensation ูุฑุงุญ ุงุชููู
ุนูู ุงู pathway of
407
00:33:53,240 --> 00:33:57,080
superficial sensation and pathway of deep
408
00:33:57,080 --> 00:33:57,720
sensation
|