File size: 198,728 Bytes
cd6c5ed | 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 | ,user_id,user_screen_name,user_name,words,personality_type
0,1414280319465885696,neteyawntu,liana.com,"['add', 'mbti', 'add', 'four', 'character', 'mbti', 'entp']",ENTP
1,1246105934826336256,lvffyasce,cey,"['add', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
2,1637758335486132224,vinribbon,vin 💫 VNC COMEBACK,"['vanitas', 'im', 'entp', 'trust', 'adhd', 'developing', 'personality', 'disorder']",ENTP
3,1650468001756614656,Sneha_117,Snehanjali Panigrahy,"['hence', 'infj', 'amp', 'intj', 'make', 'good', 'friendship', 'due', 'similarity', 'infj', 'amp', 'entp', 'make', 'good', 'partnership', 'due', 'complementary', 'nature']",ENTP
4,1650468001756614656,Sneha_117,Snehanjali Panigrahy,"['see', 'comparison', 'infj', 'amp', 'intj', 'share', 'ni', 'view', 'world', 'weaknessse', 'infj', 'fe', 'help']",ENTP
5,1309194522014908419,Kae910_,🧷KaeƸ̵̡Ӝ̵̨̄Ʒ Documental de mi decadencia mental,"['rt', '๑๑', 'hello', 'luca', 'sunny', 'play', 'idv', 'ask', 'id', '18', 'old', 'entp', 'im', 'cosp']",ENTP
6,1355268729152577537,Netty_yeager,Netty | yeager.eth,"['gm', 'entp', 'good', 'see', 'back', 'hallucinogenseth', '099', 'ultimatepokereth', '05', 'resumehelpeth', '035']",ENTP
7,1361494376388595715,jenhhsi,ً,"['hi', 'im', 'yze', 'headphone', '15', 'filo', 'ambivert', 'entp']",ENTP
8,1430708542911225857,sooboots,Bella Hadid,"['think', 'ur', 'entp', 'bcz', 'u', 'dont', 'gaf']",ENTP
9,1430708542911225857,sooboots,Bella Hadid,['entp'],ENTP
10,1222305103824277504,ara_monique5,𝓐𝓇𝒶 𝓜𝑜𝓃𝒾𝓆𝓊𝑒 🏹🏛,"['add', 'mbti', 'add', 'four', 'character', 'mbti', 'entp']",ENTP
11,1530085527034408960,aroshizue,keris ☆,"['reply', 'tweet', 'tama', 'pic', 'cause', 'really', 'need', 'female', 'entp', 'character']",ENTP
12,1530085527034408960,aroshizue,keris ☆,"['entp', 'pdb', 'say', 'akira', 'entp', 'dont', 'get', 'vibe', 'im', 'lazy', 'search', 'stuff', 'new', 'image', 'im']",ENTP
13,1011100897315733504,mbtitime,MJ ☻ Jungian Onion,"['_ツ_', 'forgive', 'b', 'forget', 'c', 'cut', 'depends']",ENTP
14,1275430816500203522,ayatosbobamilk,deb ⟡,"['entp', 'behaviour']",ENTP
15,1256338589979480064,edgarnumber1fan,nez || ຽ( ⊗ ‸ ⊗ ) ♡ (`⊗﹁◓´),"['rt', '๑๑', 'hello', 'luca', 'sunny', 'play', 'idv', 'ask', 'id', '18', 'old', 'entp', 'im', 'cosp']",ENTP
16,1496111695474868225,akafuuji,𝙁𝙐𝙐𝙅𝙄 !!,"['hi', 'looking', 'mootsfriends', 'yellow', 'heart', 'sheher', '17', 'entp', 'gi', 'hsr', 'jjk', 'fruba']",ENTP
17,1278382471,QueenSacrier,⭒Anwen de apellido Insoportable⭒,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'smiling', 'face', 'sunglass', 'entp', 'los', 'que', 'más', 'representan', 'xdd']",ENTP
18,1537071237309947906,flavo_occidens,Linyaw,"['ak', 'ijin', 'qrt', 'yah', 'hwhsw', 'add', 'mbti', 'put', '4', 'character', 'type', 'entp', 'ngueng']",ENTP
19,1625099719709007873,karaeiken,hyoga defender,"['wonder', 'ur', 'entp']",ENTP
20,1618196422335107074,ZOM6lE,(´⊗ゝ⊗`),"['rt', '๑๑', 'hello', 'luca', 'sunny', 'play', 'idv', 'ask', 'id', '18', 'old', 'entp', 'im', 'cosp']",ENTP
21,1636013837127413760,sambokzDNI,☆,"['hello', 'im', 'jj', 'want', 'make', 'interactive', 'mutuals', 'lt3', 'prns', '07', 'entp', 'new', 'kpoptwt', 'looking', 'ze']",ENTP
22,1528751979698311168,entp_lys,Polaris ☆,"['im', 'whore', 'nice', 'voice', 'cant']",ENTP
23,1297614658074021893,lxcherryy,devilish lucy,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'disguised', 'facethumbs', 'light', 'skin', 'tone']",ENTP
24,1152429490498179072,niaciqda,"donquixote, lili.","['add', 'mbti', 'put', '4', 'character', 'type', 'im', 'entpfire']",ENTP
25,1612999616991039491,poruppii,BEAU (^з^)-☆,"['find', 'im', 'enfp', 'entp', 'tutorial']",ENTP
26,1345098334252490755,Dicegoblin_E,Dice Goblin Entertainment,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'kinda', 'hard', 'find', 'woman', 'character']",ENTP
27,766929916390703105,_ander_k,ᅠ ᅠᅠ,"['might', 'literally', 'red', 'exclamation', 'markred', 'exclamation', 'mark', 'entp']",ENTP
28,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['biden', 'administration', 'think', 'stupid']",ENTP
29,1331348780864696322,sangokakutrees,sitara hates thua !! 🌺,"['entp', '8', 'cognitive', 'function', 'top', '4', 'strongest']",ENTP
30,1625565306134441984,skipllllll,sato,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
31,1250154134608674824,cephalopodashi,kishi 𐂠 pass me the yuri,"['ur', 'actually', 'islamophobic', 'racist', 'mysognistic', 'transphobic', 'homophobic', 'xenophobic', 'ableist', 'entp']",ENTP
32,1343257160411738113,NEWTSTARS,Tommy/Nicky ⚣,"['add', 'mbti', 'put', 'four', 'character', 'mbti', 'entp', 'gt']",ENTP
33,1528664535363485696,llovebbom,kHAIRA ??!?!!!? ✩___✰,"['hai', 'hai', 'im', 'ale', 'baru', 'aktifin', 'akun', 'lagii', 'soo', 'let', 'moot', '08l', '9th', 'grade', 'entp', 'woman', 'lotus', 'position', 'light', 'skin', 'tone', 'let', 'friend']",ENTP
34,1382277015269634051,mikorin003,miko 🐑 kinda ia,"['add', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
35,305989513,relativeread,edson.eth,"['whats', 'personality', 'type', 'entp']",ENTP
36,1406953341192712192,HodlsSherlock,The Bitcoin Dudeist ⚡️,"['perhaps', 'worst', 'part', 'trait', 'amplify', 'n', 'significantly', 'entpj', 'oft']",ENTP
37,1528751979698311168,entp_lys,Polaris ☆,"['shaking', 'cry', 'gagging', 'choking', 'fainting', 'vomiting', 'ings', 'possible', 'im', 'devastated']",ENTP
38,1528751979698311168,entp_lys,Polaris ☆,"['hawk', 'jacket', 'haha']",ENTP
39,1496121495394799618,alberiarty,Zuha,"['relate', 'sama', 'keempat', 'ini', 'dengan', 'mood', 'entpnya', 'oke', 'add', 'mbti', 'put', '4', 'character', 'type']",ENTP
40,1448910679923048449,suhjOhn_ny,regina ☁️ | lf nctzen moots,"['hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb']",ENTP
41,1527328068733263874,jemur4n,may len,"['add', 'mbti', 'put', '4', 'character', 'type', 'entp', 'boi']",ENTP
42,706488746431094784,neptunestardust,neptune 🖤🐘🤍💜,"['add', 'mbti', 'four', 'character', 'type', 'whod', 'guessed', 'entp', 'anxious', 'one']",ENTP
43,1538134381608390656,monkyluffyi,bilu bolu 🐥🐙,"['add', 'mbti', 'put', '4', 'character', 'type', 'entp', 'people', 'bunny', 'earspeople', 'bunny', 'earspeople', 'bunny', 'ear']",ENTP
44,1343844940065988608,jcdecardan,aby 💜,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
45,1456175192112177166,nikolaikisser,sin ・SPEAK NOW,"['uhhh', 'may', 'may', 'entp', 'instead', 'one', 'asked']",ENTP
46,1561586571198988288,Yaemikolover123,LIN ☕️♡-( read pinned pls) !!,"['add', 'mbti', '4', 'character', 'mbti', 'enfpentp', 'firefire']",ENTP
47,1561586571198988288,Yaemikolover123,LIN ☕️♡-( read pinned pls) !!,"['im', 'entp', 'like', 'jusy', 'tweet', 'smiling', 'face', 'heartssmiling', 'face', 'heartssmiling', 'face', 'heart']",ENTP
48,903575151006101504,Raphynoir,Raphy 💖 |,"['good', 'long', 'isnt', 'entps', 'intimidate', 'cuz', 'theyre', 'usually', 'loud', 'n', 'confident']",ENTP
49,1318075675853549573,albedomania,Indrele/Ishika |•|•| WAITING ON KAZHUA,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
50,903575151006101504,Raphynoir,Raphy 💖 |,"['omg', 'r', 'u', 'entp', 'im', 'scared', 'entps']",ENTP
51,1292964018777460738,brispell,графиня разумовская™️,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'lt3']",ENTP
52,984076334463881217,stabyomates,🥰🫀 pathetic men enjoyer 🥰🫀,"['add', 'mbti', 'put', '4', 'chr', 'mbtp', 'love', 'overconfident', 'actually', 'really', 'sadkind', 'craz']",ENTP
53,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['pedro', 'actually', 'entp', '6w7', 'spso', '692', 'imo', 'matter', 'pdb', 'consensus', 'say', 'stan', 'kin']",ENTP
54,1528751979698311168,entp_lys,Polaris ☆,"['hair', 'kuroo']",ENTP
55,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['thats', 'ignoring', 'entps', 'mistyped', 'enfp', 'whatever', 'like', 'pedro', 'pascal', 'personality', 'mistyped']",ENTP
56,1612429123669950465,veeverox,vero ! | HAITIAN HERITAGE MONTH 🇭🇹,"['need', 'entp', 'friend', 'im', 'tryna', 'see', 'sum']",ENTP
57,1567543533728325640,RPGMakerHell,Piss 🦆,"['tw', 'personality', 'entp', 'e7', '2l', 'may', 'find', 'unbearably', 'annoying']",ENTP
58,1568260973638856706,shiryuhsy,shiro,"['add', 'mbti', '4', 'character', 'mbti', 'im', 'entp', 'stereotype', 'among', 'entp', 'chara', 'theyre', 'sex', 'god']",ENTP
59,1520559944315154434,CompositionJD,✧*̥˚ Jason˚✧,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
60,1501763596740546562,freejaychang,kyla | thinking about jay & taerae,"['oh', 'think', 'mine', 'switched', 'letter', 'usually', 'entp', 'maybe', 'bc', 'im', 'extremely', 'indecisive']",ENTP
61,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
62,1501763596740546562,freejaychang,kyla | thinking about jay & taerae,"['im', 'going', 'let', 'letter', 'define', 'relieved', 'facerelieved', 'face', 'really', 'dont', 'think', 'im', 'entp', 'must', 'mistake']",ENTP
63,1433377793908219906,honeygoldlight,🍯,"['begging', 'everyone', 'ditch', 'mbti', 'learn', 'jungian', 'cognitive', 'function', 'instead', 'dominant', 'extr']",ENTP
64,1657382734829080581,YvesYvelliel,Yve,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
65,1557277089077686272,azzyslefthand,Az!,"['add', 'mbti', '4', 'character', 'type', 'im', 'entpa', 'ill', 'entp', 'roof']",ENTP
66,1501763596740546562,freejaychang,kyla | thinking about jay & taerae,"['like', 'think', 'need', 'retake', 'mine', 'dont', 'think', 'entp', 'suit']",ENTP
67,1628944654749294593,hoonfry,Miyoncè,"['one', 'thinking', 'one', 'feeling', 'dont', 'think', 'heart', 'youre', 'pretty', 'logical', 'entp']",ENTP
68,878746256390180865,cuntresslee,edona mina girl,"['give', 'entp', 'enfp', 'vibe', 'im', 'crisis']",ENTP
69,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['entp', 'aries', 'enneagrams', 'different', 'tho']",ENTP
70,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['nvm', 'may', 'projecting', 'cuff', 'definitely', 'think', 'he', 'nt', 'definitely', 'see', 'pe']",ENTP
71,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['omg', 'fellow', 'entp', 'hiii']",ENTP
72,1620770911895916545,k4ycrows,kay ☀️,"['bisexual', 'entp']",ENTP
73,1652591860941221888,jingyuanhater,zou / lila ౨ৎ 139/180,"['add', 'mbti', '4', 'character', 'mbti', 'entp', '_', 'severe', 'lack', 'entp', 'char', 'hsr', 'bandori']",ENTP
74,1223129154452742144,eintoricht,ein(stein).,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
75,1491089389614612482,Keikkuuu,Kazuha4life | Saw bp and itzy!,"['hi', 'im', 'yanni', 'j', 'call', 'yandouble', 'exclamation', 'mark', 'looking', 'moot', 'since', 'new', 'acc', 'headphone', 'stan', 'skz', 'txt', 'le']",ENTP
76,1610018509441966084,MegumiAkuma,Megu | Debut TBA |ENVtuber|,"['current', 'design', 'entp', 'im', 'devil', 'vtuber', 'ageless', 'ability', 'teleport', 'anywhere', 'ive', 'seen', 'speed']",ENTP
77,1343844940065988608,jcdecardan,aby 💜,"['cardan', 'entp', 'win', 'u', 'entps']",ENTP
78,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['he', 'entp', '6w7', 'spso', '631', 'rluai', 'ig', 'adhd', 'tism', 'trauma', 'thumb', 'mediumlight', 'skin', 'tone']",ENTP
79,1339462885387370498,ETnKnuckles,E ☆T,"['alot', 'like']",ENTP
80,1319858745837404167,ateezfru,aiko..?? ❤️🩹,"['hi', 'guy', 'im', 'aje', 'new', 'looking', 'atiny', 'moot', 'beaming', 'face', 'smiling', 'eyesbeaming', 'face', 'smiling', 'eye', 'sheher', '17', '18', 'august', 'entp', '3w4', 'engina', 'act']",ENTP
81,1044192679851184128,dnistarr,͏ ͏,"['cancer', 'e', 'entp', 'advogad', 'diabo', 'skull']",ENTP
82,1339462885387370498,ETnKnuckles,E ☆T,"['entp', '3w2', 'sxsofolded', 'hand', 'dark', 'skin', 'tone']",ENTP
83,1528751979698311168,entp_lys,Polaris ☆,"['baekhyuns', 'look', 'one', 'history', 'book']",ENTP
84,1355865748909006848,nikocoxas,Lev.,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
85,1160676514859487237,energyepic_720,Gab(e),"['add', 'mbti', '4', 'character', 'type', 'entp', 'always', 'either', 'coolest', 'mf', 'ever', 'evil', 'huma']",ENTP
86,1206419518698016769,junhwinoir,ɾαíssα,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'gente', 'feliz', 'e', 'boa', 'two', 'heart']",ENTP
87,1294639899975581698,myladystardust,stardust🌒| starless lady,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
88,1528751979698311168,entp_lys,Polaris ☆,"['girl', 'like', 'theyre', 'love', 'life', 'fictional', 'character']",ENTP
89,1456175192112177166,nikolaikisser,sin ・SPEAK NOW,"['add', 'mbti', '4', 'character', 'mbti', 'enfpentp', 'firefire']",ENTP
90,1438738520265342979,hyunflvwer,izaac៹ au no 📌,"['izaac', 'rio', 'grande', 'sul', 'entp', 'virgem']",ENTP
91,1564760881371684864,sooupdrinker,soup (leader of the sigma cult),"['mbti', '4', 'character', 'entp', 'derogatory']",ENTP
92,50547284,jonathanstea,Dr. Jonathan N. Stea,"['there', 'thing', 'entp', 'type', 'scientifically', 'invalid', 'conceptand', 'cert']",ENTP
93,330235057,raynecreates,🌧✨Rayne✨🌧 On Patreon 🔥,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
94,1179741745048780802,cinnam0ngirl1z,riri,"['people', 'always', 'give', 'impression', 'estpentp', 'person', 'flirty', 'fun', 'true', 'seen', 'ho']",ENTP
95,29039409,entp_adhd,ms ENTP 🦚,"['rebekah', 'vardy', 'sexually', 'abused', 'member', 'ultrastrict', 'jehovah', 'witness', 'community', 'age', '1215', 'ch']",ENTP
96,1528896661812039680,jinxphonic,jinx・edtwt,"['im', 'enfp', 'dom', 'function', 'ne', 'almost', 'entp']",ENTP
97,1506021752660504586,DerekGarfield2,GaryCato,"['love', 'entpskullskull']",ENTP
98,975385103168888832,saraglezzz_,S🕊,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'el', 'pesetero', 'de', 'tom', 'nook', 'toy', 'berrando']",ENTP
99,1528751979698311168,entp_lys,Polaris ☆,"['melody', 'moon', 'lamp']",ENTP
100,1205759839349010432,shisehmt,ying🐝 0/30 primavera eichi,"['im', 'serious', 'ive', 'never', 'met', 'normal', 'entp', 'ever', 'always', 'silly']",ENTP
101,1511722610190548998,xavier_lehnsher,nora🦭,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'funny', 'red', 'bastard']",ENTP
102,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820']",ENTP
103,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['merchant', 'council', 'come', 'back', 'became', 'separate', 'stadwatch', 'lawyer', 'entp', 'love', 'arguing', 'semantics', 'detail']",ENTP
104,999899047858028544,slashermunson,peter quill apologist,"['add', 'mbti', '4', 'character', 'share', 'entp']",ENTP
105,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['ok', 'uhh', 'ask', 'kind', 'weird', 'question', 'see', 'im', 'entp', '6w7', 'spso', 'website', 'wh']",ENTP
106,1561945705177968646,rinnielynch,rinnie ෆ 🪼,"['im', 'rinnie', 'im', '21', 'im', 'entp', 'feel', 'like', 'somehow', 'accidentally', 'got', 'shiftwt', 'anyways', 'wa']",ENTP
107,1566511787058552840,SAVOLIUM_,ᅠᅠ🦇 !!,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'también', 'conocido', 'como', 'hot', 'motherfucker']",ENTP
108,1510426716702879746,KATH0R3T3S,≛ kath is a globohomo spy 🕵🏻♀️,"['add', 'mbti', '4', 'character', 'type', 'entp']",ENTP
109,1193561844134354950,fixfearnot,lena,"['could', 'worse', 'vernon', 'could', 'releasing', 'second', 'single']",ENTP
110,3361698831,btsalseo,cami ✧˖°˖✧,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'la', 'mayor', 'amenaza', 'de', 'occidente']",ENTP
111,1623337104489996289,PlsgiveJLabreak,Tomo-chan,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'funfact', 'karma', 'even', 'share', 'eneagram', 'lol']",ENTP
112,1642992317060505602,phinlands,phin & co. 🎞️,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'double', 'exclamation', 'markdouble', 'exclamation', 'markdouble', 'exclamation', 'mark']",ENTP
113,1266862965824917506,acupofstarspls,tj 🦥✨,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'decided', 'add', 'enneagram', 'well']",ENTP
114,1292923954252963850,cricaresabu,𝗰𝗿𝗶 ☾︎,"['always', 'either', 'intp', 'entp', 'usually', 'depends', 'sociable', 'im', 'feeling', 'period', 'life']",ENTP
115,1552994272269312002,vileoria,ハン.,"['entp', 'larping', 'as']",ENTP
116,1622458997805834242,fieryravenette,Aʀɪᴀ M. Mᴏɴᴛɢᴏᴍᴇʀʏ,"['also', 'naturally', 'articulate', 'speaks', 'direct', 'way', 'eliminates', 'informative', 'entp', 'jughead', 'jones']",ENTP
117,1622458997805834242,fieryravenette,Aʀɪᴀ M. Mᴏɴᴛɢᴏᴍᴇʀʏ,"['ive', 'eliminated', 'number', 'enneagram', 'attempting', 'type', 'jughead', 'jones', 'he', 'either', '784', 'e']",ENTP
118,1449069893396094979,inkchr0matic,joey drew's office chair,"['fucking', 'love', 'entps', 'mighty', 'war', 'since', 'ppl', 'cant', 'decide', 'he', 'entp', 'esfp', 'he', 'entp', 'cause', 'make']",ENTP
119,1611187018553229313,looking4rooney,mária (nina hoss gf),"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
120,1463789715535151104,darklinax_,Sonya🖤 #elrielmonth,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'face', 'savoring', 'food']",ENTP
121,767005290067660800,daddymor4x,ֹ .ᅠᅠᅠᅠᅠᅠ𝙃𝙔𝙐,"['add', 'mbti', 'ando', 'put', '4', 'character', 'hace', 'dame', 'mbti', 'entp']",ENTP
122,611171478,LANClLL8,andy 🚀,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'call', 'hand', 'light', 'skin', 'tone']",ENTP
123,1449805446034989059,yeahitsdalin,دَاْلِيْن 大林,"['add', 'mbti', 'amp', 'put', '4', 'character', 'type', 'entp']",ENTP
124,1003198474848952326,cal_stk,cal 🐺,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'funny', 'red', 'bastard']",ENTP
125,1576774617418571777,euncookies,𝙱𝙻𝚄𝙴|𝚜𝚎𝚊𝚛𝚌𝚑𝚒𝚗𝚐 𝚏𝚘𝚛 𝚖𝚘𝚘𝚝𝚜|,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
126,1388888711195086851,tresbienmiya,miya,"['mbti', 'grouping', '16', 'isnt', 'accurate', 'dont', 'believe', 'much', 'common', 'point', 'enfp', 'en']",ENTP
127,1389370132070293510,joowapagames,joo 🍒 kodama island 🍄🌿🌷,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'annoying', 'bois', 'whoms', 'love', 'much', 'loudly', 'cry', 'faceloudly', 'cry', 'face']",ENTP
128,1160292919296835585,4O45O5,wolfen,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'por', 'lo', 'esquizo', 'yo', 'creo']",ENTP
129,1676801868,sashitayuka,sashita.mp3,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'hear']",ENTP
130,1592009101198098435,visd1cktattoo,jay ★,"['add', 'mbti', '4', 'character', 'type', 'entp', 'double', 'exclamation', 'markteehee', 'ekko', 'gumball', 'watterson', 'hange', 'zoë', 'fleabag']",ENTP
131,2316300679,cbriancpa,"Brian Streig, CPA","['good', 'see', 'accounting', 'hasnt', 'killed', 'free', 'spirit', 'ive', 'alternated', 'entp', 'enfp', 'since']",ENTP
132,1498634211238060036,berawoll,maive,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
133,1048320475,exorsus12,exo,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'compilacion', 'de', 'malas', 'persona']",ENTP
134,1624721634572500997,crblackswan,blackswan𓆩ᥫ᭡𓆪 || cr: blade of secrets,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
135,1398272309283246085,333ricc,☁️ babss mirrorball da silva,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'ive', 'got', 'extremely', 'smart', 'sarcastic']",ENTP
136,1573936534000005121,shogfn,Xiren,"['entp', 'mbti']",ENTP
137,1448368260420866055,kikibats,Kiki ☀️🔜 MCM London,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'mine', 'entp', 'zany', 'face']",ENTP
138,1537891905031110657,folklorstar,lua (sirius’ version). ⭐️,"['slytherin', 'cancer', 'entp', 'chale', '5']",ENTP
139,4822298962,lauristical,doctah lorrà 🔮,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
140,1373514728,kellyonelani,Kelly 💚 Onelani,"['quickly', 'look', 'oh', 'hey', 'reigen', 'entp', 'grinning', 'squinting', 'face']",ENTP
141,1056905040,atomicpowerd,atomic : coms open!,"['entp', 'make', 'look', 'like', 'insane', 'person']",ENTP
142,635324796,AlSamia0life,AlSamia♏,"['entp', 'thing']",ENTP
143,1469853336329502727,v4mpkki,ki 🌌,"['looking', 'moot', '15', 'sheher', 'artist', 'exmusician', 'bsd', 'genshin', 'jjk', 'tpn', 'csm', 'ar', '56', 'kaeya']",ENTP
144,1427642383383019537,Hameedmoyal1,"Hameedmoyal.| Fuelet Free, Own🧟♂️","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
145,1297394482980089857,SourabhStephen,stephen | stephenwolf.bnb | Suiswap .bit 🐐 🌊📘⚪⚫,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
146,1338522273142149123,ifyoudontplay,maurice,['22enbyhetheyentp'],ENTP
147,1023557561868541952,itsScaraMichi,『 Nayra 』♡’s Aroa,"['avr', 'digan', 'besazo', 'perdón', 'por', 'ser', 'entp', 'personality', '4', 'character', 'tell', 'youd', 'like', 'would', 'stay']",ENTP
148,1651593360359014402,anemovencos,Ven || blade's wife,"['hello', 'im', 'looking', 'interactive', 'moot', 'astro', 'theythem', '21', 'entp', 'intere']",ENTP
149,3610886239,c_woodzon,WOODZ.,"['guess', 'mbti', 'final', 'result', 'yeah', 'right', 'entp', 'right', 'arrow', 'entj', 'right', 'arrow', 'cute', 'face', 'savoring', 'food']",ENTP
150,1600805667056631809,najminach,Naj🧞,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
151,713889285020188672,Yokiter,Will 🦧,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'nightmare', 'entp', 'blunt', 'rotation']",ENTP
152,1010513956467662849,denden010300,denden🤍,"['20yo', 'entp', '183cm']",ENTP
153,1646905757563260929,notluisadoor,WHO's luisa?,"['entp', 'boynextdoor', 'moving', 'profile']",ENTP
154,1615941585476141056,hollijollie,holli 🌹STAR WARS DAY,"['add', 'mbti', 'add', '4', 'character', 'mbti', 'entp']",ENTP
155,1648747567742697477,wld_darkom,👺,"['dmg', 'entp']",ENTP
156,1645019337579970561,j1_g00,niji 浪迹天涯,"['star', 'day', '4', 'star', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'star', 'sheher', 'blk', 'entp']",ENTP
157,1622741735657832449,carokower,Botvinnik,"['bottom', 'text', 'entp']",ENTP
158,1010513956467662849,denden010300,denden🤍,"['entp', 'x', 'estp', 'like', 'two', 'extroverted', 'thrillseekers', 'come', 'together', 'wild', 'ride', 'rolling', 'floor', 'laughingrolling', 'floor', 'laughing']",ENTP
159,2863780392,thenanadynasty,Nana 何,['entp'],ENTP
160,1506793377353900037,heavyyeyesss,آسيا,"['add', 'mbti', 'amp', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
161,1571518968422088705,literallyinnie,j ; ⭐️⭐️⭐️⭐️⭐️,"['star', 'day', '4', 'star', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'star', 'sheher', 'blk']",ENTP
162,3461896632,Iifeweaver,𝚟 𝚒 𝚟 𝚒 ໒꒱,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'fucking', 'attack', 'entp', 'exploding', 'head']",ENTP
163,1616620286559805441,oxyjin_o2,oscar !!,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'last', 'time', 'took', 'awhile', 'ago']",ENTP
164,1214970344047439874,smarasoka,janyanya,"['step', 'step', 'acting', 'like', 'entp', 'year', 'regretting', 'past', 'self', 'actively', 'ent']",ENTP
165,1637383452726272003,savkafka,dea,"['entp', 'think']",ENTP
166,1249274287690854400,M3LYROVSKI,𝗺𝗲𝗹𝘆𝗿 ✨,"['add', 'mbti', 'put', '4', 'character', 'mbti']",ENTP
167,1369455290756853763,wyborn__,wybie ! || succession era ???,"['past', 'u', 'lying', 'entp']",ENTP
168,1360292412862644229,starksstrange,elle,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'saul']",ENTP
169,1205759839349010432,shisehmt,ying🐝 0/30 primavera eichi,"['ive', 'never', 'met', 'normal', 'entp', 'ever']",ENTP
170,4059372013,entp_hash,해쉬 ,['mood'],ENTP
171,1534451180117573635,kitheees,anton 🎧★⁵,"['entp', 'sx420', '8w4', 'master', 'mind', 'pleading', 'facepleading', 'facepleading', 'facepleading', 'face']",ENTP
172,1532869586386829312,greenishaze,flea,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
173,1603016967643746305,cqhens,ً,"['ur', 'entp']",ENTP
174,1162677470719614976,badmoodbadways,ceo dei gays 🦋,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'gli', 'entp', 'sono', 'più', 'fighi', 'smiling', 'face', 'sunglass']",ENTP
175,1226342981143166978,Jiing81,JJ~*,"['play', 'piano', 'well', 'pianist', '183', 'cm', 'entp', 'month', 'relationship', 'known', 'face', 'tear', 'joy']",ENTP
176,1608509191001616385,weathergales,ً,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
177,1657294912524623872,spikyneozone,san 🗯,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
178,1010513956467662849,denden010300,denden🤍,"['im', 'entp']",ENTP
179,3415475763,moonflovers,frans,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'beaming', 'face', 'smiling', 'eye']",ENTP
180,1656569925262032898,hrtgaeul,avis,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
181,1410300641679794181,azuresalix,mika 🕺,"['life', 'entp', 'always', 'getting', 'slandered', 'friend', 'entpj']",ENTP
182,1606896444824514560,i43333,012 🪐ateez OUTLAW,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
183,1657654451442966528,seiarive,seia,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
184,1318580257524363264,Sushishoes1,🍣👟,"['nice', 'another', 'entp']",ENTP
185,1528859402916319233,karamazovluvr,no. 1 dima razumikhin girl!,"['entpcoded', 'istj', 'ever']",ENTP
186,2322487820,Sheeeeeetal,stella 🐻🤎👜,"['entp', 'behaviour', 'pensive', 'face']",ENTP
187,937270082744606720,powellseresin,kei 📸 #1 hitman fan,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'face', 'savoring', 'food']",ENTP
188,1642433007729643521,itszeyni,zeyn,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
189,1256020342541135872,MIMONELOID,みもねる,"['entp', '3w4358sxso']",ENTP
190,976072687,cigarettesmokex,zezinhå RUSH!,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
191,1655790830874132486,diegscwx,diego,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
192,1518963304282034177,mnlysung,giada★⁵,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
193,1546039279553761282,hyunescape6,valky🔞,"['entp', 'kiss']",ENTP
194,1348459769476960262,Sleincanpooo,Sealionn★,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
195,78544488,ItsreallyRog,Rog,"['think', 'could', 'however', 'know', 'better', 'worry', 'eco', 'nutter']",ENTP
196,1384194785867558917,thatgaymenacee,SAGE's Zen bear day🧸🎉,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entpthe', 'joy', 'felt', 'found', 'bo']",ENTP
197,1404033098006794241,kvhkisser,blaze 🌻 c6 kaveh at last,"['entp', 'look', 'captivated']",ENTP
198,1657294912524623872,spikyneozone,san 🗯,"['gasp', '16', 'entp', 'hello']",ENTP
199,1509463061320835075,angeostura,Dan,"['hello', 'entp', 'fellow', 'hows', 'weekend', 'gab']",ENTP
200,1223891093781008386,mahaespresso,𖤐,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
201,1650430115338407936,kuromisiiuu,tine : on limit,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1h', 'new']",ENTP
202,1657294912524623872,spikyneozone,san 🗯,"['hello', 'im', 'san', 'im', 'new', 'hehim', '07', 'liner', 'bi', 'entp', 'main', 'nct', 'ateez', 'enha', 'txt', 'day', '6', 'p1']",ENTP
203,1582809123418263553,magnetkaz,kaz,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
204,976327877963608064,AllYellowJoshua,AllYellowJoshua💛,"['aj', 'entp', 'personality', 'type', 'definitely', 'aj', 'lee', 'yesyellow', 'heartsundizzyyesyellow', 'heartsundizzyyesyellow', 'heartsundizzy']",ENTP
205,1603016967643746305,cqhens,ً,"['oh', 'entp', 'btw']",ENTP
206,1430611223280816131,Vityokboyc,Vityok,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
207,1291315820648452096,3jtown,old cat rue,"['omg', 'yenna', 'thank', 'much', 'interesting', 'yes', 'agree', 'jiseok', 'entp', 'loudly', 'cry', 'faceloudly', 'cry', 'face']",ENTP
208,1648017584103772160,Hessoo_o,Hessonite ☘️,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
209,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['greeting', 'earthling', 'im', 'lookin', 'new', 'friend', 'go', 'theythem', 'pronounce', 'entp', 'mbti', 'amp', 'virgò']",ENTP
210,1396414502292307969,juno_of_sun,juni,"['entp', 'think']",ENTP
211,1621656572014231552,caffeinebzz,Shin 🍕,"['oh', 'god', 'google', 'saying', 'im', 'entp', 'ni', 'loop', 'dont', 'get', 'started', 'shit']",ENTP
212,1541988781812617216,swee2winkz,SUNNI ! 🩷🩵,"['mbti', '4', 'chara', 'share', '3', 'entp']",ENTP
213,1519116105125699584,vampireshearts,⁺ ✶ caius/ambroz ꩜,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
214,1657282135902887936,ilyd4rlin,🌴 oli,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
215,1427389061266821121,i76scott,stargirl,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
216,2322487820,Sheeeeeetal,stella 🐻🤎👜,"['wait', 'youre', 'entp', 'loudly', 'cry', 'face']",ENTP
217,1470995336,babycheetahmark,crys♡ missing mark💔,"['00', 'liner', 'amp', 'entp', 'energy', 'usss']",ENTP
218,1400097315877277706,rickysshopbag,🐦⬛| maya.h is celebrating Ricky's month,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'kdrama', 'ver', 'entp']",ENTP
219,1586174929124433926,diosvussy,haechan,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'im', 'entp']",ENTP
220,1448910679923048449,suhjOhn_ny,regina ☁️ | lf nctzen moots,"['day', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'fb']",ENTP
221,1414480614003118083,yip_chelsea,꧁𝑴 𝒊 𝒔 𝒆 𝒂꧂,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
222,1397272707214061568,allukaprotector,cj 🫧,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'im', 'red', 'flag', 'entp']",ENTP
223,1272361160965160961,loveserra_,quentin 🌈🏳️⚧️,"['kindly', 'adding', 'benny', 'weir', 'entp', 'gay', 'list']",ENTP
224,1274381029675986946,hyurnnwook,Hyunwook,"['𝗛𝗲𝗶𝗴𝗵𝘁', '181', 'cm', '5', 'ft', '11', '𝗪𝗲𝗶𝗴𝗵𝘁', '67', 'kg', '1477', 'lb', '𝗕𝗹𝗼𝗼𝗱', '𝗧𝘆𝗽𝗲', '𝗠𝗕𝗧𝗜', '𝗧𝘆𝗽𝗲', 'entp', '𝗜𝗻𝘀𝘁𝗮𝗴𝗿𝗮𝗺', '_choiii__']",ENTP
225,1615754292018794496,BicePortinarii,† B/C † ¹⁸°¹²'²²'',"['as', 'mbti', 'put', 'four', 'character', 'mbti', 'entp', 'im', 'problem', 'rainbow']",ENTP
226,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['trick', 'question']",ENTP
227,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['fucking', 'silly']",ENTP
228,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['ok', 'wheres', 'deadly', 'white', 'supremacist', 'riot', 'much', 'threat', 'walking', 'around', 'kaki']",ENTP
229,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['yall', 'believe', 'theyre', 'still', 'pulling', 'crap', 'mean', 'really', 'like', 'u', 'gon', 'na', 'show', 'may', 'wearing', 'khaki']",ENTP
230,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['mean', 'would', 'look', 'kind', 'silly', 'giving', 'commencement', 'speech', 'howard', 'condemning', 'white']",ENTP
231,1449137943604436992,thorsfavlesbian,sam,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'mine', 'entp']",ENTP
232,1530515068735180800,slayorie,☆,"['enfj', 'entp', 'year', 'recently']",ENTP
233,1502852233267855362,ikiigai__,eiri ♡'s yuan | D-2 for bbg jing yuan | ia,"['omg', 'helloo', 'fellow', 'entp', 'feel', 'god', 'mbti']",ENTP
234,1318580257524363264,Sushishoes1,🍣👟,"['entp', 'taking', 'lead', 'grinning', 'face', 'smiling', 'eyesbeaming', 'face', 'smiling', 'eye']",ENTP
235,1434500969983791106,shanbinwhiskers,vyeo🌟,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'kdrama', 'ver', 'entp']",ENTP
236,887448533653172225,jesxchstain,manu,"['add', 'mbti', 'put', 'four', 'character', 'mbti', 'lt333', 'entp', 'artist', 'palette', 'frostbitestudios']",ENTP
237,1315490740928229378,ningwke,carol 🌙,"['handshake', 'wrq', 'entp']",ENTP
238,1275430816500203522,ayatosbobamilk,deb ⟡,"['fuckkk', 'entp']",ENTP
239,1412388147208462336,icenfire0803,🧊Yuuki🔥,"['sumpah', 'yaass', 'literally', 'fusion', 'entp', 'enfp', 'keknya']",ENTP
240,1640887796478124032,leknwsv,Sav,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
241,1378662652268867589,NotAWesternSpy,Name cannot be blank 🌟,"['ahhh', 'took', 'got', 'intptine', 'fit', 'tbh', 'next', 'closest', 'entpne']",ENTP
242,1622672871142174720,samhj21,Sam !♡︎,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
243,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['really', 'naïve', 'mr', 'rog']",ENTP
244,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['country', 'america']",ENTP
245,1312836234348290050,NAMSEOKSZN,chi | reosagi fans ltd,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'sexy', 'line']",ENTP
246,1516608258949197826,liverral0ne,✮ vincent ✮,"['add', 'mbti', '4', 'character', 'mbti', 'entp']",ENTP
247,1486660944142897158,glorysoblessed,Glory 葉 🐵,"['entp', 'entj', 'relationship', 'game', 'pride', 'challenge', 'opposite', 'cognitive', 'function', 'entp', 'enfj', 'relationship', 'nodded']",ENTP
248,1473379815407472640,herbythesith,herb 🥬 (no. 1 giorno fan),"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'cutie', 'patooties']",ENTP
249,1479431189698170884,MMHERO9,MMHERO,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
250,1489740873546014723,producpeter,shin별,"['sunwoo', 'became', 'friend', 'skzs', 'han', 'entp', 'skz', 'debuted', 'thought', 'han', 'good', 'wanted', 'friend']",ENTP
251,1607533902901518336,zgstz_grazy,gostosa,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
252,1610166439000043521,Mizukikinnie827,•* .°☆asahise. •`🍀`• .dms open!☆°. *•,"['eidens', 'lookin', '4', 'moot', 'hehim', 'entp', 'nete', 'sp738', 'rluan', '7w']",ENTP
253,1332540778346913793,tjtheanimelover,☆TJIsNotStraight☆,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
254,1061259058055966720,psic0d3lyc,lore,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
255,1057873256,___Charly789,Lotte ⚭ 🪩🕰тѕ⁴,"['oh', 'lord', 'loudly', 'cry', 'face', 'add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
256,2733044975,chorandonaboate,• Luiz,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
257,1611719481566298118,io107zen,sara ✯,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
258,1094210284603039744,jazzythefangirl,Jazzyᶻᶻᶻ🎗️,"['qcellbit', 'entp', 'yes']",ENTP
259,1378276206504730628,cIairebIoom,tennussy williams,"['4', 'character', 'mbti', 'entp']",ENTP
260,1297714204661764097,cacahueteefeliz,sandra🫐,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entpskull']",ENTP
261,201416066,KishiCreates,Dri- KishiCreates🪡,"['fellow', 'entps', 'clapping', 'handseyes']",ENTP
262,2251034185,sabs_sweetheart,Sabrina,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
263,1652693407767187457,genshinmoot,genshin moots 🧋,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
264,4059372013,entp_hash,해쉬 ,"['nap', 'timecatsleeping', 'facehugging', 'face']",ENTP
265,1344760925585342465,hrts4mar,mar ⭒,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
266,1581437511485820934,chrazzl,Cam,"['also', 'one', 'technically', 'entp', 'thought', 'least', '40', 'xsxx', 'instead', 'xnxx']",ENTP
267,1581437511485820934,chrazzl,Cam,"['debated', 'saying', 'entp', 'entps', 'much', 'easier', 'find', 'omfg']",ENTP
268,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
269,859763022545526784,lice_mb,me ® 🤡🌈,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
270,1388945303718531074,plewtwo,✦,"['entp', 'look', 'captivated']",ENTP
271,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820']",ENTP
272,1436396480,Ginarodine_,Gigi Lollobridgida ☆.,"['last', 'time', 'test', 'entp']",ENTP
273,1392879845139386369,y2kcinema,💤,"['omg', 'im', 'entp']",ENTP
274,1280017418916528128,poguefilm,sam,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
275,1457683055594938379,M0RISHIMATOKIO,LANI ❤️🔫,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'ale', 'pojebusy', 'siedzom', 'w', 'entp', 'kocham']",ENTP
276,1528751979698311168,entp_lys,Polaris ☆,['theyre'],ENTP
277,1487646648696295426,doniesdarko,rina,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
278,1005569357202821120,hippoBram,🐫 Bram 🇫🇷🇪🇺🇲🇳🇺🇦,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'intp', 'sometimes', 'entp', 'intj', 'though']",ENTP
279,1320321045258293248,ameslaces,dilara,['entp'],ENTP
280,1235967000804982786,clairesjill,☆ Sam,"['got', 'entp', 'bond']",ENTP
281,1504842914328887324,yooseoartsy,helly 🐷 ★★★★★,"['add', 'ur', 'mbti', 'qrt', '4', 'character', 'mbti', 'entp', 'face', 'hand', 'mouth']",ENTP
282,1474817035591106560,thommyknowsnone,📸 thomas | succ/barry spoilers,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
283,3270150636,AstroMariam,mrs. badbatch (widow),"['sprinkling', 'entp', 'rn']",ENTP
284,1627285920482312197,IiIyys,malak⁷ ★⁵,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
285,1567598889657573378,maashuuq,khan ★,"['u', 'entp']",ENTP
286,1098026158699040769,soularfairy,𝚂𝚊𝚝𝚞𝚛𝚗 ₊˚,"['entp', 'aka', 'elite', 'personality', 'type']",ENTP
287,878746256390180865,cuntresslee,edona mina girl,"['im', 'entp', 'brandons', 'entj', 'ready']",ENTP
288,1473772066151165954,cinemapilled,kinocore filmcel,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
289,1648462073440124931,kissesjake,harry,"['entp', 'omg', 'im', 'intp']",ENTP
290,1555776320742871040,dotcom_comp,avery || shitposter and irl donnie darko♬,"['assigning', 'pilot', 'entp', 'libra', 'october', '1st']",ENTP
291,1347735102072172545,LOSTHIGHWAY,Pilot/Paul // #1 Highway Fan EVER,"['assigning', 'pilot', 'entp', 'libra', 'october', '1st']",ENTP
292,3970089372,MegumiBandicot,Megumi Bandicoot,"['eidens', 'lookin', '4', 'moot', 'hehim', 'entp', 'nete', 'sp738', 'rluan', '7w']",ENTP
293,1234952925501411328,jazibazzi,jaz - 재즈⁷,"['im', 'surprised', 'got', 'entp', 'feel', 'like', 'lowkey']",ENTP
294,1286265221879824384,EsotericYaoi,"Erin ""Cum Demon"" Matthews @ CSM fan (Official)","['youre', 'entp', 'elaborate']",ENTP
295,1588682102236651526,bungousdtwt,bsdtwt mutuals ☆ REMOVE @ WHEN REPLYING,"['eidens', 'lookin', '4', 'moot', 'hehim', 'entp', 'nete', 'sp738', 'rluan', '7w']",ENTP
296,1509577663882711049,chuxyqs,☆ . . eiden﹐bsdtwt ifb !,"['eidens', 'lookin', '4', 'moot', 'hehim', 'entp', 'nete', 'sp738']",ENTP
297,1611366664406274049,ldybirdfilms,marijn,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
298,1304161569048125440,_quelswrites,albedo’s used qtip ✾ ❆,"['entp', 'look', 'captivated']",ENTP
299,1276782375465353217,saturnvty,semi ia,"['entp', 'look', 'captivated']",ENTP
300,1582124353017233436,rgosqueen,tils,"['4', 'character', 'mbti', 'smiling', 'face', 'smiling', 'eye', 'entp']",ENTP
301,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['flag', 'united', 'statesflag', 'united', 'statesflag', 'united', 'statessparklesretweetsparklesflag', 'united', 'statesflag', 'united', 'statesflag', 'united', 'state', 'innocent', 'vet', 'ashli', 'babbitt', 'served', 'country', 'well', 'murdered', 'peacefully', 'protesting']",ENTP
302,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['enough', 'climate', 'bullshit', 'al', 'gore', 'still', 'waiting', 'catastrophe', '30', 'year', 'later', 'citi']",ENTP
303,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['enough', 'climate', 'bullshit', 'al', 'gore', 'still', 'waiting', 'catastrophe', '30']",ENTP
304,1375541832516571142,muritamiau,Murita lvs Saeyoung☆,"['add', 'mbti', 'amp', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
305,1163135307652501507,anyamelodrama,sandie,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
306,1656025651420250120,Rerikaz,Reriyaki Kamikaze | ☆BON VOYAGE IS COMING☆,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
307,1010440251570098176,dzem_malinowy,Silnik dieselowy 🫧 is lazy af,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'też', 'entp']",ENTP
308,327740109,daJoezenOne,Joe (MIDDLE NAME HERE) Repp ✨She / Him✨,"['im', 'also', 'entp', 'let', 'gooo']",ENTP
309,1656030865829273601,ABYSSMO_KING,Kaeya Alberich,"['pirate', 'mermaid', 'dynamic', 'entp', 'x', 'intp', 'liking', 'read']",ENTP
310,1306968366179971072,ichoposerio,icho 🛸 | 🔱❤️🩹,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
311,861318274918821889,ellerbrinn,yenna. 😈 JUNHAN STAN ACC.,"['im', 'actually', 'sure', 'jooyeon', 'ne', 'dom', 'enfp', 'there', 'big', 'controversy', 'going', 'around', 'people', 'call']",ENTP
312,1170791889290874887,Haf_art,H A F F Y ⵣ,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'im', 'psychopath']",ENTP
313,1295725866610233347,smutnydelfin,Ursa,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
314,1569459939797782529,chozeIIe,cho,"['think', 'he', 'entp', 'intp']",ENTP
315,1297525617617862659,mirfaizann,Mir faizan,"['thought', 'entp']",ENTP
316,1481607316537499648,bosniaki,мина,"['many', 'nice', 'entp', 'smh', 'hoe', 'choose', '4']",ENTP
317,983240508376928256,beanebabyyy,☆ ☆🩶☆ ☆,"['wait', 'ok', 'ppl', 'fancy', 'intro', 'hi', 'im', 'min', 'kinda', 'new', 'sheher', 'younger']",ENTP
318,1193561844134354950,fixfearnot,lena,"['install', 'rn']",ENTP
319,1398329402748964880,silverstarchase,𝐑𝐢𝐯𝐞𝐧𝐝𝐞𝐥𝐥 ! CHUUYA FAN ACC 🍷,"['kill', 'moja', 'disney', 'princess', 'entp', 'bo', 'tak', 'kurwa', 'powiedxialam']",ENTP
320,1653619178258202624,08lorrainee,lorraine ;🩸,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
321,1595348593942138880,i1lil1i1,Leo,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
322,1351143943300411394,killingbutterfy,kaii???,"['somehow', 'wonder', 'mbti', 'mean', 'im', 'online', 'seem', 'like', 'mf', 'entp', 'irl', 'im', 'fcking', 'quite', 'student']",ENTP
323,1481607316537499648,bosniaki,мина,"['idk', 'im', 'im', 'entp']",ENTP
324,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'hello', 'im', 'looking', 'people', 'mingle', 'im', 'using', 'jeno', 'pfp', 'mbti', 'entp', 'masculine', 'pro']",ENTP
325,1647219004455493632,darialuvsfelix,daria ★⁵,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
326,1621656572014231552,caffeinebzz,Shin 🍕,"['feel', 'lmao', 'im', 'infj', 'used', 'think', 'entp', 'turn', 'im', 'asshole']",ENTP
327,1400908667076100100,sukuubaby,flo || the new gege akutami,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'prerequisite', 'basically', 'hide']",ENTP
328,1398329402748964880,silverstarchase,𝐑𝐢𝐯𝐞𝐧𝐝𝐞𝐥𝐥 ! CHUUYA FAN ACC 🍷,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'eagleeagleeagle']",ENTP
329,1549093479246188547,mafiachuu,daniel !?,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'yes', 'im', 'entp']",ENTP
330,1431606821895213065,papita1337,магнитная папита,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
331,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['yes', 'wan', 'na', 'know']",ENTP
332,1291796157643907073,_escaprism,ar | ಠ_ಠ,"['ive', 'never', 'realized', 'theyre', 'entp', 'make', 'much', 'sense', 'cant', 'stand', 'fr', 'loudly', 'cry', 'face']",ENTP
333,1291796157643907073,_escaprism,ar | ಠ_ಠ,"['entpface', 'without', 'mouth']",ENTP
334,2516936808,thosewhoknew,xin 🌸🌺🌼💕,"['omg', 'try', 'believe', 'much', 'since', 'urge', 'play', 'devil', 'advocate', 'definitely', 'gotten', 'int']",ENTP
335,30558064,Perry1238,Dave ⭐️,"['go', 'enfp', 'entp']",ENTP
336,1485107042159570948,zynxsone,zyn || Sai n Shielda enthusiast,"['took', 'mbti', 'test', 'im', 'entp']",ENTP
337,1657294912524623872,spikyneozone,san 🗯,"['helppp', 'pulling', 'hanji', 'levi', 'entp', 'istp', 'understandable', 'mentally', 'ill', 'lie', 'everyday']",ENTP
338,1657294912524623872,spikyneozone,san 🗯,"['pull', 'gay', 'insane', 'character', 'entp', 'join', 'army']",ENTP
339,1343390955362086912,RebelKid0_0,Key,"['choose', 'entp']",ENTP
340,1378131122576633860,ermegumak,shoko’s cigarette,"['entp', 'mean', 'hot', 'loser', 'time']",ENTP
341,902568862830526465,pgcogollos,Cogollos,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'bro', 'soy', 'una', 'triangular', 'flag', 'q', 'te', 'cagas']",ENTP
342,1458050957271609355,smdustupidmf,hayden,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'entp']",ENTP
343,1054375157987336192,hongeunchaw,shana ; DARKBLOOD ★⁵,"['im', 'entp', 'honest', 'realmoai']",ENTP
344,1458050957271609355,smdustupidmf,hayden,"['imma', 'entp', 'istg', 'barely', 'see']",ENTP
345,1374525509313331201,yunjinsera,ava♥︎HAERIN DAY!!,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
346,3058691374,HTTPJUNGSU555,Margo♡ •🪼•,"['light', 'skin', 'tone', 'mimi', 'kimmie', 'kb', '21', 'year', 'old', '71001', 'entp', 'cancer', 'pisces', 'sagittarius', 'christian', 'faith', 'ambivert', 'gentle', 'sou']",ENTP
347,1577704170140078080,ashoneyjake,ash ૮ ˶ˆ ﻌ ˆ˶ ა,"['n', 'entp', 'went', 'oof']",ENTP
348,1338522273142149123,ifyoudontplay,maurice,['entp'],ENTP
349,834131447724331010,Amyy_Yea,Mina 5-STAR☆☆☆☆☆,"['im', 'entp']",ENTP
350,1502852233267855362,ikiigai__,eiri ♡'s yuan | D-2 for bbg jing yuan | ia,"['entp', 'thing']",ENTP
351,1448953072894496768,tayhoonfication,lara¹³ დ (exam week),"['relate', 'loudly', 'cry', 'face', 'enfp', 'entp', 'similar', 'tbh']",ENTP
352,1547631914571296782,Idespiseidv,alan💤,"['usopp', 'sabo', 'entp', 'tho']",ENTP
353,1547631914571296782,Idespiseidv,alan💤,"['ur', 'much', 'entp']",ENTP
354,1637737559609442305,vampiecampie,🎧 ‘𝘭𝘦𝘦 | ★⁵ in 17 days!,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
355,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'extend', 'heartfelt', 'greeting', 'im', 'tossing', 'friendship', 'offer', 'hence', 'im', 'legal', 'age', '20']",ENTP
356,1582890549257740288,gaonluvr,ain.,"['entp', 'bias', 'gaon', 'youngk', 'smile', 'cry', 'real', 'tear', 'please']",ENTP
357,1316531831613784064,KATSUPHORIA,#: SARI,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'im', 'entpest', 'entp', 'idk', 'mbti']",ENTP
358,1655046354752925696,BE4RANYTHING,"honey | on limit, i'll fb everyone who follows me","['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
359,1650407711639740416,kwanhrts,ruka ♡,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
360,1396101937787977729,sha__omi,sha // Aasa‘s hiori,"['bro', 'idk', 'entp', 'entj', 'person', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'toneperson', 'suit', 'levitating', 'light', 'skin', 'tone', 'yeah']",ENTP
361,1466260479752359938,jonghomallow,sushi,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp', 'minor']",ENTP
362,1607729935850041344,wenhrts,rina ☁️ RT PINNED 🙏,"['intro', 'bug', '4teen', 'wiccan', 'southern', 'entp', '4w5', 'aries', 'scorpio', 'leo', 'creek', 'fanatic', 'kenjorine', 'luvr', 'ldr', 'enthusiast']",ENTP
363,1444842249804599300,_luvseok,ke ♡,"['lollipop', 'd3', 'shaved', 'ice', 'hello', 'im', 'ke', 'im', 'fine', 'prns', 'new', 'amp', 'lf', 'moot', '33', 'entp']",ENTP
364,1524067053304381440,wooniicorn,테이🦄,"['fact', 'hwi', 'amp', 'sungjun', 'entp', 'gave', 'chill', 'like', 'mean', 'tht', 'mbti']",ENTP
365,1169267950743949314,tuttifruitti87,Y,"['reading', 'entps', 'everything', 'starting', 'make', 'sense']",ENTP
366,1625099719709007873,karaeiken,hyoga defender,"['many', 'yall', 'entp']",ENTP
367,1275430816500203522,ayatosbobamilk,deb ⟡,"['fuckkk', 'entp']",ENTP
368,1275430816500203522,ayatosbobamilk,deb ⟡,"['holy', 'fuck', 'there', 'mob', 'psycho', 'guy', 'gen', 'seven', 'onggg', 'wait', 'fuck', 'kaiser', 'aj', 'entp', 'bro', '3338']",ENTP
369,1467702925002964992,gyuqim,fay,"['mbti', '4', 'character', 'mbti', 'entphundred', 'pointshundred', 'pointsfirefirefiredouble', 'exclamation', 'markdouble', 'exclamation', 'mark', 'sorry']",ENTP
370,1402097467227742209,reoskatercaster,azure / ying !!,"['mbti', '4', 'character', 'mbti', 'entphundred', 'pointshundred', 'pointsfirefirefiredouble', 'exclamation', 'markdouble', 'exclamation', 'mark', 'sorry']",ENTP
371,1262996380588609536,spotifyswifey,sage ★ TINGYUN HAVER!!!!,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
372,1471548013168377856,tired_ratt,🧡Ash🧡 Kirara era,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
373,1505290944991707145,wilmonamonos,caleb🕸️,"['dude', 'im', 'entp', 'u', 'stop', 'copying']",ENTP
374,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['massive', 'salutation', 'im', 'searching', 'new', 'pal', 'interact', 'briefly', 'go', 'masculine', 'pronoun', 'entp', 'h']",ENTP
375,1050678784356040704,YeahItshuMe,Blue Sister,"['yeah', 'apparently', 'match', 'ppl', 'compatible', 'entp', 'profile']",ENTP
376,1416790910436663298,kqteharker,zara,"['oh', 'thank', 'god', 'finally', 'green', 'flag', 'entp']",ENTP
377,34920080,vancouvvr,Leon.,"['currently', 'entp']",ENTP
378,300611118,CILLIANLOML,hunter ʚɞ bafta loser cillian murphy,"['still', 'need', 'find', 'entp', 'adopt', 'literally', 'saved', 'many', 'entpinfj', 'meme', 'gallery', 'abo']",ENTP
379,1416790910436663298,kqteharker,zara,"['there', 'actual', 'green', 'flag', 'entp', 'list', 'like', 'even', 'hint', 'green', 'bcs', 'like', 'always', 'good', 'inten']",ENTP
380,1416790910436663298,kqteharker,zara,"['knowww', 'entpinfj', 'dynamic', 'fun', 'say', 'bcs', 'infj', 'bff', 'always', 'funsies', 'w']",ENTP
381,300611118,CILLIANLOML,hunter ʚɞ bafta loser cillian murphy,"['im', 'sorry', 'love', 'dynamic', 'much', 'way', 'jesus', 'infj', 'satan', 'entp', 'like', 'loudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face']",ENTP
382,300611118,CILLIANLOML,hunter ʚɞ bafta loser cillian murphy,"['ok', 'know', 'entp', 'x', 'infj', 'compatiblepopular', 'mbti', 'ship', 'im', 'saying', 'backhand', 'index', 'pointing', 'right', 'light', 'skin', 'tonebackhand', 'index', 'pointing', 'left', 'light', 'skin', 'tone']",ENTP
383,1264989451731775494,UncleDoyoung_,🌙,"['thinking', 'went', 'infj', 'infp', 'entp', 'span', 'decade', '3', 'top', '3', 'skull']",ENTP
384,1416790910436663298,kqteharker,zara,"['add', 'mbti', 'put', '4', 'character', 'mbti', 'yes', 'im', 'entp']",ENTP
385,1601458585481142272,junghyeokfiles,︎︎︎︎ ︎ ︎︎︎,"['add', 'mbti', 'amp', '4', 'character', 'mbti', 'entp']",ENTP
386,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820', '34', 'minor']",ENTP
387,1546080382109773824,zhanghaoel,🥕Oel,"['read', 'qrts', 'feel', 'like', 'im', 'one', 'entp', 'rosinville']",ENTP
388,1275430816500203522,ayatosbobamilk,deb ⟡,"['entp', 'im', 'literally', 'coolest', 'wicked']",ENTP
389,1450870326473072648,mongbebe_entp,몽벱ෆ,"['decided', 'show', 'blue', 'heart', 'biggest', 'fan', 'surprising']",ENTP
390,2998614024,betrayial,Archenid.,"['thinking', 'tyler', 'ilyas', 'shared', 'similarity', 'turn', 'dua', 'duanya', 'entp']",ENTP
391,1647519032747364353,intrelune,❛ lala ⸼,"['newest', 'entp', 'still', 'infp', 'left']",ENTP
392,1249017875001737223,griffithwifey,nora lvs maia 𒉭,"['add', 'mbti', 'amp', '4', 'character', 'mbti', 'entp', 'bug']",ENTP
393,1220163830505824256,XaosInsyde,✨とまらん愛✨,"['im', 'intp', 'test', 'think', 'shige', 'entp', 'im', 'sure', 'seems', 'like', 'feel', 'like', 'e']",ENTP
394,1050678784356040704,YeahItshuMe,Blue Sister,"['apparently', 'entp', 'test', 'match', 'u', 'according', 'personality', 'face', 'tear', 'joy']",ENTP
395,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'uid', '8540672', '93', 'honkai', 'star', 'rail', 'newbie', 'uid', '8102820']",ENTP
396,1362989960115191809,solace_eternal,Fırat Bağ,"['nice', 'animated', 'movie', '80', 'unico', 'island', 'magic', 'got', 'cute', 'amp', 'simplistic', 'animation', 'style', 'amp']",ENTP
397,1630510839483736064,ayeowg,aria,"['percy', 'entp', 'omg', 'rolling', 'floor', 'laughing', 'actually', 'type', 'based', 'cognitive', 'function', 'taking', 'test']",ENTP
398,1408508170125950978,jrpgtrash,JRPGtrash.art,"['add', 'mbti', '4', 'character', 'mbti', 'entp', 'oh']",ENTP
399,4700068980,weknowlin0,evuh. //JEONGINS #1 GF ★⁵,"['jeongin', 'entp', 'stay', 'true']",ENTP
400,1248289723,DannysDayOut_,Dana Eve Valencia,"['entp', 'upsidedown', 'face', 'like', 'sailing', 'calm', 'water']",ENTP
401,1281772092401344512,lexxkyun,Lex \⁷,"['im', 'entpskull', 'even', 'worse', 'loud', 'as', 'mouth', 'one', 'able', 'get', 'shut']",ENTP
402,581581054,iannieppang,anne 🦊 | ia,"['ooof', 'entp', 'asian', 'majority', 'stan']",ENTP
403,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,['word'],ENTP
404,1504289583219240961,zzephyrro,Kayro // KAFKA WAITING ROOM,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
405,1488602622231728131,_strawberrylust,ᅠᅠ⁀ ֶָ * ੭̠ 𝕯𝔞𝔫̲𝔞̲𝔢̲ᅠᅠ,"['ᴀʙᴏᴜᴛ', 'ᴍᴜꜱᴇ', 'name', 'danae', '2021', 'yo', '165', 'cm', '50', 'kg', 'ci', 'girl', 'entp', 'gemini', 'switch']",ENTP
406,1557333730703843329,TriniRLSB,Themanbehindtheslaughter,"['dont', 'think', 'cellbit', 'entp', 'cant', 'see', 'ne', 'dom', 'think', 'ti', 'dom']",ENTP
407,1269458457138102272,miamaliexo,mia 🪽,"['idk', 'one', 'im', 'entp']",ENTP
408,1357129650753970180,bkdkudegenerate,Ross 𓅔,"['add', 'mbti', 'amp', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
409,1466260479752359938,jonghomallow,sushi,"['day', '2', 'shamrock', 'im', 'ryi', 'looking', 'interactve', 'moot', 'headphone', 'entp', '63', 'new', 'fando']",ENTP
410,1657055739800862721,inviernoryi,ryi,"['day', '2', 'shamrock', 'im', 'ryi', 'looking', 'interactve', 'moot', 'headphone', 'entp', '63', 'new']",ENTP
411,1124479975246028800,kimberove,kimber,"['woodz', 'entp', 'knew', 'twinnn']",ENTP
412,1611861845937197056,aelinngg,linn,"['id', 'really', 'love', 'add', 'mbti', 'qrt', '4', 'character', 'mbti', 'thing', 'im', 'entp', 'say', 'alot']",ENTP
413,1253285245681496064,BlaxX_1110,🚫,"['mbti', 'doodlessparkles']",ENTP
414,1334216709436305416,dxmfyyyr,dum,"['add', 'mbti', 'amp', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
415,19744251,kimkozak,Kim on LinkedIn,"['ive', 'never', 'seen', 'pattern', 'horoscope', 'order', 'able', 'understand', 'remember']",ENTP
416,11208072,gpurcell,George Purcell sci/acc (@gpurcell.bsky.social),"['id', 'bet', 'money', 'shes', 'like', 'entp', 'intp', 'depending', 'circumstance', 'show', 'middle', 'ei', 'sco']",ENTP
417,260066978,briasoboojie,briana | support the WGA!,"['usually', 'get', 'enfp', 'im', 'sometimes', 'entp']",ENTP
418,1510615786641100806,quackitysr,ؘ,"['didnt', 'know', 'entp', 'person', 'could', '5wx', 'idk', 'always', 'viwed', '2', 'type', 'totally', 'opposite']",ENTP
419,1634147537832509446,ihwteyankees,luciel 🎷,"['oh', 'oh', 'wanted', 'asked', 'im', 'entp', '3w4', '3']",ENTP
420,1447661077408387081,pissedoffmadtoo,moose,"['im', 'entp']",ENTP
421,1528751979698311168,entp_lys,Polaris ☆,"['ppl', 'reply', 'listing', 'natural', 'disaster', 'funny', 'use', 'manly', 'masculinity', 'stop', 'tornado', 'deflect', 'lava', 'w']",ENTP
422,1075710620148719616,ashowhatt,ash,"['asked', 'anime', 'character', 'vachu', 'sonna', 'see', 'clearly', 'especially', 'entp']",ENTP
423,1569197539039277058,sshiraishist,✧. Arum,"['anjay', 'bro', 'another', 'entp', 'hmu']",ENTP
424,415455132,Helio_Spherical,Notorious N.A.T.,"['well', 'moving', 'director', 'level', 'back', 'individual', 'contributor', 'challeng']",ENTP
425,1633947251306291200,jtionz,🥜,"['entp', 'rosin', 'lonely']",ENTP
426,1441381390566637572,DOOMZ3DAY,Doomzeday,"['entptsundere', 'womensz', 'ive', 'met', 'older', 'boss', 'mutual', 'click', 'see', 'right', 'thru', 'thei']",ENTP
427,1000730365093466112,redgetou,kaiteo kid 52,"['add', 'mbti', 'amp', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
428,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['right', 'el', 'paso', 'texas', 'democrat', 'laughing', 'voting']",ENTP
429,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['ever', 'notice', 'offended', 'liberal', 'woman', 'always', 'fat', 'ugly']",ENTP
430,1209465244499791873,fankuluv,fuque в арке джокеризации,"['ordinary', 'entp', 'ex', 'theater', 'kid', 'entp']",ENTP
431,1636381951706927113,irltaerae,ؘ,"['nah', 'cause', 'entp', '7w6', 'actually', 'powerful', 'combination']",ENTP
432,1275792592958033921,yvmhisu,𓆩♡𓆪,"['smirk', 'linguetta', 'entp']",ENTP
433,1222640252583661568,SohnDerSonne_,𝕽𝖔𝖘𝖊𝖓𝖗𝖔𝖙 ☀️🌾,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
434,1489971509758238727,Sarumi_tv_entp,ZARU🔥,"['rt', 'badiashileblue', 'circle', 'like', 'gvardiol', 'red', 'circle']",ENTP
435,1416790910436663298,kqteharker,zara,"['well', 'entp', 'tbh', 'rmb', 'twice', 'got', 'entj', 'im', 'like', 'mane', 'mustve']",ENTP
436,1416790910436663298,kqteharker,zara,"['oh', 'god', 'getting', 'entpentj', 'always', 'like', 'endless', 'circle', 'hell', 'skull']",ENTP
437,1018365104641806337,xievs,vin,"['im', 'entp', 'incase', 'anyone', 'wondering', 'lolol', 'also', 'yes', 'lt3']",ENTP
438,1499133858784153616,jellovella,jello (treasure planet brain decay),"['youre', 'entp', 'youre', 'annoying']",ENTP
439,1437101085173424132,lulletsite,cherry,"['birthday', '040900', 'zodiac', 'sign', 'virgo', 'mbti', 'entp', 'height', '164', 'cm', 'representative', 'animal', 'red', 'fox', 'representative', 'emoji']",ENTP
440,1163446418536722434,peachmru,𝐧𝐚𝐲,"['youngjae', 'two', 'e', 'mbti', 'jooyeon', 'gaon', 'entp', 'im', 'enfp', 'youngjae', 'rest', 'gunil']",ENTP
441,2198997804,sellecticenim,Lafleur 🌸,"['bruh', 'way', 'im', 'entp', 'face', 'tear', 'joyface', 'tear', 'joy', 'ofc', 'sfd', 'fav', 'drama', 'pinched', 'finger', 'light', 'skin', 'tonepinched', 'finger', 'light', 'skin', 'tone']",ENTP
442,1459131734528774144,yoocroft,pro gamer,"['oh', 'thats', 'actually', 'crazy', 'entp', 'era', 'incoming']",ENTP
443,800983362601185280,naturallyeviI,ᅠ𝐬𝐜𝐫𝐨𝐮𝐧𝐝𝐞𝐥 ♡ .ᅠ,"['uhm', 'entp', 'code', 'guess']",ENTP
444,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['sound', 'like', 'anderson', 'apologizing', 'globalist', 'snake', 'head', 'europe']",ENTP
445,1363444090382282752,mikacrimes,yaoi jesus LAMMY & ROMY DAY,"['idk', 'profile', 'entp', 'vibe', 'im', 'infp', '6w7', '6xx', 'fit', '3', '4', '1l', 'sosp', 'melancholic', 'something', 'idk']",ENTP
446,1615258969483915264,wicked_dadu,Grand daddy,"['add', 'mbti', 'put', '4', 'character', 'type', 'entp']",ENTP
447,1363444090382282752,mikacrimes,yaoi jesus LAMMY & ROMY DAY,['entp'],ENTP
448,1489971509758238727,Sarumi_tv_entp,ZARU🔥,"['symbol', 'hopehundred', 'pointsraised', 'fist', 'medium', 'skin', 'tone']",ENTP
449,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['get', 'arrogant', 'empty', 'suit', 'homeland', 'security']",ENTP
450,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['he', 'entp', '6w7', 'spso', 'way', 'literally']",ENTP
451,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['another', 'sad', 'fact', 'make', '32000', 'top', '1', 'world', 'income']",ENTP
452,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['hear', 'story', 'im', 'libra', 'entp', 'guy', 'use', 'pfp', 'see', 'ya', 'love', 'rl']",ENTP
453,1502011647501778947,lesyeuxdemiu,𓋜,"['love', 'entp']",ENTP
454,1587490324800499712,businesswithdan,D A N,"['entp', 'always', 'visionary', 'guided', 'well']",ENTP
455,1389041255657754625,mehidingx,Mehidingx,"['ientp', 'say', 'pretty', 'spot']",ENTP
456,1651653933167673344,pscbodi,יִ 📌,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
457,1500597947825897472,ChocoChocolari,Crack Baby By Mistki,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'honkai', 'star', 'rail', 'newbie', 'uid', '8540672', '93', 'minor', 'entp', 'sagitt']",ENTP
458,976006309769179136,triandsoe,K.,"['entp', 'accurate', 'loudly', 'cry', 'faceloveyou', 'gesture']",ENTP
459,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'honkai', 'star', 'rail', 'newbie', 'uid', '8540672', '93', 'minor', 'entp', 'sagitt']",ENTP
460,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['shes', 'entp', '6w7']",ENTP
461,1573936534000005121,shogfn,Xiren,"['youre', 'wronggg', 'im', 'infjintj', 'could', 'shapeshift', 'entp', 'lol']",ENTP
462,1414583960349417476,ajessane,aj (is too angry to die),"['add', 'ur', 'mbti', 'qrt', '4', 'character', 'mbti', 'entp']",ENTP
463,709806341989257217,lonely_hated,Mada,"['thats', 'normal', 'one', 'lot', 'others', 'say', 'im', 'entp']",ENTP
464,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'genshin', 'impact', 'player', 'honkai', 'star', 'rail', 'newbie', 'uid', '8540672', '93', 'minor', 'ent']",ENTP
465,906485102057750529,17_celibis,"ᴄᴇ,,,","['sorry', 'entp', 'supremacy']",ENTP
466,1392073366790623236,Stanisl86863011,Stanislav Andreev,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
467,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'started', 'new', 'account', 'im', 'searching', 'new', 'pal', 'brief', 'information', 'im', 'cat', 'lover', 'legal']",ENTP
468,1644592596528820224,casssunzel,STAR !!!,"['whats', 'entp']",ENTP
469,1644592596528820224,casssunzel,STAR !!!,"['im', 'intp', 'confirm', 'entp', 'real']",ENTP
470,1212258673428353024,frcica1979,"frcica_フラシカ@NFT TwitFi phaver .lens(🌸, 🌿)","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
471,1640621571940433931,eunbamby,ice🍦yataz's child,"['omg', 'think', 'mean', 'taurus', 'entp', 'also', 'thank', 'kissing', 'face']",ENTP
472,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'hi', 'lovely', 'soul', 'started', 'new', 'life', 'need', 'lot', 'people', 'mingle', 'especially', 'love', 'inte']",ENTP
473,1408443568444755968,acertainsome2,Dumb || prii ♡,"['ur', 'either', 'entp', 'intp', 'dont', 'remember', 'loudly', 'cry', 'face']",ENTP
474,1536003248053956608,sansteefies,noreen☂️,"['im', 'entp', 'yea']",ENTP
475,1516496724096868354,lux_ymhs,lux,"['prediction', 'loveless', 'character', 'mbti', 'v', 'real', 'mbti', 'im', 'good', 'extremely', 'good', 'btw', 'accura']",ENTP
476,1302077280383098880,Sarahselim9795,𝑠𝑎𝑟𝑎ℎ★💋,"['entp', 'im', 'entj']",ENTP
477,1567320029057921025,im_mrie,rie's studying 🦭 d-19 upcat,"['entp', 'face', 'screaming', 'fear']",ENTP
478,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'hi', 'lovely', 'soul', 'started', 'new', 'life', 'need', 'lot', 'people', 'mingle', 'especially', 'love', 'inte']",ENTP
479,1504692514804371457,GeeWonuu,Gale 🌼,"['took', 'test', '3x', 'always', 'entp']",ENTP
480,1611933277199405058,hccjkfiles,nyx,"['hi', 'im', 'riah', 'lf', 'mootsheart', 'decoration', '07', 'liner', 'sheher', 'filo', 'entp', 'ults', 'newjeans', 'le', 'serra', 'enha', 'etc', 'looking', 'inte']",ENTP
481,1589974759059619841,laawiiii,Lawii ! // 🇫🇮KÄÄRIJÄ🇫🇮,"['people', 'saying', 'dont', 'believe', 'mbti', 'intj', 'attracted', 'goofball', 'entpenfp']",ENTP
482,1589974759059619841,laawiiii,Lawii ! // 🇫🇮KÄÄRIJÄ🇫🇮,"['eurovision', 'crush', 'enfpentp', 'nightmare', 'isnt', 'ending']",ENTP
483,1352981874910498817,ejtaime,jenna h🅾️t,"['hi', 'im', 'entp']",ENTP
484,1366029021847371776,transnbmcyt,୨୧,"['entp', 'last', 'time', 'took', 'test']",ENTP
485,1464461613738893314,0Skay,Skay,"['add', 'ur', 'mbti', 'put', '4', 'character', 'type', 'entp', 'like', 'pose']",ENTP
486,1385682552040693762,ainyanpng,miel💌,"['pinned', 'promo', 'mielvelvet', '24theythem', 'entpcapricorn', 'cosplayvideo', 'game', 'genshinp']",ENTP
487,1205759839349010432,shisehmt,ying🐝 0/30 primavera eichi,"['entp', 'require', 'infj', 'buddy', 'function', 'properly']",ENTP
488,1126082939203112961,brndnuwu,📌tds2inkl freebies | anra 😽,"['fact', 'jehoon', 'johnny', 'mbti', 'entp', 'ideal', 'pairing', 'infj', 'pls', 'let', 'delu']",ENTP
489,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'hi', 'lovely', 'soul', 'started', 'new', 'life', 'need', 'lot', 'people', 'mingle', 'especially', 'love', 'inte']",ENTP
490,2983255299,renigongo,gσиgσ,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'entp', 'básicamente', 'soy', 'insoportable']",ENTP
491,1624797589936934912,fairygyujin,rae -_-,['entp'],ENTP
492,1644670883448123392,prkyona,yona,"['making', 'intro', '๑', 'hii', 'im', 'sydogwenbeverage', 'box', 'new', 'looking', 'moot', '06', 'prns', 'bi', 'british', 'entp', 'gem']",ENTP
493,1644253754118799361,kmsnluvr,୨ৎ elijah⁷ : is being delulu,"['making', 'intro', '๑', 'hii', 'im', 'sydogwenbeverage', 'box', 'new', 'looking', 'moot', '06', 'prns', 'bi', 'british', 'entp', 'gem']",ENTP
494,988673366172237825,naoneesama,Big Sis Naoual🇲🇦 #JankeNation,"['ryojj', 'kaji', 'also', 'entp', 'sk', 'couple']",ENTP
495,754838800874872832,teamTandB2017,Patrick Blaizey Ⓥ,"['see', 'data', 'around', 'believe', 'ill', 'wait']",ENTP
496,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['ended', 'entp', '6w7']",ENTP
497,1613472146688462849,dunkshhot,Mikael,"['hello', 'buddy', 'im', 'lookin', 'bunch', 'friend', '૮', 'აbouquetbouquet', 'linked', 'paperclip', 'abt', 'mewoman', 'gesturing', 'ok', '୨୧', 'u', 'call']",ENTP
498,414534527,thepullofyou,lainey,"['funny', 'esfp', '5', 'year', 'ago', 'recently', 'retook', 'test', 'im', 'entp', 'still', 'extroverted', 'thinking', 'facegrimacing', 'face']",ENTP
499,1548422776117026817,serpentinesp3ar,noa(mipha)🦈🪼,"['help', 'sexymen', 'entp']",ENTP
500,1654100784760381440,_soojzin,ᅠᅠ 📌 Cici ଓ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
501,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['entp', '6w7', 'wont', 'stop', 'entp', '6w7', 'agenda', 'gaygenda']",ENTP
502,1287929664,ymanchae,lanaa,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
503,988673366172237825,naoneesama,Big Sis Naoual🇲🇦 #JankeNation,"['many', 'time', 'keep', 'entp']",ENTP
504,1008475801874862080,ilayosu,ilay ⚙️🫐🍡,"['entp', 'like']",ENTP
505,1638719893645279234,opalripple,Cassketch⁷₈⟭⟬ ☆ ceo of risotto,"['entp', 'men', 'slut', 'default']",ENTP
506,2879499393,thechloediary,chlo 🪁,"['lie', 'best', 'one', 'entp', 'weary', 'face']",ENTP
507,2879499393,thechloediary,chlo 🪁,"['hahaha', 'kin', 'list', 'mostly', 'entploudly', 'cry', 'face']",ENTP
508,1534971770092101632,zspacetg,Space? 🪐 (CR:),"['entp', 'like', 'goat', 'okabe']",ENTP
509,1656671239514259459,ShibaCuddleBug,⩩🧇› 𝙏𝙝𝙤𝙢𝙖 ꏍ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
510,1498544045911470086,rk_uae,RæShэD🇦🇪,"['donald', 'tramp', 'entp']",ENTP
511,1244509485068099586,4quanrui,🎧,"['entp', 'actually', 'brainy', 'people', 'misunderstood', 'like']",ENTP
512,1582370469466017793,strwbrryeos_,Nyx 🌱,"['03', 'entp', 'guy']",ENTP
513,1641496137088524294,vhexerei,hexe,"['thats', 'im', 'entp', 'soytariligim', 'tescillendi']",ENTP
514,1244025422884622336,hangesato,soap ☽☾,"['add', 'ur', 'mbti', 'put', '4', 'character', 'one', 'entp', 'lt3']",ENTP
515,1298168245317443584,meusqr,"niamh,,","['fineee', 'bfgf', 'application', 'ig', 'sixteen', 'bi', 'idfk', 'star', 'war', 'good', 'head', 'pinky', 'swear', 'saw', 'someone', 'el']",ENTP
516,939944499664576513,gang_ku7,kou,"['see', 'mingi', 'entp', 'according', 'reliable', 'source', '정우영', '3rd', 'letter', 'determines', 'u', 'see', 'si']",ENTP
517,1289616476194975745,4HourL,4𝓗𝓛🚬🌙 (DM limited💀🦇),"['based', 'guy', 'never', 'met', 'know', 'literally', 'nothing', 'abouthe', 'strike', 'entp']",ENTP
518,980077880746151936,vlfeshit,nega-adrian😈 (hereforleast) | NIX 🦆,"['oh', 'missed', 'entp', 'eh']",ENTP
519,1354672500546875393,chimpson7,Reality Jack,"['think', 'ur', 'entp', 'mbti', 'personality']",ENTP
520,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['dude', 'anything', 'leave', 'anyone', 'much', 'sound', 'mind', 'body']",ENTP
521,1315741376642834433,I_Am_GKennedy,Gregory Kennedy,"['oh', 'dude', 'youre', 'entp', 'debater', 'type']",ENTP
522,1557146979334901761,ecstasy_vt,ecstasy,"['add', 'ur', 'mbti', 'put', '4', 'character', 'w', 'type', 'entp']",ENTP
523,1477646154905145347,ClimateChangeC_,Climate Change Control,"['wait', 'wef', 'declare', 'ai', 'entity', 'right', 'already']",ENTP
524,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['people', 'understand', 'happened', 'today', 'house', 'committee', 'publicly', 'released', 'evidence', 'showing', 'treason']",ENTP
525,448076415,amusedhalfling,marth♡,"['im', 'entp', 'can', 'not', 'stop', 'giving', 'opinion']",ENTP
526,1054151832967143424,mayoisbf,JACK ☆,"['rhink', 'maybe', 'ill', 'jjst', 'use', 'feel', 'entp', 'need', 'argue']",ENTP
527,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['texas', 'build', '600', 'mile', 'border', 'wall', 'using', 'uhaul', 'truck', 'california']",ENTP
528,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['real', 'reason', 'weather', 'pattern', 'global', 'warming', 'brought', 'folk']",ENTP
529,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['literally', 'blocking', 'sun', 'blocking', 'fucking', 'sun', 'theyre', 'blocking', 'sun', 'amp', 'noone', 'seems', 'give', 'shit', 'ht']",ENTP
530,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['one', 'republican', 'intelligence', 'courage', 'god', 'give', 'strength', 'mr', 'donalds']",ENTP
531,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['ive', 'got', 'back', 'mr', 'president', 'need', 'president', 'trump', 'back', 'white', 'house', 'enough', 'enough']",ENTP
532,1478156389176553472,Marla4Denver,Marla Fernandez,"['thats', 'ok', 'entp', 'tell', 'anyway']",ENTP
533,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['poor', 'excuse', 'earthling']",ENTP
534,940631106646294528,suhmuse,drizzy,"['whats', 'mbti', 'entp', 'star', 'johnny', 'suh', 'haha', 'found', 'recently', 'cute']",ENTP
535,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['well', 'might', 'america', 'coursing', 'vein', 'apparent', 'surface', 'oven', 'burn', 'well', 'miracle']",ENTP
536,1523487992630939648,ShironoKanata,Dark Flame Master,"['man', 'close', 'someone', 'else', 'lol', 'entp', 'wouldve', 'personality', 'van', 'arkride', 'nadia']",ENTP
537,1637737559609442305,vampiecampie,🎧 ‘𝘭𝘦𝘦 | ★⁵ in 17 days!,"['love', 'mbti', 'changed', 'entp', 'istp']",ENTP
538,1642291836021506048,LUVRZR0CK,eiden | exam era (1/5),"['he', 'definitely', 'entp', 'he', 'talking', 'glass', 'ness', 'talking', 'estp', 'attitude', 'help']",ENTP
539,490158981,Khata_Lan,Katha,"['bet', 'infp', 'entp', 'grinning', 'face', 'sweat']",ENTP
540,1060070036,luvcores,maui 💗,"['whats', 'mbti', 'want', 'personality', 'chemistry', 'circle', 'thingie', 'entp', 'although', 'interchangeable']",ENTP
541,1637737559609442305,vampiecampie,🎧 ‘𝘭𝘦𝘦 | ★⁵ in 17 days!,"['okay', 'guy', 'take', 'mbti', 'test', 'feel', 'like', 'stuff', 'changed', 'gtlt', 'current', 'mbti', 'entp', 'u']",ENTP
542,1634932870975299584,leonmoaning,#shirolover,"['soph', 'assigned', 'entp']",ENTP
543,1636832961189298177,jenlisatxt,lea🌹 is seeing txt,"['entp', 'arguing', 'someone', 'hard', 'face', 'spiral', 'eye']",ENTP
544,1605961255642071042,EXP0SEBURNOUT,fuuka friday ceo (soph),"['ur', 'literally', 'entp', 'bc', 'said']",ENTP
545,1278388283647553538,Xnebriele,Novi.Suiswap 🔆,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
546,1634932870975299584,leonmoaning,#shirolover,"['im', 'entp']",ENTP
547,1328639743400103936,210_x0,𝖗𝖎𝖓𝖆 ✬,"['fourth', 'member', 'nina', 'birth', 'name', 'nina', 'nadia', 'mateer', 'position', 'lead', 'vocalist', 'lead', 'dancer', 'maknae', 'birthday', '15', 'march']",ENTP
548,1531159039681363968,hoe4zhanghao,Lemunade,"['another', 'day', 'entp', 'supremacy', 'agenda', 'face', 'hand', 'mouth']",ENTP
549,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['wonder', 'character', '3w4', 'entp']",ENTP
550,1306952939966287872,Lalooidk,Lalo idk 🌌,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'soy', 'entp']",ENTP
551,1316333585054408704,kian_eclevia,kianecleviaa,"['found', 'im', 'entp', 'today']",ENTP
552,1002417729456955393,__DabKing,nari,"['young', 'k', 'found', 'entp', 'friend']",ENTP
553,1567274142457790464,kuweiyulbos,kade ! fake kuwei stan,"['gon', 'na', 'look', 'grishaverse', 'character', 'share', 'mbti', 'entp', 'enneagrams', 'balanced', '3w4', 'amp', '3w2', 'hmmm']",ENTP
554,1638324123590860800,RoseliaEnjoyer,Om1d,"['u', 'theyre', 'entp', 'intp']",ENTP
555,16602640,alperozdilart,🔴ΛLPΞR ӪZDIL,"['entp', 'union', 'favorite', 'character', 'one', 'ultra', 'high', 'quality', 'handdrawn', 'piece', '1', 'xtz', 'exploding', 'headface', 'screaming', 'fear']",ENTP
556,1647643754160070657,STARRY1SM,star 🌌 ia for exams,"['id', 'say', 'ure', 'likely', 'order', 'intp', 'infp', 'enfp', 'infj', 'ruled', 'entp', 'bc', 'si', 'quite', 'high', 'one']",ENTP
557,1647643754160070657,STARRY1SM,star 🌌 ia for exams,"['looking', 'ur', 'second', 'dominant', 'function', 'ne', 'leaf', 'four', 'type', 'enfp', 'negtfigttegtsi', 'infp', 'f']",ENTP
558,1648190595880583169,adiksyo,ً,"['entp', 'abt', 'u']",ENTP
559,1238287712496398336,GunwookNation,kiee 🐬 ia,"['self', 'aware', 'struggle', 'helpp', 'dw', 'think', 'entp', 'suit', 'u', 'lot']",ENTP
560,1647643754160070657,STARRY1SM,star 🌌 ia for exams,"['god', 'relate', 'second', 'part', 'bad', 'altho', 'never', 'decided', 'anything', 'else', 'entp']",ENTP
561,1647643754160070657,STARRY1SM,star 🌌 ia for exams,"['yeah', 'im', 'literally', 'entp']",ENTP
562,1630611949321961485,iZ0MB0Y, 𝙠͟illua.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
563,1599002604629299201,Kduroo,Ajaxx and Temi.,"['ᅠᅠᅠ', 'psychotic', 'side', 'purely', 'playful', 'metaphor', 'exhilarating', 'experience', 'offer']",ENTP
564,25854572,gregmberry,Greg Berry,"['adhd', 'calendar', 'look', 'lot', 'like', 'entp', 'le', 'entry', 'forget', 'add']",ENTP
565,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['soros', 'worked', 'freaking', 'nazi', 'wwii', 'confiscating', 'jewish', 'property', 'wer']",ENTP
566,1653481863686807554,YUNWHORING,AJE,"['hi', 'guy', 'im', 'aje', 'new', 'looking', 'atiny', 'moot', 'beaming', 'face', 'smiling', 'eyesbeaming', 'face', 'smiling', 'eye', 'sheher', '17', '18', 'august', 'entp', '3w4', 'engin']",ENTP
567,1489360422515924998,narcisoalui,alui 🪸,"['pro', 'entp', 'friend']",ENTP
568,1333693912410537984,misuka98407267,misuka,"['entj', 'endless', 'nest', 'intj', 'web', 'truth', 'entp', 'star', 'forest', 'intp', 'hollow', 'space']",ENTP
569,1264971280081489923,te_yeahh,tinkerspade,"['asks', 'pretend', 'make', 'away', 'therapist', 'said', 'roleplay', 'argument', 'know']",ENTP
570,2969496300,troy_dambrosio,Troy D'Ambrosio,"['entrepreneur', 'class', 'schedule', 'fall', 'summer', '2023', 'david', 'eccles', 'school', 'business', 'register', 'elec']",ENTP
571,1312559044943585281,adorraa_aa,adora⁷🥢 saw yunki,"['hi', 'im', 'riah', 'lf', 'mootsheart', 'decoration', '07', 'liner', 'sheher', 'filo', 'entp', 'ults', 'newjeans', 'le', 'serra', 'enha', 'etc', 'looking', 'inte']",ENTP
572,1609860714516156421,mistakeatfneral,Tey,"['oh', 'theyre', 'really', 'similar', 'funny', 'mistyped', 'either', 'infj', 'entp', 'even', 'though']",ENTP
573,3310588988,Dibsky_,Dib 🥤,"['point', 'ranah', 'entp', 'im', 'actually', 'going', 'insane']",ENTP
574,1641681801100898304,llovelicky,ً,"['ricky', 'entp', 'real']",ENTP
575,1415993268093943812,euphcricsky,cait ✮ ia,"['took', 'mbti', 'test', 'got', 'intp', 'entp']",ENTP
576,999483637681733637,LAZZ1008,LAZZ,"['mbti', 'doodlessparkles']",ENTP
577,832922385812582401,bak4kateme,adabimenyelerakan,"['always', 'said', 'love', 'e', 'version', 'mbti', 'astu', 'woodz', 'entp', 'patut', 'perfek', 'je', 'di', 'mata', 'kuuu']",ENTP
578,1644160180244869128,Ansuuun_,Namneeo|Ansun,"['hey', 'im', 'new', 'wan', 'na', 'active', 'moot', 'pls', 'let', 'friend', 'lt3', 'im', 'v', 'sheher', '20', 'entp']",ENTP
579,1505591129143746563,Solacekageyama,🩷Mila|Sanest Isagi fan🩶,"['hey', 'im', 'new', 'wan', 'na', 'active', 'moot', 'pls', 'let', 'friend', 'lt3', 'im', 'v', 'sheher', '20', 'entp']",ENTP
580,1415894367835885572,eunzhaee,ev(elyn),"['hi', 'im', 'riah', 'lf', 'mootsheart', 'decoration', '07', 'liner', 'sheher', 'filo', 'entp', 'ults', 'newjeans', 'le', 'serra', 'enha', 'etc', 'looking', 'inte']",ENTP
581,1546670951731179520,ilychuyi,ice AMB DAY,"['hey', 'im', 'new', 'wan', 'na', 'active', 'moot', 'pls', 'let', 'friend', 'lt3', 'im', 'v', 'sheher', '20', 'entp']",ENTP
582,1632455932461346816,GlNGAGAMARU,Jojo loves her other 2 skrunkies,"['hey', 'im', 'new', 'wan', 'na', 'active', 'moot', 'pls', 'let', 'friend', 'lt3', 'im', 'v', 'sheher', '20', 'entp']",ENTP
583,21478732,mTraction_ENTP,mTraction Enterprise,"['based', 'custom', 'solution', 'entitled', 'modern', 'enrich', 'customer', 'experience']",ENTP
584,1528751979698311168,entp_lys,Polaris ☆,['baby'],ENTP
585,1605961255642071042,EXP0SEBURNOUT,fuuka friday ceo (soph),"['im', 'hit', 'entp', 'hell', 'enfp', 'yosuke', 'exception']",ENTP
586,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['greeting', 'earthling', 'im', 'lookin', 'new', 'friend', 'go', 'theythem', 'pronounce', 'entp', 'mbti', 'ampamp', 'virg']",ENTP
587,1407167044190040185,23_entp,23,"['chanyeol', 'instagram', 'update']",ENTP
588,1407167044190040185,23_entp,23,"['exo', 'taking', 'military', 'traditional', 'photo', 'jongin', 'loudly', 'cry', 'face']",ENTP
589,74114717,gradissy,dissy,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
590,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['know', 'enneagram', 'instinctual', 'variant', 'subtypes', 'know', 'many', 'thing']",ENTP
591,1437381897081049088,Ayra_sapphic,Sun Summoner,"['reason', 'love', 'entp', 'thread']",ENTP
592,1124150996257521665,Mori_CCCXLVI,Mori,"['add', 'ur', 'mbti', 'put', '4', 'character', 'mbti', 'im', 'entp', 'best', 'type', 'im', 'part']",ENTP
593,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['chandler', 'entp', '6w7', 'comedian', 'group', 'caring', 'friend', 'bit', 'overthinker']",ENTP
594,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['entps', 'also', 'warm', 'caring', 'side', 'along', 'bit', 'troll', 'fe', 'charact']",ENTP
595,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['space', '6', '7', 'characterized', 'comedic', 'verbose', 'plus', 'entp', 'classic', 'class', 'clown', 'type', 'th']",ENTP
596,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['chandler', 'bing', 'friend', 'typed', 'entp', '6w7', 'agree', 'disagree', 'thought']",ENTP
597,1468128674574524418,seraczz,by.nothinc,"['hi', 'shana', 'n', 'im', 'looking', 'interactive', 'moot', '17', 'sthey', 'entp', '4w3', 'stay', 'engene', 'nswer', 'lockey', 'blink']",ENTP
598,1640726338519851008,yaealvira,𝑨𝒍𝒗𝒊𝒓𝒂,"['hi', 'shana', 'n', 'im', 'looking', 'interactive', 'moot', '17', 'sthey', 'entp', '4w3', 'stay', 'engene', 'nswer', 'lockey', 'blink']",ENTP
599,1628290148768284672,cafeaumlk,shine,"['went', 'entp', 'entj', 'loudly', 'cry', 'face']",ENTP
600,1642789753895661568,foxynbunny,jaynay🦊 ˢⁿᵒʷʸˢ ˢᶦʳᵉⁿ🫧,"['make', 'much', 'sense', 'mbti', 'level', 'tbh', 'haha', 'like', 'entp', 'ti', 'introverted', 'thinking']",ENTP
601,1472495406416375809,Moodz_wings,🫧changsub is my spirit animal,"['saddest', 'part', 'almost', 'bias', 'entp', 'entj', 'estps']",ENTP
602,1472495406416375809,Moodz_wings,🫧changsub is my spirit animal,"['nothing', 'cute', 'entj', 'go', 'back', 'entp', 'youll', 'still', 'annoying', 'least', 'diablo', 'incarnated', 'upsidedown', 'face']",ENTP
603,1497783612913360902,GojoYaegerslily,Lily Satoru (eren & Gojo's baby girl),"['entp', 'good']",ENTP
604,870986057277333504,Iavandeur,Kalunara 🦋,"['aside', 'alignment', 'chaotic', 'neutral', 'must', 'one', 'reason', 'sorted', 'slytherin']",ENTP
605,1256020342541135872,MIMONELOID,みもねる,"['entp', '7w6738sxso']",ENTP
606,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['clear', 'video', 'testimony', 'mental', 'illness', 'afflicting', 'liberal', 'wasnt', 'clear', 'b']",ENTP
607,1426740084305321991,TPhm45524437,Tú Phạm🐐,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
608,1546042199330107393,finefected,Petruk,"['im', 'entp']",ENTP
609,1571742429770051584,nightkii0903,Nightkii 夜行者,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
610,1642284515279138816,ghafasluvr,Lena 🤍,"['reason', 'love', 'entp', 'thread']",ENTP
611,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['dont', 'kid', 'going', 'get', 'ugly', 'ht']",ENTP
612,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['rt', 'youre', 'backhand', 'index', 'pointing', 'right', 'voting', 'trump', '2024double', 'exclamation', 'mark']",ENTP
613,1654149956851351552,chraehyungwon,adenm ‘๑’ LIMITTT,"['hi', 'shana', 'n', 'im', 'looking', 'interactive', 'moot', '17', 'sthey', 'entp', '4w3', 'stay', 'engene', 'nswer', 'lockey', 'blink']",ENTP
614,1646300791030919168,vilovesocrows,mavi,"['reason', 'love', 'entp', 'thread']",ENTP
615,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
616,178871654,shelleykoski,⚜️ Shelley ⚜️,"['grad', 'school', 'gabazillion', 'year', 'ago', 'amp', 'entp', 'tested', 'amp']",ENTP
617,29039409,entp_adhd,ms ENTP 🦚,"['claudia', 'smoked', 'everyone', 'veto', 'say', 'sole', 'vote', 'comp', 'needed', 'physical', 'mental', 'ingame']",ENTP
618,1401621727545864197,MINN93Y,maria,"['10', 'entp', '10', 'bts', '10', 'ateez', '10', 'txt', '10', 'justin', 'bieber', '10', 'dark', 'romance', '10', 'enemy', 'lover', '10', 'verde']",ENTP
619,1238608670243663872,faelinkart,xander 🖤 (new art 📌),"['reason', 'love', 'entp', 'thread']",ENTP
620,18313834,StineWhitlock,Cryptstine Witchlock,"['ive', 'gotten', 'depending', 'day', 'intp', 'intj', 'entp', 'entj', 'sound', 'varying', 'degree', 'like']",ENTP
621,1643216272291926016,Haeambis,Hae🌷,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
622,1647011069532213248,nyshapie,neyshAA ★__★,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
623,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni']",ENTP
624,381941239,NeelBParekh,Neel Parekh,"['til', 'aspiring', 'entp']",ENTP
625,991923309192232960,bowlcutwangji,.,"['woodz', 'entp']",ENTP
626,635324796,AlSamia0life,AlSamia♏,"['entp', 'thing']",ENTP
627,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['phd', 'huh', 'seizure']",ENTP
628,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['literally', '2', 'back', 'back', 'clip', 'chandler', 'bing', 'friend', 'best', 'moment', 'backhand', 'index', 'pointing', 'entp', '6w7', 'even']",ENTP
629,16602640,alperozdilart,🔴ΛLPΞR ӪZDIL,"['gn', 'created', 'handdrawn', 'piece', 'perspnality', 'type', 'nft', 'creatorsampcollectors']",ENTP
630,635324796,AlSamia0life,AlSamia♏,"['entp', 'thing']",ENTP
631,322927344,AshesWormHell,🪰ASHES🪰,"['entp', 'superiority', 'bitch', 'love', 'entps']",ENTP
632,1644755839025135616,TaktoysamiyTay,🇺🇦TaylsisHere🏳️🌈🏳️⚧️,"['waited', 'wukong', 'entp', 'macaque', 'isfp', 'mbti', 'macaque', 'difficult', 'understand', 'actually']",ENTP
633,953653050048241665,loveleesnake,frank™,"['entp', 'intp', 'people', 'always', 'mentally', 'ill', 'hot', 'girl', 'curse']",ENTP
634,1536912901696626690,bisexualruinene,aaron ☽☾,"['rui', 'like', 'swore', 'wouldnt', 'favourite', 'promised', 'would', 'fall', 'trap']",ENTP
635,1639843071121854464,rozuyarozu,Rozu ろずや。,"['making', 'intro', '๑', 'hii', 'im', 'sydogwenbeverage', 'box', 'new', 'looking', 'moot', '06', 'prns', 'bi', 'british', 'entp', 'gem']",ENTP
636,1375803753345941506,RonFancy,Ron Fancy,"['say', 'nitwit', 'support', 'fascist', 'still', 'tell', 'big', 'lie', 'tried', 'overthrow', 'ow']",ENTP
637,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['gladly', 'spend', 'money', 'defeat', 'liberal', 'globalist', 'fascist', 'like']",ENTP
638,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['try', 'longer', 'interval']",ENTP
639,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['wonder', 'anthropogenic', 'co2', 'emission', '15th', 'century', 'expectation', 'change']",ENTP
640,1488324021049790470,81senear,near 👻 commission waitlist open,"['sing', '410', 'dance', '010', 'playing', 'instrument', '110', 'draw', '4510', 'cook', '610', 'swimming', '710', 'sew', '110', 'debating']",ENTP
641,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['let', 'check', 'claim', 'wildfire', 'increasing', 'size', 'intensity', 'western', 'canada', 'th']",ENTP
642,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['cant', 'understate', 'big', 'story', 'proof', 'cia', 'actively', 'worked', 'help', 'biden', 'campaign', 'otherwis']",ENTP
643,1507512350294769667,epikunst,xime ~ ★ ★ ★,"['young', 'k', 'found', 'entp', 'friend']",ENTP
644,1581922803229548545,tigadd,tigad,"['give', 'vibe', 'loudly', 'cry', 'face', 'easy', 'tell', 'someone', 'entp']",ENTP
645,135414252,kialala,Kialala ✝️,"['ok', 'im', 'dead', 'inside', 'im', 'entp', 'dog', 'barricaded', 'lack', 'better', 'word', 'first', 'place']",ENTP
646,1463899153390616576,mist_sterious,Mitt -́ ̫-̀ (up late clamping my clamp 🗜️),"['entp', '7w8', 'twinsies']",ENTP
647,16602640,alperozdilart,🔴ΛLPΞR ӪZDIL,"['entp', 'issue']",ENTP
648,1530085527034408960,aroshizue,keris ☆,"['someone', 'add', 'typology', 'like', 'complicated', 'stuff', 'like', 'properly', 'figure', 'enneagram', 'pro']",ENTP
649,1041495829872365568,fuwxuans,bry,"['love', 'entpestps', 'he', 'clown', '2']",ENTP
650,1239639153131892739,katsusaii,ness biggest f☆n,"['hey', 'im', 'new', 'wan', 'na', 'active', 'moot', 'pls', 'let', 'friend', 'lt3', 'im', 'v', 'sheher', '20']",ENTP
651,3970089372,MegumiBandicot,Megumi Bandicoot,"['greeting', 'looking', '4', 'active', 'moot', 'alhaitham', 'n', 'seele', 'main', 'ar', '57', 'tl', '43', 'entp', '1']",ENTP
652,2707436907,varsi_appel,Blue_Arizona__5_gens,"['everything', 'adult', 'member', 'family', 'behest', 'someone', 'prof', 'joe']",ENTP
653,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['default', 'b', 'everybody', 'know', 'one', 'care', 'old', 'wornout', 'theater']",ENTP
654,1655050315417395200,wndfleur,hiraya.,"['greeting', 'looking', '4', 'active', 'moot', 'alhaitham', 'n', 'seele', 'main', 'ar', '57', 'tl', '43', 'entp', '1']",ENTP
655,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['biden', 'family']",ENTP
656,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['holy', 'shit']",ENTP
657,1358470505397952512,AzeTunez,AzeTunez,"['im', 'entp', 'im', 'done', 'taking', 'bullshit']",ENTP
658,1256020342541135872,MIMONELOID,みもねる,"['entp', '8w7854sxso']",ENTP
659,1256020342541135872,MIMONELOID,みもねる,"['entp', '8w7873sosp']",ENTP
660,635324796,AlSamia0life,AlSamia♏,"['entp', 'inxj']",ENTP
661,1528751979698311168,entp_lys,Polaris ☆,['thigh'],ENTP
662,1627602262133735424,ggyuontop,rai ✦,"['hi', 'im', 'riah', 'lf', 'mootsheart', 'decoration', '07', 'liner', 'sheher', 'filo', 'entp', 'ults', 'newjeans', 'le', 'serra', 'enha', 'etc', 'looking', 'inte']",ENTP
663,1626859722677825537,spdeirnime,tha ♫,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
664,1553958057981497344,Evgenjjcrypto,"(🌸, 🌿)Evgenjj.lens(💙,🧡)🐐🛸🌊📘","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
665,1370815980046286855,HereForMost1,NEGA-NIX 😈😈😈,"['see', 'entp', 'vlfe', 'dawg', 'idk', 'eberyting', 'else', 'loudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face']",ENTP
666,1585270588121133056,mkgreyo,eve,"['another', 'mf', 'w', 'superiority', 'complex', 'ofc', 'he', 'entp']",ENTP
667,1173982327770406913,365247desik,🌅belle,"['chaeyeons', 'mbti', 'isfj', 'complete', 'opposite', 'young', 'k', 'entp']",ENTP
668,1649543577867890688,scenerexic,⌖✫! tia !✫⌖(edtwt),"['entp', 'never', 'hear', 'ppl', 'talk', 'abt']",ENTP
669,1203617937845669889,nanascatagenda,farah(◍•ᴗ•◍)❤,"['attracted', 'yuken', 'entp', 'infj', 'soloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face']",ENTP
670,57424633,andredindisyan,"@metaearly.lens |Suiswap (⚖️,🌍)🔴✨🌊🪶🛡️🚢.zk","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
671,1608183909807702017,dreamingofskz,Lana :) ★★★★★,"['im', 'entp', 'lmao']",ENTP
672,1466260479752359938,jonghomallow,sushi,"['day', '4', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'sheher', 'blk', 'entp', '1']",ENTP
673,1571518968422088705,literallyinnie,j ; ⭐️⭐️⭐️⭐️⭐️,"['day', '4', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'sheher', 'blk', 'ent']",ENTP
674,1256144779076755456,woodz32e_,pin🌴 OO-LI PROJECT,"['wait', 'really', 'changed', 'entprolling', 'floor', 'laughing']",ENTP
675,1501308187919753216,pinkaurora120,ina ♡,"['yeah', 'allegedly', 'he', 'entp', 'face', 'hand', 'mouth']",ENTP
676,21478732,mTraction_ENTP,mTraction Enterprise,"['design', 'thinking', 'inspires', 'u', 'creative', 'solve', 'problem', 'new', 'way', 'provides', 'ideal', 'solution', 'based']",ENTP
677,770213849295360000,leeminhyikes_,klaus | wifeys acquired,"['one', 'entp', '101', 'moment', 'everybody', 'surprised', 'reason', 'wouldnt', 'expected', 'anythin']",ENTP
678,1656230565035773952,gxbriellee,gabi (inactive for my dear grades🥲),"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
679,1860981978,arayary1,aray ary,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
680,1265814162082426881,Cryptotrojan1,Cryptotrojan.bnb | awungshi.stark | ⚪⚫🐐,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
681,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
682,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni']",ENTP
683,1000730365093466112,redgetou,kaiteo kid 52,"['depriving', 'entp', 'discussion', 'teophobic', 'disappointed', 'face']",ENTP
684,1360198571451052034,cooekki,ًn,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
685,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['flaunting', 'essential', 'component', 'personality']",ENTP
686,1517132867633315840,hikittwi,ً kei,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
687,1655615060637802497,vrslnaaa,selena,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo', 'rice', 'ball', 'entp', 'rice', 'ball', 'l']",ENTP
688,1591773249800704002,mujimujichaos,ceci✰,"['neither', 'would', 'win', 'im', 'entp', 'he', 'annoying']",ENTP
689,1178431785199394821,pupulumi,🍒,"['herta', 'entp', 'intp', 'im', 'sure', 'yet']",ENTP
690,1514916492034379777,tynbox,znc nation,"['infp', 'first', 'entp', 'intp']",ENTP
691,1640888969767395331,idkaboutthat23,BearlyHear,"['here', 'rock', 'im', 'entp', 'fuck', 'life']",ENTP
692,1654750738604765184,i43aran,lee | 📌 lf fifty fifty moots | UNFORGIVEN,"['day', '3', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
693,1448910679923048449,suhjOhn_ny,regina ☁️ | lf nctzen moots,"['day', '3', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb']",ENTP
694,1578235689409413121,LamRobbin,𑠒𑠓teo ★ ̷ ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
695,1039484519563182080,killuvah,Emmy ✨ LUKE DAY!!,"['lmfao', 'entp']",ENTP
696,723877632,lovelyhongjisoo,dhilah ♡,[],ENTP
697,1535269430930046978,frozenkahlua,Raya,"['aside', 'alignment', 'chaotic', 'neutral', 'must', 'one', 'reason', 'sorted', 'slytherin']",ENTP
698,1103545971957329920,cocteauwebkinz,terror 🪐 HAS SEEN VOL. 3 x2,"['rocket', 'top', 'profile', 'superhero', 'tag', 'pdb', 'steering', 'towards', 'entp', 'kiiing']",ENTP
699,1655310813555466244,vilianousautism,richie 🍋,"['looking', 'moot', '15', 'sheher', 'artist', 'exmusician', 'bsd', 'genshin', 'jjk', 'tpn', 'csm', 'ar', '56', 'kaeya']",ENTP
700,943946460923678720,LegoOneder,Sumguy No-No,"['read', 'room', 'shipmate']",ENTP
701,943946460923678720,LegoOneder,Sumguy No-No,"['entp', 'well', 'known', 'acronym', 'mba', 'well', 'know']",ENTP
702,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['certainly', 'deliver', 'advertised', 'promise']",ENTP
703,1478829459012784131,RealAngryMarine,AngryMarine,"['fantasy', 'much', 'little', 'creepy', 'made', 'backdoor', 'wh']",ENTP
704,1478829459012784131,RealAngryMarine,AngryMarine,"['even', 'talking', 'fighting', 'camera']",ENTP
705,1478829459012784131,RealAngryMarine,AngryMarine,"['entpmba', 'well', 'known', 'degree', 'acronym', 'happene']",ENTP
706,635324796,AlSamia0life,AlSamia♏,"['entp', 'thing']",ENTP
707,943946460923678720,LegoOneder,Sumguy No-No,"['oh', 'sphincter', 'loosened', 'boot', 'dont', 'worry']",ENTP
708,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['meyers', 'briggs', 'angry', 'twitter', 'loosen']",ENTP
709,1654750738604765184,i43aran,lee | 📌 lf fifty fifty moots | UNFORGIVEN,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
710,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,['agree'],ENTP
711,943946460923678720,LegoOneder,Sumguy No-No,"['would', 'say', 'mba', 'stand', 'marine']",ENTP
712,1478829459012784131,RealAngryMarine,AngryMarine,"['think', 'crossed', 'thread', 'nobody', 'thread']",ENTP
713,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['shehim', 'trans']",ENTP
714,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['elon', 'thank', 'thank', 'thank', 'teaming', 'tucker', 'give', 'u', 'dangerous', 'republican', 'right', 'wing', 'maga', 'extremist', 'voice', 'winking', 'face']",ENTP
715,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['rip', 'cable', 'news', 'tucker', 'carlson', 'twitter', 'news', 'medium']",ENTP
716,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['thank', 'god', 'release', 'kraken', 'show', 'u', 'rest', '16', 'tape', 'fox', 'made', 'sit', 'speaker', 'kevin', 'mcc']",ENTP
717,1522072111807975424,jyayej,jy,"['hai', 'hai', 'im', 'new', 'amp', 'looking', 'moot', 'rice', 'ball', 'jy', '16', 'rice', 'ball', 'incoming', 'g12', 'student', 'rice', 'ball', 'eng', 'filo']",ENTP
718,1528751979698311168,entp_lys,Polaris ☆,['year'],ENTP
719,943946460923678720,LegoOneder,Sumguy No-No,"['screen', 'name', 'handle', 'includes', 'personal']",ENTP
720,1528751979698311168,entp_lys,Polaris ☆,['sooo'],ENTP
721,1512180154440712206,deathlydolllie,ky | daily thinspo !,"['idk', 'entp', 'intp', 'rlly', 'depends']",ENTP
722,1478829459012784131,RealAngryMarine,AngryMarine,"['bachelor', 'degree', 'funk', 'talking', 'care']",ENTP
723,943946460923678720,LegoOneder,Sumguy No-No,"['think', 'guy', 'intj', 'bachelor', 'degree']",ENTP
724,1407439099,nekozekeu,Zeke 🇵🇭✨♊️,"['still', 'consider', 'social', 'introvert', 'pero', 'ewan', 'ko', 'lately', 'parang', 'feel', 'urge', 'socialize', 'fir']",ENTP
725,1478829459012784131,RealAngryMarine,AngryMarine,"['fight', 'camera']",ENTP
726,1284889819030663169,lvjyrcha,aree 🍀 missing ami + mingi 💔 jacob month !!,"['wild', 'guess', 'bc', 'dont', 'remember', 'type', 'r', 'hmmm', 'entp']",ENTP
727,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['fight', 'closeminded', '2nd', 'amendment', 'hater', 'like']",ENTP
728,1541667755400781825,himerucide,grey ◆ HiMERU SOLO,"['uhh', 'entp', '5w4', 'sosx', '584', 'top', 'head']",ENTP
729,2787796650,noiramoss,ꔛ❀ Ꭾ Ꮢ Ꭵ Ꮇ Ꮢ Ꭷ Ꮥ Ꮛ ❀ꔛ,"['basically', 'every', 'fictional', 'nonfictional', 'entp', 'male', 'ever', 'face', 'tear', 'joy', 'got']",ENTP
730,1454846498664062983,whorwe_whererwe,Whorwe Whererwe,"['oh', 'difference', 'create', 'problem', 'present', 'solution']",ENTP
731,32218327,AntoniaDodge,Antonia Dodge,"['guess', 'entp', 'received', 'yet', 'another', 'comment', 'unscientific', 'ty']",ENTP
732,1632897496270753793,huitaeraek,Dani⁰⁻¹ 🍓 // I’m with Taerae rn,"['redo', 'test', 'sparkle', 'everytime', 'redo', 'mine', 'either', 'intp', 'current', 'istp', 'estp', 'entp', 'smiling', 'face', 'hearteyes']",ENTP
733,1651617496619970561,RICK0YANGi,ica ☆ | review szn ☕ 📑,"['im', 'nonentp', 'entp', 'mbti', 'change']",ENTP
734,1563236417501024257,linosloveclub,leen 🥣⭐️,"['want', 'entp', 'enfp']",ENTP
735,1390483272703033346,heroftheages,fernando | SPEAK NOW,['entp'],ENTP
736,1563134742601809920,iEatKaiser,َ,"['kaiser', 'literally', 'entp', 'shut']",ENTP
737,1104570680597712896,ikangarooyou,♡aleks♡taerae's gf♡,"['im', 'entp', 'kshsnsbs', 'description', 'think', 'youre', 'infp']",ENTP
738,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['yunhos', 'reaction', 'food', 'loudly', 'cry', 'face', 'adorable']",ENTP
739,1589974759059619841,laawiiii,Lawii ! // 🇫🇮KÄÄRIJÄ🇫🇮,"['entp', 'know', 'mean']",ENTP
740,1606768186640269313,immortalgirli,Alma,"['heb', 'virgo', 'moonvenus', 'en', 'ben', 'entp', 'obv', 'either', 'way', 'highway', 'mental', 'breakdown', 'cause', 'thing']",ENTP
741,2192584658,MichaelBrugge,F(MB),"['mad', 'entp', 'energy', 'rolling', 'floor', 'laughingrolling', 'floor', 'laughingrolling', 'floor', 'laughing']",ENTP
742,3302148022,MagmaaCK,Magma I Camden,"['entp', 'none', 'ig', 'lol']",ENTP
743,1632314816697184256,cutiepitykitty,катя,"['11', 'first', 'ur', 'good', 'u', 'fcking', 'genius', 'huh', 'secondly', 'u', 'rest']",ENTP
744,1361576503046242304,dzGkiDIidXvLnT1,Станислав🐐,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
745,1644621244317196289,I0veIicky,lev🤍,"['mbti', 'entp', 'today', 'ive', 'started', 'questioning', 'ne', 'si', 'might', 'end', 'differently']",ENTP
746,1553608518430625793,fiwrawr,Fira,"['thats', 'entp']",ENTP
747,1400039948489793539,_hydronnyie,NNYE,"['entp', 'found', 'one', 'reason', 'love', 'epex']",ENTP
748,1212110270702579712,n4nani,🃏,"['entp', 'winning']",ENTP
749,1296433759429054468,ainaraV7,morally gay,"['almost', 'right', 'people', 'saying', 'luca', 'entp', 'idk', 'extrovert', 'think']",ENTP
750,1178621403412566016,t_ntp_11,มะแว้ว,[],ENTP
751,1009912441084497920,fluffspikes,✩ ‧₊˚sonic˚₊‧ ✩,"['nah', 'cuz', 'going', 'esfp', 'entp', 'wildskull', 'crossbones']",ENTP
752,1251069449748140033,pikabaechu,fika 𖤐 cix comeback!!,[],ENTP
753,1032405367051956224,SHistorians,Society of Golf Historians,"['entp', 'learned', 'cant', 'go', 'quiet', 'playing', 'poorly', 'wrong']",ENTP
754,1195154776289370113,asterwe,(Aster) ★・゚: * pyotr belov blueprint,"['sanguine', 'temperament', 'big', '5', 'talktative', 'outgoing', 'skill', 'make', 'act', 'like', 'steriotypical', 'sp7', 'entp', 'charismatic']",ENTP
755,877368668862074880,kwonyejune,aly 🦌 #SUNSHOWER 🌦️,[],ENTP
756,1134385450314059776,hoshikoisntreal,星子 (hoshiko),"['went', 'private', 'let', 'make', 'public', 'announcement', 'clear', 'thing', 'sampo', 'slander', 'tl', 'allow']",ENTP
757,1330717012549505025,21draftt,ODE,['hell'],ENTP
758,1415976858894704640,sakatoons,knives millions dead at 150,"['dont', 'know', 'shit', 'entp', 'kokichi', 'kinnie']",ENTP
759,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['selling', 'baby', 'part']",ENTP
760,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['bomb', 'back', 'stone', 'age', 'lemay']",ENTP
761,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['dear', 'left', 'youre', 'going', 'photoshop', 'picture', 'try', 'give', 'epstein', 'pair', 'leg', 'dont', 'girl', '30']",ENTP
762,1631399172724211712,flopryu,acelya,['entp'],ENTP
763,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['breaking', 'number', 'texas', 'show', '71', 'voter', 'support', 'everify', 'prevent', 'illegals', 'working', 'inside', 'u']",ENTP
764,1140118844456853504,my_bjy,𝒑𝒊𝒂𝒏𝒐𝒓𝒖𝒏𝒘𝒂 ♡,['hell'],ENTP
765,1368972642036838400,cornishicecrm,든니⑅♡̷· ゚,['hell'],ENTP
766,1112704869058510848,Min_de_ye_7,หะมอยส์ 🦊,[],ENTP
767,3252708746,chocolatefpe,♡ bunnieshoney,[],ENTP
768,770325175640395776,sunppuccino6060,sunp.,"['close', 'reo', 'entp', 'share', 'kaiser', 'kkk']",ENTP
769,1489890044798251012,winxcix,CIX CB!!!! ☻,"['im', 'love', 'entp']",ENTP
770,1562446933515714561,haobinitos,izzy ★ 昊빈 P01 P02,['ily'],ENTP
771,1008475801874862080,ilayosu,ilay ⚙️🫐🍡,"['0', 'debating', 'read', 'umineko', 'battler', 'literally', 'entp', 'debater']",ENTP
772,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['karate', 'kid']",ENTP
773,3341887467,kweiju,ٍxaro,"['entp', 'help', 'im', 'school']",ENTP
774,1421478621953277956,mrpenguin285,🩵 edward | BLITIVAL | CUBE 💙,"['entp', 'none', 'j']",ENTP
775,1095009303591829504,hongjongilashes,❀♡MaR♡❀ 🌙,"['entp', 'im', 'sorry']",ENTP
776,1352136388104376321,mjluve12,لوڤلي,['ilove'],ENTP
777,66342447,springsnow94,Nov 🍂,[],ENTP
778,1511123457202954244,AnaZald1307,Ana,[],ENTP
779,1152604277556174850,azty_oh,azty,[],ENTP
780,1463270678920974340,MineZenith_,Mine | KEUM DAY,[],ENTP
781,1424950190511845379,_happiewish,puppies ♡̷̷̷ ⋆꙳,[],ENTP
782,1331227233709555713,mxlfoydigorry,αωαα ͛💿,[],ENTP
783,1368972642036838400,cornishicecrm,든니⑅♡̷· ゚,[],ENTP
784,1582685754110595074,zumzumikoo,doc gian,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp', 'frien']",ENTP
785,1600006558506971137,ciyunarchive,ciyun looking for study buddies and moots ‼️,"['howdydo', 'new', 'come', 'page', 'let', 'mutuals', 'bookswriting', 'hand', 'light', 'skin', 'tone', 'simply', 'call', 'qeela', '09liner']",ENTP
786,1234105643411308546,sexinapredatore,symbol of LOW-EDUCATION,"['either', 'enfp', 'entp', 'sometimes', 'isfp', 'dont', 'know', 'anymore']",ENTP
787,1631399172724211712,flopryu,acelya,"['idk', 'really', 'test', 'saying', 'entp', 'completely', 'wrong', 'entp', 'however', 'took', 'test']",ENTP
788,1471245952132415488,fairy_shishi,Shion.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
789,1626660713245679617,cryptidez,lucian 🎧,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
790,1272686227095863296,ethannlver,pauline,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
791,1447194060851191808,qiyanator,aslan,"['go', 'back', 'entp', 'sp7', 'still', 'time']",ENTP
792,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
793,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['nighty', 'night', 'earthling', 'im', 'lookin', 'new', 'friend', 'go', 'theythem', 'pronounce', 'entp', 'mbti', 'ampamp', 'v']",ENTP
794,1335569257678204928,mangyistired,mangy ٠ ࣪⭑,"['update', 'im', 'entp', '7w8']",ENTP
795,438837227,bashBM0,bashayer بشاير,"['used', 'entp']",ENTP
796,1651505801469493251,Chongyun_Blue,🩵Yunnie🩵,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
797,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni']",ENTP
798,2262926713,chifusitoo,feña,"['sampo', 'e', 'entp', 'yaas', 'obviously']",ENTP
799,898080231755464712,cookie_kke,영케이의 vinnie 🍪,"['young', 'k', 'found', 'entp', 'friend']",ENTP
800,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['mission', 'looking', 'lot', 'new', 'comrade', 'love', 'interact', 'enliven', 'timeline', 'full', 'solitud']",ENTP
801,1637808498091122690,l0velyrin,ᅠᅠᅠˋ Lucy 📌 ˏ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
802,1581999358412734464,starcl4ss,ʚ Mona ɞ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
803,1655756099516080130,koripon_,kris ♡ !,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
804,1227731826946576385,nononautica,nadie nunca en ninguna parte 🫐,"['love', 'entp']",ENTP
805,1536062341699497984,kvthistle,ᨘlimit,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
806,1590808444939935746,brixnstxrm, 𝑬͟𝑲͟𝑲͟𝑶,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
807,2254784054,chuumingyu,️️ rosy🌹,"['young', 'k', 'found', 'entp', 'friend']",ENTP
808,1648744126274207767,star4ill,Pom. 📌,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
809,1266113297629102080,w3iyin6,lain,"['walking', 'wwx', 'kinnie', 'took', '5', 'mbti', 'test', 'day', 'came', 'back', 'entp', 'loudly', 'cry', 'face']",ENTP
810,2901469867,MOONLIGHTH0E,.,"['crushing', 'entp', 'guy']",ENTP
811,1211337979551043586,mochisung01,barcodes_finger_heart 🌸 우주빵집,"['clown', 'almost', 'anout', 'believe', 'entp']",ENTP
812,1647936506689126400,gunilthnkr,lei 🌿 deadlock ⛓,"['asked', 'junhans', 'mbti', 'gunil', 'straight', 'away', 'said', 'intj', 'youngk', 'looking', 'entp', 'friend']",ENTP
813,1625103874267746313,asylumvlska,levi/katerina,"['apparently', 'im', 'entp', 'intp']",ENTP
814,2995406755,TheKpopSibling3,Jiseong's bias,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
815,1582890549257740288,gaonluvr,ain.,"['jiseok', 'really', 'left', 'seen', 'entp', 'dude', 'hate', 'affectionately']",ENTP
816,1405265464880603139,dawnwonu,chlow* ❀⁶🍀,"['knew', 'enfp', 'x', 'entp', 'duo', 'good', 'true']",ENTP
817,187550003,pxrcyjcks0n,⛓️M★⁵,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
818,1646288982756433924,crimsnt,ᶻ z ᶻ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
819,1624493626511294464,satriquo,︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎𝘒𝘢𝘦𝘺𝘢 .ᐟ,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
820,848011530578919425,yech4nii,𝒎𝒂𝒓𝒊 ꗃ DEADLOCK,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
821,711652864280666117,kissesfromyoon,ilyas⁷🥢 #UNFORGIVEN,"['im', 'entp', 'cat', 'wry', 'smile']",ENTP
822,73068890,geoffwithasword,shrimp with a sword ✨🗡️🦐✨,"['twitter', 'conservative', 'bios', 'like', 'fact', 'dont', 'care', 'feeling', 'entp']",ENTP
823,1023803546544746496,JosephHansell2,Joseph Hansell,"['catastrophe', 'invasion', 'southern', 'border', 'past']",ENTP
824,1647293344945405952,troublmn,kasai.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
825,1579906761036689408,cxmtrydrv,koski ⸼,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
826,1649250671579807744,fllowsrns,chizuru.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
827,1650723214824296448,iVENUSFLYTRAP, 𝐑ᴀɪᴅᴇɴ.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
828,1633988553041485825,luarclp,☾︎,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
829,1641868190975156245,bptistic,T A N 龍.,"['tan', 'heun', 'woo', 'hehim', 'singer', 'artist']",ENTP
830,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rise', 'shine', 'earthling', 'im', 'lookin', 'new', 'friend', 'go', 'theythem', 'pronounce', 'entp', 'mbti', 'ampamp']",ENTP
831,377244409,flufffiest,ً ☆⁵,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
832,1620051128120659969,wonulovv3rr,elli ; lf moots 📌,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
833,445839067,CharmaineKwin,Charmaine Kwin,"['entp', 'would', 'done', 'lol']",ENTP
834,1653800548456603648,sunsqvt,ً,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb', 'esp', 'nc']",ENTP
835,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['action', 'talk', 'people', 'list', 'answer', 'nothing', 'nyc', 'murdered', 'neely', 'case', 'closed']",ENTP
836,1425365556513808384,lkywky,nini ☆,"['redo', 'number', '3', 'go', 'gtlt', 'ˏˋ', 'ˎˊ', 'looking', 'moot', 'ᶻ', '𝗓', '𐰁', 'mina', 'ˋˏ', 'march', 'amp']",ENTP
837,1421905434256896002,fruitfulmorph,Andari,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
838,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rise', 'shine', 'earthling', 'im', 'lookin', 'new', 'friend', 'go', 'theythem', 'pronounce', 'entp', 'mbti', 'ampamp']",ENTP
839,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['china', 'japan', 'never', 'let', 'present', 'get', 'away', 'russia', 'well']",ENTP
840,1544945985062936588,kkeropji,★ ’' j 𖹭 jeonghyeon,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
841,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['called', 'merit', 'ask', 'president', 'trump']",ENTP
842,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['think', 'significantly', 'increase', 'legal', 'immigration', 'someone', 'track', 'record', 'working', 'hard', 'ha']",ENTP
843,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['biden', 'issuing', 'stricter', 'rule', 'journalist', 'get', 'credential', 'press', 'briefing', 'must', 'polite', 'amp', 'provide', 'qu']",ENTP
844,1287504587025506305,cookingwithnia,Chef Nia,"['entp', 'hive', 'rise']",ENTP
845,1389916676666404867,exokcals,𝒜𝐯𝐚,"['know', 'im', 'sure', 'fp', 'idk', 'first', 'part', 'loudly', 'cry', 'face', 'cause', 'interchangeable', 'last', 'time', 'th']",ENTP
846,1533260009479479296,gettoru,iz,"['im', 'gojo', 'kinnie', 'im', 'entp', 'also', 'codependent', 'homoerotic', 'friendship', 'high', 'school']",ENTP
847,1182451069634220032,from_mydei,ㄷㅇ ⛓︎,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
848,833270054439358464,linevessa,bia 🥀,"['fr', 'bc', 'intpentp', 'like', 'ure', 'one', 'get', 'however', 'think', 'u', 'appeal']",ENTP
849,1609326154351276032,ahauntingf4ce,vamp / rowen ☀️ #artmoots (check pinned tweet),"['entp', 'like', 'ambiverted', 'sense']",ENTP
850,1539415416375762946,T0JIDDIES,dua,"['yknow', 'make', 'sense', 'ne', 'isnt', 'high', 'enough', 'entp']",ENTP
851,1539415416375762946,T0JIDDIES,dua,"['know', 'he', 'entp', 'w', 'whole', 'pathetic', 'relentless', 'pursuing', 'masochist', 'vibe', 'he', 'got', 'going']",ENTP
852,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['yeah', 'wow']",ENTP
853,1577409989014061056,ppanconpalta,malena,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
854,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['im', 'watching', 'rerun', 'star', 'trek', 'next', 'generation', 'circa', '1987', 'mind', 'therapy', 'show', 'come']",ENTP
855,1202339763908481024,GoldStarPt_,G⭐,"['know', 'gojo', 'geto', 'would', 'talk', 'hrhn', 'special', 'really', 'dont', 'know', 'twitter', 'decided', 'sho']",ENTP
856,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['see', 'end']",ENTP
857,1448910679923048449,suhjOhn_ny,regina ☁️ | lf nctzen moots,"['day', '2', 'hi', 'im', 'regina', 'cloud', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb']",ENTP
858,887560859425296384,febbbfebbb,Feb🍋🍀😺,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
859,1165037323450560512,jinnieontrack,𝐠𝐢𝐨 ⛓️ is freakin' bad,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
860,1291242830929649664,prk_eaJ,sally,"['young', 'k', 'found', 'entp', 'friend']",ENTP
861,1291242830929649664,prk_eaJ,sally,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
862,551462978,anarunaruru,あなりん~★ @Despair Girls,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
863,1466260479752359938,jonghomallow,sushi,"['day', 'looking', 'moot', 'ree', '15', 'entp', 'hehim', 'lt3', 'heart', 'suit', 'ults', 'nct', 'unit', 'boyz']",ENTP
864,1316327511450701825,li_monmaii,𝐣𝐣,"['entp', 'behavior']",ENTP
865,791485886265524224,defbunn,Mena🐰,"['clown', 'almost', 'anout', 'believe', 'entp']",ENTP
866,1604835695838859264,PH4NTOMLOVZ,ree🐈 zhang hao stan‼️,"['day', 'looking', 'moot', 'ree', '15', 'entp', 'hehim', 'lt3', 'heart', 'suit', 'ults', 'nct', 'unit']",ENTP
867,1261615513916096512,ayastown,آية,"['think', 'estp', 'suit', 'u', 'v', 'well', 'comparison', 'entp', 'like', 'fairy', 'example', 'u', 'r', 'definitely', 'estp']",ENTP
868,1447194060851191808,qiyanator,aslan,"['dont', 'think', 'ever', 'entp', 'begin', 'intuition', 'stem', 'curiosity', 'wanting', 'kno']",ENTP
869,1261615513916096512,ayastown,آية,"['entp', 'sp7']",ENTP
870,1596896381196767232,mcschiba,ryn,"['thats', 'like', 'saying', 'im', 'entp', 'ur', 'like', 'xsfp', 'person', 'ever', 'finnie']",ENTP
871,1284591948096049155,piacilegy,matt🏌️♂️,"['10', 'thousand', 'year', 'since', 'last', 'checked', 'entp', 'think', 'e', 'turned', 'tho']",ENTP
872,1465288393508929538,ahjumma199x,Chachi | iKON Take Off ticket cutie 🤞🏻❤,"['young', 'k', 'found', 'entp', 'friend']",ENTP
873,1139781870948888577,hobarangi,Jae Bae,"['young', 'k', 'found', 'entp', 'friend']",ENTP
874,1046884925339815937,exoswhitemeteor,Seongnym²¹ 🌟,"['love', 'differencesmiling', 'face', 'heart', 'isfj', 'entp']",ENTP
875,1463318090687602697,mugleraphy,Ashai,"['entp', 'est', 'si', 'similaire', 'idk']",ENTP
876,1134124726102585345,yeogichacha,chacha,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
877,1415196713304969219,sugarduocrumbs,caroll 💫,"['wait', 'used', 'think', 'dream', 'entp', 'actually', 'enfj', 'actually', 'make', 'sense', 'think', 'also']",ENTP
878,702922975331405824,dreampebbles,Criss/ Ash 🔥,"['idk', 'agree', 'also', 'im', 'entp', 'sapnap', 'babygirl']",ENTP
879,1552790664953204737,crushgaon,che,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
880,1615486090995183616,foxshapedboy,beck,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
881,1538537088043388928,vyified,yvonne🌱USMP!!,"['get', 'bashed', 'expose', 'dteam', 'personality', 'conspiracy', 'person', 'standingperson', 'standing', 'cause', 'think', 'dream', 'enfj', '3w4', 'georg']",ENTP
882,956920015747473411,xJOOYEONNIEx,𝚆𝚒𝚔𝚒 ♥︎♡︎♥︎ 🩷 | VSD 📌 | 🇫🇮💚,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
883,1030704349251547136,icouldbemorex,karo ⛓ fan acc,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
884,1030704349251547136,icouldbemorex,karo ⛓ fan acc,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
885,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['tell', 'china', 'japan']",ENTP
886,1524119036921065472,Melionave,ᴹᵉˡ,"['clown', 'almost', 'anout', 'believe', 'entp']",ENTP
887,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['diversity', 'weakness']",ENTP
888,1475904098583007235,doiesNini,n_(ᓀ‸ᓂ)*:・゚✧,"['love', 'differencesmiling', 'face', 'heart', 'isfj', 'entp']",ENTP
889,1647618538440388608,jiwoongliker,MILO 🗯️,"['literally', 'stole', 'idea', 'jj', 'anyway', 'intj', 'infj', 'entp', 'entj', 'hellooo']",ENTP
890,908623211834650624,kisahcintajeIek,َ,"['end', 'extrovert', 'entp', 'infp']",ENTP
891,1190151850458148864,AlexTheMonbebe,Zizi and Dany,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
892,1190151850458148864,AlexTheMonbebe,Zizi and Dany,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
893,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['people', 'future', 'democrat', 'party', 'destruction', 'america']",ENTP
894,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['suspect', 'texas', 'going', 'sending', 'lot', 'bus', 'nyc', 'dc', 'boston', 'san', 'francisco', 'los', 'angeles', 'chicago', 'get']",ENTP
895,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['allen', 'shooter', 'already', 'news', 'cycle', 'surprised']",ENTP
896,1232721456792031233,ReyOfDawn,Rey (0/3),"['personality', 'type', 'went', 'intj', 'entp', 'fuck', 'happened']",ENTP
897,1186135137915985921,bustanutkeaton,Jasmine,"['female', 'entp', 'im', 'friend', 'female', 'intjs', 'male', 'intps']",ENTP
898,1219975295744249858,hlebula2,buła 🇫🇮,"['entp', 'thing']",ENTP
899,4065174734,bakedbbokari,dani ♡ seeing skz maybe at some point,"['entpenfp', 'felixhyunjin', 'like']",ENTP
900,1614449475598049281,lovelykianaa,lumi ♡,"['love', 'entp', 'men']",ENTP
901,1623337104489996289,PlsgiveJLabreak,Tomo-chan,"['ppl', 'say', 'vanitas', 'dazai', 'similar', 'cyz', 'theyre', 'entp', 'pensive', 'face']",ENTP
902,3239729954,MrBunny707,Mr.Bunny.bnb🛸 | Suiswap,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
903,1376297158970724353,BurgerLund,☆🗝️🐾 enzo/jesse ≥^ω^≤,"['im', 'entp', 'whatever', 'mean']",ENTP
904,3338270119,brianskangs,mich ☘️💫,"['young', 'k', 'found', 'entp', 'friend']",ENTP
905,3986033474,ijodoun,nung,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
906,3343694861,markwatkins1812,Mark,"['entp', 'im', 'gemini', 'felix', 'hyunjin', 'red', 'heart']",ENTP
907,3986033474,ijodoun,nung,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
908,1261057527757717504,danderawr,🍒,"['fun', 'trying', 'mbti', 'personality', 'test', 'occasionally', 'awhile', 'ive', 'year', 'labeled', 'entp', 'change']",ENTP
909,1186135137915985921,bustanutkeaton,Jasmine,"['im', 'actually', 'worst', 'emotional', 'terrorist', 'entp', 'woman', 'smiling', 'face', 'horn']",ENTP
910,1612572782218596352,RheaViru,🦿 rhea 🦾,"['estp', 'instead', 'entporangutan']",ENTP
911,1461752718037422081,akuantimleyot,Cleo MENEMUKAN XH✂,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
912,235528922,blomstafnorden,♡ adri misses 7dream / perfume ♡,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
913,1139901190064373760,everyleeknow,panyang 🏳️🌈🤭🦊 | Speak Now (TV),"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
914,1171244679192399873,foxyYoungK_Jae,ᴇᴀ 🌹,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
915,113861696,AnastasiaRachel,Anastasia Rachel,"['entps', 'truly', 'wrecker']",ENTP
916,973968592797601793,LauJinn_Jun,💜Lau 라우라 💜 Deadlock⛓️ -69 days,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
917,1065238453242101761,createdbydowoon,"fin,🍿","['young', 'k', 'found', 'entp', 'friend']",ENTP
918,1953977000,pipopsilviaa,pipo,"['young', 'k', 'found', 'entp', 'friend']",ENTP
919,1655590828507639808,OKEOKEOKKLALALA,bye,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
920,1466940700365180932,gaonclovers,nirmala 🌼⛓️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
921,817624617200197633,napichyyy,˙ᴥ˙ ◞♡,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
922,817624617200197633,napichyyy,˙ᴥ˙ ◞♡,"['young', 'k', 'found', 'entp', 'friend']",ENTP
923,817624617200197633,napichyyy,˙ᴥ˙ ◞♡,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
924,1466940700365180932,gaonclovers,nirmala 🌼⛓️,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
925,1573167450832900096,gaonxdee,liaa,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
926,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['requested', 'ateez', 'twitter', 'update', '230427', 'wallpaperlockscreen', 'link']",ENTP
927,1267155236465958912,lapakjaedo,jaedo mnkh 💃,"['love', 'differencesmiling', 'face', 'heart', 'isfj', 'entp']",ENTP
928,2906819900,byeongari_ajuy,Starlight🐿️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
929,2283642042,AtikaaaaAN,Atika,"['young', 'k', 'found', 'entp', 'friend']",ENTP
930,1149943615029776384,R31971916,R,"['young', 'k', 'found', 'entp', 'friend']",ENTP
931,1253168286935609349,fluffybribrii,din 🦊🍡,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
932,1253168286935609349,fluffybribrii,din 🦊🍡,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
933,980618173975224320,opurplde,vey⛓️,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
934,1139078694276755456,earthkhundin,ㅇㅇ Earth (ᓀ‸ᓂ),"['love', 'differencesmiling', 'face', 'heart', 'isfj', 'entp']",ENTP
935,980618173975224320,opurplde,vey⛓️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
936,1557234808085938176,n_xvillain,n.,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
937,1140207951082246145,ssawin9e,★,"['two', 'entp', 'man', 'omg']",ENTP
938,841620209228103680,zynh_rn,Natte 🐰,"['green', 'heart', 'please', 'write', 'one', 'word', 'p', 'hh', 'rabbit', 'face', 'pub', 'entp', 'ah', 'guessed', 'correctly', 'green', 'heart', 'guess', 'correctly']",ENTP
939,2283642042,AtikaaaaAN,Atika,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
940,3044002788,Ifyoongz,Mari | JOO DANCING SET ME FREE,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
941,846182793247969280,cutejyani,mika,"['love', 'differencesmiling', 'face', 'heart', 'isfj', 'entp']",ENTP
942,1487031638412324869,do0_dle,키라 (ᓀ‸ᓂ) DJJ!🐰😺🐶🍀,"['taeyong', 'entp', 'like', 'johnny', 'like']",ENTP
943,1291242830929649664,prk_eaJ,sally,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
944,3172007229,yonkurious,bee 🐝 babygirl yonk,"['young', 'k', 'found', 'entp', 'friend']",ENTP
945,841395078539202560,IgotHotDay,Mel_jypnation_stan,"['young', 'k', 'found', 'entp', 'friend']",ENTP
946,735781642942304257,cobetabak,Hmmmmmmmm,"['young', 'k', 'found', 'entp', 'friend']",ENTP
947,1620051128120659969,wonulovv3rr,elli ; lf moots 📌,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
948,753001608196284421,devonx124,Devon ❄️☃️🎄,"['entp', 'lee', 'know', 'mingi', 'seonghwa']",ENTP
949,1400475924458475520,hareume,chelle /ᐠ。ꞈ。ᐟ\,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
950,1083104945526788105,softsyoungk,deadlock aoty,"['young', 'k', 'found', 'entp', 'friend']",ENTP
951,184376285,clairdelune48,dian🍀,"['green', 'heart', 'please', 'write', 'one', 'word', 'p', 'hh', 'rabbit', 'face', 'pub', 'entp', 'ah', 'guessed', 'correctly', 'green', 'heart', 'guess', 'correctly']",ENTP
952,1094785096291414017,NewUniv03,NewUniv03🇨🇳,"['im', 'entprolling', 'floor', 'laughingrolling', 'floor', 'laughing']",ENTP
953,1186259818291400707,GyulaliJaeruk,d h i l s,"['young', 'k', 'found', 'entp', 'friend']",ENTP
954,1639575277230764034,foryoukyh,Vin🌻,"['young', 'k', 'found', 'entp', 'friend']",ENTP
955,1416652546433638404,MyNswerOnceDay,"DAHYUN, KYUJIN MONTHS 🎉","['young', 'k', 'found', 'entp', 'friend']",ENTP
956,99410731,Psj6dina,vha,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
957,1592476757902635009,originallyskyy,mae || ia dont unfollow!!,"['day', '3', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'sheher', 'blk', 'entp', '1']",ENTP
958,1592476757902635009,originallyskyy,mae || ia dont unfollow!!,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
959,1649011037218193408,Urmomsf9vmf,★༺Нана༻★ edtwt,"['id', 'say', 'entp', 'ironically', 'u', 'even', 'tho', 'ur', 'walking', 'stereotype']",ENTP
960,377244409,flufffiest,ً ☆⁵,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
961,1278138927384322048,MausRicochet,maus,"['oh', 'entp', 'smiling', 'face', 'heart']",ENTP
962,1616422763308384257,mikasvxz,mika,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
963,1316631303966519296,burgeryeou,cy❄️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
964,1221267706634100736,from_florryy,🍋florry bahng ★⁵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
965,1407167044190040185,23_entp,23,"['effortlessly', 'prettiest']",ENTP
966,1575051450446909440,hsngzji,ًice,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
967,1407167044190040185,23_entp,23,"['pinterest', 'update']",ENTP
968,1152492922362687488,bbriankyh,Ri,"['young', 'k', 'found', 'entp', 'friend']",ENTP
969,99410731,Psj6dina,vha,"['young', 'k', 'found', 'entp', 'friend']",ENTP
970,1550835888414158848,jnrixs,rxs || finding moots,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
971,1407167044190040185,23_entp,23,"['photocards', 'world']",ENTP
972,1135944441078751232,b_vsoo,Un💜jisooday6,"['young', 'k', 'found', 'entp', 'friend']",ENTP
973,1550785626844590086,yourstrulyjiro,Jiirroo | I DIDN'T GET YANQING,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
974,1508050104090959877,hnkhugs,hiatus,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
975,3986763974,93bubbletea,🦌🐻🦆⛓,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
976,49556411,NadiahTambunan,Nad,"['young', 'k', 'found', 'entp', 'friend']",ENTP
977,1607912649228177411,perfnk,chris,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp', 'loo']",ENTP
978,1607912649228177411,perfnk,chris,"['hi', 'im', 'chris', 'looking', 'interactive', 'moot', 'new', '05', 'filo', 'followb', 'entp']",ENTP
979,264601515,tertieraaa,tertieraaa,"['young', 'k', 'found', 'entp', 'friend']",ENTP
980,3986763974,93bubbletea,🦌🐻🦆⛓,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
981,269140186,noviaaraa,yayas🌼💙,"['young', 'k', 'found', 'entp', 'friend']",ENTP
982,99410731,Psj6dina,vha,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
983,1475258590126501889,saturjuns,kae,"['young', 'k', 'found', 'entp', 'friend']",ENTP
984,1599653338538074112,wallflowerww,?,"['young', 'k', 'found', 'entp', 'friend']",ENTP
985,1552999588994289664,gaonkorlap,mila,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
986,1037865945664901120,letsgobribri,∞fi☀️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
987,180348499,farmir,wtb gaon lebaran,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
988,1399964862046826499,eitaotoyv,ele,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
989,636892843,mewjustme,ᴊᴜsᴛᴍᴜรักชางบิน🐖🐇,"['young', 'k', 'found', 'entp', 'friend']",ENTP
990,1407167044190040185,23_entp,23,"['𝔞𝔢𝔰𝔭𝔞', '𝔖𝔭𝔦𝔠𝔶', 'ℭ𝔩𝔲𝔟']",ENTP
991,927597998187728898,whatanangell,angie🌸,"['im', 'reading', 'damn', 'entp']",ENTP
992,1685642287,skehehdanicha,Chaaaa,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
993,101101374,buchenuppak,나,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
994,911824770122911744,defwoodzly,Lay🔗💚,"['young', 'k', 'found', 'entp', 'friend']",ENTP
995,301836062,ffrom_myosotis,myo | bigwin! wts d6📌,"['young', 'k', 'found', 'entp', 'friend']",ENTP
996,1174968811126083584,__ceniverse,ㅠㅠ,"['young', 'k', 'found', 'entp', 'friend']",ENTP
997,998540934,onYounghyunSide,Rina - 📌STAY HEALTHY AND HAPPY,"['young', 'k', 'found', 'entp', 'friend']",ENTP
998,460065703,YoungKsMyDay,YKs🦊✌️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
999,101101374,buchenuppak,나,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1000,4691502042,winkpili,Chä☾,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1001,1372012478838702082,cyeowo,ᴄᴇꜱɪ𝓛 . 🪻|ฅᶻⁱʰᵃᵒ ˣ ʰⁱʳᵒᵗᵒฅ,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1002,1139099265735700480,BANGDUNGDIN,BOB 🥕,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
1003,1215751497444663296,BlackjackMyDay,EineZitrone🍋,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1004,1182594610582802432,k4nglee,elaine❦ 🆔️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1005,922108103520223232,babatom_,vera 🌅 박은하,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1006,211784534,aimm2010,Cha-Aimm.,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1007,92883732,youngkwaiffu,ty🍑,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1008,980258207275802624,wangggaeparkgae,wang👑gaepark🍑gae,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1009,1515919327,flowerybob,мυту 🧸🦆,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
1010,951211762329767936,dorothy_kry_nf,Erina,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1011,1466260479752359938,jonghomallow,sushi,"['day', '3', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'sheher', 'blk', 'entp', '1']",ENTP
1012,1571518968422088705,literallyinnie,j ; ⭐️⭐️⭐️⭐️⭐️,"['day', '3', 'hii', 'im', 'j', 'new', 'im', 'looking', 'interactive', 'moot', 'sheher', 'blk', 'ent']",ENTP
1013,1258656121033592833,keandyoungk,`Riza,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1014,1274275243180224515,harushiday,dhisayang🍀ia,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1015,1358091909130903555,qavten,nay ✰⁵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1016,853575026372616192,azusyaalalala,bat✨,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1017,249952434,masihayam,hehe,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1018,998554515937804289,clangyounghyun,cla 🐈✨,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1019,1009742276191346689,shexxbi_131,she🆔,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1020,2849754811,howdybassist19,Cici,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1021,1275811672171544576,simpullmati,🍜,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1022,1208307988588445697,pacificlouds,☁️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1023,1537796469519896576,fullsunveol,ecaa,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1024,3310328516,sungddenlyjpg,rox 🐻 찐빵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1025,1292470480344031239,drumpums,hanif || military wife,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1026,3825227713,pinkpawwa,펄 ⛓,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
1027,3947553140,pathosesque,⁑,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1028,1045665143282003968,yk1293,nunu,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
1029,1044588940672434178,avidgroupie,♡,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1030,1047733352134897664,dllllb__,double.l,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1031,265855662,pituyuyuyu,pituy • pawang reog,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1032,574482917,sixthbruary,Sixthbruary,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1033,288181306,theeracarbon,Thee. 🎧 Freakin’ Bad ⛓,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1034,1156503684592726017,skzinthebldg,★⁵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1035,1066021555149438977,l_staaaa,Lea ★★★★★ • FML,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1036,910088408063606784,desikisasi,mad,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1037,1534828781507969024,saca311,sac,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1038,1002810262154407936,sspringtouch,fay,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1039,1615645961048711171,guitarzpick,nisha ♡ semi ia due to college 📚,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk', 'shake', 'h']",ENTP
1040,1536205678418620416,tyranysng,ra,"['entp', 'boy', 'loudly', 'cry', 'face']",ENTP
1041,915872184169414656,eternalsnshinex,m,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1042,1615645961048711171,guitarzpick,nisha ♡ semi ia due to college 📚,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1043,1580196631374630915,gunsuxhi,dy 🤎,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1044,1349205969893380096,JohnlocKey_,𝒕𝒓𝒂𝒕𝒂𝒕𝒂✨,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1045,1582890549257740288,gaonluvr,ain.,"['youngk', 'entp', 'xh', 'gaon', 'raise', 'hand', 'hi', 'im', 'entp', 'youngk', 'hi', 'im', 'entp', 'gaon', 'youngk']",ENTP
1046,1562267978942492672,bbmykk2,𝗯𝗯𝗺𝘆𝗸𝗸 —𝒕𝒉𝒆 𝒕𝒂𝒕𝒕𝒐𝒐𝒆𝒓 ★,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1047,180348499,farmir,wtb gaon lebaran,"['entp', 'guess', 'type']",ENTP
1048,746534480706363392,daylightsix,coleen ☠️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1049,1153679690214756354,ykdwjm,na ʕ ˙Ⱉ˙⠕ʔ♡,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1050,904007403821121536,ame__ira,L💜⁷💎🍀🐦Nzen_stay,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1051,324237965,4ongkun9,; 🐈⬛.exe,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1052,1069140847403458560,19YOUTH_K,WHO's санчоус 🍒🧊,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1053,810817133479239680,moonbeomie,bribri,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1054,258688278,kangbbeom,baby just met harry 🧡,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1055,1556541404339634177,mochijunhan,yohan ⛓️,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1056,982170100152262656,always_ericsohn,wonungiee,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1057,1019482975115796480,caratmaideiii_,🌌,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1058,1041510327391678464,hvggabIe,joob joob ✰,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1059,102874185,apeachnuna,tika♔,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1060,1398921847186489346,_mydaystay,sy ✰⁵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1061,873132276,colorful_exo,MYDAY,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1062,22223749,CandiceTanishaB,Candice Blair,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1063,1374345653174767616,hurliday,happy moon ⟢,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1064,988181961821700096,generasitoktok,🐣,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1065,1268599406472773633,uaenaday,CAMS ✨ Missing Wonpil 😭,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1066,1271380853726167040,yoonsuyuk,Nikki Y 🍀,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1067,1263650402253172736,mydaypathinya,younghyunlover,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1068,1397919588638019586,peculiarmxxn,mikee ☆⁵,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1069,1488839663943286784,gaonpanda,ً LU WOMB EVACUATION DAY 🥳,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1070,1081213947276025859,myhazelnutchoco,k,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1071,1610249203040813056,mengkke97__,Ameng👍🏻,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1072,1198576422358417408,y0ungk__,강han🦊,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1073,1045665143282003968,yk1293,nunu,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1074,1307548879382933506,alaskamilktxa,dan is lost⨟ (mw fic one-shot 📌),"['young', 'k', 'found', 'entp', 'friend']",ENTP
1075,1896688932,azizahwidiah,azizahᰔᵕ̈,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1076,1273647163164278787,skzfalsetto,ice ⛓️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1077,1251413988413304832,youngkdough,nic ✧,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1078,950670930627371009,Jeonarrun,Run,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1079,2393583859,TarnTarn2232,Jaodao,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1080,1398573886531280899,sojoongies,ali • gaon teeth creature,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1081,773066911139508224,gracioes,ecy,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1082,1367395723759644677,HunterXMewha,Yu🌻🍋,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1083,746534480706363392,daylightsix,coleen ☠️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1084,1075353654708719616,lavietann,annis🕊,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1085,1335796015241199618,dailyechans,🍧,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1086,1263315554284171264,kuya_day6,라이 🐻🦊 YoungK's Home,"['entp', 'boy']",ENTP
1087,1043763521186492418,deepinbeomie,angel 🍀,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1088,1146491336889122817,kangyoungbrian,ellie 🦊,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1089,1101150517,ayayamericano,ai – 아이•爱•あい,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1090,324237965,4ongkun9,; 🐈⬛.exe,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1091,1349535173944123393,sushi_days,p; 🍣,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1092,488531184,haengday,Sya gotLiveClip 🍋🍀🫙,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1093,1239885343215636482,loveaiyu_,kate🫡🧜♀️,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1094,1365232865642881024,wonpilatesx,wonpilates 🫡,"['young', 'k', 'found', 'entp', 'friend']",ENTP
1095,1173982327770406913,365247desik,🌅belle,"['nawww', 'theyre', 'talking', 'mbti', 'young', 'k', 'asked', 'xh', 'there', 'someone', 'who', 'entp', 'mbti', 'gaon', 'raised']",ENTP
1096,3825227713,pinkpawwa,펄 ⛓,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1097,1934281314,howdygan,🐨,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud', 'x']",ENTP
1098,1647936506689126400,gunilthnkr,lei 🌿 deadlock ⛓,"['need', 'know', 'gaon', 'youngk', 'know', 'theyre', 'entp', 'happened', 'typing', 'im', 'gon', 'na']",ENTP
1099,1466260479752359938,jonghomallow,sushi,"['valerie', '୨୧', 'looking', 'interactive', 'moot', 'fandom', '୨୧', 'cant', 'say', 'age', 'sorry', '୨୧', 'rtrepl']",ENTP
1100,1953977000,pipopsilviaa,pipo,"['woah', 'gaon', 'mbti', 'youngk', 'entp']",ENTP
1101,1515919327,flowerybob,мυту 🧸🦆,"['young', 'k', 'amp', 'gaon', 'entp', 'loudly', 'cry', 'facehandshakelight', 'skin', 'tone']",ENTP
1102,1410331341237886977,dayskzheroes,꒰ khy ꒱ dowoon misser ♡,"['youngk', 'gaon', 'entp', 'besties']",ENTP
1103,488531184,haengday,Sya gotLiveClip 🍋🍀🫙,"['ohh', 'young', 'k', 'gaon', 'entp']",ENTP
1104,1582890549257740288,gaonluvr,ain.,"['youngk', 'gaon', 'charge', 'xh', 'member', 'mean', 'gaon', 'important', 'position', 'im', 'proud']",ENTP
1105,1654750738604765184,i43aran,lee | 📌 lf fifty fifty moots | UNFORGIVEN,"['restarting', 'paw', 'print', 'sophia', 'sheher', '14', 'multistan', 'entp', 'albadhesive', 'bandage', 'new', 'custard', 'like', 'repost', 'pls']",ENTP
1106,1377730311618891776,pawn_2021,Mr. pawn,"['entp', 'rolling', 'floor', 'laughingok', 'hand']",ENTP
1107,1573488908511236096,min_the_sta,Min ૮ ˶ᵔ ᵕ ᵔ˶ ა | ★⁵,"['entp', 'felix', 'lee', 'know']",ENTP
1108,1206953649169207297,5ivehad,5,"['loudly', 'cry', 'face', 'also', 'true', 'psych', 'grad', 'form', 'im', 'tell', 'myersbriggs', 'iftp', 'aswj', 'entp', 'etc']",ENTP
1109,1649011037218193408,Urmomsf9vmf,★༺Нана༻★ edtwt,"['also', 'every', 'mf', 'who', 'smart', 'sarcastic', 'realise', 'doesnt', 'mean', 'ur', 'entp', 'jus', 'bc', 'half']",ENTP
1110,2154322308,Ironman_1208,🌹,"['entp', 'attractive', 'oftenly', 'genius', 'intellectual', 'person', 'think', 'theyre', 'ideal', 'lover']",ENTP
1111,2154322308,Ironman_1208,🌹,"['entps', 'guy', 'damn', 'attractive', 'dari', 'aku', 'yang', 'infj']",ENTP
1112,1579996888295784449,ghosttexe,🧸🎉,"['redoing', 'intro', 'hiya', 'name', 'stanandrew', 'im', '4teen', 'pls', 'dont', 'weird', 'hehim', 'preferred', 'idm']",ENTP
1113,1456404509547188225,bincutt,🫐❕,"['entp', 'danceracha', 'biased']",ENTP
1114,785105172741709824,wtfzaye,zaye ★⁵,"['entp', 'felix']",ENTP
1115,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['yunhos', 'duality']",ENTP
1116,1026689333175017473,chicken_do_it,𝑎.𝑚. 🦊🩵 | wind and wish 🍀,"['shy', 'entp', 'sungjae', 'face', 'tear', 'joy']",ENTP
1117,1305988591697440772,yeoifying,🔮 PEE☂️ OUTLAW x ⚝⚝⚝⚝⚝👾,"['love', 'mbti', 'inacurate', 'im', 'never', 'gon', 'na', 'take', 'im', 'entp']",ENTP
1118,1448910679923048449,suhjOhn_ny,regina ☁️ | lf nctzen moots,"['day', '1', 'hi', 'im', 'regina', 'new', 'filo', 'sheher', 'entp', 'looking', 'interactive', 'moot', 'ifb']",ENTP
1119,1632618583443505152,valrxccart,val ★,"['valerie', '୨୧', 'looking', 'interactive', 'moot', 'fandom', '୨୧', 'cant', 'say', 'age', 'sorry', '୨୧']",ENTP
1120,1505932651378900997,kafkive,xrizov ☆ | kafka's favorite coat,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1121,1591530894166315010,JakesThinking,Jake Houser | The Authentic Sales Guy,"['sounding', 'like', 'entp', 'bro', 'call', 'hand']",ENTP
1122,2154322308,Ironman_1208,🌹,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1123,1655395923923705857,evanfics,Evan ; is writing ✍️,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure', 'fando']",ENTP
1124,1311702569362821120,johtoblack,johto 🫧,"['omg', 'entp', 'last', 'semester', 'crazy', 'thing', 'change']",ENTP
1125,347344521,dramaticjiniret,probably a quokka ★⁵,"['entp', 'chanbaby', 'bread']",ENTP
1126,1346573027522338821,ElectronicStar7,Electronic-Star Adopt Discount!!🌟❤DokiDoki❤🌟,"['discovered', 'today', 'really', 'nice', 'description', 'smiling', 'face', 'smiling', 'eyessnowflakesparkling', 'heart', 'suppose', 'idunas', 'personality', 'type', 'mbti', 'would', 'b']",ENTP
1127,1098312435876970501,bigfrozenfan1,bigfrozenfan - Frozen forever,"['discovered', 'today', 'really', 'nice', 'description', 'smiling', 'face', 'smiling', 'eyessnowflakesparkling', 'heart', 'suppose', 'idunas', 'personality', 'type', 'mbti', 'would', 'b']",ENTP
1128,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
1129,3970089372,MegumiBandicot,Megumi Bandicoot,"['looking', 'moot', '14', 'hehim', 'entp', '5w6']",ENTP
1130,1569696103477682177,carnfxx,"𝗵𝗶𝗴𝗵, 𝗻𝗲𝗴𝗹𝗲𝗰𝘁𝗳𝘂𝗹 𝗹𝗼𝘃𝗲𝗿. ","['need', 'debate', 'friend', 'logical', 'rational', 'calm', 'get', 'overly', 'sensitive', 'feeling', 'invo']",ENTP
1131,1655303596601229312,umishimase,🎐 Mads | 🪼,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1132,1645072504241938433,lesbiyunn,mei ⚢,"['entp', 'moot', 'pokemon', 'hsr', 'okay', 'moot', 'please']",ENTP
1133,1610235501126246400,tojitwt,♡,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp', 'frien']",ENTP
1134,1624951764930920448,bleumiare,alora.,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp', 'frien']",ENTP
1135,1595026096449540096,fleurtune,fleur.,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp', 'frien']",ENTP
1136,986664812007440384,mb_times,MBTimes,"['entp', 'poem', 'following', 'dichotomy']",ENTP
1137,1519254729116725248,akiodawan,closed,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp', 'frien']",ENTP
1138,1655050315417395200,wndfleur,hiraya.,"['hi', 'hi', 'im', 'hiraya', 'new', 'new', 'engfilo', 'ok', '18', 'pronoun', 'entp']",ENTP
1139,1459608015833866251,fatalaudio,𓆩♱𓆪‧₊˚ ACE .ᐟ,"['゚゚', 'studio', 'microphone', 'song', 'daehyun', 'lynx', '28', 'ic', 'hethey', 'rockerb']",ENTP
1140,1547748947950612480,tteaparty_,ttea ⚢,"['btw', 'aslan', 'ur', 'entp', 'allowed', 'retype', 'ne', 'dom', '3']",ENTP
1141,1643044807693021184,chrollofiendd,tori,"['think', 'may', 'mix', 'intp', 'entp', 'bc', 'get', 'often']",ENTP
1142,1389561628572585995,nyashykyun,˗ˋˏ ♡Kyunnie♡ ˎˊ˗ || COMMISSIONS OPENED📌,"['two', 'entp', 'bfs', 'sooae', 'dont', 'want', 'baek', 'dohwa', 'im', 'taking', 'along', 'cheong', 'myeong', 'bye', 'everyone']",ENTP
1143,1284320149,Shestadia,Bob M̶a̶r̶l̶e̶y̶ ﹰELDIAN.btc,"['supposed', 'make', 'group', 'chat', 'bot', 'rick', 'itachi', 'elon', 'lelouch', 'tony', 'stark', 'telegram', 'ended', 'g']",ENTP
1144,695105251687272448,dogexen,ÐXEN | Suiswap | FusionX Finance | NemoSwap 🐐,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1145,808805952975564800,TurboThaad,Th🌲d,"['entp', 'see', 'bullshit']",ENTP
1146,768012685,mssjr139,Mark Smith,"['keep', 'telling', 'youre', 'productive', 'entp', 'ever', 'time', 'twitter', 'keep', 'homie']",ENTP
1147,1289616476194975745,4HourL,4𝓗𝓛🚬🌙 (DM limited💀🦇),"['yea', 'trying', 'convince', 'he', 'intp', 'still', 'think', 'musk', 'intj', 'entp']",ENTP
1148,1312844581235458053,karma_rubi,𝓚𝓪𝓻𝓶𝓪 𝓲𝓼 𝓲𝓷 𝓐𝓱𝓽𝓸𝓱𝓪𝓵𝓵𝓪𝓷,"['discovered', 'today', 'really', 'nice', 'description', 'smiling', 'face', 'smiling', 'eyessnowflakesparkling', 'heart', 'suppose', 'idunas', 'personality', 'type', 'mbti', 'would', 'b']",ENTP
1149,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni']",ENTP
1150,1566445912108548097,kimwiIIiam,HEAD BARAGI,"['entp', 'r', 'compatibe']",ENTP
1151,1647312205677731852,ID0LMAGIC,genny/ace ★ | renees biggest fan!,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1152,1541926465549238272,antikcalprodick,orion!? 🛸,"['yall', 'know', 'im', 'entp', 'yeah', 'thats', 'right', 'e', 'e', 'haver', 'mcr', '3dtwt', 'smiling', 'face', 'sunglassessmiling', 'face', 'sunglassessmiling', 'face', 'sunglass', 'yeah', 'im', 'extrovert', 'flexed', 'bicepsflexed', 'bicepsflexed', 'biceps']",ENTP
1153,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['welp', 'liberal', 'comment', 'definitely', 'demonstrate', 'liberal', 'cant', 'define', 'woman', 'liberal']",ENTP
1154,1018244137693401095,uncanny_eli,"i, eel","['read', 'whole', 'v', 'interesting', 'book', 'mbti', 'eugenic', 'origin', 'facilitating', 'exploitation', 'worker']",ENTP
1155,1327382264167198720,LOREEDELREY,★ Loree // 𝖁𝖊𝖓𝖎𝖈𝖊 𝕱𝖗𝖊𝖆𝖐 ★,"['red', 'flag', 'lacking', 'empathy', 'bad', 'comforting', 'egoistic', 'kinda', 'always', 'want', 'say', 'smth', 'dont', 'like', 'introver']",ENTP
1156,1607498586329055235,herrscherofflat,Fish 鱼✩彡 ✦ Flop Era,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1157,30556255,Sams_Antics,Sam McRoberts,"['didnt', 'know', 'entp']",ENTP
1158,1432283749820076039,sylveaaa,꒰ ₊ʚ🫧ɞ sylly ꒱ hsr moots pls🎐🚂,"['love', 'entp', 'crazy', 'ppl', 'frsmiling', 'face', 'hearteyes', 'entp', 'broke', 'heart', 'recently']",ENTP
1159,1154488097180020737,mskchu,mao 💞💥,"['snth', 'like', 'entp', 'idk', 'collisionpartying', 'facesmiling', 'face', 'heartszany', 'facewinking', 'face', 'tonguesmiling', 'face', 'hearteyessparklestwo', 'heartsred', 'heart']",ENTP
1160,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['clearly', 'white', 'supremist', 'much', 'cnn', 'biden', 'liberal', 'would', 'wish']",ENTP
1161,1392243384455155716,strswbwrry,sunniw !!🍓,"['im', '100', 'honest', 'rn', 'last', 'time', 'took', 'test', 'entp', 'downcast', 'face', 'sweatdowncast', 'face', 'sweat']",ENTP
1162,448076415,amusedhalfling,marth♡,"['still', 'making', 'laugh', 'entp', 'boyfriend', 'isfj', 'like', 'complete', 'opposite', 'damn']",ENTP
1163,448076415,amusedhalfling,marth♡,"['entp', 'entj', 'bff', 'knowing', 'feisty', 'could', 'finding', 'two', 'fav', 'bp', 'boy', 'tae']",ENTP
1164,1653321236825649152,crewswren,ash’s ⋆·˚ ༘ *,"['hi', 'ash', 'new', 'looking', 'interactive', 'study', 'mutuals', 'sheher', 'desi', 'entp', 'like', 'musi']",ENTP
1165,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['230507', 'btw', 'anchor', 'japan', '멋']",ENTP
1166,861950886,dzonershow,TV Atty. Darren Rosario (Wraith-whisperer),"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
1167,3970089372,MegumiBandicot,Megumi Bandicoot,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni', 'age', 'dont']",ENTP
1168,1449372552405524491,pkscsk,Simple Boy,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1169,1528200914514784256,JustMonika10110,☄️Monika🚀,"['hello', 'im', 'looking', 'interactive', 'moot', 'astro', 'theythem', '21', 'entp', 'intere']",ENTP
1170,1575543165011906560,cynvore,jae ꩜ ia,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1171,1470684512921141251,yippuichu,plant.bnb,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1172,1486667308093394948,mikasdiaryy,°mika°| on summer break,"['new', 'study', 'twt', 'wan', 'na', 'use', 'acc', 'im', 'looking', 'new', 'moot', 'alex', 'hehim', '05', 'incoming', 'g11']",ENTP
1173,873514574766641152,dilftones,cal,"['shouldnt', 'use', 'entp', 'power', 'become', 'overly', 'manipulative']",ENTP
1174,945743775162183680,AbudBakri,Abud Bakri MD 📟,"['youre', 'kind', 'bro', 'entp', '4', 'lyfe']",ENTP
1175,1644720799851618306,erakreid,Rara | let's be moots!,"['let', 'moot', 'rara', 'sheher', 'ar', '57', 'asia', 'klee', 'main', 'uid', '8540672', '93', 'minor', 'entp', 'sagittarius', 'dni']",ENTP
1176,1634815407063289856,cosmobubbles,kc ★ stan twice!,"['valerie', '୨୧', 'looking', 'interactive', 'moot', 'fandom', '୨୧', 'cant', 'say', 'age', 'sorry', '୨୧', 'rtrepl']",ENTP
1177,1509247860780331011,kiryhuaaah,kiry,"['entp', 'strike', 'look', 'away', 'fe', 'score']",ENTP
1178,1427105968584810497,STlLlCHO,Yannito🎈,"['mine', 'switch', 'intp', 'entp', 'every', 'month', 'loudly', 'cry', 'face']",ENTP
1179,1650062809441398785,zamuzZza,ciel ☆彡,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1180,1632057318824374272,reolmp3,HOHE SKIN HAVER,"['remembers', 'entp', 'sp7', 'eli']",ENTP
1181,3970089372,MegumiBandicot,Megumi Bandicoot,"['redo', 'number', '3', 'go', 'gtlt', 'ˏˋ', 'ˎˊ', 'looking', 'moot', 'ᶻ', '𝗓', '𐰁', 'mina', 'ˋˏ', 'march', 'amp']",ENTP
1182,1461155777884815363,hachiromrcel,Marcel,"['greeting', 'dearest', 'one', 'let', 'attach', 'aku', 'marcel', 'panggil', 'aja', 'kak', 'acel', 'first', 'im', 'ent']",ENTP
1183,1485755499060604934,silverlight373,Silverlight373🐐,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1184,4873387776,INDIANDEMIGODD,크리슈나 ⊹ z,"['year', 'actually', 'entp', 'need', 'recheck', 'got', 'intp', 'way', 'far']",ENTP
1185,1612551760668672000,suabaka1,🤍♡ Baria Aesthetic ♡🤍| LAILA LOVEBOT ♡♡,"['୭', 'day', '1', 'ᵎᵎ', 'hii', 'im', 'sydney', '06', 'entp', 'asian', 'looking', 'interactive', 'moot']",ENTP
1186,1373603726984847362,grelvetre,grace ★ k/ia,"['1', 'looking', 'moot', 'artem', 'artemis']",ENTP
1187,1519254729116725248,akiodawan,closed,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1188,1537581352278958080,AlntNoFlsh,Fish,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1189,1426176658067894282,rainbowtopings,Mina✩°。🍊,"['redo', 'number', '3', 'go', 'gtlt', 'ˏˋ', 'ˎˊ', 'looking', 'moot', 'ᶻ', '𝗓', '𐰁', 'mina', 'ˋˏ', 'march']",ENTP
1190,1628349306754437126,wataame_25253__,わたあめ,"['infjampentp', 'girl']",ENTP
1191,1654982614942359554,noonezhengxifan,✧Sebastian✧,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1192,1650751958561730565,wiszleepy,luwiz,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1193,1489890044798251012,winxcix,CIX CB!!!! ☻,"['europe', 'vlog', 'said', 'entp', 'enfp', 'entp', 'recently', 'posted', 'entj']",ENTP
1194,1464609274810806285,stayfelix_han,lulu ♡ | BND !,"['basic', 'info', 'pronoun', 'sheher', 'sexuality', 'lesbian', 'personality', 'type', 'entp', 'hobby', 'listening', 'music', 'fashion', 'style']",ENTP
1195,1641717058663747585,saintshogun,kye ☆ wlw edition,"['right', 'anger', 'bubble', 'pronoun', 'r', 'ok', 'gt', 'aroace', 'cupioromantic', 'sapphic']",ENTP
1196,1407167044190040185,23_entp,23,"['aespa', '에스파', 'spicy', 'concept', 'photo', 'aespa', '에스파', '3rd', 'mini', 'album', 'world', '2023050', '8', '6pm', 'kst']",ENTP
1197,1550105731927379968,yearanfire,案年,"['infjampentp', 'girl']",ENTP
1198,1571518968422088705,literallyinnie,j ; ⭐️⭐️⭐️⭐️⭐️,"['hii', 'im', 'j', 'new', 'looking', 'interactive', 'moot', 'sheher', 'entp', '16', 'ults', 'sk']",ENTP
1199,1653655825569955840,ishashouse,jacey ! 🙊 : ia bcz of school ☹️,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure', 'fando']",ENTP
1200,1035495969905725442,yuriviolence,gabi 🐭 DOPPO DAY ❤️🩶🩵,"['fate', 'hang', 'balance', 'entp', 'voter']",ENTP
1201,1509247860780331011,kiryhuaaah,kiry,"['typology', 'twt', 'see', 'let', 'moot', 'im', 'entp', 'identity', 'crisi', 'higher', 'fe', 'stack', 'bc', '2', 'fix', 'let', 'go']",ENTP
1202,1550343400855339009,icefeeds,☆ice,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure', 'fando']",ENTP
1203,1528751979698311168,entp_lys,Polaris ☆,"['new', 'tattoo', 'nobody', 'get', 'reference', 'im', 'disowning', 'yall']",ENTP
1204,1309446826399952898,rubiexjane,ripa ⟡,"['extrovert', 'entp', '99', 'extrovert']",ENTP
1205,1530085527034408960,aroshizue,keris ☆,"['entp', 'pretty', 'good', 'like']",ENTP
1206,1422507047669538821,kvehgf,juni ia (sick),"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1207,1622129244083220480,acaaistudie,acaa²⁴,"['new', 'study', 'twt', 'wan', 'na', 'use', 'acc', 'im', 'looking', 'new', 'moot', 'alex', 'hehim', '05', 'incoming', 'g11']",ENTP
1208,1645595530813386752,KettieMeow,Kettie 🐈⬛,"['entp', 'victory', 'hand']",ENTP
1209,1356745572649218057,cowboyhat_jerry,𓈒 🥥 ˖ jeremy ◠ 🧴,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1210,1563829409039130626,bankergege,🐍 some masked fool | loves kaveh & sampo,"['entp', 'inferior', 'si', 'nothing', 'si']",ENTP
1211,1588480302779084801,nni0h1,yuan | bz sa proj 😢,"['comet', 'day', '2', 'im', 'britt', '07', 'entp', 'white', 'looking', 'interactive', 'moot', 'headphone']",ENTP
1212,1565683997753364480,kaizelstudy,kaizel | studytwt,"['new', 'study', 'twt', 'wan', 'na', 'use', 'acc', 'im', 'looking', 'new', 'moot', 'alex', 'hehim', '05', 'incoming', 'g11']",ENTP
1213,1647917917592494082,httpszyraa,Zyra,"['comet', 'day', '2', 'im', 'britt', '07', 'entp', 'white', 'looking', 'interactive', 'moot', 'headphone']",ENTP
1214,1650301213374828545,i902kl,🎀 Natsume ♥️ • ia ExamS,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1215,1655050315417395200,wndfleur,hiraya.,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1216,1343183230158184449,KuLvrr,Ku ♡,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1217,1090912918336667648,eaudevampire,🤍 miso ⚢,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1218,869238609328578560,diorkibum,vi🍋,"['entp', '사이렌스', 'doesnt', 'match', 'rhyme', 'pattern', 'clowndeluludesperate', 'spoiler', 'nod']",ENTP
1219,1090912918336667648,eaudevampire,🤍 miso ⚢,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1220,1584175934093262850,reinsect,khai,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1221,1654750738604765184,i43aran,lee | 📌 lf fifty fifty moots | UNFORGIVEN,"['comet', 'day', '2', 'im', 'britt', '07', 'entp', 'white', 'looking', 'interactive', 'moot', 'headphone']",ENTP
1222,1256020342541135872,MIMONELOID,みもねる,"['entp', '5w4', '539', 'sxso']",ENTP
1223,1567137659369439233,ian_tropp,alex,"['new', 'study', 'twt', 'wan', 'na', 'use', 'acc', 'im', 'looking', 'new', 'moot', 'alex', 'hehim', '05', 'incomi']",ENTP
1224,1256020342541135872,MIMONELOID,みもねる,"['entp', '7w6', '739', 'sosx']",ENTP
1225,4184926641,asemtipovedal,julia 🃏 | LOVE FOR JOKER OUT | 39,"['already', 'covered', 'jo', 'somewhere', 'anyways', 'bojan', 'esfp', 'kris', 'entj', 'jan', 'isfp', 'jure', 'enfp', 'nace', 'infj', 'brunette', 'enfj', 'sudde']",ENTP
1226,1610121863585492994,takinosleep,kugii | inactive,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1227,1595026096449540096,fleurtune,fleur.,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1228,1514453536758644740,chu_lyue,Lyuena • semi-ia,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1229,1624951764930920448,bleumiare,alora.,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'play', 'genshin']",ENTP
1230,1655050315417395200,wndfleur,hiraya.,"['looking', 'interactive', 'moot', 'amp', 'im', 'hiraya', 'prns', '18', 'entp', 'engfil', 'pla']",ENTP
1231,1543222087803961344,AlexHan1234,Alex Han | Suiswap | SuiFrens AI I YouSUI,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1232,1524617904825720832,archviist,nell’♡,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1233,1000730365093466112,redgetou,kaiteo kid 52,"['entp', 'urge', 'cosplay', 'kaito', 'shinichi']",ENTP
1234,1026689333175017473,chicken_do_it,𝑎.𝑚. 🦊🩵 | wind and wish 🍀,"['finally', 'sungjae', 'become', 'real', 'entp', 'face', 'tear', 'joyface', 'tear', 'joyface', 'tear', 'joy']",ENTP
1235,1654796261818597378,lukalovesblahaj,LUKA ☆,"['yeesss', 'entp', 'mootiess']",ENTP
1236,1527697045808910336,yongbokiboki,ʚ🐥ɞ | ✯⁵,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1237,1588901893505314816,xiaoswife_uwu,chrtiexiao,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1238,1445115729368465415,stfurnlol,cyber fish🐠🍓⭐️💤 #1 KAngel fan,"['oh', 'em', 'gee', 'entp', 'nation', 'im', 'also', 'entp', 'wan', 'na', 'mooties', '3']",ENTP
1239,784685257501007872,chocobeebi,Juls 🪐,"['got', 'offended', 'brain', 'eating', 'monster', 'ignored', 'skull', 'entp', 'behaviour', 'sure']",ENTP
1240,784685257501007872,chocobeebi,Juls 🪐,"['ofc', 'chris', 'pine', 'character', 'entp', 'loudly', 'cry', 'face', 'commenting', 'xenk', 'would', 'go', 'rock', 'instead', 'go', 'aroun']",ENTP
1241,1654834579629539329,lnlvsgt,lian,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1242,1310800181164609536,marirrin_,Mari ☆ Atsushi's lover,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1243,1174742792897269761,mortezajoon5,"morva.lens(🌸, 🌿)🛸mytrust.nft","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1244,1489971509758238727,Sarumi_tv_entp,ZARU🔥,"['yes', 'face', 'tear', 'joyface', 'tear', 'joy']",ENTP
1245,1489971509758238727,Sarumi_tv_entp,ZARU🔥,"['friend', 'newcastle', 'west', 'ham', 'today', 'arent']",ENTP
1246,1641966034390339584,skzkkara,kara ; ★⁵,"['moot', 'took', 'mbti', 'test', 'switched', 'entp', 'infj', 'astonished', 'faceastonished', 'faceastonished', 'face']",ENTP
1247,878722165826351104,AmareInMortis,'Rosy S. Phantom',"['ill', 'return', 'weekly', 'weekend', 'post', 'schedule', 'soon', 'sunday', 'work']",ENTP
1248,1605440573342908416,retniwigopfrfr,HDJHSHSJAJAHAHAHAHAHHA,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure', 'fando']",ENTP
1249,1584668972154241025,Jaber_Velayat3,🇮🇷☫بنت الحیدر(بشرےٰ)🇮🇷,"['im', 'entp', 'face', 'tear', 'joy']",ENTP
1250,1576925263283093505,azurauw,azura ‧₊˚彡 GEPARD_LUVRR_099XX ‼️ (86/90),"['looking', '4', 'moot', 'shehe', '14']",ENTP
1251,635324796,AlSamia0life,AlSamia♏,"['yes', 'entp', 'thing']",ENTP
1252,1493675756668559361,dismembereddead,༘⋆ twilight 🐾🫒🍄🧃,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1253,1636704531848519680,goonafch,guna²⁵ mode 🏳️🌈,"['hello', 'buddy', 'im', 'lookin', 'bunch', 'friend', '૮', 'აbouquetbouquet', 'linked', 'paperclip', 'abt', 'mewoman', 'gesturing', 'ok', '୨୧', 'u', 'call']",ENTP
1254,1598693608416329729,_5p00kyc4t88,Naomi | 🌼,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1255,1526480941497176065,findsbionics,dooley ⁀ ✩,"['p', 'e', 'r', 'n', 'l', 'b', 'entp', 'e', 'n', 'n', 'e', 'g', 'r', '3w2', 'r', 'g', 'n', 'taurus', 'r', 'l', 'l', 'g', 'n', 'e', 'n']",ENTP
1256,1642540360659525633,rarerion_,″rin ; hell week,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1257,1399750999959609345,wnderhoax,︎ ︎ ︎ ︎ ︎ϟ︎ ︎ ︎ ︎𝕻𝘳𝘪𝘴𝘰͟𝙣𝙚𝙧 ︎” ︎ ︎︎,"['𝑃ortrayal𝙾𝙵𝕷𝘂𝗰𝗮𝕭𝗮𝗹𝘀𝗮', 'museis', '𝟐𝟐yoandentp', 'bisexualenbyϟ𝘩𝘦', '𝘵𝘩𝘦𝘺', 'based', 'oncanonnhc']",ENTP
1258,407382092,IMlNAH,ꆛMinah,"['name', 'kang', 'min', 'ah', '강민아', 'birthdate', 'march', '20th', '1997', 'zodiac', 'sign', 'pisces', 'blood', 'type', 'ab', 'nationality', 'korean', 'height']",ENTP
1259,1538491386135445504,monorozuir0,zer0 ✨ Ethan Winters and Luis Sera enjoyer ✨,"['two', 'sussy', 'fruity', 'lady', 'man', 'entp', 'brunette', 'dark', 'past', 'good', 'side', 'least', 'tryin']",ENTP
1260,741695877824274432,AdriOnePiece,Adrii,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1261,1510083730060169219,syfsnd_,NJ,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1262,1545940327,DrQamarulHassan,Dr M Qamarul Hassan,"['entp', 'personality', 'type', 'entp', 'stand', 'entp', 'entp', 'value', 'amp', 'motivation', 'video']",ENTP
1263,1256020342541135872,MIMONELOID,みもねる,"['entp', '3w2', '387', 'sxso']",ENTP
1264,28495890,foxyfeline99,NDUB,"['entp', 'energy', 'skullface', 'tear', 'joygrinning', 'squinting', 'face']",ENTP
1265,1637200693638443008,claranuiii,marcy/clara ✩,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1266,1647763687753629697,BlxssfulNxghts,Mrs. Alyssa Bahng ★⁵,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1267,1256020342541135872,MIMONELOID,みもねる,"['entp', '8w7', '837', 'sxso']",ENTP
1268,1269954958226526214,Jignesh14327542,"SuiFrens AI""| SuiSwap.! 🛸⚪⚫🐐","['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1269,1382962083285782531,_btsbcby,lia💓 happiness is real??,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1270,1331620633726259200,ssefnum,"Ssefnum ON, cek likes. 💚","['rl', 'hi', 'im', 'looking', 'new', 'pal', 'accompany', 'journey', 'okay', 'dont', 'fcv', 'righ']",ENTP
1271,1306968366179971072,ichoposerio,icho 🛸 | 🔱❤️🩹 (in my lutang era),"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1272,1486651080910196744,flwrs4psh,Gabby ; is writing !,"['day', '2', 'hi', 'im', 'gabbykielle', 'im', 'looking', 'interactive', '۵۵', 'enhypen', 'seventeen', 'newjeans']",ENTP
1273,1538691585583771648,luvmminmail,krish 🌟⁵ | buy my bentables pls🙏,"['omg', 'filo', 'stay', 'also', 'entp', 'hiii', 'besties', 'em', 'thinksseenoevil', 'monkeyseenoevil', 'monkey']",ENTP
1274,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,['unreal'],ENTP
1275,1538691585583771648,luvmminmail,krish 🌟⁵ | buy my bentables pls🙏,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1276,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['thank', 'camera', 'man']",ENTP
1277,1351970074257666050,KriptVal,KriptVal🏍️🏍️🏍️🏍️🏍️🏍️,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1278,1627351259207581696,mimistar00,fartmaster3000,"['thats', '4w3', 'entp', 'u']",ENTP
1279,1528751979698311168,entp_lys,Polaris ☆,"['x', '2022', 'pearl', '2022']",ENTP
1280,1166064885681274880,sugurushusband,Jay,"['guve', 'beginner', 'guide', 'ik', 'im', 'entp']",ENTP
1281,1550105731927379968,yearanfire,案年,"['entpampinfj', 'magical', 'girl']",ENTP
1282,953606119892529158,jafaeu,"Neurospicy Latina, Ranting Girlypop🇻🇪🇵🇸😈","['also', 'explains', 'lovehate', 'relationship', 'chie', '4ns', 'lol', 'neutral', 'face', 'sarcasm', 'im', 'literally', 'loling', 'im']",ENTP
1283,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['dont', 'accept', 'think', 'convince', 'accept', 'fill']",ENTP
1284,1611214666876977152,69momlover,✧ ven,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1285,1528751979698311168,entp_lys,Polaris ☆,"['maki', 'fire']",ENTP
1286,1654828058749308928,atlastarrr,atlas • luocha wanter,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1287,1402824242337488900,umazanemisli,sam 🌞🃏💡🦞,"['kaarija', 'entp', '7w6', 'like', 'true', 'mean', 'bojan', 'bf']",ENTP
1288,1576925263283093505,azurauw,azura ‧₊˚彡 GEPARD_LUVRR_099XX ‼️ (86/90),"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1289,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['got', 'ta', 'admit', 'ball', 'stand', 'next', 'sexy', 'hooter', 'female']",ENTP
1290,1416772466211389444,ENTP_ENFP_ME,(SLOW) 엔팁의엔프피,"['yunhos', 'laugh', 'precious']",ENTP
1291,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['youre', 'wrong', 'cause', 'keep', 'stirring', 'pot', 'look', 'forward', 'getting', 'boiled', 'hatred']",ENTP
1292,1356705821162405889,makkotou,Makko!! 💬,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1293,1438502565751103490,ssclvrr,rei ☆ ꒰ 🍰 ꒱,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1294,1492365130113634304,32yeonie,ㅋㅋ,"['hi', 'im', 'cam', 'lf', 'interactive', 'moot', 'hehim', 'entp', 'ults', 'kep', '1er', 'newjeans', 'txt', 'loona', 'lsfm', 'nmixx', 'yena', 'itzy', 'lt', 'mostly']",ENTP
1295,1253496635667042304,haworthes,♤,"['entp', 'gemini', 'born', 'year', 'snake', 'fuck', 'u', 'tryna', 'say']",ENTP
1296,1253496635667042304,haworthes,♤,"['entp', 'hive', 'rise']",ENTP
1297,892490446135476224,mushioguri,LEO (。•̀ᴗ-)✧ #1 sigzai defender,"['entp', 'pretty', 'good', 'like']",ENTP
1298,1509343595559473155,ausofyaroox_,yaroox ; lf moots,"['entp', 'makmak', 'moot', 'hug', 'pas', 'yes']",ENTP
1299,1433278274726084614,chicagocaffeine,Bebek,"['johnny', 'amp', 'taeyong', 'entp']",ENTP
1300,872498239659941889,newbietwituser,Caryn🍃,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1301,1528751979698311168,entp_lys,Polaris ☆,"['oh', 'wow', 'baekhyun', 'beautiful']",ENTP
1302,1524801921613185029,seriseppo,COLONEL☂️,"['gender', 'entp', 'point', 'started', 'even', 'knew', 'internet']",ENTP
1303,1524801921613185029,seriseppo,COLONEL☂️,"['he', 'entp', 'im', 'deactivating', 'account']",ENTP
1304,1400635914431389703,iL0veRowan,☁︎ - Edgar┆bsd spoilers!!! ★⊹,"['im', 'isfp', 'thought', 'entp', 'whole', 'year', 'took', 'test', 'ppl', 'clicking']",ENTP
1305,1528751979698311168,entp_lys,Polaris ☆,"['baekhyun', 'perfect', 'eye', 'makeup']",ENTP
1306,1466260479752359938,jonghomallow,sushi,"['hi', 'im', 'cam', 'lf', 'interactive', 'moot', 'hehim', 'entp', 'ults', 'kep', '1er', 'newjeans', 'txt', 'loona', 'lsfm', 'nmixx', 'yena', 'itzy', 'lt', 'mostly']",ENTP
1307,1518156596190519297,sinkwhore,Moonlight Serenade,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1308,1646975245155196932,rusted_cd,taz,"['hi', 'im', 'cam', 'lf', 'interactive', 'moot', 'hehim', 'entp', 'ults', 'kep', '1er', 'newjeans', 'txt', 'loona', 'lsfm', 'nmixx', 'yena', 'itzy', 'lt', 'mostly']",ENTP
1309,1649999500881154048,nekhiz,'vickie | 7 DAYS TILL FINALS.,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1310,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['look', 'fresh', 'looking', 'glass']",ENTP
1311,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['mental', 'illness', 'one', 'key', 'cherished', 'value', 'liberal', 'everyone', 'try']",ENTP
1312,67585143,utekkare,Pranay Srinivasan,"['entp', 'short', 'entropy', 'yes']",ENTP
1313,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['protest', 'death', 'jordan', 'neely', 'bunch', 'protestors', 'acting', 'like', 'jordan', 'neely', 'say', 'crazed']",ENTP
1314,28369153,jposhaughnessy,Jim O'Shaughnessy,"['weird', 'im', 'entp', 'say', 'twitter', 'built', 'u']",ENTP
1315,1645495604901027866,lvlykaru,cammy 🌼,"['hi', 'im', 'cam', 'lf', 'interactive', 'moot', 'hehim', 'entp', 'ults', 'kep', '1er', 'newjeans', 'txt', 'loona', 'lsfm', 'nmixx', 'yena', 'itzy', 'lt', 'mostly']",ENTP
1316,1645495604901027866,lvlykaru,cammy 🌼,"['hi', 'im', 'cam', 'lf', 'interactive', 'moot', 'hehim', 'entp', 'ults', 'kep', '1er', 'newjeans', 'txt', 'loona', 'lsfm', 'nmixx', 'yena', 'itzy']",ENTP
1317,1304452176950034434,rapunzelswife,iris | mitsuri's lover ☘,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1318,1645494062022107139,KYL3YB,#1 STENDY SHIPPER || #sptwt,"['redoing', 'intro', 'hiya', 'name', 'stanandrew', 'im', '4teen', 'pls', 'dont', 'weird', 'hehim', 'preferred', 'idm']",ENTP
1319,1592896337078534146,RAPVLAST,𝕽̼𝐀𝐏 ᝰ 𝔐𖣠𝐍͟𝐒͟𝚃͟𝙴͟𝚁͟ .ᐟ,"['kenji', 'shirogane', 'nineteen', 'year', 'age', 'may', '24', 'standing', '60', 'rapper', 'amp', 'singer', 'part', 'vlast', 'agency', 'guitar']",ENTP
1320,1380079322552209409,hlvrz,i love cityofazure,"['im', 'entp']",ENTP
1321,2962066077,valueterminal,"Terminal Value, CJT (Certified Juice Therapist)🧃","['twitter', 'built', 'entp', 'men', 'lesser', 'extent', 'intj', 'woman']",ENTP
1322,1365362371292786695,Iuvlysoojin,😺 SPICY,"['oye', 'im', 'entp', 'skullskull']",ENTP
1323,1541741260628566017,richieydk,richie,"['admin', 'neil', 'tracy', 'bicurious', 'sapphic', 'neos', 'entp', 'intp', '5', '25', '08']",ENTP
1324,1541741260628566017,richieydk,richie,"['richard', 'tozier', 'star', 'gay', 'asexual', 'entp', 'intp', 'multiverse']",ENTP
1325,13715922,neeraji2it,Imperishable 🐐 🛸 | Avive Citizen | MantleSwap,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1326,1463881857167101954,Galsnta,"Jagan, pls follback me!","['hi', 'hii', 'im', 'jj', 'new', 'prns', 'entp', '07liner', 'zerose', 'moa', 'nctzen', 'jiwoong', 'amp', 'yujin', 'biased']",ENTP
1327,1377802218020220934,2_entp,Ultra MAGA-ENTP_MBA,"['unless', 'battery', 'operated', 'never', 'happen']",ENTP
1328,1643641790682079232,mymelolily,Lily ☆,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1329,635324796,AlSamia0life,AlSamia♏,"['entp', 'thing']",ENTP
1330,1613616981931868161,roryheartuu,rory ⭐️,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1331,1477655540453056517,0xtonyx,Tony X 🥩⚡️,"['hey', 'recognize', 'entp', 'group', 'fb']",ENTP
1332,262795624,PersonalityHack,Personality Hacker,"['full', 'ep', '474', 'setting', 'example', 'leader', 'important']",ENTP
1333,1512529965790679043,gatekeptf3mboy,Moge 宇宙| Aspiring Alcoholic,"['oh', 'gosh', 'absolutely', 'hate', 'routin', 'friend', 'omg', 'youre', 'entp']",ENTP
1334,1537643886767534080,yvqtte_,✦ yv,"['looking', 'moot', '15', 'sheher', 'artist', 'exmusician', 'bsd', 'genshin', 'jjk', 'tpn', 'csm', 'ar', '56', 'kaeya']",ENTP
1335,1654418325680672770,Lu_uuumen,| Lumen/Lumi |,"['looking', 'moot', '15', 'sheher', 'artist', 'exmusician', 'bsd', 'genshin', 'jjk', 'tpn', 'csm', 'ar', '56', 'kaeya']",ENTP
1336,1515887493174132738,dooggerel,Everth.,"['close', 'im', 'entp']",ENTP
1337,1445455076160524298,hjubert_7,Who the hell is Hjubert? | 🃏💡🐍📝🤎,"['duo', 'solo', 'blankas', 'solo', 'act', 'top', '5', 'teya', 'enfj', 'type', 'many', 'enfjs', 'salena', 'entp']",ENTP
1338,1616836624071168000,1aN_l,suki,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1339,1637472718135382016,shenjwsvt,17’s 🌧️,"['hi', 'hii', 'im', 'jj', 'new', 'prns', 'entp', '07liner', 'zerose', 'moa', 'nctzen', 'jiwoong', 'amp', 'yujin', 'biased']",ENTP
1340,1636013837127413760,sambokzDNI,☆,"['hi', 'hii', 'im', 'jj', 'new', 'prns', 'entp', '07liner', 'zerose', 'moa', 'nctzen', 'jiwoong', 'amp', 'yujin', 'b']",ENTP
1341,1603568553738866689,ghostofjooyeon,theo ૮ ˶′ﻌ ‵˶ ა,"['omg', 'aw', 'yay', 'description', 'entp', 'fit', 'well', 'ajahjs']",ENTP
1342,1267782545594216448,jaehyuksbm,Nathan,"['fellow', 'keeping', 'tab', 'listener', 'okay', 'btw', 'kita', 'sama', 'sama', 'entp']",ENTP
1343,1427371677181267968,nonstop_DM,🗿🌻 Darcy,"['believe', 'eclipse', 'fault', 'yesterday', 'love', 'intp', 'entp', 'side', 'equal', 'way', 'intp', 'nagging', 'grandma', 'moai', 'en']",ENTP
1344,878722165826351104,AmareInMortis,'Rosy S. Phantom',"['little', 'silly', 'piece', 'sleepy', 'draw', 'serious', 'content', 'entp', 'finally', 'look', 'g']",ENTP
1345,61520659,Kaouha,✷,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1346,3970089372,MegumiBandicot,Megumi Bandicoot,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1347,1564369886037647361,messyoongi_s,^Lyra👾•^ MY WORLD!!!,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1348,1564369886037647361,messyoongi_s,^Lyra👾•^ MY WORLD!!!,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure', 'fando']",ENTP
1349,1447515186957635586,Jimin_wifes,𝑏𝑎𝑏𝑦 𝑝𝑎𝑟𝑘⁷,"['entp', 'god']",ENTP
1350,1468573930630021121,YJsdalin,Ulap | if moots check 📌,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1351,1647219004455493632,darialuvsfelix,daria ★⁵,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1352,1161365451848474624,SoSyncd,So Syncd,"['compatible', 'entps', 'infjs', 'follow', 'see', 'next', 'pairing', 'blue', 'heart', 'join', 'today', 'meet', 'p']",ENTP
1353,1407167044190040185,23_entp,23,"['excuse', 'giselle']",ENTP
1354,1513122517229228033,DEVIS1117,devi,"['comet', 'day', '2', 'im', 'britt', '07', 'entp', 'white', 'looking', 'interactive', 'moot', 'headphone']",ENTP
1355,861950886,dzonershow,TV Atty. Darren Rosario (Wraith-whisperer),"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1356,885823335442993152,inicerock,쥬키,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1357,3986763974,93bubbletea,🦌🐻🦆⛓,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1358,1654796261818597378,lukalovesblahaj,LUKA ☆,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1359,1459676275296153606,seokryuuz,★,"['omg', 'u', 'entp', 'knew', 'liked']",ENTP
1360,1503301373021995014,qlueemy,bea 🫐,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1361,1534738573815324673,choegyeonglyeol,최경렬 I YouSUI 🐐 🔅,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1362,861318274918821889,ellerbrinn,yenna. 😈 JUNHAN STAN ACC.,"['u', 'entp']",ENTP
1363,1433377793908219906,honeygoldlight,🍯,"['fellow', 'sag', 'moon', 'entp', 'relieved', 'face']",ENTP
1364,1336057556075208711,JellyJeongie_,Britt || 💕,"['comet', 'day', '2', 'im', 'britt', '07', 'entp', 'white', 'looking', 'interactive', 'moot', 'headphone']",ENTP
1365,1332118798997057537,azulkys,hiyo :3,"['dont', 'swearmy', 'friend', 'mother', 'intp', 'entp', 'keep', 'coming', 'across', 'u', 'guy']",ENTP
1366,1602326321278820352,linooo_minho,𝙠𝙖𝙞𝙞𝙞 🧸🌼 | skz stan,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1367,1552996076382466048,rigormorteez,baskara,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1368,1551983099310968832,alwaysjui,ًmin,"['entp', 'entping']",ENTP
1369,1435923444986638337,sdyfiles,⟡,"['゚hiii', 'im', 'miyu', 'looking', 'moot', 'im', 'minor', 'filo', '゚', 'mainly', 'bts', 'nj', 'txt', 'amp', 'treasure']",ENTP
1370,1519116105125699584,vampireshearts,⁺ ✶ caius/ambroz ꩜,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1371,1609954240742699011,vrytao,marceline ia,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1372,1070685174021509120,woonnishere,N,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1373,1606677058465443843,javalucu,java,"['entp', 'mbti', 'attractive', 'wdyt']",ENTP
1374,1439925822115102721,iwantkaeyacons,ashe | light of foliar incision come home.,"['looking', 'moot', 'val', '16', 'heitthey', 'entp']",ENTP
1375,1648891009554628608,sillyvall,val,"['looking', 'moot', 'val', '16', 'heitthey', 'e']",ENTP
1376,1240225114089607168,Gfs_Ninja4,AmitManna.Eth🤡,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1377,369224664,entp_,Nick,"['tab', 'app', 'definitely', 'thing', 'broken']",ENTP
1378,838462500,HealthFranis,Firedragonx(Commission Are Open),"['boi', 'billy', 'gene', 'lookin', 'fly', 'today', 'glad', 'decided', 'draw', 'he', 'combo', 'graffiti', 'newgrounds', 'deadp']",ENTP
1379,1572127944151289858,bejeweldey,Kayin.,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1380,861950886,dzonershow,TV Atty. Darren Rosario (Wraith-whisperer),"['looking', '4', 'moot', 'shehe', '14']",ENTP
1381,1190151850458148864,AlexTheMonbebe,Zizi and Dany,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1382,1576109664856866817,jayjooenvill,nicole,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1383,1398929717865050114,yourjiels,Jiel.,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1384,1580196631374630915,gunsuxhi,dy 🤎,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1385,1254541172208537608,osmannthus,'lica ⛓️,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1386,257319702,limerencious,︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎ ︎,"['entp', 'cool', 'hot', 'crazy', 'time', 'love']",ENTP
1387,2741502007,VonSovereign,Reagan.,"['hope', 'im', 'late', 'name', 'reagan', 'entp', 'love', 'color', 'blueif', 'cant', 'alread']",ENTP
1388,1471011494674386947,eks_heroes,⛓️🦹,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1389,1443474666283159554,DaniellMoe,Bluey (Heavy Hiatus),"['mbti', 'doodlessparkles']",ENTP
1390,1615645961048711171,guitarzpick,nisha ♡ semi ia due to college 📚,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1391,1552999588994289664,gaonkorlap,mila,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1392,1456599920819851270,foxyquacky,ataaa (Deadlock😈/★ ★ ★ ★ ★),"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1393,1343570386055700482,hey0125_,𝙝𝙚𝙮!,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made', 'emotio']",ENTP
1394,1427474817062559745,lNFECTEDWEB,savian/yam ☆ | RRBYF,"['looking', 'moot', '15', 'sheher', 'artist', 'exmusician', 'bsd', 'genshin', 'jjk', 'tpn', 'csm', 'ar', '56', 'kaeya']",ENTP
1395,1582890549257740288,gaonluvr,ain.,"['gaon', 'cried', 'morning', 'radio', 'recording', 'since', 'went', 'walk', 'see', 'people', 'enjoying', 'nature', 'made']",ENTP
1396,1308987441186045958,colzski,colz,"['he', 'fucking', 'fine', 'entp', 'personality', 'god']",ENTP
1397,1486651080910196744,flwrs4psh,Gabby ; is writing !,"['hi', 'im', 'gabbykielle', 'im', 'looking', 'interactive', '۵۵', 'enhypen', 'seventeen', 'newjeans', 'probabl']",ENTP
1398,1654796261818597378,lukalovesblahaj,LUKA ☆,"['looking', '4', 'moot', 'shehe', '14']",ENTP
1399,1346736687326453761,JatinCool909,Jatin Srivastav lens.L2 🌊📘 Sui Goril🔥.bit,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1400,861318274918821889,ellerbrinn,yenna. 😈 JUNHAN STAN ACC.,"['entp', 'fr']",ENTP
1401,1654667469821472768,ningztwt,isha,"['d3', 'hey', 'im', 'jamie', 'looking', 'moot', 'yung', 'maingay', 'sa', 'tl', 'new']",ENTP
1402,1654667469821472768,ningztwt,isha,"['d5', 'im', 'jamie', 'looking', 'interactive', 'moot', 'filo', 'moot', 'yung', 'maingay', 'sa', 'tl', 'new']",ENTP
1403,1127998085832036359,dollvoid13,Iza Laine,"['retook', 'mbti', 'test', 'dont', 'think', 'im', 'like', 'entp', 'previous', 'result', 'friend', 'whats', 'result', 'istp', 'moai']",ENTP
1404,1142392246790082560,sunnnyyy_6,Musyi 🍒➕,"['230506', 'instagram', 'story', 'update', 'q', 'heo', 'jiwon', 'miiisss', 'yooouuuloudly', 'cry', 'faceloudly', 'cry', 'faceloudly', 'cry', 'face', 'dont', 'cry', 'wrote', 'cutely']",ENTP
1405,1641771129382764546,Bae_SlayVion,zevion ★⁵ | love team au update 116-126,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1406,1628349306754437126,wataame_25253__,わたあめ,"['entpampinfj', 'magical', 'girl']",ENTP
1407,1350470186470567937,earlsofarms,Matteo,"['hello', 'intrigued', 'offer', 'although', 'believe', 'zodiac', 'sig']",ENTP
1408,966747576358854656,snowwhex,Snow ♡'s zen,"['thought', 'entj', 'long', 'time', 'literally', 'studied', 'everything', 'abt', 'mbti', 'figured']",ENTP
1409,1170558463958798336,cherrygirls_9,UNSO. (rest),"['bust', 'silhouette', 'whats', 'mbti', 'fox', 'entp']",ENTP
1410,2611528296,elinalaurico,only1,"['congratulation', 'sejeong', 'amp', 'sungjae', 'winning', 'top', 'excellent', 'actor', 'young', 'age', 'clapping', 'hand', 'definition', 'young', 'ric']",ENTP
1411,1599411349989527555,rob_cpt,rob.cpt,"['like', 'dry', 'humor', 'youd', 'think', 'istj', 'isfj', 'le', 'serious', 'entp', 'estp', 'quite', 'se']",ENTP
1412,1127817410579275777,sadevilz,トミー,"['gfs', 'art', 'u', 'mbti', 'style', 'entp', 'x', 'infj']",ENTP
1413,1585186847671562240,ctgDao,Ctgdao,"['artist', 'palette', 'gabby', 'reveal', '2', 'raise', 'ai', 'artist', 'palette', 'inventing', 'new', 'thing', 'exploring', 'endless', 'possibility', 'curious']",ENTP
1414,1542727264965885953,opelisyudii,🗯️ Cyrus!,"['right', 'anger', 'bubbleintroducing', 'cyrus', 'supremo', 'shehe', 'gfluid', 'aroace', 'bi', 'minor', 'intjentp', 'desi', 'dog']",ENTP
1415,943107104310566912,heyteyrey,jejeje dml,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1416,376462861,Silver4442,J.M Loreto - J.Mansion Studios 🏁,"['boi', 'billy', 'gene', 'lookin', 'fly', 'today', 'glad', 'decided', 'draw', 'he', 'combo', 'graffiti', 'newgrounds']",ENTP
1417,1393916674521190400,dreaqovw,andrea ★ ⁵,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
1418,1644919167672528898,yourstrulywon,୨⎯ won 🎟️ | !𝟱.𝗦𝗧𝗔𝗥 ✮,"['hi', 'im', 'amberliane', 'im', 'looking', 'interactive', 'moot', 'new', 'stantwt', 'sheher', 'filo', 'entp', 'looking', 'staymidzym']",ENTP
|