File size: 53,675 Bytes
b4e65c0 |
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 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 |
1
00:00:01,260 --> 00:00:05,520
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุจุญุถุฑุชูุง ุงูููู
ุนู ุงู
2
00:00:05,520 --> 00:00:10,060
immunodeficiency syndrome ู ุงู immunodeficiency
3
00:00:10,060 --> 00:00:17,340
syndrome are divided ู
ุฑุฉ
4
00:00:17,340 --> 00:00:21,500
ุฃุฎุฑู ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุจุญุถุฑุชูุง ุงูููู
ุนู ุงู
5
00:00:21,500 --> 00:00:25,780
immunodeficiency syndrome these are divided into
6
00:00:25,780 --> 00:00:30,720
two major categoriesูุณู
ูู
ุฅูู ูุณู
ูู ุฃุณุงุณููู ุฌุงูู
7
00:00:30,720 --> 00:00:33,260
ููู primary immune deficiency ู ููู secondary
8
00:00:33,260 --> 00:00:38,740
immune deficiency ุทุจุนุง ูู ููุชุง ุงูุญุงูุชูู ูู ุญุงูุงุช
9
00:00:38,740 --> 00:00:43,460
ู
ุฑุถูุฉ ู
ุชุจุงููุฉ ูุชุทุฑุฎ ูุฃู
ุซูุฉ ูุซูุฑุฉ ูู ูู ููุน ู
ู ูุฐู
10
00:00:43,460 --> 00:00:52,620
ุงูุฃููุงุน ุงู categories
11
00:00:52,620 --> 00:00:58,050
of primary immune response ุงู deficiencyุทุจ ุงุญูุง
12
00:00:58,050 --> 00:01:01,030
ููุชุทูู ูู ุงูุจุฏุงูุฉ ูู primary immune deficiency ุซู
13
00:01:01,030 --> 00:01:04,310
ููุชูู ุงูู ุงู secondary immune deficiency ุฌุงูู ูู
14
00:01:04,310 --> 00:01:08,130
ุงู primary immune deficiency ูู ุนุจุงุฑุฉ ุนู ุนูุงู
ู
15
00:01:08,130 --> 00:01:12,970
ุฃุณุงุณูุฉ ูู immune response ุงู ุจุงูุชุงูู ุจูุญูู ุนูู T
16
00:01:12,970 --> 00:01:17,410
cell ูุนูู cell mediated immunity ู ุจูุญูู ุนูู B
17
00:01:17,410 --> 00:01:21,070
cell ูุนูู antibody mediated immunity ุจูุญูู ุนูู
18
00:01:21,070 --> 00:01:28,590
both B and T cell immunityุซู
Non-specific immunity
19
00:01:28,590 --> 00:01:36,490
ู
ุชู
ุซูุฉ ุจุงููุงุฌูุณูุชู ุณูู and or ุงููู ุณูู ุซู
ุงู
20
00:01:36,490 --> 00:01:42,490
complement activation ุฃูุถุง ู ุทุจุนุง ูู ูุฐู ุงูุนูุงู
ู
21
00:01:42,490 --> 00:01:48,190
ู
ุดุชุฑูุฉ ุจุชู
ุซู ุงู category of primary immune
22
00:01:48,190 --> 00:01:52,070
response ููุทูู ุงูู ูู ุนุงู
ู ู
ู ูุฐู ุงูุนูุงู
ู ู ูุงุฎุฏ
23
00:01:52,070 --> 00:01:57,100
ุฃู
ุซูุฉุจุฏุงูุฉ ู
ุง ูุชุด ุจุชุดู ูู ูุฌูุฏ immunodeficiency
24
00:01:57,100 --> 00:02:05,380
ูุงููุง ููู ุนุดุฑ ู
ุญุงุฐูุฑ ุฃุณุงุณูุฉ ู
ุธุงูุฑ ุฃุณุงุณูุฉ for
25
00:02:05,380 --> 00:02:10,740
immunodeficiency disease ูู
ุฑุง ูุงุญุฏ six or more
26
00:02:10,740 --> 00:02:14,320
infections per year ูุนูู ุฃูุชุฑ ู
ู ุณุช ู
ุฑุงุช ุชุญุตู ูููุง
27
00:02:14,320 --> 00:02:17,820
infection ูู ุงูุณู
ุงุก ูู
ุฑุง ุงุชููู two or more severe
28
00:02:17,820 --> 00:02:22,360
sinusitis per yearูู
ุฑุง ุชูุงุชุฉ antibiotic treatment
29
00:02:22,360 --> 00:02:27,780
lasting for two months or even longer ุจุฏูู ุฃูุงู
30
00:02:27,780 --> 00:02:33,900
visible effect ูู
ุฑุง ุฃุฑุจุนุฉ two or more pneumonia
31
00:02:33,900 --> 00:02:39,800
per year ูู
ุฑุง ุฎู
ุณุฉ retardation of growth and
32
00:02:39,800 --> 00:02:44,920
development of child ูู
ุฑุง ุณุชุฉ recurrent deep skin
33
00:02:44,920 --> 00:02:50,610
or organ abscessesูู
ุฑุฉ ุณุจุนุฉ ู
ูููุณูุณ ู
ุณุชู
ุฑ ูู ุนู
ู
34
00:02:50,610 --> 00:02:52,630
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
35
00:02:52,630 --> 00:02:56,110
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
36
00:02:56,110 --> 00:02:57,110
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
37
00:02:57,110 --> 00:02:57,130
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
38
00:02:57,130 --> 00:02:57,530
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
39
00:02:57,530 --> 00:02:57,530
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
40
00:02:57,530 --> 00:02:57,610
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
41
00:02:57,610 --> 00:03:01,590
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู
42
00:03:01,590 --> 00:03:10,320
ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนู
ู ุนูู
ุฑุง ุชุณุนุฉ ุชูุฑ more severe
43
00:03:10,320 --> 00:03:14,740
infection ุฒู encephalitis, osteitis, dermatitis,
44
00:03:14,860 --> 00:03:19,440
myositis and sepsis ูู
ุฑุง ุนุดุฑุฉ family history
45
00:03:19,440 --> 00:03:27,680
indicating primary immune deficiency ุทุจุนุง ูู ุนูุฏูุง
46
00:03:27,680 --> 00:03:32,980
ุฌุฏูู ุงู ุดุงุก ุงููู ุงูุญููุงุช ุทูุน ุงููู ูุจูุจูู ููุง
47
00:03:32,980 --> 00:03:37,090
different types of infectionุนูู ุณุจูู ุงูู
ุซุงู ูุงูุช
48
00:03:37,090 --> 00:03:41,670
ุจูุชูุฑูุง ุงููุทุงุนุชุณ ู
ูุฏูุง ู ุจูุชูุฑูุง ุงูููู
ูููุง ุบุงูุจุง
49
00:03:41,670 --> 00:03:44,470
ุจูุดูููุง ูู ุงููุงุณ ุงููู ุนูุฏูู
B cell and antibody
50
00:03:44,470 --> 00:03:49,970
deficiency ู ููุฐุง ุฌุฏูู ู
ุตูู ุงููุง ุจุงูุฐุงุช ุฃู
ุฑุงุถ
51
00:03:49,970 --> 00:03:56,590
ูุซูุฑุฉ ู ุบูุงุจ ูู ูุงุญุฏ ุดู ุจูุนู
ู ูุฃูู ูุงุญุฏ B cell ุงู
52
00:03:56,590 --> 00:04:01,420
B lymphocyte deficiencywhich means deficiency in
53
00:04:01,420 --> 00:04:05,600
antibody-mediated immunity ููู ุจูุตูุฑ ููู recurrent
54
00:04:05,600 --> 00:04:08,260
bacterial infection ูุชุนุชุณู
ูุฉ recurrent infection
55
00:04:08,260 --> 00:04:11,960
ููุง ูุฐุง T cell deficiency ูุนูู cell-mediated
56
00:04:11,960 --> 00:04:15,920
immunity deficiency ุจูุฒูุฏ ุงู susceptibility to the
57
00:04:15,920 --> 00:04:19,460
viral fungal protozoa ูุงูinfection ููู ู
ุฌู
ูุนุฉ
58
00:04:19,460 --> 00:04:24,820
ูุจูุฑุฉ ู
ู ุนูุด ู
ู ุงูุญุงูุงุช ุงูู
ุฑุถูุฉ ูู ูุงุญุฏ ูู ุนูุด ูู
59
00:04:24,820 --> 00:04:27,080
ุงู associated disease
60
00:04:29,920 --> 00:04:32,720
ุชุฎูู ุงููุง ูุจุฏุฃ ูุญูู ุนููุง ุงู primary
61
00:04:32,720 --> 00:04:38,440
immunodeficiency syndromes ูุนูู ุจุงุณุชุซูุงุก ุงู IGA
62
00:04:38,440 --> 00:04:42,260
deficiency ุงู frequency of immunodeficiency is
63
00:04:42,260 --> 00:04:48,460
very low ุญุฏุฏููุง ูุงุญุฏ ูู ูู ุนุดุฑ ุชูุงู ุฎู
ุณูู ูุงูู
ูุฉ
64
00:04:48,460 --> 00:04:53,520
ู
ููู
associated with antibody deficiency ุนุดุฑูู
65
00:04:53,520 --> 00:04:59,350
ูุงูู
ูุฉ ู
ููู
ุงุณูุด combined with deficiency ุจู
ุนูู ุงูู
66
00:04:59,350 --> 00:05:03,850
ููู antibody ู cell-mediated immunity 18% for
67
00:05:03,850 --> 00:05:07,590
phagocystic disorders 10% for cell-mediated
68
00:05:07,590 --> 00:05:15,810
immunity alone ุงูููุฑุฉ ุงููุงุฏู
ุฉ P1.1ุจูุจูู ุงู ูู ู
ุง
69
00:05:15,810 --> 00:05:20,830
ูุงู ุงู defect earlier ูู ู
ุง ูุงู ุงู genetic defect
70
00:05:20,830 --> 00:05:24,830
ุงู ุงู block ุญุฏุซ
71
00:05:24,830 --> 00:05:30,330
ูู ุฏุฑุงุนู ุงููู ูู ุงูุฌูุงุฒ ุงูู
ูุงุนู ูู ู
ุง ูุงู earlier
72
00:05:30,330 --> 00:05:38,850
ูู ู
ุง ูุงู ุงู effect more severe and diseaseable
73
00:05:38,850 --> 00:05:45,160
ุดูููุง ุงููุฌุฑุทุจุนุง ูุฐุง figure ุงููู ุงูุชูุง ุดุงูููู ูุจูู
74
00:05:45,160 --> 00:05:51,460
ุงู ุงู hemopoietic maturation steps for both T and
75
00:05:51,460 --> 00:05:58,400
B lymphocytes ู I ุจู ุนูู ุณุจูู ุงูู
ุซุงู ุจุฏุงูุชูุง
76
00:05:58,400 --> 00:06:04,050
lymphoid stem cellุซู
pre-cell ุซู
immature cell ุซู
77
00:06:04,050 --> 00:06:07,970
ุงู mature ุจูู lymphocytes ุงููู ุทุจุนุง ุจุนุฏูุง ุจุชุฏููุง
78
00:06:07,970 --> 00:06:12,430
different types of antibody once ุงููู ูู
79
00:06:12,430 --> 00:06:18,090
maturation occur to plasma cell ูู ูู ู
ุฑุญูุฉ ู
ู
80
00:06:18,090 --> 00:06:23,570
ุงูู
ุฑุงุญู ู
ู
ูู ูุญุตู ููู defect ููู ู
ุฑุญูุฉ ู
ู ุงูู
ุฑุงุญู
81
00:06:23,570 --> 00:06:27,950
associated with certain diseaseู ูู ู
ุง ูุงูุช
82
00:06:27,950 --> 00:06:36,070
ุงูู
ุฑุญูุฉ ุฃู ุงูุฎูู ุจุฏุฑู ูู ู
ุง ูุงูุด ูู ุงูู
ุฑุงุญู ุงูุชู
83
00:06:36,070 --> 00:06:41,710
ุชูู ุงูุฎูู ุจุฏูุง ุชุชุนุทู ูุจุงูุชุงูู ูู ู
ุง ูุงู ุงู disease
84
00:06:41,710 --> 00:06:45,290
more severe ููุณ ุงูุญูุงูุฉ ุจุงููุณุจุฉ ูู thymus ุงู ุงู
85
00:06:45,290 --> 00:06:49,750
telephocytes ูู ุจุชูุฌู ุนูู ุงู thymus
86
00:06:52,580 --> 00:06:59,000
ุจุนุฏ ุฐูู ุชุธูุฑ ูู mature CD4 ุฃู CD8 T lymphocytes
87
00:06:59,000 --> 00:07:05,280
ูุทุจุนุง ุชุดุชุบู ูimmune
88
00:07:05,280 --> 00:07:10,600
cell ุงูู
ูู
ุงูุชุจููุง ุฅูู ุงูุฃุฑูุงู
ุงูู
ูุฌูุฏุฉ ูุดูููุง
89
00:07:10,600 --> 00:07:15,600
ูุณู
ูุง ุงูู
ุฑุงุญู ูุฐู ุฅูู ุฃุฑูุงู
ู
ุฎุชููุฉ ููู ู
ุฑุญูุฉ
90
00:07:15,600 --> 00:07:19,120
associated ุฒู ู
ุง ููุชููู
or combined with a certain
91
00:07:19,120 --> 00:07:24,000
disease ูุฑู 1 ุนูู ุณุจูู ุงูู
ุซุงู ูููุนูู ูู ุจุฏุฑู ุฎุงูุต
92
00:07:24,000 --> 00:07:27,120
ุงูุฎูุงู ุจูุตูุฑ ูู severe compound immunodeficiency
93
00:07:27,120 --> 00:07:32,200
syndrome ุฑูู
ุงุชููู ุจุฑุถู ุจุฏุฑู ุงุฏูุฉ ุจูุตูุฑ ูู
94
00:07:32,200 --> 00:07:36,000
congenital thymic aplasia ูุจุฑุถู ูุฐุง ุนุจุงุฑุฉ ุนู ุฏู
95
00:07:36,000 --> 00:07:40,020
ุฌุงุฑุณ ุณูุฏุฑูู
ูุนูู ู
ุงููุด ุชู lymphocytes ุจุชุชุตูุน ุงุชูู
96
00:07:40,020 --> 00:07:47,480
ุฑูู
ุชูุงุชุฉ ุงุฏูุฉ ุจูุตูุฑ ูู skid ุงูุถุง ุฑูู
ุงุฑุจุน ูู ุงู B
97
00:07:47,480 --> 00:07:51,610
cell ุงุฏูุฉูุงููุง ุจูุตูุฑ ูู X-Linked E Gamma Global
98
00:07:51,610 --> 00:07:58,530
Anemia ู
ุงูู ููุง Antibody ุจูุชููู ุฑูู
ุฎู
ุณุฉ ู
ุงุดู ูุฐุง
99
00:07:58,530 --> 00:08:03,570
ูู ุฃูุง ุฑูู
ุฎู
ุณุฉ ุจูุตูุฑ common variable immune
100
00:08:03,570 --> 00:08:09,670
deficiency disease ู ููุฐุง ูู ุงูุญุงูุงุช ุงููู ูู ูู
101
00:08:09,670 --> 00:08:16,440
ุงูู
ุฑุงุญู associated with certain diseaseูุจุฏุฃ ุจู
102
00:08:16,440 --> 00:08:22,600
Severe Combined Immunodeficiency Diseases ููู
103
00:08:22,600 --> 00:08:26,640
ุนุจุงุฑุฉ ุนู ููุชุฑูุฌููุณ ุฌุฑูุจ of disease associated or
104
00:08:26,640 --> 00:08:29,700
in which cell-mediated immunity and antibody ูุฃูู
105
00:08:29,700 --> 00:08:35,060
combined production are defected ุงูุชุงููู ู
ุนุทููู
106
00:08:35,060 --> 00:08:38,960
both humoral and cell-mediated immunity are
107
00:08:38,960 --> 00:08:44,940
defectedูู ุงูุฒู
ู ูุชุณู
ููุง ุงู Swiss-type Aiga
108
00:08:44,940 --> 00:08:49,820
Microbial Anemia ู ุงููุงุณ ูุฏููุฉ ุนุงุฏุฉ susceptible to
109
00:08:49,820 --> 00:08:54,060
virtually every type of microbial infection, viral
110
00:08:54,060 --> 00:08:59,040
infection, bacterial infection, fungal, protozoal
111
00:08:59,040 --> 00:09:04,380
and so on ุฃุดูุฑ ุงูุญุงุฌุงุช ุงููู ู
ูุญูุธุฉ ูู ูุฐุง ุงูููุน ู
ู
112
00:09:04,380 --> 00:09:08,380
ุงูุฃู
ุฑุงุถ ูู Infection of Cytomegalovirus,
113
00:09:08,980 --> 00:09:16,220
Pneumocystitiscarny eye and candida ุทุจุนุง ุงููุงุณ ุฏูู
114
00:09:16,220 --> 00:09:23,260
ู
ู
ููุน ูุงุฎุฏูุง vaccine with attenuated lymph virus
115
00:09:23,260 --> 00:09:29,700
ูุฃูู it will lead to death patient have been
116
00:09:29,700 --> 00:09:32,260
classified according to the following figure or
117
00:09:32,260 --> 00:09:40,020
table ุฌุงู ูุฏูุง ูุณู
ูู
ู T minus B plus T minus B
118
00:09:40,020 --> 00:09:45,920
minusุฃููุงุน ู
ุฎุชููุฉ ุณูุชุทุฑู ููู ููุน ู
ู ูุฐู ุงูุฃููุงุน ุจุณ
119
00:09:45,920 --> 00:09:51,980
ูุฌุจ ุฃู ูููู
ุงู T minus ูุนูู ูู ุบูุงุจ ู T cell ุจู
120
00:09:51,980 --> 00:09:57,500
ุจูุณ ูุนูู ูู normal ุจู cell ูู
ู
ูู ูููู ูู ุบูุงุจ
121
00:09:57,500 --> 00:10:02,280
ูุฃููู cell ูู
ุง ุฃููู T minus ุจู minus ูุนูู ูุง ุจู
122
00:10:02,280 --> 00:10:08,780
ููุง T cell ู
ูุฌูุฏุฉ ู ูู
ุง ุฃููู ุงูุชููู plusู
ุนูุงุชู
123
00:10:08,780 --> 00:10:12,080
ุงููุงุณ ุงูุชุงููุฉ ูุฏูู ุนูุฏูู
T ุณู ูB ุณู ููู ูู
ุบูุฑ
124
00:10:12,080 --> 00:10:18,840
ุดุบุงูุงุก ู
ุด ุดุบุงููู T plus B minus it's very rare ู
125
00:10:18,840 --> 00:10:23,960
they preferred treatment ุทุจุนุง ูุญุงูุงุช ู
ู ูุงูููุน ุงูู
126
00:10:23,960 --> 00:10:28,460
ูุนู
ู bone marrow transplantation from an HLA
127
00:10:28,460 --> 00:10:33,660
matched sibling donor ูุฏู ุจูู ู ูุฐู ุงูุญุงูุงุช ุงูู
128
00:10:33,660 --> 00:10:38,340
ุญุงูุฉ ูู T minus B plus ุงุชูููุง ุนูู ุงูู ููู
ุงููุด D
129
00:10:38,340 --> 00:10:42,000
-cell ูุฅูู
ุง ู
ุงููู B-cell ุงูู
ุฑุถ ูุฐุง ุนุจุงุฑุฉ ุนู X
130
00:10:42,000 --> 00:10:49,920
-linked skid ุจูู
ุซู 40 ู 50% ู
ู ุงูุญุงูุงุช ุงููู ุจูุญูู
131
00:10:49,920 --> 00:10:54,000
ุนููุง ุงู mutation ุฌุงูู ู
ูุฌูุฏ ุนูู ุงู X-chromosome
132
00:10:54,000 --> 00:10:58,980
ุงูุฌูู ุงููู ุตุงุฑ ููู mutation ู
ูุฌูุฏ ุนูู ุงู X
133
00:10:58,980 --> 00:11:05,180
-chromosome which could forgamer chain ู
ุงุดู
134
00:11:06,650 --> 00:11:12,870
Gamma Chain Cytokine Receptor ูุทุจุนุงู this Gamma
135
00:11:12,870 --> 00:11:17,230
Chain ุชูุนุจ ุฏูุฑ ูุจูุฑ ูู ุงู .. ุงููู ูู Signal
136
00:11:17,230 --> 00:11:22,290
Transduction ูุนุฏุฏ ูุจูุฑ ู
ู ุงู cytokine ู
ููุง IL2,
137
00:11:22,390 --> 00:11:30,110
IL4, IL7, IL9, IL15ูุทุจุนุง ูุฐู ู
ุนูุงุชู ุบูุจูุง ุจุนู
ู
138
00:11:30,110 --> 00:11:36,930
ุบูุงุจ ู ุงู function for this cytokine ููุฐุง ููุฑุฉ
139
00:11:36,930 --> 00:11:42,830
ูุงุถุญ ุฌุฏุง ูู receptor ุงููู ูู ุนุจุงุฑุฉ ุนู ุฅูุด legend
140
00:11:42,830 --> 00:11:49,870
ููู ุงู cytokine ูุฐูู ุงู legend ุชุนูููู ููู ุงู
141
00:11:49,870 --> 00:11:55,690
cytokine ูุฐูู ููู ุจูุชููู
ู
ู two chain ูุงุญุฏุฉุชู ุจููู
142
00:11:55,690 --> 00:11:58,550
ู
ุจุชุนุฏุฉ chain ูุงุญุฏุฉ ู
ููู
ุจุชูุนุจ ุฏูุฑู ูุจูุฑ ูู ุงู
143
00:11:58,550 --> 00:12:03,010
signal transduction ููู ุงู gamma chain gamma chain
144
00:12:03,010 --> 00:12:05,690
ูุจุงูุชุงูู ุบูุงุจูุง ูุนูู ู
ุงููุด signal transduction
145
00:12:05,690 --> 00:12:10,270
ูุจุงูุชุงูู ู
ุงููุด transcription for this gene ู
ุงุดู
146
00:12:10,270 --> 00:12:16,330
ูุจุงูุชุงูู ูู ุงู function ููุฐู ุงู cytokine will be
147
00:12:16,330 --> 00:12:22,950
missed ุงูู
ุฑุถ
148
00:12:22,950 --> 00:12:30,260
ุงูุชุงูู ุงู witchesูุนูู similar to this disease ูู
149
00:12:30,260 --> 00:12:34,880
ุบูุงุจ ุงูุฌุฒุก ุงูุชุงูู ู
ู ุงู receptor ู
ุด ูุจูููุจูู ุจุชุนุฏุฏ
150
00:12:34,880 --> 00:12:39,000
ุดููู ุงูู
ุง ู functioning process ุงููู ูู ุบูุงุจ ุงูุฌุงู
151
00:12:39,000 --> 00:12:44,900
ููู
ู
ุง ูุตูุฑ ููู ุบูุงุจ ููุฌุงู ุทุจุนุง ู
ุง ูุตูุฑุด ููู ุชุบูุฑ
152
00:12:44,900 --> 00:12:47,440
ูู ุงู gamma ูู
ุชู
ุง ุชุบูุฑุช ุจุชุงุนุฉ ุงู signal
153
00:12:47,440 --> 00:12:52,190
transduction ุบูุงุจ ุงูุฌุงู ุฃูุถุงุจุฑุถู ุจุนู
ู ููุณ ุงูุฃุนุถุงุก
154
00:12:52,190 --> 00:12:57,950
ูุจุงูุชุงูู ุจูุตูุฑ ููู ุบูุงุจ ูู signal transduction ูุฐุง
155
00:12:57,950 --> 00:13:04,990
X-linked ูุงู Jack deficiency ูู ุนุจุงุฑุฉ ุนู ุงุชุฒูู
ุงู
156
00:13:04,990 --> 00:13:12,290
recessive disease ุงู
157
00:13:12,290 --> 00:13:15,670
ุงุชุฒูู
ุงู recessive ูููุง ุบูุงุจ ุงู Jack ุชูุงุชุฉ ูู
158
00:13:15,670 --> 00:13:21,290
ุนุจุงุฑุฉ ุนู Tyrosine Kinase ูุทุจุนุง ุบูุงุจุจูุนูู ู
ุงููุด
159
00:13:21,290 --> 00:13:24,950
signal transduction ููุฌุฏูุง ุงู ุงู expression of
160
00:13:24,950 --> 00:13:28,530
Jack ู
ูุฌูุฏ ูู ูู ุงู hemopoietic cells ูุจุงูุชุงูู
161
00:13:28,530 --> 00:13:33,790
ู
ุงูุตูุฑุด ูู maturation ููุฎูุงูุง
162
00:13:33,790 --> 00:13:40,310
ูุฐู ุงูููุทุฉ ุงูุชุงููุฉ T minus B minus ูู
ู ุงูุฃู
ุฑุงุถ
163
00:13:40,310 --> 00:13:46,830
ุงูู
ุดุงุฑูุฉ ูู ูุฐุง ุงู group ูู ุงู adenosine diamine
164
00:13:46,830 --> 00:13:52,160
deficiencyููุฐุง ุนุจุงุฑุฉ ุนู ูุฒุงูู ุจููุนุจ ุฏูุฑ ูุจูุฑ ูู
165
00:13:52,160 --> 00:13:59,660
ุงูู Purine pathway ูู
ุซู 20% ู
ู ุญุงูุงุช ุงูู Skid ููู
166
00:13:59,660 --> 00:14:05,260
ุนุจุงุฑุฉ ุนู autism recessive disease ูุบูุงุจู ุจูุนูู
167
00:14:05,260 --> 00:14:11,720
accumulation of toxic wastes ุจูุตูุฑ ูู build up ูู
168
00:14:11,720 --> 00:14:20,200
build up ููุด ูู toxic waste ูู ุงูุฌุณู
ุทุจุนุง it has
169
00:14:20,200 --> 00:14:24,340
greatest impact of the immune ุนูู ุงูุฌูุงุฒ ุงูู
ูุงุนู
170
00:14:24,340 --> 00:14:29,880
ุจูุฃุฏู ููููููุฑ ุฃู both T and B cell development ุจุนุฏ
171
00:14:29,880 --> 00:14:32,260
ุชุงูู ุงููู ูู purely nucleotide phosphorylase
172
00:14:32,260 --> 00:14:33,020
deficiency
173
00:14:35,470 --> 00:14:39,610
ูุฐุง ุณูุคุฏู ุฃูุถูุง ุฅูู ุจูุงุก ุชุฌุงุฑุจ ู
ู ุฃุฌูุฒุฉ ู
ุฎุงุทุฑุฉ
174
00:14:39,610 --> 00:14:47,910
ุฎุตูุตูุง ูุฐู ุงูุฃุฌูุฒุฉ ุงูู
ุฎุงุทุฑุฉ ุจุฅู
ูุงููุง ุชุฏู
ุฑ ูุธุงู
175
00:14:47,910 --> 00:14:52,930
ุงููููููุฌูุง ูุจูุฃุซุฑ
176
00:14:52,930 --> 00:14:57,570
ุฃูุถูุง ุนูู ุงูู T-cell ูุจุงูุชุงูู ูู ุงูุงููููุชุดูู
177
00:14:57,570 --> 00:15:03,470
ู
ุฏูููู ููุน ุชุงูู ุงููู ูู Recombinase deficiency
178
00:15:04,630 --> 00:15:09,150
ุฃูุถุงู ุงูู Recombinase Deficiency ูุนุฑู ุฃูู ูู
179
00:15:09,150 --> 00:15:13,610
ุงูุฌููุงุช ุงูู
ุณุคููุฉ ุงููู ูู RAG 1 ู RAG 2 ูู
ุง two
180
00:15:13,610 --> 00:15:16,750
important genes ู
ูุฌูุฏูู ูู ุงูู lymphocytes only
181
00:15:16,750 --> 00:15:21,710
ูุจููุนุจูุง ุฏูุฑ ูุจูุฑ ูู ุงู rearrangement of both
182
00:15:21,710 --> 00:15:28,950
immunoglobulin gene and TCR gene ูุจุงูุชุงูู ุบูุงุจูู
183
00:15:29,520 --> 00:15:34,520
ุจูุคุฏู ุฅูู ุฎูู ูู ุงูู gene rearrangement ูุจุงูุชุงูู
184
00:15:34,520 --> 00:15:38,600
ุงูู mutation ุจุชุคุซุฑ ุฅูู complete absence ุชุนู
ู
185
00:15:38,600 --> 00:15:43,440
complete absence ููู T ู B ุงูุงููุณุงูุช ูุจุงูุชุงูู
186
00:15:43,440 --> 00:15:44,540
ู
ุงููุด immunoglobul
187
00:15:50,790 --> 00:15:56,210
ูุจุงูุชุงูู ู
ุงููุด match or ูุฃ ุชู ููุง ุจู ูุฃู ุงู
188
00:15:56,210 --> 00:16:04,670
function is intact ุชู ุจูุณ ุจู ู
ุงุนูู ุงุฐุง ุจูููููุง
189
00:16:06,040 --> 00:16:10,740
ููุงููุง ุงู ุฃุดุงุฑูุง ุงูู Omen Syndrome ูุงูู Omen
190
00:16:10,740 --> 00:16:17,280
Syndrome ุฃูุถูุง ูู ุนุจุงุฑุฉ ุนู ุฎูู ุจูุตูุฑ ููู reduction
191
00:16:17,280 --> 00:16:21,420
ูู ุงู or partial complete or partial reduction of
192
00:16:21,420 --> 00:16:27,900
the rag genes ูุจุงูุชุงูู ุจูุตูุฑ ููู ุฎูู ูู ุงู rag
193
00:16:27,900 --> 00:16:32,760
activity ุงู clinical presentation ุฒู ูุฒู ุงู graft
194
00:16:32,760 --> 00:16:39,350
versus host diseaseูุงููุงุณ ุฏููุฉ ุชุฏูุน ูุฐู ุงูุชุญูู
ุงุช
195
00:16:39,350 --> 00:16:44,390
ูููุธุงู
ุงูุงูููููู ููู
ูุฏููู
ุฌุณุฏ ูุจูุฑ ุฌู ุชู
196
00:16:44,390 --> 00:16:51,550
ุงูููุชุฑุงุชูุดู ู
ู ุฒูููููู ูุงูุชููุช ุชู ุณูู ุชุฏูุนูุง ุงู
197
00:16:51,550 --> 00:16:57,290
ุชููููุจุฑุชู ุจุงุชูู ุณุงูุชู ูุงูู ููุฐุง ุจููุฏุฑ ุงูููุจุฑ ุงู ุฌู
198
00:16:57,290 --> 00:17:00,730
ุงู ุณููุฏุฑูู
ูู
ุงู ูููุชุฑุงุดูู
199
00:17:03,450 --> 00:17:08,590
ุงูู
ุญุงุตูุฉ ู
ุฑุถู ู
ู ูุฐุง ุงูููุน ุจูุญุชุงุฌ ุงูู pre
200
00:17:08,590 --> 00:17:14,430
-treatment with immunosuppressive drug ุงู
201
00:17:14,430 --> 00:17:21,550
T plus B plus subgroup ูู ุงูุชูุชูู ู
ูุฌูุฏูู ููู they
202
00:17:21,550 --> 00:17:24,870
are not functioning ุฃุดูุฑ ูุฐู ุงูุฃู
ุฑุงุถ ุงู pair
203
00:17:24,870 --> 00:17:30,040
lymphocyte syndromeุฏู ูู ุจููุฏู ุงูู results from
204
00:17:30,040 --> 00:17:34,920
the failure to express HLA molecule ูุงูุณุจุจ ูู ุฐูู
205
00:17:34,920 --> 00:17:37,960
ุทุจุนุง ู
ุงููุด HLA molecule ูุนูู ู
ุงููุด antigen
206
00:17:37,960 --> 00:17:45,220
presentation ุจูุงุณุทุฉ ุทุจุนุง ุงููู ูู HLA class 2
207
00:17:45,220 --> 00:17:48,680
molecule deficiency ูู ุงูุบุงูุจ class 1 ู
ู
ูู ูููู
208
00:17:48,680 --> 00:17:54,470
ู
ุชุฃุซุฑ ูู
ู
ูู ูุฃcirculating T and B cell may be
209
00:17:54,470 --> 00:18:00,110
normal ููู ูู ุบูุงุจ ุงู HLA class 2 ู
ููููููู ู
ุง
210
00:18:00,110 --> 00:18:07,180
ุจูุญุตู ููู antigen presentation ู CD4 T cellุงูู ZAP
211
00:18:07,180 --> 00:18:12,080
-17 ู
ููุชูุดู ูู ุนุจุงุฑุฉ ุนู ููู
ููุงู
212
00:18:12,080 --> 00:18:19,620
ู
ูุณูุฌุฑ ุจูุนู
ู ููู ููุฅุดุงุฑุฉ ุจู
ูุฎุฏ
213
00:18:19,620 --> 00:18:21,700
TCR ูููููููุงุณ ููู ููู ููุฅุดุงุฑุฉ ุจู
ูุฎุฏ TCR ูููููููุงุณ
214
00:18:21,700 --> 00:18:24,800
ููู ููู ููุฅุดุงุฑุฉ ุจู
ูุฎุฏ TCR ูููููููุงุณ ููู ููู
215
00:18:24,800 --> 00:18:27,880
ููุฅุดุงุฑุฉ
216
00:18:27,880 --> 00:18:31,840
ุจู
ูุฎุฏ TCR ูููููููุงุณุดูููุง ูุฐู ุงูุนูุงูุฉ ู
ุง ุฃุญูุงูุง
217
00:18:31,840 --> 00:18:37,580
ูุนุฑู ุงูู ูู ุนูุฏูุง antigen presenting cell ู
ุงุดู
218
00:18:37,580 --> 00:18:43,160
ุจุชูุฏู
ุงููู ูู
219
00:18:43,160 --> 00:18:47,400
telophosize
220
00:18:47,400 --> 00:18:56,040
ุงู antigen ู telophosize ู ุทุจุนุงุณูุงุก ูุงูุช ุงูู
221
00:18:56,040 --> 00:19:01,140
Antigen Presenting Cell Macrophage ุงู B Cell ุชูุชูู
222
00:19:01,140 --> 00:19:05,660
ุจูุฏู
ุงูุงูุชุฌูู ูู
ูุ ูู T-Lymphocyte ุดูููุง ุงุญุชู
ุงูุงุช
223
00:19:05,660 --> 00:19:09,340
ุงูุฎูุงู ููู ุจุชุตูุฑ ูุจู ุงุญุชู
ุงู ูุตูุฑ ููู ุฎูุงู ูู ุงู
224
00:19:09,340 --> 00:19:13,220
MSC Class II ุจูุนู
ู ู
ุฑุถ ูุณู
ููู Pale Lymphocyte
225
00:19:13,220 --> 00:19:16,740
Syndrome ุญุงุฌุฉ ููุงู ู
ุชูู
ุงุญุชู
ุงู ุงูุฎูุงุฒ ูููู ูู ุงู
226
00:19:16,740 --> 00:19:20,860
FAS ุงู ุงู FAS Legend ู ููุนู
ู FAS Deficiency
227
00:19:20,860 --> 00:19:27,110
Syndromeู ุงุญุชู
ุงู ุงูุฎูู ูููู ูู CD40 legend ู CD40
228
00:19:27,110 --> 00:19:30,590
legend ู
ูุฌูุฏ ุนูู ุงู T cell ุจูุนู
ู ุญุงุฌุฉ ุจูุณู
ููุง
229
00:19:30,590 --> 00:19:37,990
Hyper IgM Syndrome ุงุซุฑ
230
00:19:37,990 --> 00:19:43,150
Multi System Disorders ุจุงูุงุถุงูุฉ ูู skid ูู skid
231
00:19:43,150 --> 00:19:48,190
like clinical picture associated with certain
232
00:19:48,190 --> 00:19:52,000
disease ุฒู Stuttgart-Aldrich Syndromeูุฏุง ุงุณู
ู
233
00:19:52,000 --> 00:19:56,940
syndrome ุนุจุงุฑุฉ ุนู x-linked disease ุจูุชู
ุซู ุจุงููุงุชู
234
00:19:56,940 --> 00:20:00,860
ูู
ุฑุง ูุงุญุฏ ูู bleeding ูุฃูู ููู thrombocytopenia
235
00:20:00,860 --> 00:20:04,340
ูู
ุฑุง ุงุชููู ูู recurrent bacterial infection ูู
236
00:20:04,340 --> 00:20:12,200
allergic reaction ูู long term patient ู
ู
ูู ูุฌูุจ ู
237
00:20:12,200 --> 00:20:18,680
malignant disease ู ุงู genetic basisูุช ูุนูู
238
00:20:18,680 --> 00:20:24,580
ู
ููุชูุดู ูู ุงูู X-linked gene ุงููู ุจููุฏูู ุงูู a
239
00:20:24,580 --> 00:20:29,940
witch code for ููุณููุช ุฃูุฏุฑูุฎ ุณูุฏุฑูู
ุจุฑูุชูู ููุฐุง
240
00:20:29,940 --> 00:20:35,400
ู
ูุฌูุฏ ูู ูู ุงูู hemopoietic stem cells both T and
241
00:20:35,400 --> 00:20:38,220
B cell are functionally non abnormal
242
00:20:40,700 --> 00:20:47,340
ูุจุงูุชุงูู ูุง ูู
ูู ุงูุดุฎุต ุงู ูุชูุงุนู ุจู Polysaccharide
243
00:20:47,340 --> 00:20:51,640
Antigen ุงูุชุนุงู
ู ูู ูุฐู ุงูุญุงูุฉ ูุญุชุงุฌ ุฅูู Antibiotic
244
00:20:51,640 --> 00:20:57,600
ูAntiviral ู ุจููู
ุงุฑู ุชุฑุงูุณุจูุงูุชูุดู ู ุจุฏูู ูุฐุง
245
00:20:57,600 --> 00:21:02,260
ุงูุนูุงุฌ ุงู life expectancy ูุง ุชุชุนุฏู ุชูุช ุณููุงุช
246
00:21:02,260 --> 00:21:09,180
ุฃุชุงูุณูุง ุชูุงูุฌูุชุงุฒูุงู
ู ุงููุตูุฑ ุจุฑุถู ู
ุฑุถู system
247
00:21:09,180 --> 00:21:14,320
genetic disorders ุจูุชู
ุซู ุจุงููุงุชู ุจูุตูุฑ ููู jerky
248
00:21:14,320 --> 00:21:19,480
movement or lack of muscle coordination ููู
ุฑ ุงุชููู
249
00:21:19,480 --> 00:21:24,170
abnormal vascular dilatation ุชูุนูุฌูุชุงุฒูุฉูู ุงูู eye
250
00:21:24,170 --> 00:21:28,570
ู ุงู skin ู ุจุฒูุงุฏุฉ ุงู susceptibility to infection
251
00:21:28,570 --> 00:21:34,870
ุจูุตูุฑ ุงูุฏูููููู
ุฉ ู ุงู defect ูู ุงู both B ู T cell
252
00:21:34,870 --> 00:21:40,270
ุงู gene ุทุจุนุง of ataxia telangiectasia code for a
253
00:21:40,270 --> 00:21:46,490
protein known ATM ุงูุฃุทูุงู have a risk for
254
00:21:46,490 --> 00:21:51,870
developing malignancy ุฎุตูุตุง ุงู lymphoid neoplasm
255
00:21:55,810 --> 00:22:01,390
ุงูู category ุงูุชุงูู ูู ุงู immune deficiency
256
00:22:01,390 --> 00:22:04,030
disorder associated with T cell and cell-mediated
257
00:22:04,030 --> 00:22:08,510
immunity ูุงููุง ุงููุงุณ ูุฏููุฉ ู
ุด ุนูุฏูู
T cell
258
00:22:08,510 --> 00:22:12,790
associated deficiency disease ุงูู ุงุชูููุง ุนูู ุงู ุงู
259
00:22:12,790 --> 00:22:19,090
T cell deficiency ู
ุงููุดู associated with ุงููู ูู
260
00:22:19,090 --> 00:22:21,810
disease ุฒู ุงู viral fungal protozoal infection
261
00:22:23,590 --> 00:22:26,890
ููููุง ุจูุนุฑู ุฅู ุงูู T-Lymphocyte ุจุชุณุงุนุฏ ุงูู B
262
00:22:26,890 --> 00:22:30,730
-Lymphocyte ูู ุฅูุชุงุฌ ุงูู antibody which antibody
263
00:22:30,730 --> 00:22:36,430
would form T cell dependent antigen ูุบูุงุจ or T
264
00:22:36,430 --> 00:22:40,810
cell associated deficiency ููุนู
ู selective defect
265
00:22:40,810 --> 00:22:46,170
in antibody production ูุจุงูุชุงูู T cell deficient
266
00:22:46,170 --> 00:22:51,430
patient have difficultto distinguish have
267
00:22:51,430 --> 00:22:55,850
difficulty to distinguish clinically to be
268
00:22:55,850 --> 00:23:00,270
distinguished clinically from a skeptic patient ู
ุง
269
00:23:00,270 --> 00:23:05,450
ุฒุงู ุงู B ู ุงู T ู
ุด ู
ูุฌูุฏุฉ ูุจูู ูู
ุงู ุงู B ู
ุด ุฑุงุญ
270
00:23:05,450 --> 00:23:09,350
ุชุดุชุบู Congenital
271
00:23:09,350 --> 00:23:13,890
Thymic Aplasia ุงููู ูู ุฏูุฌุงุฑุฏ ุณูุฏุฑูู
ูููุง ูุฐุง ูู
272
00:23:13,890 --> 00:23:20,950
ู
ุฑุงุญู ู
ุจูุฑุฉ ุฌุฏุง ุจุตูุฑ ุงุฐุง ูุงูุฑูู ูู ุฑูู
ุงุชููููู ุงูู
273
00:23:20,950 --> 00:23:26,110
T cell hemopoietic maturation steps ุงูู
ูู
ุฏู ุฌูุฑุฌ
274
00:23:26,110 --> 00:23:31,070
ุณูุฏุฑูู
ุจูุนูู ุงูู ููู T cell deficiency ู in which
275
00:23:31,070 --> 00:23:34,770
the cell must develop abnormally ู
ุงููุด ุงูุด ู
ุงููุด
276
00:23:34,770 --> 00:23:38,950
development ูุจูู ู
ุงูู ุฅูุชุงุฌ ู T lymphocyte no T
277
00:23:38,950 --> 00:23:46,310
cell ู ูููู ุฅู ุงูุฎูู ูุงุชุฌ ุนู defective migration
278
00:23:46,310 --> 00:23:51,420
of fetal neural crest cellsุงูุซุงูุซุฉ ูุงูุชุงูุชุฉ
279
00:23:51,420 --> 00:23:58,280
ู
ุตุทูุญุงุช ุงููุฑูุฌูุงู ูุจุงูุชุงูู ุงูู
ุฑูุถ ุงููุงุฑุฏ ูุงูููุณ
280
00:23:58,280 --> 00:24:05,480
ูุชุทูุฑ ุจุดูู ุทุจูุนู ูุจุฑุถู ุงูุซุงูู
ุณ ูุงูุจุฑุงุซูุฑููุฏ ูุง ูุชู
281
00:24:05,480 --> 00:24:08,820
ุชุตู
ูู
ูุฐุง ูุคุฏู ุฅูู ุซุงูู
ู ุฃุจููุฌูุง
282
00:24:08,820 --> 00:24:14,640
ูhypoparathyroidism ุซุงูู
ู
283
00:24:14,640 --> 00:24:18,940
ุฃุจููุฌูุง ููุชูู ูู ู
ูุงุฌุฃุฉ ู
ุฏุฑุณุฉ ู
ุฏุฑุณุฉ ู
ุฏุฑุณุฉ ู
ุฏุฑุณุฉ
284
00:24:19,890 --> 00:24:24,170
Dudler's syndrome ูู ู
ุด hereditary disease ูุงูู
ุง
285
00:24:24,170 --> 00:24:31,990
ุจูุตูุฑ ููู Sporadic deficiency in chromosome 22q11
286
00:24:31,990 --> 00:24:36,990
or deletion ุทุจุนุง ูุฏูู ุงูู
ุฑุถู ุจูุตูุฑ ูู ุนูุฏูู
287
00:24:36,990 --> 00:24:40,350
recurrent of or chronic infection with viruses
288
00:24:40,350 --> 00:24:47,810
ุจูุชูุฑูุง ููุฌุงู ุจุฑูุชูุฒููู ู ุงููุงุณ ูุฏูู ุนูุฏูู
ููุงุจ ูู
289
00:24:47,810 --> 00:24:54,090
T cellุฃูุถูุง ูุดูุช ุชุฌุฑู ุนูู ุชุฌุงุฑุจ ุงูุงูุชุจุงู ูุฐู
290
00:24:54,090 --> 00:24:56,730
ุงูุฃุดุฎุงุต ูุง ูุฌุจ ุฃู ูููููุง ู
ู
ูุฒูู ุจูุงุณุทุฉ ู
ูุงุฌูุฉ
291
00:24:56,730 --> 00:24:58,610
ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ
292
00:24:58,610 --> 00:25:02,910
ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ ู
ูุงุฌูุฉ
293
00:25:03,160 --> 00:25:06,740
with normal peripheral T cell number ูุนูู ููู
294
00:25:06,740 --> 00:25:12,140
normal T lymphocyte ููู ูู ููุณ ุงูููุช ูุดู ูุดู
295
00:25:12,140 --> 00:25:17,960
function ุงุฏู functional defect ูู T cell ุงูุถุง
296
00:25:17,960 --> 00:25:22,260
opportunistic infection and high incidence of
297
00:25:22,260 --> 00:25:27,140
autoimmune disease ู
ูุงุญุธุงุช it's autosomal
298
00:25:27,140 --> 00:25:32,200
recessive pattern ูุทุจุนุง ูู ุนุจุงุฑุฉ ุนู heterogeneous
299
00:25:32,200 --> 00:25:38,880
groupุฃูุถุง ูุดู
ู ุบูุงุจ ูู ZAP-17 ุชูุฑูุฒููููููุฒ CD3E
300
00:25:38,880 --> 00:25:45,860
ูCD3G ูู ูุฐู ุงูู
ููููููู ุงูู
ุชุนููุฉ ุจุงูุฅุดุนุงุฑ T-cell
301
00:25:45,860 --> 00:25:55,840
ูุจุงูุชุงูู ู
ุงููุด ูุงููุดู Autoimmune
302
00:25:55,840 --> 00:26:01,920
lymphoproliferative disease ุงูุฃูุถุงู ุฅููุง ุชุณู
ู ุจู
303
00:26:01,920 --> 00:26:06,300
Inherited by Massive Proliferation of Lymphoid
304
00:26:06,300 --> 00:26:08,980
Tissue ูุจุฏุฃุช
305
00:26:08,980 --> 00:26:27,160
ูุชุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุทุท
306
00:26:32,150 --> 00:26:35,050
ุนุงู
ู ุงูู autoimmune lymphoproliferative ุงูุดุฎุตูุฉ ุฃู
307
00:26:35,050 --> 00:26:43,170
ุงูุดุฎุตูุฉ ุงูุณููุงู
ูุฉ ูุฏููุง ู
ููุชูุดู ูู ุงูู FAS ุฌูู
308
00:26:43,170 --> 00:26:51,870
ูุชุนุงู
ู ู
ุน ุงูู FAS ุจุฑูุชูู CD95 ูุชุนุงู
ู ู
ุน ุงูู
309
00:26:51,870 --> 00:27:00,350
Apoptosis signaling ูุฏููู
ูุงุญุฏ ุทุจูุนู ููุงุญุฏ ู
ููุชูุช
310
00:27:00,350 --> 00:27:07,140
FAS ู
ููููููููุฐุง ุจูุคุฏู ุงู that mutated phase
311
00:27:07,140 --> 00:27:11,140
molecule interfere with the function of normal
312
00:27:11,140 --> 00:27:15,780
molecule ุทุจุนุง ุงู mutated ูู ุงููู ุจูุชุฏุฎู ูู ุงู
313
00:27:15,780 --> 00:27:20,420
function of normal molecule these patients have
314
00:27:20,420 --> 00:27:25,840
defect in other component of apoptosis pathway ุฒู
315
00:27:25,840 --> 00:27:29,120
ุงู phase ligand or case base 10
316
00:27:31,670 --> 00:27:37,270
Chronic Mucocutaneous Candidiasis ุจูู ู
ู ุงูุงุณู
317
00:27:37,270 --> 00:27:42,250
Candidiasis ูุนูู ููู Candida infection of skin and
318
00:27:42,250 --> 00:27:47,830
mucous membrane ุบุงูุจุง ุงูู
ุฑุถู have normal T cell
319
00:27:47,830 --> 00:27:52,070
mediated immunity to microorganism other than
320
00:27:52,070 --> 00:27:56,810
Candida and normal B cell mediated immunityto all
321
00:27:56,810 --> 00:28:04,190
microorganism ุจู
ุง ูููุง ุงู Canada ูุนูู ุงูุฎูู ูู
322
00:28:04,190 --> 00:28:09,210
ุงููุ ูู ุงู T-lymphocyte which can respond to all
323
00:28:09,210 --> 00:28:12,930
ุงู micro part ู
ุน ุงู Canada ุจููู
ุง ุงู B-lymphocyte
324
00:28:12,930 --> 00:28:17,350
is normal they have selective defect in the
325
00:28:17,350 --> 00:28:20,210
functional of T cell
326
00:28:23,500 --> 00:28:28,520
ุงูุชุงูู ูู ุงู BCL-R immunoglobulin associated
327
00:28:28,520 --> 00:28:33,400
immunodeficiency ูุฃุดูุฑ
328
00:28:33,400 --> 00:28:36,980
ู
ุซุงู ุนูู ุฐูู ุจุฑูุชูู ุงู ุฌุงู
ุง ุบููุจููุงููููุง ููู ุนุจุงุฑุฉ
329
00:28:36,980 --> 00:28:42,340
ุนู X-linked infantile ุงู ุฌุงู
ุง ุบููุจููุงููููุง ุงูุฃุทูุงู
330
00:28:42,340 --> 00:28:48,260
ู
ู Infanta ุงูุฃุทูุงู present with serious unrepeated
331
00:28:48,260 --> 00:28:52,390
infectionูุณุจุจ ูู ุฐูู is severe depression or
332
00:28:52,390 --> 00:28:56,710
virtual absence of all immunoglobulin ูุญูุง ุจูุญูู
333
00:28:56,710 --> 00:29:00,890
ุนูููุง protons ูุนูู ู
ุงููุด ุจู ุณู ู
ุงููุด ุงูุด ุจู
334
00:29:00,890 --> 00:29:06,650
lymphocyte ู
ุนูุงุชู ู
ุงููุด antibody production ุทุจุนุง
335
00:29:06,650 --> 00:29:11,250
ุงู major defect ูุฌุฏูู ุงูู ูู ุนุฏู
ูุฏุฑุฉ ุงูุจูุช ุงููุง
336
00:29:11,250 --> 00:29:19,290
ุชุฌูุจ to be mature as B cell protons ุฌูู
337
00:29:20,990 --> 00:29:28,470
ุชู
ุชุบููุฑู ุจุทุฑููุฉ X ู
ุฑุชุจุทุฉ ูุฐู
338
00:29:28,470 --> 00:29:33,710
ุงูุฌููุงูุงุช ุชุฏุนู ุชูุฑูุฒูู ููููุฒ ุงูุฒุนูู
ู
ูุฌูุฏ ูู
339
00:29:33,710 --> 00:29:39,150
ุงููCytosol XLA
340
00:29:39,150 --> 00:29:44,810
ุชู
ุชุญูุทู ูุนูู ุนููู ุงูู
ุชูุณุท ุงูู
ุชูุณุท
341
00:29:44,810 --> 00:29:46,210
ุงูู
ูุฌูุฏ ูู ุงููCytoplasmic
342
00:29:49,190 --> 00:29:53,930
Patient suffered repeated infection Treatment ุทุจุนุง
343
00:29:53,930 --> 00:29:57,490
Periodic injection of intravenous gamma globulin
344
00:29:57,490 --> 00:30:04,670
ุจูุญุชูู ุนูู IgG Transient
345
00:30:04,670 --> 00:30:10,990
Hypo Gamma Globulinemia ุงุณู
Transient ูู ุนู
ุฑ ุฎู
ุณุฉ
346
00:30:10,990 --> 00:30:16,940
ูุณุช ุดููุฑุจูุตูุฑ ููู Passively transferred from
347
00:30:16,940 --> 00:30:26,980
maternal to fetus of IgG antibody ูุทุจุนุง
348
00:30:26,980 --> 00:30:36,140
ูู ูุฐู ุงูุญุงูุฉ ุจูุจุฏุฃ ุงู IGG ุจูุจุฏุฃ ูุธูุฑ
349
00:30:36,140 --> 00:30:44,810
ุงููู ูู ุงู infant IGG premature infantู
ู
ูู ูุตูุฑ
350
00:30:44,810 --> 00:30:49,570
ุนูุฏู Transient IgG Deficiency if they are not yet
351
00:30:49,570 --> 00:30:55,050
able to synthesize immunoglobulin sometimes helper
352
00:30:55,050 --> 00:30:59,630
T cells are deficient ูุนูู ุจูุตูุฑ ููู ุบูุงุจ ูู ุงู T
353
00:30:59,630 --> 00:31:04,030
lymphocyte help ูุจุงูุชุงูู ู
ุงููุด Antibody production
354
00:31:04,030 --> 00:31:08,070
ุฃู B cell functioning ูุนูู ู
ุงููุด ุดูุก this disease
355
00:31:08,070 --> 00:31:10,310
may persist for a few months ู
356
00:31:12,600 --> 00:31:17,900
ุจุงููุชูุฑ ูุบุงูุฉ ุณูุชูู it's not x-linked and should
357
00:31:17,900 --> 00:31:24,240
be distinguished from x-linked disease ุฎูุงู ูุฌูุฏ
358
00:31:24,240 --> 00:31:29,460
ุงู normal number of B cells immunization should
359
00:31:29,460 --> 00:31:33,800
not be given during this period common variable
360
00:31:33,800 --> 00:31:38,120
immunodeficiency ู
ู ุงูุฅุณู
it's characterized by
361
00:31:38,120 --> 00:31:39,280
ุบูุงุจ
362
00:31:43,570 --> 00:31:51,510
ู
ุงุดู ุงู reduction ูู ุงู serum IgG ู IgA ู ุจูููู ูู
363
00:31:51,510 --> 00:31:57,890
ุนูุฏู IgM normal ุงู low ู ุทุจุนุง ูู normal ุงู low
364
00:31:57,890 --> 00:32:03,950
ุจุฑูุฑ ุงู B cell number ุงู B cell fails to mature
365
00:32:03,950 --> 00:32:09,650
into plasma cellูุงูู
ุฑุถู have recurrent respiratory
366
00:32:09,650 --> 00:32:13,550
and gastrointestinal infection treatment by
367
00:32:13,550 --> 00:32:22,850
intravenous immunoglobulin selective
368
00:32:22,850 --> 00:32:29,160
immunoglobulin deficiencyุงูู IgA-Deficiency ุบุงูุจุง
369
00:32:29,160 --> 00:32:31,860
ู
ุฑุถู ุจุณ ูููู ุนูุฏูู
recurrent viral or bacterial
370
00:32:31,860 --> 00:32:35,300
infection, celiac disease, defective absorption
371
00:32:35,300 --> 00:32:39,060
and repel ุงููู ูู ุนุจุงุฑุฉ ุนู ุงูู celiac or maybe
372
00:32:39,060 --> 00:32:43,720
entirely asymptomaticุ treatment ุจุฏู pro-the
373
00:32:43,720 --> 00:32:47,360
spectrum antibioticุ IgM-Deficiencyุ rare
374
00:32:47,360 --> 00:32:52,300
disorders ูุทุจุนุงุงูู
ุฑุถู ุจูุนุงููุง ู
ู recurrent and
375
00:32:52,300 --> 00:32:54,740
severe infection with polysaccharide antigen
376
00:32:54,740 --> 00:32:59,840
-encapsulated organism ุฒู pneumonia ุฃู pneumococci
377
00:32:59,840 --> 00:33:05,040
and hemophilus inflammation ุงู disorders of T and
378
00:33:05,040 --> 00:33:11,780
B interaction ุฒู ุงูhyper IgM syndrome ููู ุนุจุงุฑุฉ ุนู
379
00:33:11,780 --> 00:33:18,150
hyper X-linked hyper IgM syndromePresent with
380
00:33:18,150 --> 00:33:22,530
recurrent respiratory infection ู
ู ุฃูู ุณูุฉ ุฅูู
381
00:33:22,530 --> 00:33:27,670
ุณูุชูู ู
ู ุงูุนู
ุฑ ู
ูุชูุดู ู
ูุฌูุฏุฉ ูู CD40-ligand ุฌูู
382
00:33:27,670 --> 00:33:32,010
ุงูู
ูุฌูุฏ ุนูู ุงูุฅูุณู ูุฑูู
ุฒูู
ุงููู ูุจูู ุจููุฏู ุฅูู
383
00:33:32,010 --> 00:33:37,890
CD40-ligand ูุจุงูุชุงูู ูู ุงูุดูุก
384
00:33:40,910 --> 00:33:45,050
ุณูุฌูุงู ุชุฑุงูุฒุฏูุดู ูุนูู ู
ุงููุด ูุงููุดู CD40 ูุฌู ุจุฑุช
385
00:33:45,050 --> 00:33:50,390
ุจุฑุช ู
ุน CD40 ู
ูุฌูุฏ ุนูู ุณุทุญ ุจู ูููููุณุงูุช ูุทุจุนุง this
386
00:33:50,390 --> 00:33:57,810
interaction rescue the B cell from apoptosis X
387
00:33:57,810 --> 00:34:00,990
-linked lymph proliferative disease Duncan
388
00:34:00,990 --> 00:34:08,070
syndrome ููุฐู ุจูุตูุฑ ูู ุนุฏู
ูุฏุฑุฉ ุนูุฏ ุงู T cell to
389
00:34:08,070 --> 00:34:13,700
regulate B cell growthูู ุจูุนุชุจุฑ major part of the
390
00:34:13,700 --> 00:34:19,820
underlying disease
391
00:34:19,820 --> 00:34:24,220
ูุนูู this mechanism deficiency ูู ุงูุฃุณุงุณ ูู
392
00:34:24,220 --> 00:34:29,730
ุงูู
ูุถูุน ุงู lymphoma incidence is highูุงูุชูู ููู
393
00:34:29,730 --> 00:34:35,090
phagocytic function ููุท
394
00:34:35,090 --> 00:34:40,930
ููุชุฐููุฑ ุงููุงุฌูุณูุชู ูุงููุดู ูุนูู ุฅุฐุง ูุงู ููู ุฎูู ูู
395
00:34:40,930 --> 00:34:48,910
ุฎุทูุงุช ุงููุงุฌูุณูุชุณ ููุท ููุชุฐููุฑ ุงููุงุฌูุณูุชุณ ุฎุทูุงุช
396
00:34:48,910 --> 00:34:54,620
ุงููุงุฌูุณูุชุณ ูู ุฃุฏููุฌููุซู
ุงู diabetes ุซู
ุงู
397
00:34:54,620 --> 00:35:00,340
chemotaxis ุซู
ุงููุงุฌู ุณุงูุชูุณูุซ ุซู
ุงู killing ู
398
00:35:00,340 --> 00:35:07,080
ุงูุชุงูู ูู ุบูุงุจ ูู ูู ู
ุฑุญูุฉ ู
ู ุงูู
ุฑุงุญู ูุฐู ูุคุฏู ููุง
399
00:35:07,080 --> 00:35:11,280
ูู ู
ุฑุญูุฉ is combined or is associated with certain
400
00:35:11,280 --> 00:35:18,460
disease ู
ุงุดู ุงุฐุง ุตุงุฑ ููู ุจุฑุถู ุงูุฎูู ู
ุถุฑู ู
ุนูุงุชู ูู
401
00:35:18,460 --> 00:35:22,550
ุงูู
ุฑุงุญู ุงููู ูุฏ ุชูููุง ูุงููุฉูุฅุฐุง ูุงู ุงูุฎูู ุญุฏุซ
402
00:35:22,550 --> 00:35:27,990
ู
ุซููุง ู
ุซููุง ูู ุงููุงุฏ ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง
403
00:35:27,990 --> 00:35:29,070
ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง
404
00:35:29,070 --> 00:35:29,070
ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง ู
ุซููุง
405
00:35:29,070 --> 00:35:32,470
ู
ุซููุง ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู
406
00:35:32,470 --> 00:35:33,030
ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู
407
00:35:33,030 --> 00:35:37,450
ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู
408
00:35:37,450 --> 00:35:43,450
ู
ุซูู ู
ุซูู ู
ุซูู ู
ุซูู
409
00:35:44,920 --> 00:35:49,480
LAD ูู ุจุฑูุงู
ุฌ group of disorders ุจูุชู
ูุฒ ู
ู ุจูุตูุฑ
410
00:35:49,480 --> 00:35:52,560
ููู ุฎูู ูู ุงู interaction ู
ุง ุจูู ุงู leukocyte ู
ุน
411
00:35:52,560 --> 00:36:00,660
ุงู vascular endothelial cells ู ุทุจุนุง ูุงู ุงูู
ุฑุงุญู
412
00:36:00,660 --> 00:36:04,700
ุทุจุนุง ุฌุงููุง ููู ุงูุชุฑ ู
ู ู
ุฑุญูุฉ ูู LAD disease ู
413
00:36:04,700 --> 00:36:09,240
ูุณู
ููุง ูุชูุช ู
ุฑุงุญู LAD 1, LAD 2, LAD 3 ู ุฒู ู
ุง
414
00:36:09,240 --> 00:36:13,400
ุงูุชูุง ุดุงูููู ูู LAD 1 ุจูุตูุฑ ููู ุฎูู ูู ุงู diabetes
415
00:36:15,830 --> 00:36:20,730
ูู ุงููุฏ ุงุชููู ุจูุตูุฑ ููู ุฎูู ูู ุงู adhesion ูู ุงููุฏ
416
00:36:20,730 --> 00:36:23,330
ุงูุชูุงุชุฉ ุจูุตูุฑ ููู ุฎูู ูู ุงู activation ุงููู ูู
417
00:36:23,330 --> 00:36:27,450
ุงููุงุฌู ุณูุชูุณุณ ุจูุตูุฑ ูููุง ุฎูู ู
ุงุดู ุงูููู
ุจูุตูุฑ ููู
418
00:36:27,450 --> 00:36:33,290
ุฎูู ูู ูุงุญุฏ ุงููู ูู ุงู adhesion ุฃูู ูุงุญุฏุฉ ุจูุตูุฑ
419
00:36:33,290 --> 00:36:38,130
ููู ุฎูู ูู ูู ูุฐู ุงูู
ุฑุงุญู ู
ุงุดู ูุงูููู
ุจูุตูุฑ ููู
420
00:36:38,130 --> 00:36:41,270
ุฎูู ูู ุฃุฎุฑ ูุงุญุฏุฉ ุงููู ูู ุงู activationุทุจุนุง ุจูุญุตู
421
00:36:41,270 --> 00:36:51,110
ููู ุฃู
ุฑุงุถ ุฒู ุงูู Chediac Higashi Syndrom ูCDD ูุงู
422
00:36:51,110 --> 00:36:53,510
ุงููู ูุงุฏ ูุงุญุฏ ุญุถุฑ ุนู ุงูู autosomal recessive
423
00:36:53,510 --> 00:36:58,870
disease ู
ูุงุจููุฌ ุชู ูุฑูู
ูุฒูู
ุงููู
22 ุงูู
ุฑุถู ุนูุฏูู
ุงู
424
00:36:58,870 --> 00:37:03,690
effect ุงู ูุชููู subunits of integrin molecule ููุฐุง
425
00:37:03,690 --> 00:37:09,210
ุจููุฏู ุฅูู ุงููู ูู ุงูู adhesion to feel adhesion
426
00:37:09,210 --> 00:37:12,740
and migrationof all white blood cells in the army
427
00:37:14,860 --> 00:37:18,980
ูู ุงูุฃุฏูุงุญ ุงูู
ุฑุถู ูุญุตู ุนูุฏูู
current soft tissue
428
00:37:18,980 --> 00:37:22,760
bacterial infection ููุฒูุฏ ุงูููุช blood cell count
429
00:37:22,760 --> 00:37:27,540
ููู ุจุฏูู bus formation ูุนูู ู
ุงูู activity ูู
ุงููุด
430
00:37:27,540 --> 00:37:31,060
ูู ุงูุฃุฎู
ุงุช ุงููู ูุฑุง ุงู adhesion ุงู ุงู effecting
431
00:37:31,060 --> 00:37:35,140
wound healing lymphocyte function is also affected
432
00:37:35,140 --> 00:37:39,500
due to the lack of lymphocyte functioning antigen
433
00:37:39,500 --> 00:37:44,860
one expressionุงูู Add to ูููุง ุจูุตูุฑ ููู defect in
434
00:37:44,860 --> 00:37:50,180
selecting ุงูู legend ูุงูู underlying defect ุงููู
435
00:37:50,180 --> 00:37:54,400
ูู Add to ุจูุตูุฑ
436
00:37:54,400 --> 00:37:58,700
ููู ุฃูุถูุง ุฎูุงู ุงููููู
ูููููุฒ ู
ุชุน Polism ูุฏู ุจููุฏ
437
00:37:58,700 --> 00:38:03,140
ุฅูู ุบูุงุจ ูููููุฒ ููุช ุงู legend for selecting to be
438
00:38:03,140 --> 00:38:08,560
bind ูุฏู ู
ุซู ุฃู ุตูุฑุฉ ุญููุฉ ููุฐุง ุงูู
ูุถูุน ุงูุงุฏ ูุงุญุฏ
439
00:38:08,560 --> 00:38:18,290
ูู ุงูุดูุกูู ุนุจุงุฑุฉ ุนู ุงุชูุฌููู
ุงุดู ูุฏ ุงุชููู ุนุจุงุฑุฉ ุนู
440
00:38:18,290 --> 00:38:24,270
rolling Selected ุชููู ุบูุฑ ุฑูู
ุชูุงุชุฉ ุงููู ูู ุงู
441
00:38:24,270 --> 00:38:31,110
activation is defected ุทุจุนุง ูุฐุง ููู ูู ูุฏ ูุงุญุฏ ุจุณ
442
00:38:31,110 --> 00:38:36,070
ููู ุฎูุงู ูู ุงูุงุฑุชุจุงุท ู ุงู transmigration ุงููู ูู
443
00:38:45,690 --> 00:38:52,590
ุงูุชุฌุฑุงููุงู ุงู ุฃูุฑูุฌุงูููู ุจูุตูุฑ
444
00:38:52,590 --> 00:38:57,750
ูู ุนูุฏูุง ููุฉ ูู ุงู interest of the organism ู this
445
00:38:57,750 --> 00:39:00,470
results in
446
00:39:02,700 --> 00:39:11,060
ูุงุฌูุฒูู
ูุฑู
ุดู ุฃู ูุงุฌูุฒูู
ูุฑู
ุดู ุงู
447
00:39:11,060 --> 00:39:11,740
ูุงุฌูุฒูู
ูุฑู
ุดู ุงู ูุงุฌูุฒูู
ูุฑู
ุดู ุงู ูุงุฌูุฒูู
ูุฑู
ุดู ุงู
448
00:39:11,740 --> 00:39:17,280
ูุงุฌูุฒูู
ูุฑู
ุดู ุงู ูุงุฌูุฒูู
ูุฑู
ุดู ุงู ูุงุฌูุฒูู
ูุฑู
ุดู ุงู
449
00:39:17,280 --> 00:39:22,200
ูุงุฌูุฒูู
ูุฑู
ุดู ุงู ูุงุฌูุฒูู
450
00:39:23,380 --> 00:39:26,020
ู
ุฎููู ูุจูุฑ ู
ู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
451
00:39:26,020 --> 00:39:27,180
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
452
00:39:27,180 --> 00:39:30,020
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
453
00:39:30,020 --> 00:39:31,620
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
454
00:39:31,620 --> 00:39:33,240
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
455
00:39:33,240 --> 00:39:38,680
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
456
00:39:38,680 --> 00:39:40,940
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
457
00:39:40,940 --> 00:39:40,940
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
458
00:39:40,940 --> 00:39:40,940
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
459
00:39:40,940 --> 00:39:46,160
ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู ุงูู
ุฎููู
460
00:39:48,980 --> 00:39:53,040
ูุจุงูุชุงูู ุจูุญุตู ููู ุนู
ููุฉ phagocytosis ููู ู
ุงููู
461
00:39:53,040 --> 00:39:57,600
killing ูุจูุญุตู ููู intracellular survival
462
00:39:57,600 --> 00:40:03,060
ูุงูorganism ุจูุคุฏู ูgranuloma formation ู
ููุชูุดู
463
00:40:03,060 --> 00:40:06,380
ูุฌุฏููุง ูู ุงู enzymes which catalyzes the
464
00:40:06,380 --> 00:40:10,800
respiratory burst ูุจูุญุตู
465
00:40:10,800 --> 00:40:17,120
ููู ููุฉ ูู ุงูintracellular killing ู
ุญุตูุฉ ุงู ุบูุงุจ
466
00:40:19,320 --> 00:40:22,700
ูุจููุงุญุธ ูุฐู ุงูุญุงูุงุช ูู ุฃูู ุดูุฑ ุฃู ุฃูู ุณูุชูู ู
ู
467
00:40:22,700 --> 00:40:31,400
ุงูุนู
ุฑ ุจูุตูุฑ ุนูุฏู recurrent infection ุญุชู ุฃุถุนู ุงู
468
00:40:31,400 --> 00:40:35,660
microbes ู
ุฑุฉ
469
00:40:35,660 --> 00:40:40,720
ุฃุฎุฑ interferon ุฌุงู
ุน receptor deficiency ุจูุตูุฑ ููู
470
00:40:40,720 --> 00:40:43,900
mutation ูู ุงู interferon ุนุงุฆูุฉ ุฃุฎุฑู ู
ู ุนุงุฆูุงุช ุงู
471
00:40:43,900 --> 00:40:48,030
receptorุจูุคุฏู ุงูู inability of a monocyte to
472
00:40:48,030 --> 00:40:53,450
respond to Gamma Interferon ูุจุงูุชุงูู
473
00:40:53,450 --> 00:40:56,430
ูู ุงูsecretion of the tumor necrosis factor Alpha
474
00:40:56,430 --> 00:41:01,850
ุงู patient are susceptible to weakly pathogenic
475
00:41:01,850 --> 00:41:03,290
mycobacteria
476
00:41:06,330 --> 00:41:10,090
ูู ุงูู Natural Killer Cell Deficiency ุงููู ูุนุฑูู
477
00:41:10,090 --> 00:41:15,130
ุจูุงุจ ุงูู Anky cell ุจูุคุฏู ุงูู ุงูู Impaired
478
00:41:15,130 --> 00:41:19,090
Allograft Rejection ู
ููุด ุดูุก ุงูู Impairment
479
00:41:19,090 --> 00:41:24,930
Rejection And is linked to higher susceptibility
480
00:41:24,930 --> 00:41:29,170
to viral disease ู ุจูุตูุฑ ููู metastasis from tumor
481
00:41:31,140 --> 00:41:36,500
ุงูู Ankyl cells seen in Skid some T and phagocytic
482
00:41:36,500 --> 00:41:40,540
cell disorder and in X-linked lymphoprotective
483
00:41:40,540 --> 00:41:47,360
syndrome ุงูุฃูุฑุงู
484
00:41:47,360 --> 00:41:56,880
ุงููู ุจุชุชุนูู ุจุงู complement ูุนูู ุงู ..ุงูู
485
00:41:56,880 --> 00:42:00,180
complement component ุงูุฃููุงููุฉ ู
ูู
ุฉ ุฌุฏูุง for
486
00:42:00,180 --> 00:42:07,300
obsolete ุฒู C3P ุบุงูุจูุง deficiency of complement is
487
00:42:07,300 --> 00:42:14,700
associated with SLE disease ููู ุงู complement
488
00:42:14,700 --> 00:42:22,740
ูุฃุณูู ุจู
ููุงูุฒู
classical ู alternative ุทุจุนูุง
489
00:42:22,740 --> 00:42:32,270
ุฒู ู
ุง ุงูุชูุง ุดุงููููุงููู ูู ุณูุงุก ูุงู alternative ุงู
490
00:42:32,270 --> 00:42:38,110
lectin pathway ุงู even classical ุบูุงุจูุง ุจูุฏู ูุฏููุง
491
00:42:38,110 --> 00:42:42,330
diseases ู
ุฎุชููุฉ ููู ุงูุจุฏุงูุฉ infections with
492
00:42:42,330 --> 00:42:46,630
encapsulated microorganismุจูุฏู
ุดููุฉ robotoid
493
00:42:46,630 --> 00:42:51,190
disease ูุงุณุฆู ุงูู ุชุญุช ุงุฐุง ูุงู ูู ุงูู
ุงู ุงู ุงู
494
00:42:51,190 --> 00:42:56,830
memory attack complex ุจุตูุฑ ููู ููุณูุฑูุง ุฌููุฑูุฉ ุงู
495
00:42:56,830 --> 00:43:03,260
ููุณูุฑูุง ู
ููุดุฉุฃู ู
ุฑูุถ ุจู Deficiency of C1,4,2 ุงููู
496
00:43:03,260 --> 00:43:07,160
ูู ุงูุจุฏุงูุงุช ู
ู ุงูู Classical Pathway ุฃู C3
497
00:43:07,160 --> 00:43:11,100
Deficiency ููุณูุง ุจูุตูุฑ ููู ุฒูุงุฏุฉ ูู ุงูู Infection
498
00:43:11,100 --> 00:43:14,180
ุฃู ุงูู Encapsulated Microorganism ุญุณุจ ุงูุฌุฏูู ุงููู
499
00:43:14,180 --> 00:43:18,080
ุดูููุงู ุทูู ุฒู Streptococcus pneumonia ู ุงูู Biogen
500
00:43:18,080 --> 00:43:24,720
ู ุงูุงูููููุฒุง ู ุฃุฒู
ุฉ ุฑูู
ุงูุณูุฉ ุจุณุจุจ ุชูุธูู ุบูุฑ ุตุญูุญ
501
00:43:24,720 --> 00:43:25,480
ููู
ุนุงู
ูุงุช ุงูุงู
ููููุฉ
502
00:43:29,040 --> 00:43:33,640
ุงูู Deficiency of the man knows by the lectin
503
00:43:33,640 --> 00:43:38,100
ุจูุฃุฏู ุงูู ุทุจุนุง ุงูู
ูุฌูุฏ ุนูู ุงู surface of microbe
504
00:43:38,100 --> 00:43:45,040
with or without antibody and activate the
505
00:43:45,040 --> 00:43:50,240
classical pathwayุฃูุถูุง ุจูุคุฏู ุบูุงุจู ุฅูู risk of
506
00:43:50,240 --> 00:43:56,380
infection and SLE-like symptoms ุบูุงุจ C3 associated
507
00:43:56,380 --> 00:44:04,700
with symptoms ุฎุตูุตูุง ุงู complications ุชุจุนุชูุง ุบูุงุจ
508
00:44:04,700 --> 00:44:08,480
ุงู lead complement component ูู ุงูุขุฎุฑ ูุนูู ุงู MAC
509
00:44:08,480 --> 00:44:14,160
ุฒู C56789 ุงููู ุจูููููุง ุงู MAC ุงููู ูู membrane
510
00:44:14,160 --> 00:44:21,270
attack complexIt's directly related to the primary
511
00:44:21,270 --> 00:44:27,010
defect against gram-negative bacteria ุฎุตูุตุง
512
00:44:27,010 --> 00:44:30,450
ููุณูุฑูุงDefective
513
00:44:30,450 --> 00:44:34,010
control of the complement component ูุนูู ุญุชู ุงู
514
00:44:34,010 --> 00:44:37,930
control ุงุฐุง ุตุงุฑ ููู deficiency ุฒู ุงู hereditary
515
00:44:37,930 --> 00:44:43,850
angioedema ู
ุดููุฑุฉ ูุชูุฑ ุบูุงุจ C1 esterase inhibitor
516
00:44:45,150 --> 00:44:51,370
ุจูุฏู ุงูู ุงููู ูู ุงู hereditary angioedema ุทุจุนุง
517
00:44:51,370 --> 00:44:54,590
ูู
ูุฉ ูุจูุฑุฉ ู
ู ุงู vasoactive peptide patient
518
00:44:54,590 --> 00:44:59,370
suffering from localized edema ู it's life
519
00:44:59,370 --> 00:45:03,850
threatening when it occurs in the larynx ุงู ุทุจุนุง
520
00:45:03,850 --> 00:45:07,230
ุจูุตูุฑ ููู ุงุด edema ูู ุงู larynx ู ุงูุชุงูู ุจูุตูุฑ ููู
521
00:45:07,230 --> 00:45:12,730
obstruction ูู airway pathway treatment
522
00:45:12,730 --> 00:45:19,410
ุบุงูุจุงavoid trauma and infusion of C1 esterase
523
00:45:19,410 --> 00:45:25,350
inhibitor.ุงูุฌููููุฒูู ุงููุณูุฉ ุฏู ุงู enacetol protein
524
00:45:25,350 --> 00:45:33,270
deficiency ูุนุฑู ุงู ูุฐุง ุจูุนุจ ุฏูุฑ ูุจูุฑ ูู ุงู as
525
00:45:33,270 --> 00:45:35,670
anchored protein
526
00:45:37,690 --> 00:45:44,190
ูุฐุง ุนุจุงุฑุฉ ุนู ุนุงุฆูุฉ ู
ู ุงูุจุฑูุชููุงุช ูุงูุฌููููุฒูู
527
00:45:44,190 --> 00:45:48,530
ุงูููุณูุงุช ุฏูุงู ุงููุงุณูุชูู ุงูุงููููุงุช is expressed ุนูู
528
00:45:48,530 --> 00:45:51,110
ุงู membrane of RBCs lymphocyte granulocyte
529
00:45:51,110 --> 00:45:54,590
endothelial cell and epithelial cell ู
ุนุธู
ุงูุฎูุงูุง
530
00:45:55,790 --> 00:45:58,450
ุทุจุนุง DC protein ูู
ุนุจุงุฑุฉ ุนู ุงูุจุฑูุชููุงุช ุญู
ุงูุฉ
531
00:45:58,450 --> 00:46:02,930
ููุฎูุงูุง ู
ู ุงู complement activity ูุจุงูุชุงูู ุบูุงุจูู
532
00:46:02,930 --> 00:46:12,770
ูุคุฏู ุฅูู ุบูุงุจ ุงู destruction of cell ุทุจุนุง
533
00:46:12,770 --> 00:46:20,730
ูู ุงูุฎูุงูุง ุชุชุฃุซุฑ ูู ูุฐุง ุงูู
ูุถูุน ูุจุงูุชุงูู the ุฃูุถุง
534
00:46:22,580 --> 00:46:26,300
ุจูุตูุฑ ููู hemolysis for all these cells ุทุจุนุง ุฃุดูุฑ
535
00:46:26,300 --> 00:46:29,800
ูุฐู ููุบุงูุฉ ุงููู ูู ุงู PNH ูู ุงู PNH ุทุจุนุง ุงู
536
00:46:29,800 --> 00:46:33,760
patient ุจูุตูุฑ ููู ุบูุงุจ ูู enzyme required for
537
00:46:33,760 --> 00:46:39,840
production of GBI ุงููู ูู ูุจุงูุชุงูู ู
ุงููุด GBI ุนููู
538
00:46:39,840 --> 00:46:43,680
ุงู protein ูุจุงูุชุงูู ู
ุงููุด ุจุฑูุชููุงุช ุญู
ุงูุฉ ุนุดุงู ููู
539
00:46:43,680 --> 00:46:50,200
ุจุฒูุฏ ุงู susceptibility to hemolysisูู ุงูู Chronic
540
00:46:50,200 --> 00:46:53,580
course of B.N.H. Intravascular Hemolysis or CARE
541
00:46:53,580 --> 00:46:59,060
ุทุจุนุง ูู ุงููุฏูู ููุฐุง ุจููุฏู ุงูู ุงููู ููุง activation
542
00:46:59,060 --> 00:47:03,700
of complement ูุนูู ูู degeneration ููุชุดู ุฃู damage
543
00:47:03,700 --> 00:47:08,740
ููุชุดู ููุชููู
544
00:47:08,740 --> 00:47:12,520
ููุง ููุณุชูู
ู
545
00:47:12,520 --> 00:47:14,220
ูู ู
ุฑุญูุฉ ูุงุฏู
ุฉ ุงู ุดุงุก ุงููู
|