-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcodes.json
2267 lines (2267 loc) · 74.2 KB
/
codes.json
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
{
"incorrect_codes": [],
"existing_codes": [],
"codes": [
{
"name": "Earn $5000 a Month in Just 10 Minutes a Day with Pinterest | MemeGirls",
"code": "82193",
"id": "5ad32493-6ea6-4263-8ece-a5e0f3da7c97",
"link": "https://youtu.be/8h6p7sCXw7c"
} ,{
"name": "Bitcoin's Most Explosive Rally: How it Reached $90K | Part 4 of 6 | MemeFi",
"code": "30802",
"id": "1703ac3d-8edf-497f-b9a6-87e51af759c9",
"link": "https://youtu.be/s7b-NYZ4huc"
},
{
"name": "Best Hidden Companies for Earning Passive Money | MemeGirls",
"code": "53184",
"id": "3fb47ced-618a-4ddc-b98a-73b4b792cffb",
"link": "https://youtu.be/l7LcD7U4x5s"
},
{
"name": "The Future of Ethereum Is Here! Layer Two Solutions Explained | Part 1 of 5 | MemeFi",
"code": "16742",
"id": "eb7dd462-5b39-4b66-ad1d-18d1854d0817",
"link": "https://youtu.be/FDarvFkOGWg"
},
{
"name": "Best Cash Back Apps to Save Money While Shopping | MemeGirls",
"code": "71633",
"id": "dea8087d-c896-46c2-a39b-42f2a2fe2982",
"link": "https://youtu.be/jdnO5je_3UI"
},
{
"name": "Bull Run Is Coming? Here’s What to Watch For | Part 3 of 6 | MemeFi",
"code": "94615",
"id": "b6102c8c-a753-4272-8dea-7fb250c89dbc",
"link": "https://youtu.be/C9P5wBRc45c"
},
{
"name": "Bitcoin price $66K to $89K - What’s Behind Dramatic Price Swings? | Part 1 of 6 | MemeFi",
"code": "48628",
"id": "6ab6e636-b369-42e8-a837-3a8ac9d0f751",
"link": "https://youtu.be/r8wEAJFl9-8"
},
{
"name": "Future of Finance: Earn and Borrow on Your Terms with DeFi | Part 1 of 6 | MemeFi",
"code": "10687",
"id": "4fd98ef2-db04-4de2-9c1c-0c2c9fed0ff3",
"link": "https://youtu.be/-ClEPSUI3y4"
},
{
"name": "Staking for Beginners: Earn Your First $100 Step-by-Step | Part 6 of 6 | MemeFi",
"code": "81594",
"id": "5d5f9ede-8d5c-4039-8f0f-753e1c56e553",
"link": "https://youtu.be/SkpMXwLUcmI"
},
{
"name": "The Power of Words: Building Deep Connections Through Communication | MemeGirls",
"code": "38193",
"id": "23adc1a7-cc84-4ac4-8133-8970c9d47b3a",
"link": "https://youtu.be/NrP5gEU1bks"
},
{
"name": "5 Tools to Track Big Moves & Protect Your Gains | Crypto Whales | Part 3 of 6 | MemeFi",
"code": "73094",
"id": "05a609c6-3553-41c5-9129-96f257edb818",
"link": "https://youtu.be/BNPwuVIs6Vw"
},
{
"name": "Altcoins: Which Will Take Over the Crypto World? | Part 3 of 6 | MemeFi",
"code": "16753",
"id": "3b2b67bf-3bca-409d-8c9c-798276b90eac",
"link": "https://youtu.be/4XiTeFm6FcA"
},
{
"name": "Hidden Money Secrets to Achieve Financial Freedom | MemeGirls",
"code": "40189",
"id": "64a151e0-3745-4dd1-a32a-f0ea95374ecc",
"link": "https://youtu.be/apZwHPauzZE"
},
{
"name": "The 5 Secret Weapons Whales Use to Control the Market | Part 2 of 6 | MemeFi",
"code": "45103",
"id": "8728f1b2-bc1c-4bfb-b0d4-2ed3c1bad41c",
"link": "https://youtu.be/tkd0qGXRDrs"
},
{
"name": "Digital Assets Beyond Crypto: Earning from Tokenized Stocks",
"code": "63738",
"id": "f668e838-d198-493c-9571-8d97bd2759ab",
"link": "https://youtu.be/BsCLwGaho7U"
},
{
"name": "Best Game Apps to Make Extra Cash in Your Free Time | MemeGirls",
"code": "50129",
"id": "18014815-f5b5-4bd3-a484-24e9f4b56002",
"link": "https://youtu.be/vgLS9vMZRB8"
},
{
"name": "Altcoin Revolution: 5 Cryptos Taking Over the Market | Part 2 of 6 | MemeFi",
"code": "99924",
"id": "eaa07cec-2ba5-4517-b4da-e5da00463c4e",
"link": "https://youtu.be/hQp67KxO3ro"
},
{
"name": "NBA Goes Crypto: Coinbase Partnership Revealed",
"code": "57535",
"id": "ee0b73b9-6060-41bf-b718-ca7b70a7a6a3",
"link": "https://youtu.be/0yLNNX0h9_c"
},
{
"name": "How Quality Sleep Transforms Your Life | MemeGirls",
"code": "42171",
"id": "8eac5105-410a-4009-80e1-3fbba7680c07",
"link": "https://youtu.be/U1Y2lMlCleM"
},
{
"name": "Building Wealth with Fractional Ownership in Art & Collectibles",
"code": "38475",
"id": "5873ac62-3c2d-45e9-92b9-cd8ac6e052a3",
"link": "https://youtu.be/6hhPQf2mi5Y"
},
{
"name": "Crypto Whales: The Giants Behind Market Crashes | Part 1 of 6 | MemeFi",
"code": "56821",
"id": "3426a25f-0af6-488e-853d-d8ba2171dc6f",
"link": "https://youtu.be/70XuFqb5R8Y"
},
{
"name": "The Hunt for Satoshi Nakamoto: Controversial HBO’s Documentary | MemeFi News",
"code": "18264",
"id": "9dc542da-2545-47d7-9593-5558133f48e5",
"link": "https://youtu.be/4xm2uraTXX0"
},
{
"name": "Metaverse Real Estate Explained: Is It the Next Big Investment?",
"code": "38593",
"id": "ce10bc58-8a8e-4289-bdf7-537e16eb2b53",
"link": "https://youtu.be/r_QdDkzzvj4"
},
{
"name": "How Altcoins Are Creating Millionaires! | Part 1 of 6 | MemeFi",
"code": "80818",
"id": "4a3f4916-237c-4d66-a848-3674ad3077ef",
"link": "https://youtu.be/xWVi0W_COXM"
},
{
"name": "How To Turn Your Playlist into Profit | MemeGirls",
"code": "",
"id": "2ef4de9a-eb84-43dc-b5bb-46df23fb5578",
"link": "https://youtu.be/gKwHmAJP9M0"
},
{
"name": "New AI Tools for Investors: Get a Financial Edge in 2025",
"code": "28394",
"id": "bb90f3e2-e00a-4dc8-b071-fce79c465bea",
"link": "https://youtu.be/vEEjIRIktcQ"
},
{
"name": "Don’t Choose the Wrong CRYPTO Wallet! Compare Top Options | Part 6 of 6 | MemeFi",
"code": "65513",
"id": "e4a3e339-c7c8-4d06-b036-8d204f99cec8",
"link": "https://youtu.be/Oi0FPAQ3_3c"
},
{
"name": "Secret Guide to Making $100K as a Teen | MemeGirls",
"code": "21481",
"id": "1f0c67d6-7964-40b4-a2aa-35079ebf5319",
"link": "https://youtu.be/rBbeTSLcEbc"
},
{
"name": "Understanding Blockchain Layers: Which Level is Best for Investment?",
"code": "77845",
"id": "15424df1-70e8-481a-b143-e746349153f2",
"link": "https://youtu.be/RuOhsxSmbeA"
},
{
"name": "Where Will the Next $10k Retrodrop Come From? Future Trends | Part 6 of 6 | MemeFi",
"code": "66766",
"id": "685c9bdb-068d-439c-9018-0e2ec153625d",
"link": "https://youtu.be/4vNH8STEwWQ"
},
{
"name": "Leveraging ChatGPT for Side Hustles: 5 Ways to Earn with AI",
"code": "57839",
"id": "1b1ffc96-48e6-4119-be1c-e4a7c7580d12",
"link": "https://youtu.be/sBXkVYs-NWI"
},
{
"name": "Turn $100 into Earnings: Your Guide to Stock Market Profits | MemeGirls",
"code": "81038",
"id": "71c259e3-6001-46da-8566-71cfd227e05f",
"link": "https://youtu.be/kMmflT9YvFQ"
},
{
"name": "Is Trust Wallet Your Perfect Crypto Companion? Let’s Find Out! | Part 5 of 6 | MemeFi",
"code": "97045",
"id": "e69789fc-bac9-4068-b776-28cf3148ea03",
"link": "https://youtu.be/4Oogn9auO4c"
},
{
"name": "5 Ways to Profit in Web3 Without Investing Directly in Crypto",
"code": "63822",
"id": "76a0d827-446f-4a52-ad30-802458ee2870",
"link": "https://youtu.be/yI2sCtJyDD4"
},
{
"name": "Free Tokens or Hidden Trap? The Pros and Cons of Retrodrops | Part 5 of 6 | MemeFi",
"code": "89980",
"id": "43252419-0412-40d0-88ea-bb1347d8a5f5",
"link": "https://youtu.be/J0efK6L6ysc"
},
{
"name": "What is Soulbound Crypto and Why Could It Change Everything?",
"code": "17489",
"id": "03f89963-ec81-4f47-a765-b4379e63d157",
"link": "https://youtu.be/8KTD346IPrw"
},
{
"name": "How to Start a Successful Business with Less Than $100 | MemeGirls",
"code": "68196",
"id": "3fe22cd2-4eff-4d5a-8bd1-1326785113b4",
"link": "https://youtu.be/O7F7FB_riX8"
},
{
"name": "Using AI for Copywriting: Turn Words into Wealth",
"code": "49200",
"id": "e5a32800-b35b-4189-8f20-94bd427bcaaf",
"link": "https://youtu.be/usJ-pNJVlss"
},
{
"name": "Coinbase Wallet’s Power vs. Electrum’s Security – Choose Wisely | Part 4 of 6 | MemeFi",
"code": "22956",
"id": "edea9042-0aeb-49e9-91ec-07a1c8958ea6",
"link": "https://youtu.be/y3oXFk5suLI"
},
{
"name": "How to Buy and Trade Cryptos Like a Pro with Just $50",
"code": "53874",
"id": "d1138c89-fea0-4485-a366-3561759bd375",
"link": "https://youtu.be/6iYwCbJFaTM"
},
{
"name": "Shift Your Mindset and Unlock Your Full Potential | MemeGirls",
"code": "98522",
"id": "c01ad44a-461e-4d09-bfd0-b1f8b031de0e",
"link": "https://youtu.be/qOjd7ZCg40s"
},
{
"name": "Missed Out on Retrodrops Before? Here’s How to Qualify Next Time! | Part 4 of 6 | MemeFi",
"code": "13484",
"id": "4b2734e6-170a-46c7-9e7f-6ce5143742ab",
"link": "https://youtu.be/R_HxqEMQzVc"
},
{
"name": "The Top DAO Projects: How Decentralized Orgs Could Change Finance",
"code": "13484",
"id": "c865ff4f-26d4-4877-b525-fc8d48568c2a",
"link": "https://youtu.be/D2sRhcJAqWs"
},
{
"name": "Strengthen Your Relationships with These Communication Skills | MemeGirls",
"code": "31819",
"id": "d1e724ce-f090-4231-8953-df7ff7235e9a",
"link": "https://youtu.be/v6L8KBcJpFY"
},
{
"name": "Forget Passwords? Why ZenGo’s Simplicity is a Game-Changer | Part 3 of 6 | MemeFi",
"code": "78521",
"id": "5c47240f-482d-47fe-b7ec-418b431987c1",
"link": "https://youtu.be/Uh_AbrqJdTc"
},
{
"name": "5 Untapped Markets for Freelancers and Entrepreneurs in 2025",
"code": "83040",
"id": "a964179f-3d39-4dde-9999-da7fbaa27ec4",
"link": "https://youtu.be/rIw2ZDz7HTI"
},
{
"name": "Crypto Mining Without Hardware: A Beginner’s Guide to Cloud Mining",
"code": "09493",
"id": "ef17747d-87aa-4dbb-a415-c4c84d5c355f",
"link": "https://youtu.be/O7S7ZDra0-M"
},
{
"name": "Spot the Next Big Retrodrop! Strategies for Free Crypto | Part 3 of 6 | MemeFi",
"code": "20012",
"id": "beb3f9f3-6d87-4dba-807e-c268a26cbc8d",
"link": "https://youtu.be/rCVBbhdk5sw"
},
{
"name": "Top Financial Tips to Boost Your Wealth Fast | MemeGirls",
"code": "71920",
"id": "5df5c0f3-7f4b-4f5e-a142-4bea91feab9b",
"link": "https://youtu.be/xuuEuCiAyA8"
},
{
"name": "How to Build a 'No-Code' App and Make Money Without Coding Skills",
"code": "35902",
"id": "4e992c4c-3dfe-40af-9bde-26c43d4be6d9",
"link": "https://youtu.be/m2JFqG1roLY"
},
{
"name": "Exodus Hot Wallet: A Must-Have or Just Hype? | Part 2 of 6 | MemeFi",
"code": "35902",
"id": "7ab72e9f-f0a8-4177-b96b-10fe4a066b5f",
"link": "https://youtu.be/BMBgnCj8VtE"
},
{
"name": "Earn While You Play: Legit Money-Making Game Apps | MemeGirls",
"code": "20119",
"id": "cdc30cee-e8f3-4682-b0ee-f0ff3cebf353",
"link": "https://youtu.be/MNDuDslbf0I"
},
{
"name": "Crypto Taxes Made Simple: Avoid Pitfalls and Maximize Returns",
"code": "18483",
"id": "70e87d3f-5eac-4de5-826d-089d05771a8e",
"link": "https://youtu.be/W5Vckju0WoI"
},
{
"name": "Life-Changing Rewards: The Retrodrops That Created Instant Millionaires | Part 2 of 6 | MemeFi",
"code": "90901",
"id": "384310b7-f9a5-4f9e-811a-f38fd1474a6e",
"link": "https://youtu.be/7ANNwyaY1bA"
},
{
"name": "Investing in Micro Real Estate: Earn Big with Small Properties",
"code": "17486",
"id": "431d7c7a-8b51-427a-a2f2-714ba7963b25",
"link": "https://youtu.be/CpHmQ6J5ojk"
},
{
"name": "The Science of Sleep: How Rest Impacts Your Daily Success | MemeGirls",
"code": "41892",
"id": "598b52c4-0789-45e1-bd2d-c173b38213a2",
"link": "https://youtu.be/qSzmIKHOlz8"
},{
"name": "Top 3 High-Paying Remote Jobs You Can Start Today (No Degree Required)",
"code": "23816",
"id": "90cb0503-57a3-4367-a229-f0e857d50331"
},
{
"name": "Crypto Fees Got You Down? The Scalability Problem Explained | Part 4 of 5 | MemeFi",
"code": "84712"
},
{
"name": "How to Manage Your Money So You Never Go Broke| MemeGirls",
"code": "43102"
},
{
"name": "Accessing Content for Cents? How Crypto Makes It Happen | Part 3 of 5 | MemeFi",
"code": "65318"
},
{
"name": "How to Avoid Repeating Trading Mistakes—Pro Tips Inside | Part 4 of 5 | MemeFi",
"code": "47890"
},
{
"name": "Secret Celebreties Psychological Tricks and Techniques| MemeGirls",
"code": "99799"
},
{
"name": "Cutting Out Banks: Microtransactions Save You Time and Money | Part 2 of 5",
"code": "65318"
},
{
"name": "Best Purchases To Make in Your 20s | MemeGirls",
"code": "19015"
},
{
"name": "How to Stop Losing Money: Mastering Strategy & Financial Management | Part 3 of 5 | MemeFi",
"code": "88565"
},
{
"name": "The Secret to Cutting Crypto Fees: Microtransactions Explained | Part 1 of 5 | MemeFi",
"code": "96314"
},
{
"name": "How to Manage Your Money Effectively | MemeGirls",
"code": "43088"
},
{
"name": "Trading Blindfolded? The Dangers of Letting Emotions Take Over | Part 2 of 5 | MemeFi",
"code": "47685"
},
{
"name": "How to Start Your Own Business without Any Investments | MemeGirls",
"code": "10892"
},
{
"name": "The Future of Property Investment: Real Estate Tokenization | Part 5 of 5 | MemeFi",
"code": "48734"
},
{
"name": "How to Set Yourself Up for Success: Psychological Tricks and Techniques | MemeGirls",
"code": "42758"
},
{
"name": "How To Make $500 per Week in Telegram Games | MemeGirls",
"code": "42704"
},
{
"name": "Million-Dollar Deals Made Easy: Real Estate Tokenization in Action | Part 4 of 5 | MemeFi",
"code": "15928"
},
{
"name": "If You Want to Start a Business in 2025, Watch This Video | MemeGirls",
"code": "42527"
},
{
"name": "Top 10 Crypto Strategies – Which One Should You Try? | Part 7 of 7 | MemeFi",
"code": "77508"
},
{
"name": "Best Telegram Free CRYPTO AIRDROPS | MemeGirls",
"code": "97693"
},
{
"name": "How Tokenization Makes Real Estate Accessible for All | Part 3 of 5 | MemeFi",
"code": "86553"
},
{
"name": "How To SUCCEED in Business | SECRET STEPS | MemeGirls",
"code": "12501"
},
{
"name": "Set and Forget: Position Trading for Long-Term Profits | Part 6 of 7 | MemeFi",
"code": "17905"
},
{
"name": "28.7% of People Who Try This Make their 1st Dollar Online | MemeGirls",
"code": "42331"
},
{
"name": "Own Property Digitally: The Process of Real Estate Tokenization | Part 2 of 5 | MemeFi",
"code": "75612"
},
{
"name": "How To Earn $5,000 per Month with Telegram | MemeGirls",
"code": "42681"
},
{
"name": "Can You Profit from a Falling Market? Discover Reverse Trading | Part 5 of 7 | MemeFi",
"code": "83859"
},
{
"name": "How To Build A Business That Works | MemeGirls",
"code": "42491"
},
{
"name": "How To Start Your Small Business | Step by Step | MemeGirls",
"code": "42111"
},
{
"name": "Arbitrage and DCA: The Safest Crypto Trading Tactics Explained | Part 4 of 7 | MemeFi",
"code": "99944"
},
{
"name": "TELEGRAM MOBILE PLAY TO EARN CRYPTO GAMES | MemeGirls",
"code": "42666"
},
{
"name": "Turn Your Football Knowledge into Profits: The Sorare Experience | Part 5 of 5 | MemeFi",
"code": "72941"
},
{
"name": "The SECRET FORMULA That Launches Billion-Dollar Companies | MemeGirls",
"code": "42437"
},
{
"name": "Turn News into Profits: Mastering the Swing & News Trading Game | Part 3 of 7 | MemeFi",
"code": "53320"
},
{
"name": "How to Start a Business from Nothing | MemeGirls",
"code": "41323"
},
{
"name": "How to Automate Crypto Profits: Yearn Finance vs. Alchemix | Part 4 of 5 | MemeFi",
"code": "14287"
},
{
"name": "The MOST Profitable Tap-to-Earn Games in Telegram App in 2025 | MemeGirls",
"code": "42622"
},
{
"name": "Best Secrets of Successful Entrepreneurs | MemeGirls",
"code": "99335"
},
{
"name": "Gaming for Cash: How dApps Turn Your Skills into Crypto | Part 3 of 5 | MemeFi",
"code": "31954"
},
{
"name": "Why You Keep Losing Money in Crypto – Fix It NOW! | Part 1 of 7 | MemeFi",
"code": "11529"
},
{
"name": "How to Make $10,000/Month Writing Online | MemeGirls",
"code": "45688"
},
{
"name": "Passive Income in Crypto: The Secret Behind DeFi Lending | Part 2 of 5 | MemeFi",
"code": "95146"
},
{
"name": "How To Start Your Own Business From Zero | MemeGirls",
"code": "41211"
},
{
"name": "How I Made The Most Expensive Online Course in 2024 | MemeGirls",
"code": "11586"
},
{
"name": "Earn with dApps: How to Get Started with Zero Investment! | Part 1 of 5 | MemeFi",
"code": "65673"
},
{
"name": "How To Make Money on Text Writing Online | MemeGirls",
"code": "05432"
},
{
"name": "How Hackers Stole $450 Million in Bitcoin—And How to Keep Yours Safe | Part 4 of 5 | MemeFi",
"code": "23525"
},
{
"name": "How To Make Money Online With THESE APPS | MemeGirls",
"code": "52811"
},
{
"name": "Make the Most of a Bull Market: 7 Hidden Opportunities for Big Gains | Part 6 of 6 | MemeFi",
"code": "35688"
},
{
"name": "How To Make $10,000 per Month with THESE Niches | MemeGirls",
"code": "23700"
},
{
"name": "Pump and Dump Schemes: How Crypto Whales Crush Small Investors | Part 3 of 5 | MemeFi",
"code": "20234"
},
{
"name": "Bull Market Dangers: 8 Risk Factors That Could Hurt You | Part 5 of 6 | MemeFi",
"code": "63956"
},
{
"name": "The Truth About Rug Pulls and Fake ICOs: Crypto's Biggest Scams | Part 2 of 5 | MemeFi",
"code": "98236"
},
{
"name": "Before You Invest in Crypto, Watch Out for These Deadly Scams | Part 1 of 5 | MemeFi",
"code": "34669"
},
{
"name": "Bitcoin’s Greatest Bull Markets: The Biggest Price Surges in History | Part 3 of 6 | MemeFi",
"code": "57823"
},
{
"name": "Crypto Gold Rush 2024? Signs of the Next Bull Market Are Here! | Part 4 of 6 | MemeFi",
"code": "48675 "
},
{
"name": "Invest in Real Estate Without Millions? Here’s How! | Part 1 of 5 | MemeFi",
"code": "56912"
},
{
"name": "Lost Money Trading? Here’s What You’re Missing! | Part 1 of 5 | MemeFi",
"code": "57855"
},
{
"name": "Don’t Lose Your Crypto: 9 Simple Steps to Lock Down Your Wallet | Part 5 of 5 | MemeFi",
"code": "32397"
},
{
"name": "The Best Beginner Trading Strategies Explained – Don’t Miss Out! | Part 2 of 7 | MemeFi",
"code": "85554"
},
{
"name": "Greed in Trading: The Trap That Kills Profits—Avoid It Now! | Part 5 of 5 | MemeFi",
"code": "98354"
},
{
"name": "How to Retire As Early As Possible (Starting from $0)| MemeGirls",
"code": "94112"
},
{
"name": "Business Ideas You Can Start With $0| MemeGirls",
"code": "43002"
},
{
"name": "Cutting Out Banks: Microtransactions Save You Time and Money | Part 2 of 5 | MemeFi",
"code": "65318"
},
{
"name": "How To Retire in 7 Years | Starting With $0 | MemeGirls",
"code": "24112"
},
{
"name": "5 Steps to Start Your First Business | MemeGirls",
"code": "98213"
},
{
"name": "The Hidden Tech Behind CBDCs: Tokens vs. Accounts | Part 3 of 5 | MemeFi",
"code": "12980"
},
{
"name": "How I Retired Early On $300,000 (FULL GUIDE) | MemeGirls",
"code": "90012"
},
{
"name": "Different Crypto Wallets for Different Coins: Which Is Yours? | Part 2 of 5 | MemeFi",
"code": "65947"
},
{
"name": "Why Your Government Wants You to Use CBDCs | Part 2 of 5 | MemeFi",
"code": "79166"
},
{
"name": "Do This EVERY Time You Get Paid (Paycheck Routine) | MemeGirls",
"code": "14931"
},
{
"name": "I'm Broke, What Business Do I Start? | MemeGirls",
"code": "43067"
},
{
"name": "Send and Receive Crypto with Wallet Addresses | Part 1 of 5 | MemeFi",
"code": "32030"
},
{
"name": "Set Yourself Up For Success With These DAILY ROUTINES! | MemeGirls",
"code": "42820"
},
{
"name": "Digital Money Revolution: Are CBDCs the Future of Finance? | Part 1 of 5 | MemeFi",
"code": "02002"
},
{
"name": "BEST Purchases To Be RICH in Your 20s | MemeGirls",
"code": "89015"
},
{
"name": "You SHOULD To Buy This, If You Want Be RICH! | MemeGirls",
"code": "29115"
},
{
"name": "Public vs. Private Keys: How Wallet Addresses Protect Your Crypto | Part 3 of 5 | MemeFi",
"code": "59002"
},
{
"name": "How to Retire In 7 Years with $0 Capital (Step by Step Guide) | MemeGirls",
"code": "11055"
},
{
"name": "How Whales & Bulls Control the Market: Crypto’s Power Players | Part 2 of 5 | MemeFi",
"code": "76849"
},
{
"name": "Supercharge Your Crypto: The 3 Types of Liquidity Pools | Part 2 of 5 | MemeFi",
"code": "69422"
},
{
"name": "Crypto's Wild Ride: What Really Makes Prices Skyrocket or Crash? | Part 1 of 5 | MemeFi",
"code": "89400"
},
{
"name": "If I Was Broke, Here’s How I’d Start A Business | MemeGirls",
"code": "10182"
},
{
"name": "How to Start Earning with Your Own Crypto Wallet Address??? | MemeFi",
"code": "19773"
},
{
"name": "Unlock Passive Income: The Magic of Liquidity Pools | Part 1 of 5 | MemeFi",
"code": "40014"
},
{
"name": "Zero Investment Business Ideas in 2025 | MemeGirls",
"code": "11211"
},
{
"name": "Keeping Your Crypto Safe: Best Security Practices | Part 5 of 5 | MemeFi",
"code": "82571"
},
{
"name": "Never Buy THIS, If You Are 25 years old | MemeGirls",
"code": "99129"
},
{
"name": "How I Earned $1,000,000 at 18 Online | MemeGirls",
"code": "91055"
},
{
"name": "From Zero to Crypto: How to Generate Your Wallet Address | Part 4 of 5 | MemeFi",
"code": "32030"
},
{
"name": "Will Cryptos Survive the Rise of CBDCs? | Part 5 of 5 | MemeFi",
"code": "90926"
},
{
"name": "The Best Purchases I've EVER Made As A Minimalist | MemeGirls",
"code": "82115"
},
{
"name": "How to Start Earning with Your Own Crypto Wallet Address???| MemeFi",
"code": "19773"
},
{
"name": "How I Automate My Finances | MemeGirls",
"code": "44022"
},
{
"name": "How To Manage Your Money Like The 1% | MemeGirls",
"code": "43133"
},
{
"name": "Microtransactions Could Transform Digital Payments | Part 5 of 5 | MemeFi",
"code": "78943"
},
{
"name": "If I Was a Student Again, I'd Do This | MemeGirls",
"code": "42886"
},
{
"name": "How to Design Your Life (My Process For Achieving Goals) | MemeGirls",
"code": "53971"
},
{
"name": "Can CBDCs Protect Your Money or Make It Vulnerable? | Part 4 of 5 | MemeFi",
"code": "49776"
},
{
"name": "How to Design Your Life",
"code": "42844"
},
{
"name": "Cash In on the Craze: How to Make Bank During Crypto Fluctuations | Part 5 of 5 | MemeFi",
"code": "55671"
},
{
"name": "How I Fixed My Attention Span | MemeGirls",
"code": "27472"
},
{
"name": "Hedge Funds’ Dirty Tricks: How They Flip Crypto Markets | Part 4 of 5 | MemeFi",
"code": "42109"
},
{
"name": "Secret Steps To Real Self-Care | Step by Step Guide | MemeGirls",
"code": "98137"
},
{
"name": "Regulators vs. Bitcoin: How New Laws Spark Price Frenzies | Part 3 of 5 | MemeFi",
"code": "67401"
},
{
"name": "Where to Dive In: Top Platforms for Liquidity Pools Revealed | Part 4 of 5 | MemeFi",
"code": "66702"
},
{
"name": "How To Invest in 2024 (Step by Step Guide) | MemeGirls",
"code": "98137"
},
{
"name": "Think Liquidity Pools Are Risk-Free? Think Again! | Part 3 of 5 | MemeFi",
"code": "29101"
},
{
"name": "How To Make $4,163 with Your Hobby? | Step by Step Guide",
"code": "98917"
},
{
"name": "How to Turn Your Hobby into a Profitable Business? (FULL GUIDE) | MemeGirls",
"code": "22441"
},
{
"name": "Exclusive Airdrop And Freebies in MemeFi: Get While They Last!!",
"code": "89812"
},
{
"name": "How the Comfort Zone is Ruining Your Life | MemeGirls",
"code": "49191"
},
{
"name": "Thousands $ Won by Real People on MemeFi! Lambo Is Next! | MemeFi",
"code": "34510"
},
{
"name": "Become a Crypto Banker: How to Create Your Own Liquidity Pool | Part 5 of 5 | MemeFi",
"code": "24007"
},
{
"name": "Let Me Teach You How To Invest in 2024| MemeGirls",
"code": "88555"
},
{
"name": "The $200 Million Mistake: Could You Lose It All Too? | Part 1 of 5 | MeemFi",
"code": "58029"
},
{
"name": "Top 4 Trading Strategies Using the Fear and Greed Index | Part 5 of 5 | MeemFi",
"code": "79507"
},
{
"name": "I Left My Comfort Zone, you can too | MemeGirls",
"code": "95135"
},
{
"name": "First Bitcoin Ordinal Hits Auction at Christie’s| MemeFi News",
"code": "12389"
},
{
"name": "Principles For Teenagers To Become Millionaires | MemeGirls",
"code": "24123"
},
{
"name": "Create Your Own POAP: Step-by-Step Guide | Part 4 of 5 | MeemFi",
"code": "59381"
},
{
"name": "How To Stay HYPER Focused in a Distracted World | MemeGirls",
"code": "29317"
},
{
"name": "Is It Time to Buy or Sell? Interpreting the Index | Part 4 of 5 | MeemFi",
"code": "58475"
},
{
"name": "Adidas, Google & More: POAPs in the Real World | Part 3 of 5 | MeemFi",
"code": "57492"
},
{
"name": "Top 3 Crypto Strategies to Make Money Fast",
"code": "55219"
},
{
"name": "The Secret Way To Make Money From Your Hobby | MemeGirls",
"code": "29122"
},
{
"name": "The Numbers You Need to Know: Inside the Index | Part 3 of 5 | MeemFi",
"code": "57395"
},
{
"name": "How I Developed A Photographic Memory | MemeGirls",
"code": "89155"
},
{
"name": "Ultimate Beginner's Guide to Investing (Updated 2024) | MemeGirls",
"code": "68192"
},
{
"name": "Digital Tickets with Real Value: Exploring POAPs | Part 2 of 5 | MeemFi",
"code": "04469"
},
{
"name": "The Truth Behind Market Cycles: How the Index Works | Part 2 of 5 | MeemFi",
"code": "04936"
},
{
"name": "Get Out of Your Comfort Zone (You Need THIS!) | MemeGirls",
"code": "52115"
},
{
"name": "Arrest of Crime Syndicate Leader! $6.4M Crypto Seized! | MemeFi News",
"code": "55567"
},
{
"name": "Fear & Greed: The Secret Crypto Trading Tool Explained! | Part 1 of 5 | MeemFi",
"code": "57382"
},
{
"name": "How To Improve Your Focus and Not Get Atomized",
"code": "37171"
},
{
"name": "How to Turn Market Lows into Big Wins | Part 5 of 5 | MeemFi",
"code": "59204"
},
{
"name": "How to Get Paid in Crypto for Just Browsing the Web",
"code": "35368"
},
{
"name": "How To Make a $5,000 Profit From Your Hobby? | MemeGirls",
"code": "83223"
},
{
"name": "How to Survive the Inevitable Market Decline | Part 4 of 5 | MeemFi",
"code": "81534"
},
{
"name": "The Ultimate Seed Phrase Protection Guide | Part 5 of 5 | MeemFi",
"code": "72096"
},
{
"name": "You're Not Forgetful: My System for Memorising Everything | MemeGirls",
"code": "71847"
},
{
"name": "Protecting Your Crypto Like a Billionaire | Part 4 of 5 | MeemFi",
"code": "17451"
},
{
"name": "How Comfort Will Kill Your Soul | MemeGirls",
"code": "83112"
},
{
"name": "How to REALLY Achieve Your Goals in 2025| MemeGirls",
"code": "80921"
},
{
"name": "If I Started Investing in 2025, This is What I'd Do | MemeGirls",
"code": "51137"
},
{
"name": "How To Max Out Before Airdrop In MemeFi? Earn Millions Before It's Too Late!",
"code": "59063"
},
{
"name": "You Know It’s Bad. FIX your ATTENTION SPAN before it’s TOO LATE | MemeGirls",
"code": "80129"
},
{
"name": "Crypto Losses You Won’t Believe: Top Seed Phrase Mistakes | Part 3 of 5 | MeemFi",
"code": "50166"
},
{
"name": "How to Profit from Early Market Moves | Part 2 of 5 | MeemFi",
"code": "09175"
},
{
"name": "What Am I Doing To Make Money From My Hobby? | MemeGirls",
"code": "21225"
},
{
"name": "Earn Money with POAPs: The Future of Digital Souvenirs | Part 1 of 5 | MeemFi",
"code": "58393"
},
{
"name": "The FOMO Trap: What to Do When the Market Soars | Part 3 of 5 | MeemFi",
"code": "81906"
},
{
"name": "Think Your Seed Phrase Is Safe? Think Again! | Part 2 of 5 | MeemFi",
"code": "09533"
},
{
"name": "I Learned a System For Remembering Everything | MemeGirls",
"code": "28192"
},
{
"name": "Why Market Cycles Make You Rich or Broke | Part 1 of 5 | MeemFi",
"code": "92741"
},
{
"name": "How to ACTUALLY Stick to Your Goals (FULL GUIDE) | MemeGirls",
"code": "66179"
},
{
"name": "The AI-Powered Side Hustles You Can Start Today",
"code": "21372"
},
{
"name": "ONE Habit That Will Help You Get What You Want | MemeGirls",
"code": "67190"
},
{
"name": "Earning with POAPs: Strategies & New Developments | Part 5 of 5 | MeemFi",
"code": "58393"
},
{
"name": "Passive Income Ideas That You Can Start with Zero Money",
"code": "01030",
"id": "000e8c43-3c02-49fc-aece-5b87e2e3e9ac"
},
{
"name": "How to Build a Morning Routine for Focus and Motivation | MemeGirls",
"code": "11951",
"id": "55b6c95f-e266-4d2c-bfc7-4d7d3c2dda45"
},
{
"name": "Don’t Lose Money in Crypto Transfers! Strategies for Risk Reduction | Part 6 of 7 | MemeFi",
"code": "39077",
"id": "88ff4e6f-c82d-430b-8e83-5a1e45749685"
},
{
"name": "How to Design Your Life (My Process For Achieving Goals) | MemeGirls 2",
"code": "42844",
"id": "9a4d87ee-7963-48ac-bbf8-f8843df54e2e"
},
{
"name": "How to Design Your Life (My Process For Achieving Goals) | MemeGirls",
"code": "53971"
},
{