File size: 34,629 Bytes
55cea61 |
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 |
1
00:00:01,640 --> 00:00:05,020
ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุงูุตูุงุฉ ูุงูุณูุงู
ุนูู ุณูุฏ
2
00:00:05,020 --> 00:00:13,580
ุงูุฎูู ุฃุฌู
ุนูู ุณูุฏูุง ู
ุญู
ุฏ ูุนูู ุขูู ูุตุญุจู ูุณูู
ููุชูู
3
00:00:13,580 --> 00:00:16,540
ุงูููู
ูู ู
ุญุงุถุฑุฉ ุฌุฏูุฏุฉ ุจุนููุงู the non-leukemic
4
00:00:16,540 --> 00:00:22,000
lymphoproliferative disorders ู
5
00:00:22,000 --> 00:00:28,900
these are malignant clonal disorders ุฃูุถุง ูุนูู ุนูู
6
00:00:28,900 --> 00:00:33,630
ู
ุณุชูู ุงูstem cellูููู ุจู
ุนูู System Cell of
7
00:00:33,630 --> 00:00:39,330
Lymphopoietic System ููุฐู ุงูู
ุนููู
ุงุช ุชุญุชูู ุนูู
8
00:00:39,330 --> 00:00:42,130
Multiple Myeloma Related Plasma Cell Disorders
9
00:00:42,130 --> 00:00:46,170
ูHodgkin Disease ูNon Hodgkin Lymphoma ููุจุฏุฃ ุจุฃูู
10
00:00:46,170 --> 00:00:50,990
ูุฐู ุงูุญุงูุงุช ุงูู
ุฑุถูุฉ ุงูุชู ูู Multiple Myeloma
11
00:00:50,990 --> 00:00:54,910
Related Plasma Cell Disorders ูุชุนุฑููุง Multiple
12
00:00:54,910 --> 00:01:01,040
Myeloma is a B lymphoid malignancy ุจู
ุงุฐุง ูุชู
ูุฒุูู
13
00:01:01,040 --> 00:01:05,220
ุชู
ูุฒ by proliferation of malignant clone of plasma
14
00:01:05,220 --> 00:01:10,020
cell ูููุง ุจูุนุฑู ุงู plasma cell ูู ุงู
15
00:01:10,020 --> 00:01:16,100
differentiated form of ุจูู cell ูู
ุง ุชุชุทูุฑ ุงูุฎููุฉ
16
00:01:16,100 --> 00:01:19,300
ุจุณููุง proliferation and differentiation ุจูููุณูุง
17
00:01:19,300 --> 00:01:23,000
ุชุชุญูู ู plasma cell ุงู multiple meloma ูู ุนุจุงุฑุฉ ุนู
18
00:01:23,000 --> 00:01:27,680
proliferationof malignant clone ู
ู ุงูุจูุงุฒู
ุฉ cell
19
00:01:27,680 --> 00:01:31,180
ุดู ุงูู
ุธููุฉ ุงูุจูุงุฒู
ุฉ cell secret excessive amount
20
00:01:31,180 --> 00:01:34,860
of monoclonal immunoglobulin ุทุจ ููุด monoclonal ูุฃู
21
00:01:34,860 --> 00:01:41,280
ูู
clone of the same cell ูุจุงูุชุงูู ููุฑุฒูุง the same
22
00:01:41,280 --> 00:01:47,840
antibody immunoglobulin they released ุทุจุนุง with
23
00:01:47,840 --> 00:01:50,960
respect to multiple myeloma it behaves as a solid
24
00:01:50,960 --> 00:01:51,440
tumor
25
00:01:55,350 --> 00:02:00,270
ูุจูุณุจู solid tumor formation prior involvement of
26
00:02:00,270 --> 00:02:03,290
bone marrow ูุนูู ุงู bone marrow should be involved
27
00:02:03,290 --> 00:02:10,170
before formation of solid tumor ูุจูู ุชูุฎูุตุง ุนูู
28
00:02:10,170 --> 00:02:13,390
ุงูุณุฑูุน ูู ุนุจุงุฑุฉ ุนู melanoid malignancy ุจุชู
ูุฒ by
29
00:02:13,390 --> 00:02:16,050
clonal malignant clone of plasma cell
30
00:02:16,050 --> 00:02:19,910
proliferation ูmalignant clone of plasma cell ููุง
31
00:02:19,910 --> 00:02:23,280
ุจูุนุฑู ุงู plasma cellูุธููุชูุง secretion of
32
00:02:23,280 --> 00:02:26,660
immunoglobulin. These plasma cells secret
33
00:02:26,660 --> 00:02:32,340
excessive amount of monoclonal antibody and this
34
00:02:32,340 --> 00:02:37,400
multiple myeloma disease behave as a solid tumor
35
00:02:37,400 --> 00:02:41,980
ููู ูุงุฒู
ูููู ููู ูู ุงูุจุฏุงูุฉ prior involvement to
36
00:02:41,980 --> 00:02:46,540
bone marrow. ุงูincidence ูุงููุง ูุฐุง is a disease of
37
00:02:46,540 --> 00:02:53,420
elderly ุงู media ูุนูุด ููู 62 ุณูุฉู it's more common
38
00:02:53,420 --> 00:02:58,260
in black than in white ู the disease shows slight
39
00:02:58,260 --> 00:03:03,960
excess incidence in male than female ูุงูุนุงุฏุฉ path
40
00:03:03,960 --> 00:03:08,400
of synergy ูุงูู ูุฌูุฏ malignant proliferation of
41
00:03:08,400 --> 00:03:15,540
plasma cell ุจููุฏูู ุฅูู ุงูู ูุนู
ู ุฎูู ูู ุฃุฑุจุน
42
00:03:15,540 --> 00:03:20,880
ุงุชุฌุงูุงุช ู
ุฎุชููุฉ ูู
ุฑุง ูุงุญุฏ ูู plasma cell
43
00:03:20,880 --> 00:03:24,720
proliferationููุตูุฑ ููู ุฅุญูุงู ูู bone marrow cell
44
00:03:24,720 --> 00:03:31,000
ูุจุงูุชุงูู ุจูุตูุฑ ููู marrow infiltration ู
ุญุตูุชู ุงูู
45
00:03:31,000 --> 00:03:34,220
ูุตูุฑ pancytopemia ูุนูู bone marrow failure
46
00:03:37,190 --> 00:03:41,130
ุจูุชู
ูุฒ ุจุงูุงููู
ูุง ูุงูุฅูููุดู ูุงูุจุฑูุฏูุฌ ูุจูู ุฃูู ุญุงุฌุฉ
47
00:03:41,130 --> 00:03:44,270
ุจูุตูุฑ ูู ุฃูู ุจูุตูุฑ ููู bone marrow failure ูุชูุฌุฉ
48
00:03:44,270 --> 00:03:49,590
bone marrow infiltration ุจุงูุจูุงุฒู
ุง ุณูู ูุจุงูุชุงูู
49
00:03:49,590 --> 00:03:54,790
ุจูุตูุฑ ูู ุฅุญูุงู ูู normal cell ุจlow chemical cell
50
00:03:54,790 --> 00:03:58,110
ุงูุญุงุฌุฉ ุงูุชุงููุฉ ูููุง ุฅู these low chemical cell or
51
00:03:58,110 --> 00:04:03,470
plasma cell secret ุงููู ูู a huge amount of
52
00:04:03,470 --> 00:04:08,740
immunoglobulููุฐุง ุงูู immunoglobulin ุทุงูุน ู
ู ุงูู
53
00:04:08,740 --> 00:04:14,700
leukemic cell ูุจูู should be abnormal ูุจู
ุง ุงู ุงู
54
00:04:14,700 --> 00:04:17,640
immunoglobulin ุงูู
ูุชุฌ ูู ุนุจุงุฑุฉ ุนู abnormal
55
00:04:17,640 --> 00:04:20,940
immunoglobulin ูู
ูู ุชุญุณุฑ ููู reduction ูู or
56
00:04:20,940 --> 00:04:23,640
decrease ูู ุงู amount of normal immunoglobulin
57
00:04:23,640 --> 00:04:29,660
ูุจูู ูุฐูู ุฏุฑุงุนูู ุงูุฃููุงูู Bonmarofilian ุงูุชุงูู ูู
58
00:04:29,660 --> 00:04:31,880
ุนุจุงุฑุฉ ุนู excessive amount of abnormal
59
00:04:31,880 --> 00:04:36,120
immunoglobulinููุฐุง ุจูุคุฏู ุงูู decrease amount of
60
00:04:36,120 --> 00:04:41,160
normal immunoglobulin ู ุงูุฐุฑุงุน ุงูุฑุงุจุน ูุงูู
ูู
ูู
61
00:04:41,160 --> 00:04:45,180
ุจูุตูุฑ ููู skeletal destruction ุชุจุฏุฃ ุงูุจูู ูุชูุณุฑ
62
00:04:45,180 --> 00:04:51,460
ูุจุตูุฑ ููู lithic bone lesion ู pathologic fracture
63
00:04:51,460 --> 00:05:00,820
ู hypercalcemia ู palpable plasma cytomaPlasma
64
00:05:00,820 --> 00:05:06,000
cytoma ูู ุนุจุงุฑุฉ ุนู tumor mass of plasma cell ู
65
00:05:06,000 --> 00:05:11,140
ููุฌู ููุงุญุฏ ูุงุญุฏ ู
ู ูู ูุฐู ุงูุญุงุฌุงุช ูุจุฏุฃ ุจุฃูู ูุฐู
66
00:05:11,140 --> 00:05:14,520
ุงูุญุงุฌุงุช ููู ุงู lithic bone lesion ูู ุงู lithic
67
00:05:14,520 --> 00:05:21,280
bone lesion ุจุจุฏุฃ ุชูุฑุญุงุช ูู ุงู bone ู ุจุชุคุฏู ุฅูู
68
00:05:21,280 --> 00:05:26,150
ูุนูู ุชูุชูุช ูุฐุง ุงู boneูุงูุณุจุจ ูู ุฐูู ุฃู
69
00:05:26,150 --> 00:05:29,030
ุงููmalignant plasma cell ุจุชุคุฏู ุฅูู ุฅูุชุงุฌ
70
00:05:29,030 --> 00:05:33,670
ุงููOsteoclast activating factor ููุฐุง ุงููOsteoclast
71
00:05:33,670 --> 00:05:37,290
activating factor ุจุชุนุฑูู ู
ู ุงููOsteoclast ูุธููุฉ
72
00:05:37,290 --> 00:05:42,610
ุงุณู
ู ุนุจุงุฑุฉ ุนู ุฎุฏูุฉ ุขููุช ุงูุนุถู
ูุงููOsteoclast
73
00:05:42,610 --> 00:05:44,950
activating factor ูู ุนุจุงุฑุฉ ุนู ุงููfactor ุงููู ุจูุคุฏู
74
00:05:44,950 --> 00:05:52,410
ุฅูู ุชูุชูุช ุงูุนุถู
ูุฃููุงูููุฐุง ุณูููู
ุจุงูุฅุถุงูุฉ ุฅูู
75
00:05:52,410 --> 00:06:02,210
ุนู
ููุฉ
76
00:06:02,210 --> 00:06:07,490
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
77
00:06:07,490 --> 00:06:07,650
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
78
00:06:07,650 --> 00:06:08,010
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
79
00:06:08,010 --> 00:06:08,030
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
80
00:06:08,030 --> 00:06:09,190
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
81
00:06:09,190 --> 00:06:13,710
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
82
00:06:13,710 --> 00:06:16,010
ุนู
ู
83
00:06:17,950 --> 00:06:21,810
with result of pain ุงููุฏ ุงููุงุญุฏ ูุงุนุฏ ุจุชูุชูุช ุนุถู
ู ู
84
00:06:21,810 --> 00:06:27,910
ูุงุฒู
ูุชุฃูู
ู ุงูู
ุญุตูุฉ pathologic fracture ู ูู
85
00:06:27,910 --> 00:06:31,970
ุงูู
ุญุตูุฉ ุจูุงู ุจูุชูุชูุช ู
ุนูุงุชู ู ุงูุจูุงู ุจูุชูููู ู
ู
86
00:06:31,970 --> 00:06:34,990
calcium ูุจุงูุชุงูู ุจูุตูุฑ ููู ุฒูุงุฏุฉ ูู ุงู serum
87
00:06:34,990 --> 00:06:39,470
calcium concentration ุงู hypercalcemia ุจุญุงุฌุชูุง ูุงู
88
00:06:39,470 --> 00:06:46,070
inducement ู ุจุชุนู
ู kidney stone ูู
ู
ูู ูู ุงูููุงูุฉ
89
00:06:46,070 --> 00:06:51,830
ุชุคุฏู ุงูู frank renal failure ูุนูู ุงูู
ุฑูุถ ูุนุงูู ู
ู
90
00:06:51,830 --> 00:06:57,370
ุงูุดุ ู
ู ุงู renal failure ุทูุจ ูุฐุง ุงู analytic
91
00:06:57,370 --> 00:07:01,730
religion ูู
ุฑู ุงุชููู over production of
92
00:07:01,730 --> 00:07:06,590
immunoglobulin ุงุญูุง ููููุง often an excess of large
93
00:07:06,590 --> 00:07:10,190
chain ุทุจุนุง ูุฐุง ู
ุง ูู
ูุฒ ุงูover production of
94
00:07:10,190 --> 00:07:15,410
immunoglobulin ุงูู can be ูุนูู diagnosed by excess
95
00:07:15,410 --> 00:07:19,690
of lighted chain of immunoglobulin ู ุงู lighted
96
00:07:19,690 --> 00:07:25,610
chain ุจูููุญุต ุจูุงุณุทุฉ ุงู ู
ู ุฎูุงู ู
ุง ูุณู
ู ุจุงู
97
00:07:25,610 --> 00:07:29,550
Benziones ุจุฑูุชูู ุงู Benziones ุจุฑูุชูู ูู ุจุฑู ุงู ูุญุต
98
00:07:29,550 --> 00:07:36,030
ุงูุชูุง ุฃุฎุฏุชูู ูู ุณูุงุฆู ููู ูููุญุต by boiling ูุงุฎุฏ
99
00:07:36,030 --> 00:07:40,540
ุงูุนููุฉ ุจูุบูููุง ุฏู ุงุฑุจุนููุจุตูุฑ ูู ุชุนููุฑ ููุช ุงูุงุฑุจุนูู
100
00:07:40,540 --> 00:07:45,700
ุจุฑูุญ ุงูุนูุงุฑ ุงุฑุฌุน ุชุงูู ุจุฑุฏูุง ุนูุฏ ุงุฑุจุนูู ุชุญูุฑ ุชุงูู
101
00:07:45,700 --> 00:07:54,080
ุซู
ุจุฑุฏูุง ุงูุชุฑ ุจุฑูุญ ุงููู ูู ุงูู turbidity ูู
ุฑู
102
00:07:54,080 --> 00:07:57,420
ุงุชููู ูุจูู ูุจูุฒ ุฌููุฒ ุจุฑูุชูู ูู ุฏุฑุน ุงู diagnostic
103
00:07:57,420 --> 00:08:01,140
tool ููุญุต
104
00:08:01,140 --> 00:08:04,680
ู
ู ุฎูุงููุง ุงู over production of neoglobin ูู
ุฑู
105
00:08:04,680 --> 00:08:08,500
ุงุชููู ูุฐุง viscosityุทุจุนุงู ูู ุงูู high level of
106
00:08:08,500 --> 00:08:13,540
minoglobulin ุบุฑูุจุง IGM ู
ุจุนุฏ ู
ุฑุฉ ุงุฎุฑู ุฒู ุงู IGA ู
107
00:08:13,540 --> 00:08:22,080
IGG ู ูู
ุง ุจูุฒูุฏูุง ุจูุนู
ููุง hyperviscosity ุงูุถุง ูุฐู
108
00:08:22,080 --> 00:08:26,740
ุงูุจุฑูุชููุงุช ู
ู
ูู ุชุชุฑุณุจ ูู ุงูrenal tubules ูุชุคุฏู ูู
109
00:08:26,740 --> 00:08:31,820
ุงูููุงูุฉ ุงูู renal failure ูู
ุฑุฉ
110
00:08:31,820 --> 00:08:41,660
ุงุชููู ุงู ุชูุงุชุฉู
ุฑุฉ ูุงุญุฏ ุชููู
111
00:08:41,660 --> 00:08:45,620
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
112
00:08:45,620 --> 00:08:48,980
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
113
00:08:48,980 --> 00:08:50,380
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
114
00:08:50,380 --> 00:08:51,700
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
115
00:08:51,700 --> 00:08:51,980
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
116
00:08:51,980 --> 00:08:53,880
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
117
00:08:53,880 --> 00:08:56,440
ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ ุงูุงู
ููููุฏ
118
00:08:56,440 --> 00:09:04,620
ุงูุงู
ููููุฏ ุงูุงู
ูู
119
00:09:06,710 --> 00:09:13,670
ู ุจุชูููู rigid pleated fibrillar structure rigid
120
00:09:13,670 --> 00:09:18,170
ูุนูู ุตูุจ pleated ุญุงุฏ fibrillar ู
ู ุงู fiber
121
00:09:18,170 --> 00:09:25,270
structure ุทุจุนุง ูู ุฏู ุชุฎูููุง ุนุจุงุฑุฉ ุนู ุนุจุงุฑุฉ ุนู
122
00:09:25,270 --> 00:09:30,970
ุณูุงููู ุชู
ุดู ูู ุงูุด ูู ุงูููุงูุง ุงูุฏู
ููุฉ ูุจุงูุชุงูู ูู
123
00:09:30,970 --> 00:09:37,700
ู
ุง ุจุชุตู ูุฃู ุนุถู ู
ู ุฃุนุถุงุก ุงูุฌุณู
ููุงู ุจุชุนู
ูุฏู
ุฌ for
124
00:09:37,700 --> 00:09:40,220
these organs ุฒู ุงูู kidneys ุฒู ุงูู heart ุฒู ุงูู
125
00:09:40,220 --> 00:09:43,560
liver ุฒู ุงูู spleen ุฒู ุงูู gastrointestinal tract
126
00:09:43,560 --> 00:09:50,020
ุงู ุงูู tongue ุงูุบุฑุงุก
127
00:09:50,020 --> 00:09:54,720
ุงูุชุงูุช ุงููู ุจูุฃุซุฑ ุงู ุชุถุฑุจ ููู ุงูุจูุงุฒู
ุง cell ูู ุงู
128
00:09:54,720 --> 00:09:58,260
expanding cell mass ุดู ุจูุตูุฑุ ูุนูู ุงู
129
00:09:58,260 --> 00:10:01,140
proliferating myeloma cell ุงู multiple myeloma
130
00:10:01,140 --> 00:10:04,910
ูุนูู ุจูุงุฒู
ุง cell ุจูุณู
ููุง myeloma cellู
ุงุฐุง ุชูุนูุ
131
00:10:04,910 --> 00:10:10,170
ุจุชุญู ุงูู
ุญู ุงูููุฑู
ุงู Bone Marrow Cell ูุจุชุฃุฏู ูุฐุง
132
00:10:10,170 --> 00:10:13,950
ุงูู Bone Maloferrin ูุจุตูุฑ ููู Anemia ู ุจุตูุฑ ููู
133
00:10:13,950 --> 00:10:19,670
Infection ู ุจุตูุฑ ููู Bleeding ุงูุถุง Expanding
134
00:10:19,670 --> 00:10:27,590
ูุจูุงุฒู
ุฉ Cytomas can expand up to the limit that
135
00:10:27,590 --> 00:10:32,760
impinge the spinal cord ูุนูู ุจู
ุนูู ุงุฎุฑูุงููู ูุฐู
136
00:10:32,760 --> 00:10:36,060
ุงูุฎูุงูุง ู
ู
ูู ุชุฏู ุชู
ุดู ูุบุงูุฉ ู
ุง ุชุตู ุงู central
137
00:10:36,060 --> 00:10:42,220
nervous system ู ููุงู ุชุนุดุด ู ุชููู mass ุงููู ู
ู
ูู
138
00:10:42,220 --> 00:10:46,940
ุชุถุบุท ุนูู ุงููู ูู ุงู spinal cord ุนูู ุณุจูู ุงูู
ุซุงู ู
139
00:10:46,940 --> 00:10:52,240
ุจูุจุฏุฃ ุงูู
ุฑูุถ ูููุฏ ุงูุฅุญุณุงุณ ู
ุงุดู ู ุจูุตูุฑ ูู ุนูุฏู
140
00:10:52,240 --> 00:10:56,160
incontinence ูุนูู ุชูุทูุน ูู ุงูุจูู ู paraplegia
141
00:10:56,160 --> 00:11:07,710
paraplegia ูุนูู ุดููุงูุดูู ุงูุฑุจุงุนู ููุชูู
142
00:11:07,710 --> 00:11:12,630
ุฅูู ุดูู ุฑุจุงุนู ูุจูู ูู ุญุงุฌุชูู ุญุงุฌุฉ ุงูุฃููุงููุฉ bone
143
00:11:12,630 --> 00:11:15,870
marrow failure ุญุงุฌุฉ ุงูุชุงููุฉ ู
ู
ูู ูุนู
ู plasma
144
00:11:15,870 --> 00:11:20,190
cytoma ูุนูู tumor of plasma cell ุงููู ู
ู
ูู ูููู ูู
145
00:11:20,190 --> 00:11:23,210
ุงู central nervous system ููุคุฏู ุฅูู ุดููุงูุญุงุฌุฉ
146
00:11:23,210 --> 00:11:29,330
ุงูุชุงูุชุฉ Myeloma cell ู
ู
ูู ุชุนู
ู
147
00:11:29,330 --> 00:11:32,770
organ infiltration ุชุบุฒู ุจุนุถ ุงูุนุถุงุก ุฒู ุงู liver,
148
00:11:32,910 --> 00:11:36,410
spleen ู ุงู kidney ุจูุคุฏู ูุฐุง ุงูู enlargement of
149
00:11:36,410 --> 00:11:42,150
this organ ู ุงูู
ุญุตูุฉ dysfunctional ููุฐู ุงู organ
150
00:11:42,150 --> 00:11:47,430
ุงู fourth ุฒุฑุงุนุฉ ุจุงุจุน ูู decrease production ู
ู
151
00:11:47,430 --> 00:11:53,310
normal immunoglobulin ุทุจูุนู ุฌุฏุงู
ุงููุด .. ูู ุงููู
152
00:11:53,310 --> 00:11:55,810
ุจูู
ุชุฌ ูู ุนุจุงุฑุฉ ุนู abnormal immunoglobulin ูู
ุงููุด
153
00:11:55,810 --> 00:12:00,330
normal immunoglobulin ููุฐุง ู
ุญุตูุชู ุฒูุงุฏุฉ ูู ุงู
154
00:12:00,330 --> 00:12:06,650
bacteria infection ู infection mostly can cause
155
00:12:06,650 --> 00:12:10,610
death ูู ุจุนุถ ุงูุฃุญูุงู ุฅุถุงูุฉ ุฅูู ุฐูู cellular
156
00:12:10,610 --> 00:12:16,990
immunity is not affected ููู ุงู cell mediated ูู
157
00:12:16,990 --> 00:12:24,230
ุงูุฐู ูุชุฃุซุฑุฒู ุงูููุฑูุณ ูุงูููุฌุงู ูุงูุงุณุฏ ูุงุณุช ุงูุงูุณุงู
158
00:12:24,230 --> 00:12:28,910
ูุฐู ุงูุฃูุณุงู ูู
ุชุชุฌู
ุฏ
159
00:12:31,580 --> 00:12:34,640
ุงูุณูู
ุงูููุชูุฏ ูุง ุชุชุฃุซุฑ ูู ุงููู ุจูุชุฃุซุฑ ูู ุงูู
160
00:12:34,640 --> 00:12:38,260
Hemoral Immunity ุงูู Hemoral Immunity ููู ุชูููู
161
00:12:38,260 --> 00:12:41,820
ุงูู Antibody ุจููู
ุง ุงูุณูู
ุงูููุชูุฏ ุงููู ุจูุชุนูู ุจุงูู
162
00:12:41,820 --> 00:12:45,980
T-Lymphocytes ุงููู ู
ุณุคูู ุนู ุฒู ุงูู T-Cytotoxic ุนู
163
00:12:45,980 --> 00:12:49,920
ุงูุชุฎูุต ู
ู ุงูููุฑูุณ ู ุงูููุฌุงุฑ ุงูุงุณุฏ ูู ุฃุตู ุงููุฑุฌุงูุฒู
164
00:12:49,920 --> 00:12:55,180
ูุฐุง ูู ูููู ู
ุฃุซุฑ ููู
ุฉ
165
00:12:55,180 --> 00:12:56,980
ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ
166
00:12:56,980 --> 00:12:59,140
ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ
167
00:12:59,140 --> 00:12:59,160
ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉ
168
00:12:59,160 --> 00:13:03,950
ููู
ุฉ ููู
ุฉ ููู
ุฉ ููู
ุฉูู
ุฑุฉ ุงุชููู weakness and fatigue
169
00:13:03,950 --> 00:13:08,430
ูุฃูู ููู ุฃููููุงุ ูู
ุฑุฉ ุซูุงุซุฉ serious infection ููู
170
00:13:08,430 --> 00:13:12,330
ูููุชุฑูุจูููุงุ ูู
ุฑุฉ ุฃุฑุจุนุฉ renal failureุ ูุจุนุง
171
00:13:12,330 --> 00:13:20,040
Hypercalcemiaุ ูู
ุฑุฉ ุฎู
ุณุฉairblading diathesis ูุฃูู
172
00:13:20,040 --> 00:13:24,960
ูู ุญุงุฌุชูู ุจุชุตูุฑ ุงูุงู ุจุงููุณุจุฉ ูู Hemostasis ููุฐูุฑูู
173
00:13:24,960 --> 00:13:29,040
ุญูุงูุงููุฉ ูู thrombocytopenia ุฃู platelet
174
00:13:29,040 --> 00:13:35,040
dysfunction ููู
ุงู ุงุด
175
00:13:35,040 --> 00:13:38,020
ุงุณู
ู ูู
ุงู ูู ุงููู ูู correlation factor
176
00:13:38,020 --> 00:13:44,800
dysfunction laboratory function ุงู laboratory test
177
00:13:45,100 --> 00:13:52,260
ESR ู
ู
ูู ุชููู ุงูุชุฑ ู
ู ู
ูุฉ ุงูุงููู
ูุง
178
00:13:52,260 --> 00:13:56,560
ูThrombocytopenia ูุงุถุญุฉ ุนู
ููุง preferable blood
179
00:13:56,560 --> 00:14:00,840
ุจุงููู ูู low formation ูุฅูู ููู hyperviscosity ู
180
00:14:00,840 --> 00:14:04,420
ุงู marrow plasma cytosis ูู ุงู bone marrow ููู
181
00:14:04,420 --> 00:14:09,300
ุงูุชุฑ ู
ู ุนุดุฑ ู 15% plasma cell ุซู
hyperproteinemia
182
00:14:09,300 --> 00:14:13,320
ูุฅูู ููู minoglobulin hypercalcemia ูู bone lytic
183
00:14:13,320 --> 00:14:17,380
boneุจุฑูุชูู ุงูููุฑูุง ูู ุจูุณ ุฌููุฒ ุงูุจุฑูุชูู ูู
184
00:14:17,380 --> 00:14:23,060
ุฃุฒูุซูู
ูุง ุงููู ูู ูู ุฃู
ูููุง ูุฅูู ูู ุงููrenal
185
00:14:23,060 --> 00:14:26,740
failure ุงููdermistic
186
00:14:26,740 --> 00:14:29,260
criteria for multiple myeloma ูุงููุง ูู major
187
00:14:29,260 --> 00:14:33,140
criteria ููู minor criteria ุงูุด ุงู major criteriaุ
188
00:14:33,140 --> 00:14:36,720
ูุงููุง ุงู plasma ุณูุทูู
ุฉ ูุงูุทุดูุง ุจูุจุณู ูุงูุช ุนุจุงุฑุฉ ุนู
189
00:14:36,720 --> 00:14:41,300
major criteria ุซู
ุจูุนู
ููุง plasma cell ูุฃูุชุฑ ู
ู 30%
190
00:14:42,310 --> 00:14:45,910
ูุฐู ุนูุงู
ุฉ ุฃุฎุฑู ู
ู ุนูุงู
ุงุช ุงูู Major Criteria ุซู
ู
ู
191
00:14:45,910 --> 00:14:50,750
ุฃูููุง ุงูู M Spike on Electrophoresis ู
ุงุฐุง ูุนูู M
192
00:14:50,750 --> 00:14:54,610
Spikeุ ููุง ูุนุฑู ุฃู ุงูุจุฑูุชูู Electrophoresis ูู
193
00:14:54,610 --> 00:15:00,890
ุนุจุงุฑุฉ ุนู ุฃูุจูู
ูู ูุจูุงุฎุฏ ุจูู ุนุงููุฉ ุซู
Alpha-1
194
00:15:00,890 --> 00:15:09,170
ูAlpha-2 ูGamma Alpha-1 ูAlpha-2 ูBeta ุซู
Gamma
195
00:15:09,170 --> 00:15:11,710
Globulin
196
00:15:13,340 --> 00:15:17,300
ููู ูู ุงูู Gamma Globulin ุจูููู ู
ูุฌูุฏ ุงูู
197
00:15:17,300 --> 00:15:20,960
Immunoglobulin ูุจู
ุง ุฃููุง ุจูุญูู ุนูู ูู
ูุฉ ูุจูุฑุฉ ู
ู
198
00:15:20,960 --> 00:15:24,040
ุงู Immunoglobulin ููููู ุจุฑุถู ููู Peak ุนุงููุฉ ู
ู
199
00:15:24,040 --> 00:15:30,220
ุฅูุดุ ู
ู ุงูุฌุงู
ุนุฉ ููู ููุจ ู
ู ุงู Peak ุนุงููุฉ ุจูุณู
ููุง
200
00:15:30,220 --> 00:15:36,320
Spike Spike ูุนูู ุดููุฉ ููู Peak ุชุงููุฉ ู
ู ุงูุฌุงู
ุนุฉ
201
00:15:36,320 --> 00:15:45,110
ูุงูุชูุชูุฑ ู
ุน ุจุนุถ ุจูุนู
ููุง ุดูู ุงู Mูุชุฑ ูุจุณู
ูู M
202
00:15:45,110 --> 00:15:49,770
spikes ุทุจุนุง ุชุฑููุฒ ุงู ุงู immunoglobulin ุฒู ู
ุง ุงูุชูุง
203
00:15:49,770 --> 00:15:55,290
ุดุงูููู ูููุง ูุงุทูุฉ IGG
204
00:15:55,290 --> 00:16:01,090
ุชูุงุชุฉ ู ูุต ุฌุฑุงู
ุงู
205
00:16:01,090 --> 00:16:05,010
ุฏู ูู ุงู ูู ุงู urine sample ุทุจุนุง ูุฏุง ุงุญูุง ุจูููู ูู
206
00:16:05,010 --> 00:16:13,700
low levelof normal ูhigh level of abnormal ูุฏุง ููู
207
00:16:13,700 --> 00:16:19,180
level of abnormal ููู
ููููุฑูุงุจููุงู ุทุจ ูู
ุนูุงู ุงู
208
00:16:19,180 --> 00:16:22,760
criteria ูุนูู ุงู bone marrow plasma ุณู ู
ู ุนุดุฑ
209
00:16:22,760 --> 00:16:26,760
ูุชูุงุชูู ูุนูู ุฃูู ู
ู ุชูุงุชูู ู ูุฃู
ุง spike ู
ูุฌูุฏุฉ
210
00:16:26,760 --> 00:16:30,580
ููููุง ุฃูู ู
ู ุงููู ููู ุซู
lytic bone lesion ุซู
211
00:16:30,580 --> 00:16:36,510
normal IgM ุฃูู ู
ู ุฎู
ุณููIGE ุฃูู ู
ู 100 IGG ุฃูู ู
ู
212
00:16:36,510 --> 00:16:59,650
600 IGG
213
00:16:59,650 --> 00:17:01,690
ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู
214
00:17:01,690 --> 00:17:02,130
ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู
215
00:17:02,130 --> 00:17:02,310
ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู
216
00:17:02,310 --> 00:17:02,410
600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600
217
00:17:02,410 --> 00:17:02,530
IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG ุฃูู ู
ู 600 IGG
218
00:17:02,530 --> 00:17:08,660
ู
ู 600ุฃู ุงุชููู ู
ุน B ู ุงุชููู ู
ุน C ู ุงุชููู ู
ุน D ูุฐู
219
00:17:08,660 --> 00:17:12,600
ุนุจุงุฑุฉ ุนู Diagnostic Criteria ููู
ูุจูู ุชูุงุชุฉ ู
ุน A
220
00:17:12,600 --> 00:17:20,220
ุชูุงุชุฉ ู
ุน C ุชูุงุชุฉ ู
ุน D ุงูุถุง ุทุจุนุง ูุงุญุฏ ู ุงุชููู ุชูุงุชุฉ
221
00:17:20,220 --> 00:17:26,700
ู
ู ุงู Major Criteria ุงู A B ูC Major ู
ู ุงููู ูู
222
00:17:26,700 --> 00:17:29,020
Minor Criteria
223
00:17:31,830 --> 00:17:36,650
ุงูุญุตูู ุนูู ู
ูููู
ุงุช ู
ุฎุชููุฉ ูู ู
ุณุชูู ุงูููู
ูุบูุงุจูู
224
00:17:36,650 --> 00:17:45,690
ุณูุฑุงู
ูุงูุณููู
ู
ูู
ูุบูุงุจูููู ูููุณ ููุงู ูุชู ุจูู ููุฌูู
225
00:17:45,690 --> 00:17:48,870
ูุฐุง
226
00:17:48,870 --> 00:17:56,230
ุณูุดูุฑ ุฅูู ู
ูููู
ุงุช ู
ุฎุทูุทุฉ ูู
ุชููุนูุฉ ููุณู
ูุง ุงูู
ูููู
ุฉ
227
00:17:56,230 --> 00:17:59,090
ุฅูู ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ
228
00:17:59,090 --> 00:18:01,510
ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ
229
00:18:01,510 --> 00:18:01,570
ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ
230
00:18:01,570 --> 00:18:04,840
ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏ ุนุฏุฏto the myeloma
231
00:18:04,840 --> 00:18:10,520
cell ุทุจุนุง ูู sub classification ููู
ุฑุถ ูุงูู
232
00:18:10,520 --> 00:18:13,740
according to the kidney function ูุฅุฐุง ุงููุฑูุงุชูู
233
00:18:13,740 --> 00:18:16,960
ุฃุบู ู
ู ุงุชููู ุงู ูุฑูุงุชูู ุงูุชุฑ ู
ู ุงุชููู ุจุฑุถู ูุฐุง
234
00:18:16,960 --> 00:18:20,860
ุนุจุงุฑุฉ ุนู sub classification ูุจูู ุงู clinical
235
00:18:20,860 --> 00:18:24,660
staging ุชุนุชู
ุฏ ุนูู ุงู hemoglobin ู ุงู serum calcium
236
00:18:24,660 --> 00:18:28,560
ู ุงู immunoglobulin ูุฌูุฏ lithic bone lesion ููุง ูุฃ
237
00:18:28,560 --> 00:18:35,100
ุซู
ุญุงุฌุฉ ุชุงููุฉุจููุณู
ููุง according to the ash to the
238
00:18:35,100 --> 00:18:39,960
myeloma mass
239
00:18:39,960 --> 00:18:44,060
ูุฅุฐุง ูุงู ููู low tumor mass ุงู intermediate ุงู
240
00:18:44,060 --> 00:18:47,100
high ู ุงู some classification ุจูุงุก ุนูู ุงู kidney
241
00:18:47,100 --> 00:18:51,440
functions ู ูุงู ุจุฑููุทูููู ุงูู ู
ู ุงุชููู ุงู ุงูุชุฑ ู
ู
242
00:18:51,440 --> 00:18:55,140
ุงุชููู poor diagnosis ููุช ุงูุด ูุนูู ุฅุฐุง ูุงู ููู
243
00:18:55,140 --> 00:19:00,420
cytogenetical abnormalities ูู ูุฑู
ุฒูู
ูุงุญุฏ ุงุญุฏุงุดุฑ
244
00:19:00,420 --> 00:19:05,540
ูุชูุงุชุงุดุฑุฃู ุฅุฐุง ูุงู ุจูุชุง ุชู ู
ุงููุฑู ุบูุงุจู ูุฅู ุฃูุชุฑ
245
00:19:05,540 --> 00:19:11,420
ู
ู ุงุชููู ู ูุต ู
ุงููุฑู ุฌุฑุงู
ููู ู
ูู ุจูุชุง ุชู ู
ุงููุฑู
246
00:19:11,420 --> 00:19:16,660
ุบูุงุจู ูุฅู ูู ูุฏุฑ ุนูู ู
ู ุฃููุงุน ุงู protein ุงููู ุจุฑุถู
247
00:19:16,660 --> 00:19:21,840
ุจูููู ู
ูุฌูุฏ ูู ุงู .. ูู ุงู myeloma multiple
248
00:19:21,840 --> 00:19:26,560
myeloma disease treatment ูู ุงูููุช ุงูุญุงูู there is
249
00:19:26,560 --> 00:19:30,320
no curative therapyููู ุจูุนุงูุฌ ุงูู
ุฑูุถ
250
00:19:30,320 --> 00:19:34,680
symptomatically ูุนูู ุจูุฎููู ู
ู ุงู symptoms ูููุ
251
00:19:34,680 --> 00:19:38,720
ุจูููููุง ุฏู
ุฅุฐุง ูุงู ููู ุฃููู
ูุง ูุจุนุชูุง antibiotic
252
00:19:38,720 --> 00:19:43,380
ุฅุฐุง ููู infection ูุจุนู
ููุง local radiotherapy ุฅุฐุง
253
00:19:43,380 --> 00:19:48,400
ููู osteolytic bone ุจูุนู
ููุง radiotherapy ูู bone
254
00:19:48,400 --> 00:19:53,280
ููุณู ูุจุนู
ููุง dialysis for renal failure ูุจุนุชูุง
255
00:19:53,280 --> 00:19:57,960
chemotherapy ุงููู ูู ุงู generating agent ุนุดุงูุงููู
256
00:19:57,960 --> 00:20:04,240
ูู ูุนู
ู pain relief ูุฎูู ุงูููู
ููู ุงู response
257
00:20:04,240 --> 00:20:10,620
ููุฃุณู ุงูุดุฏูุฏ for this drug is slow ูุฐุง ู
ุง ูุชุนูู
258
00:20:10,620 --> 00:20:14,860
ุจุงู multiple myeloma ุงุญูุง ูููุง ูุงู ุจููุงุฉ multiple
259
00:20:14,860 --> 00:20:18,460
myeloma and plasma cell related plasma cell
260
00:20:18,460 --> 00:20:21,640
disordersูุญูู ุนูู ู
ุฑุฉ ุชุงููุฉ ุงููู ูู ุนูุงูุฉ ุจุงูู
261
00:20:21,640 --> 00:20:26,100
Plasma Cell Disorder This disease is called
262
00:20:26,100 --> 00:20:31,980
Woldenstrom's Macroglobulinemia ุงุณู
ุงูุนุงูู
263
00:20:31,980 --> 00:20:37,300
Woldenstrom's ููู ุจูุตูุฑ ููู macro ูุนูู ุฒูุงุฏุฉ ูู ุงู
264
00:20:37,300 --> 00:20:44,220
Globulinemia ูู ุงู Globulin portion ุงูุด ุงู
265
00:20:44,220 --> 00:20:46,780
Woldenstrom's Macroglobulinemia ุฏู ุงููู ูู ุจูู ุงู
266
00:20:46,780 --> 00:20:51,310
uncommon really ูุนูููู ุบูุฑ ู
ุนุฑูู ุจุดูู ุนุงู
ู
ููููู
267
00:20:51,310 --> 00:20:55,270
ูููุฏ ุฏู ุณูุฑุฏุฑุฒ ุจูุชู
ูุฒ ุจุงูู Hyperviscosity ูุงูุณุจุจ
268
00:20:55,270 --> 00:20:58,670
ูู ุฐูู Excessive secretion of monoclonal IgM
269
00:20:58,670 --> 00:21:04,410
immunoglobulin by malignant clone ููุง ุงูุฎูุงูุง ูู
270
00:21:04,410 --> 00:21:08,530
ุนุจุงุฑุฉ ุนู malignant clone ููููุง ุจุชูุฑุฒ one type of
271
00:21:08,530 --> 00:21:12,190
immunoglobulin ููู ุงู IgM ููุง ุจูุนุฑู ุฃู ุงู IgM ูู
272
00:21:12,190 --> 00:21:16,900
ุฃูุจุฑ ุฃููุงุน ุงู immunoglobulinุจุดูู ุฃู ุจูุนู
ู ุงูู
273
00:21:16,900 --> 00:21:21,360
Hyperviscosity ุฃุณุฑุน ู
ู ุงูู Multimilona ุงูู
ู
ูู ุชุนุทู
274
00:21:21,360 --> 00:21:26,640
ุฃูุชุฑ ู
ู ููุน ู
ู ุงูู Immunoproblem ุงูุฃุณุจุงุจ
275
00:21:26,640 --> 00:21:32,140
ุฌุงูู ุจูุตูุฑ ูู loss of regulation of a clone of
276
00:21:32,140 --> 00:21:38,140
cell ู ุทุจุนุง ููู ุจูุตูุฑ ูู loss of regulation ุฌุงูู
277
00:21:38,140 --> 00:21:41,240
ูู ุงูุชูุงู ุงูุฎููุฉ ู
ู ุงูู B-Lymphocyte ูุจูุงุฒู
ุฉ cell
278
00:21:41,240 --> 00:21:46,930
ุจุชู
ุฑ ุงูุฎููุฉ ูู ู
ุฑุญูุฉ ูุณุงุทูุฉู
ุงุดู ู ุนูุฏ ูุฐู ุงูู
ุฑุญูุฉ
279
00:21:46,930 --> 00:21:51,270
ุจูุฌู ูู ุงู regulation ูุชุตู ุฅูู ุงู plasma cell
280
00:21:51,270 --> 00:21:56,450
ูุงูุฎููุฉ ูู ุนุจุงุฑุฉ ุนู ุฎููุฉ ูุณุท ู
ุง ุจูู ุงู B
281
00:21:56,450 --> 00:21:59,470
lymphocyte ูู
ุง ุจูููุงุด ุงู plasma cell it's a
282
00:21:59,470 --> 00:22:02,630
malignant form it's an immature cell ู ุจูุณู
ููุง
283
00:22:02,630 --> 00:22:08,610
lympho plasma cytoid cell ู ูู ุฎููุฉ ูุณุท ู
ุง ุจูููุงุด
284
00:22:08,610 --> 00:22:11,530
ุจูู ุงู B lymphocyte ู ุงู plasma cell incidence
285
00:22:11,530 --> 00:22:15,080
ูุนูู ูู ุนุจุงุฑุฉ ุนู disease of the Wwith a peak
286
00:22:15,080 --> 00:22:19,600
incidence ูู ุงู seventh decade ูุนูู ูู ุงูุนูุฏ
287
00:22:19,600 --> 00:22:26,420
ุงูุณุงุจุน ู
ู ุงูุนู
ุฑ ู ุฃูุถุง ูุง ููุฌุฏ ุงููู ูู ูุฑู ูู ุงู
288
00:22:26,420 --> 00:22:29,840
incidence ู
ุง ุจูู ุงู male ู ุงู female ุจูููููุง life
289
00:22:29,840 --> 00:22:33,300
expectancy ููุฐุง ุงูู
ุฑุถ ู
ู ุชู
ุงู
ุดููุฑ ู ุชู
ุงู
ุณููุงุช
290
00:22:33,300 --> 00:22:36,980
symptoms weight loss
291
00:22:45,870 --> 00:22:50,070
Lymphadenopathy ุงูุถุงู ูBruising or bleeding ูุฃู
292
00:22:50,070 --> 00:22:55,810
ุงูู Platelet ู
ุด ุดุบุงูุฉ A long history of vague
293
00:22:55,810 --> 00:22:59,930
weakness, fatigue and weight loss ูุนูู ุจุชู
ุฑ ูุชุฑุฉ
294
00:22:59,930 --> 00:23:02,690
ุทูููุฉ ุฌุฏุง ุทุจุนุง due to Anemia ูู ูุฐู ุงูุญุงูุฉ
295
00:23:02,690 --> 00:23:07,390
Hyperviscosity Syndrome ููุดุ ุฌุงุฑูุง ู
ุงููุฌูุงูุช ูููู
296
00:23:07,390 --> 00:23:12,810
ุจุตูุฑ ูู infiltration and accumulation ofmonoclonal
297
00:23:12,810 --> 00:23:17,850
immunoglobulin ูู ุจูุนู
ู ุงููู ูู malignant
298
00:23:17,850 --> 00:23:19,910
infiltration ุงู accumulation of malignant
299
00:23:19,910 --> 00:23:25,550
monoclonal immunoglobulin clinical symptoms
300
00:23:25,550 --> 00:23:29,890
accumulation of IgM ู
ู
ูู ูุคุฏู ุงูู ุงู clinical
301
00:23:29,890 --> 00:23:34,310
symptoms ุงููุงุชูุฉ ูุจุฑุฃ ูุงุญุฏ neurological symptoms
302
00:23:34,310 --> 00:23:40,180
ุฒู ุงู headacheูุงูู Vertigo ูุงูุถุนู ุงูุนุงู
And in
303
00:23:40,180 --> 00:23:45,340
severe cases ููู
ุฉ ุจูุตูุฑ ููู unconsciousness ูุนูู
304
00:23:45,340 --> 00:23:52,920
ุซู
visual disturbances ุจูุตูุฑ ููู ุฎูู ูู ุงูุฑุคูุฉ ูุซู
305
00:23:52,920 --> 00:23:56,800
ูู ุฐูู secondary to retinal hemorrhage ุจูุตูุฑ ููู
306
00:23:56,800 --> 00:24:03,040
hemorrhage ูุนูู ูุฒูู ูู ุงูุดู
ููุฉ and ุงุฏู
ุฉ ููุฐุง ู
ู
ูู
307
00:24:03,040 --> 00:24:05,380
ูุคุฏู ุฅูู permanent blindness
308
00:24:07,500 --> 00:24:13,420
ุซู
cardiac failure and this is severe by the
309
00:24:13,420 --> 00:24:16,920
increase in plasma viscosity ุทุจุนุง ุจูุตูุฑ blood
310
00:24:16,920 --> 00:24:20,860
viscous ุจุงูุชุงูู ุงูููุจ ูุดุชุบู ุฒูุงุฏุฉ ุนู ูุฒููู ู ุจูุตู
311
00:24:20,860 --> 00:24:26,020
ูู
ุฑุญูุฉ ุงูู ุจูุจุฏุฃ ูุถุนู ุดููุฉ ุดููุฉ ุงูููุจ platelet
312
00:24:26,020 --> 00:24:30,120
dysfunction ููุดุ ูุงููุง ูุฃูู ูุงููู ุงู
313
00:24:30,120 --> 00:24:34,960
immunoglobulin ุจูุนู
ู coating ููุจูุชูุช ูุจุชุจุทู ุดุบุงูุฉ
314
00:24:36,660 --> 00:24:41,060
ูุงูุชุญุฑูุงุช ุงูููู
ูุณุชุงุชูููุฉ ุฃูุถูุง ุชุชุนุงู
ู ู
ุน ุงูุงูููุจุดู
315
00:24:41,060 --> 00:24:46,260
ู
ู ูุงูุฑูู ุจูููู
ุงููุฒูุดู ููุงูุชูุฑู ุชู
ุงููุฉ activity by
316
00:24:46,260 --> 00:24:52,580
monoclonal IgM ู
ุณุชุดุงุฑ ูุฌุฏ ููุฑู
ูุณูุชูู ููุฑู
ููุฑูู
ูู
317
00:24:52,580 --> 00:24:58,220
ุฃููู
ูุง ููุฐุง ุฃุจุฑ ุทุจูุนู ูุฃู ููุงู ุฅุชุฑูุจููุณูุณ
318
00:24:58,220 --> 00:25:03,000
suppression by malignant cloneููุงู Formation ูุฅูู
319
00:25:03,000 --> 00:25:06,560
ููู Hyperviscosityุ Chronic bleeding ูุฅูู
320
00:25:06,560 --> 00:25:12,120
Andalusia by the increased plasma volume ุซู
ุงู
321
00:25:12,120 --> 00:25:17,360
white blood cell may be normal or depressed ููู
322
00:25:17,360 --> 00:25:24,370
ููู relative lymphocytosis ููis common that it
323
00:25:24,370 --> 00:25:28,490
counts as normal at presentation ุนูุฏ ุงูุชุดุฎูุต.
324
00:25:28,590 --> 00:25:31,330
However, neutropenia and thrombocytopenia become
325
00:25:31,330 --> 00:25:36,610
more severe as the disease progresses. However,
326
00:25:36,690 --> 00:25:39,350
cellular and extremely hyperviscous bone marrow
327
00:25:39,350 --> 00:25:42,550
ููุฐุง
328
00:25:42,550 --> 00:25:48,060
ู
ู
ุง ูุฌุนูุนู
ููุฉ ุณุญุจ ุนููุงุช ุงูู bone marrow is
329
00:25:48,060 --> 00:25:53,620
difficult ู
ุฑูุฌูุงูุช ุณูู ูู ุนุจุงุฑุฉ ุนู pleomorphic
330
00:25:53,620 --> 00:25:58,960
ูุนูู ู
ุชุนุฏุฏุฉ ุงูุฃุดูุงู ู
ุฑุงุช ุจูุดูููุง ุจุชุดุจู ุงู
331
00:25:58,960 --> 00:26:03,720
lymphocytes ูู
ุฑุงุช ุจูุดูููุง ุจุชุดุจู ุงู plasma cell
332
00:26:03,720 --> 00:26:11,420
however ููู it has an intermediate appearance ู
333
00:26:11,420 --> 00:26:14,320
ุจูุณู
ููุง lymphoplasma cytode
334
00:26:18,350 --> 00:26:21,750
ุจูุฑูููุณูุฒ ุจูุนุชู
ุฏ ุนูู ุงู pattern of infiltration
335
00:26:21,750 --> 00:26:25,450
ููู
ูุบูุงู ุชูููู ูู ุงู bone marrow ููู ุจูุตููุง
336
00:26:25,450 --> 00:26:29,930
infiltration ู ูุณู
ูู ู 3 ุญุงุฌุงุช ุงู
ุง diffuse
337
00:26:29,930 --> 00:26:32,510
infiltration ูุนูู ูู ุงู bone marrow ุจูุตูู
338
00:26:32,510 --> 00:26:36,810
diffusion diffuse by by by ู
ูุบูุงู cell and this
339
00:26:36,810 --> 00:26:41,130
has a very poor prognosis ู ุงู median survival
340
00:26:41,130 --> 00:26:46,630
time ุญูุงูู 17 ุดูุฑModular infiltration ููุน ุงูุชุงูู
341
00:26:46,630 --> 00:26:51,310
ุงููู ูู ุงูุญููู ูุบุงูุจุง it has a better prognosis ุงู
342
00:26:51,310 --> 00:26:55,550
medium survival time 72 ุดูุฑ ุซู
intermediate form
343
00:26:55,550 --> 00:27:01,230
of infiltration ุจูู ุงูุงุชููู ููุฐุง ู
ู
ูู ูุดูู ุฃุดูุงู
344
00:27:01,230 --> 00:27:03,890
ุงู modular ูู
ู
ูู ูุดูู ุงู diffuse infiltration ู
ุน
345
00:27:03,890 --> 00:27:11,050
ุจุนุถ ูุบุงูุจุง ุงู medium age ุญูุงูู 52 ุดูุฑ treatment
346
00:27:11,050 --> 00:27:22,110
symptomatic reliefุจุงูุชุงูู ูุญุตู ุนูู ุจูุงุฒู
ุง ูุงุฑูุณุฒ
347
00:27:22,110 --> 00:27:25,310
ู
ู ุญูุจุฑูุณูุงุณูุชู ุจูุนู
ู debulking ููุจูุงุฒู
ุง ุงูุจูุงุฒู
ุง
348
00:27:25,310 --> 00:27:30,230
ูููุง ุงู immunoglobulin ูุจูููู ู
ู ุงูhyperviscosity
349
00:27:30,230 --> 00:27:36,360
ุงููู ุจูุณุจุจูุง ุงู immunoglobulinุฅุฐุง ุชุทูุฑ ุงูู
ุฑุถุ ูุฌุจ
350
00:27:36,360 --> 00:27:40,740
ุฃู ูุณุชุฎุฏู
ุงูู Chemotherapy as a Treatment
|