-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpt*.txt
5000 lines (5000 loc) · 195 KB
/
gpt*.txt
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
1,1,321,women in parliaments
2,1,321,women in parliaments power
3,1,321,women in parliaments process
4,1,321,women in parliaments poverty
5,1,321,women in parliaments cartoons
6,1,321,women in parliaments trade
7,1,321,women in parliaments inequality
8,1,321,women in parliaments formulation
9,1,321,women in parliaments constitutional
10,1,321,women in parliaments parliaments
11,1,321,women in parliaments electoral
12,1,321,women in parliaments energy
13,1,321,women in parliaments reform
14,1,321,women in parliaments judiciary
15,1,321,women in parliaments empowerment
16,1,321,women in parliaments journalism
17,1,321,women in parliaments opinion
18,1,321,women in parliaments roles
19,1,321,women in parliaments committees
20,1,321,women in parliaments activism
21,1,321,women in parliaments rights
22,1,321,women in parliaments ethics
23,1,321,women in parliaments delegations
24,1,321,women in parliaments protection
25,1,321,women in parliaments leadership
26,1,321,women in parliaments research
27,1,321,women in parliaments strategies
28,1,321,women in parliaments change
29,1,321,women in parliaments student
30,1,321,women in parliaments risk
31,1,321,women in parliaments courts
32,1,321,women in parliaments organizations
33,1,321,women in parliaments human
34,1,321,women in parliaments assemblies
35,1,321,women in parliaments communication
36,1,321,women in parliaments councils
37,1,321,women in parliaments gap
38,1,321,women in parliaments peacekeeping
39,1,321,women in parliaments environmental
40,1,321,women in parliaments international
41,1,321,women in parliaments local
42,1,321,women in parliaments social
43,1,321,women in parliaments public
44,1,321,women in parliaments transportation
45,1,321,women in parliaments cultural
46,1,321,women in parliaments women
47,1,321,women in parliaments legislative
48,1,321,women in parliaments employment
49,1,321,women in parliaments campaigns
50,1,321,women in parliaments national
51,1,321,women in parliaments climate
52,1,321,women in parliaments health
53,1,321,women in parliaments budget
54,1,321,women in parliaments analysis
55,1,321,women in parliaments religious
56,1,321,women in parliaments union
57,1,321,women in parliaments bodies
58,1,321,women in parliaments food
59,1,321,women in parliaments urban
60,1,321,women in parliaments civil
61,1,321,women in parliaments regional
62,1,321,women in parliaments administration
63,1,321,women in parliaments diplomacy
64,1,321,women in parliaments discourse
65,1,321,women in parliaments government
66,1,321,women in parliaments media
67,1,321,women in parliaments foreign
68,1,321,women in parliaments parliament
69,1,321,women in parliaments security
70,1,321,women in parliaments politics
71,1,321,women in parliaments representation
72,1,321,women in parliaments resolution
73,1,321,women in parliaments integration
74,1,321,women in parliaments investment
75,1,321,women in parliaments identity
76,1,321,women in parliaments labour
77,1,321,women in parliaments migration
78,1,321,women in parliaments female
79,1,321,women in parliaments positions
80,1,321,women in parliaments legislatures
81,1,321,women in parliaments education
82,1,321,women in parliaments conflict
83,1,321,women in parliaments municipal
84,1,321,women in parliaments management
85,1,321,women in parliaments disaster
86,1,321,women in parliaments opposition
87,1,321,women in parliaments society
88,1,321,women in parliaments youth
89,1,321,women in parliaments un
90,1,321,women in parliaments housing
91,1,321,women in parliaments policies
92,1,321,women in parliaments governance
93,1,321,women in parliaments advertising
94,1,321,women in parliaments political
95,1,321,women in parliaments service
96,1,321,women in parliaments forums
97,1,321,women in parliaments quota
98,1,321,women in parliaments policy
99,1,321,women in parliaments development
100,1,321,women in parliaments economic
1,1,336,black bear attacks
2,1,336,black bear attacks children
3,1,336,black bear attacks childrens
4,1,336,black bear attacks case
5,1,336,black bear attacks natural
6,1,336,black bear attacks water
7,1,336,black bear attacks dispose
8,1,336,black bear attacks morale
9,1,336,black bear attacks stories
10,1,336,black bear attacks industry
11,1,336,black bear attacks factors
12,1,336,black bear attacks dumps
13,1,336,black bear attacks migration
14,1,336,black bear attacks rates
15,1,336,black bear attacks presence
16,1,336,black bear attacks family
17,1,336,black bear attacks language
18,1,336,black bear attacks hunters
19,1,336,black bear attacks bears
20,1,336,black bear attacks regulations
21,1,336,black bear attacks impact
22,1,336,black bear attacks rural
23,1,336,black bear attacks fishing
24,1,336,black bear attacks effects
25,1,336,black bear attacks emergency
26,1,336,black bear attacks effect
27,1,336,black bear attacks wildlife
28,1,336,black bear attacks properly
29,1,336,black bear attacks adults
30,1,336,black bear attacks spray
31,1,336,black bear attacks black
32,1,336,black bear attacks camping
33,1,336,black bear attacks animal
34,1,336,black bear attacks grazing
35,1,336,black bear attacks trespassing
36,1,336,black bear attacks house
37,1,336,black bear attacks relationship
38,1,336,black bear attacks food
39,1,336,black bear attacks dogs
40,1,336,black bear attacks prey
41,1,336,black bear attacks pets
42,1,336,black bear attacks livestock
43,1,336,black bear attacks equipment
44,1,336,black bear attacks scent
45,1,336,black bear attacks cultures
46,1,336,black bear attacks attacks
47,1,336,black bear attacks urban
48,1,336,black bear attacks media
49,1,336,black bear attacks mating
50,1,336,black bear attacks encounter
51,1,336,black bear attacks hikers
52,1,336,black bear attacks scarcity
53,1,336,black bear attacks populations
54,1,336,black bear attacks suburban
55,1,336,black bear attacks policies
56,1,336,black bear attacks communities
57,1,336,black bear attacks outdoor
58,1,336,black bear attacks parks
59,1,336,black bear attacks welfare
60,1,336,black bear attacks deterrents
61,1,336,black bear attacks understanding
62,1,336,black bear attacks males
63,1,336,black bear attacks ecosystem
64,1,336,black bear attacks body
65,1,336,black bear attacks beekeeping
66,1,336,black bear attacks hunting
67,1,336,black bear attacks fire
68,1,336,black bear attacks encounters
69,1,336,black bear attacks dining
70,1,336,black bear attacks academia
71,1,336,black bear attacks store
72,1,336,black bear attacks government
73,1,336,black bear attacks asia
74,1,336,black bear attacks honey
75,1,336,black bear attacks survival
76,1,336,black bear attacks cosmetic
77,1,336,black bear attacks females
78,1,336,black bear attacks individual
79,1,336,black bear attacks legal
80,1,336,black bear attacks consequences
81,1,336,black bear attacks portrayals
82,1,336,black bear attacks cultural
83,1,336,black bear attacks drought
84,1,336,black bear attacks season
85,1,336,black bear attacks values
86,1,336,black bear attacks studies
87,1,336,black bear attacks diets
88,1,336,black bear attacks sharing
89,1,336,black bear attacks hiking
90,1,336,black bear attacks canada
91,1,336,black bear attacks vehicle
92,1,336,black bear attacks humans
93,1,336,black bear attacks activities
94,1,336,black bear attacks patterns
95,1,336,black bear attacks differences
96,1,336,black bear attacks vehicles
97,1,336,black bear attacks years
98,1,336,black bear attacks development
99,1,336,black bear attacks seasons
100,1,336,black bear attacks science
1,1,341,airport security
2,1,341,airport security terrorism
3,1,341,airport security screening
4,1,341,airport security efficient
5,1,341,airport security contagious
6,1,341,airport security state
7,1,341,airport security implications
8,1,341,airport security effective
9,1,341,airport security impact
10,1,341,airport security measures
11,1,341,airport security consumer
12,1,341,airport security safe
13,1,341,airport security baggage
14,1,341,airport security processes
15,1,341,airport security laws
16,1,341,airport security management
17,1,341,airport security intelligence
18,1,341,airport security airport
19,1,341,airport security enhance
20,1,341,airport security maintain
21,1,341,airport security can
22,1,341,airport security artificial
23,1,341,airport security communication
24,1,341,airport security sustainability
25,1,341,airport security ensuring
26,1,341,airport security types
27,1,341,airport security train
28,1,341,airport security implementing
29,1,341,airport security time
30,1,341,airport security identity
31,1,341,airport security major
32,1,341,airport security power
33,1,341,airport security detect
34,1,341,airport security effect
35,1,341,airport security breaches
36,1,341,airport security fuel
37,1,341,airport security spreading
38,1,341,airport security industry
39,1,341,airport security latest
40,1,341,airport security officials
41,1,341,airport security risk
42,1,341,airport security passengers
43,1,341,airport security perimeter
44,1,341,airport security luggage
45,1,341,airport security travelers
46,1,341,airport security blockchain
47,1,341,airport security protection
48,1,341,airport security cargo
49,1,341,airport security penalties
50,1,341,airport security international
51,1,341,airport security insider
52,1,341,airport security protect
53,1,341,airport security unauthorized
54,1,341,airport security employees
55,1,341,airport security parking
56,1,341,airport security detecting
57,1,341,airport security crime
58,1,341,airport security convenience
59,1,341,airport security flights
60,1,341,airport security passenger
61,1,341,airport security access
62,1,341,airport security differ
63,1,341,airport security air
64,1,341,airport security prevent
65,1,341,airport security behavior
66,1,341,airport security facilities
67,1,341,airport security airports
68,1,341,airport security comply
69,1,341,airport security hijackings
70,1,341,airport security checks
71,1,341,airport security privacy
72,1,341,airport security role
73,1,341,airport security board
74,1,341,airport security innovation
75,1,341,airport security global
76,1,341,airport security best
77,1,341,airport security data
78,1,341,airport security immigration
79,1,341,airport security traffic
80,1,341,airport security strategies
81,1,341,airport security biometric
82,1,341,airport security satellite
83,1,341,airport security personnel
84,1,341,airport security evolved
85,1,341,airport security system
86,1,341,airport security current
87,1,341,airport security natural
88,1,341,airport security taken
89,1,341,airport security human
90,1,341,airport security zones
91,1,341,airport security sophisticated
92,1,341,airport security databases
93,1,341,airport security airlines
94,1,341,airport security safety
95,1,341,airport security concerns
96,1,341,airport security conduct
97,1,341,airport security technologies
98,1,341,airport security benefits
99,1,341,airport security explosives
100,1,341,airport security trends
1,1,347,wildlife extinction
2,1,347,wildlife extinction habitat
3,1,347,wildlife extinction patterns
4,1,347,wildlife extinction saving
5,1,347,wildlife extinction trade
6,1,347,wildlife extinction tourism
7,1,347,wildlife extinction rescue
8,1,347,wildlife extinction rural
9,1,347,wildlife extinction corridors
10,1,347,wildlife extinction way
11,1,347,wildlife extinction knowledge
12,1,347,wildlife extinction education
13,1,347,wildlife extinction reptiles
14,1,347,wildlife extinction disease
15,1,347,wildlife extinction areas
16,1,347,wildlife extinction grasslands
17,1,347,wildlife extinction population
18,1,347,wildlife extinction welfare
19,1,347,wildlife extinction research
20,1,347,wildlife extinction wildlife
21,1,347,wildlife extinction south
22,1,347,wildlife extinction trafficking
23,1,347,wildlife extinction ecosystem
24,1,347,wildlife extinction forestry
25,1,347,wildlife extinction health
26,1,347,wildlife extinction poaching
27,1,347,wildlife extinction management
28,1,347,wildlife extinction wild
29,1,347,wildlife extinction hotspots
30,1,347,wildlife extinction rehabilitation
31,1,347,wildlife extinction india
32,1,347,wildlife extinction indigenous
33,1,347,wildlife extinction fragmentation
34,1,347,wildlife extinction marine
35,1,347,wildlife extinction america
36,1,347,wildlife extinction extinction
37,1,347,wildlife extinction threatened
38,1,347,wildlife extinction climate
39,1,347,wildlife extinction development
40,1,347,wildlife extinction issues
41,1,347,wildlife extinction traditional
42,1,347,wildlife extinction populations
43,1,347,wildlife extinction conservation
44,1,347,wildlife extinction plans
45,1,347,wildlife extinction conflict
46,1,347,wildlife extinction primates
47,1,347,wildlife extinction preservation
48,1,347,wildlife extinction protection
49,1,347,wildlife extinction ngos
50,1,347,wildlife extinction connectivity
51,1,347,wildlife extinction himalayas
52,1,347,wildlife extinction parks
53,1,347,wildlife extinction consequences
54,1,347,wildlife extinction reducing
55,1,347,wildlife extinction adaptation
56,1,347,wildlife extinction change
57,1,347,wildlife extinction endangered
58,1,347,wildlife extinction turtles
59,1,347,wildlife extinction sea
60,1,347,wildlife extinction species
61,1,347,wildlife extinction wetlands
62,1,347,wildlife extinction refugees
63,1,347,wildlife extinction conserving
64,1,347,wildlife extinction interventions
65,1,347,wildlife extinction renewable
66,1,347,wildlife extinction migration
67,1,347,wildlife extinction sustainability
68,1,347,wildlife extinction rainforest
69,1,347,wildlife extinction animal
70,1,347,wildlife extinction europe
71,1,347,wildlife extinction biodiversity
72,1,347,wildlife extinction efforts
73,1,347,wildlife extinction life
74,1,347,wildlife extinction mammals
75,1,347,wildlife extinction cooperation
76,1,347,wildlife extinction networks
77,1,347,wildlife extinction harms
78,1,347,wildlife extinction antarctica
79,1,347,wildlife extinction keeping
80,1,347,wildlife extinction preventing
81,1,347,wildlife extinction legislation
82,1,347,wildlife extinction rights
83,1,347,wildlife extinction sanctuaries
84,1,347,wildlife extinction african
85,1,347,wildlife extinction birds
86,1,347,wildlife extinction regulation
87,1,347,wildlife extinction keystone
88,1,347,wildlife extinction endangerment
89,1,347,wildlife extinction policy
90,1,347,wildlife extinction prevention
91,1,347,wildlife extinction africa
92,1,347,wildlife extinction loss
93,1,347,wildlife extinction crisis
94,1,347,wildlife extinction ecological
95,1,347,wildlife extinction uk
96,1,347,wildlife extinction arctic
97,1,347,wildlife extinction invasive
98,1,347,wildlife extinction international
99,1,347,wildlife extinction technology
100,1,347,wildlife extinction destruction
1,1,350,health and computer terminals
2,1,350,health and computer terminals illnesses
3,1,350,health and computer terminals disease
4,1,350,health and computer terminals metrics
5,1,350,health and computer terminals literacy
6,1,350,health and computer terminals analysis
7,1,350,health and computer terminals performance
8,1,350,health and computer terminals acupuncture
9,1,350,health and computer terminals depression
10,1,350,health and computer terminals analytics
11,1,350,health and computer terminals radiation
12,1,350,health and computer terminals responsibility
13,1,350,health and computer terminals assessments
14,1,350,health and computer terminals education
15,1,350,health and computer terminals training
16,1,350,health and computer terminals ai
17,1,350,health and computer terminals problems
18,1,350,health and computer terminals work
19,1,350,health and computer terminals leadership
20,1,350,health and computer terminals inspections
21,1,350,health and computer terminals associated
22,1,350,health and computer terminals gamification
23,1,350,health and computer terminals cancer
24,1,350,health and computer terminals management
25,1,350,health and computer terminals anxiety
26,1,350,health and computer terminals users
27,1,350,health and computer terminals legal
28,1,350,health and computer terminals programs
29,1,350,health and computer terminals back
30,1,350,health and computer terminals terminals
31,1,350,health and computer terminals fatigue
32,1,350,health and computer terminals high
33,1,350,health and computer terminals culture
34,1,350,health and computer terminals leg
35,1,350,health and computer terminals promotion
36,1,350,health and computer terminals virtual
37,1,350,health and computer terminals role
38,1,350,health and computer terminals implications
39,1,350,health and computer terminals stress
40,1,350,health and computer terminals providers
41,1,350,health and computer terminals conditions
42,1,350,health and computer terminals preventing
43,1,350,health and computer terminals trials
44,1,350,health and computer terminals workplace
45,1,350,health and computer terminals clinical
46,1,350,health and computer terminals design
47,1,350,health and computer terminals shoulder
48,1,350,health and computer terminals first
49,1,350,health and computer terminals telemedicine
50,1,350,health and computer terminals exercise
51,1,350,health and computer terminals augmented
52,1,350,health and computer terminals alerts
53,1,350,health and computer terminals strain
54,1,350,health and computer terminals discharge
55,1,350,health and computer terminals wrist
56,1,350,health and computer terminals safety
57,1,350,health and computer terminals teamwork
58,1,350,health and computer terminals acuity
59,1,350,health and computer terminals peer
60,1,350,health and computer terminals corporate
61,1,350,health and computer terminals monitoring
62,1,350,health and computer terminals sleep
63,1,350,health and computer terminals research
64,1,350,health and computer terminals workstation
65,1,350,health and computer terminals communication
66,1,350,health and computer terminals interventions
67,1,350,health and computer terminals pain
68,1,350,health and computer terminals mental
69,1,350,health and computer terminals risk
70,1,350,health and computer terminals responsibilities
71,1,350,health and computer terminals tunnel
72,1,350,health and computer terminals epidemiology
73,1,350,health and computer terminals wellness
74,1,350,health and computer terminals neck
75,1,350,health and computer terminals biomechanical
76,1,350,health and computer terminals fitness
77,1,350,health and computer terminals pressure
78,1,350,health and computer terminals reality
79,1,350,health and computer terminals posture
80,1,350,health and computer terminals environment
81,1,350,health and computer terminals burnout
82,1,350,health and computer terminals nutrition
83,1,350,health and computer terminals ergonomics
84,1,350,health and computer terminals claims
85,1,350,health and computer terminals healthcare
86,1,350,health and computer terminals carpal
87,1,350,health and computer terminals caused
88,1,350,health and computer terminals policies
89,1,350,health and computer terminals physical
90,1,350,health and computer terminals data
91,1,350,health and computer terminals eye
92,1,350,health and computer terminals rights
93,1,350,health and computer terminals employers
94,1,350,health and computer terminals blood
95,1,350,health and computer terminals therapy
96,1,350,health and computer terminals yoga
97,1,350,health and computer terminals chronic
98,1,350,health and computer terminals motivation
99,1,350,health and computer terminals repetitive
100,1,350,health and computer terminals chiropractic
1,1,362,human smuggling
2,1,362,human smuggling crackdown
3,1,362,human smuggling mexico
4,1,362,human smuggling individuals
5,1,362,human smuggling migrant
6,1,362,human smuggling drug
7,1,362,human smuggling organized
8,1,362,human smuggling prostitution
9,1,362,human smuggling operations
10,1,362,human smuggling profits
11,1,362,human smuggling international
12,1,362,human smuggling routes
13,1,362,human smuggling carribean
14,1,362,human smuggling patrol
15,1,362,human smuggling america
16,1,362,human smuggling danger
17,1,362,human smuggling organizations
18,1,362,human smuggling forced
19,1,362,human smuggling investigations
20,1,362,human smuggling ways
21,1,362,human smuggling child
22,1,362,human smuggling crime
23,1,362,human smuggling smugglers
24,1,362,human smuggling slavery
25,1,362,human smuggling dangerous
26,1,362,human smuggling laws
27,1,362,human smuggling borders
28,1,362,human smuggling migration
29,1,362,human smuggling across
30,1,362,human smuggling cartels
31,1,362,human smuggling fleeing
32,1,362,human smuggling children
33,1,362,human smuggling europe
34,1,362,human smuggling criminal
35,1,362,human smuggling mediterranean
36,1,362,human smuggling alien
37,1,362,human smuggling control
38,1,362,human smuggling human
39,1,362,human smuggling smuggled
40,1,362,human smuggling underground
41,1,362,human smuggling increased
42,1,362,human smuggling networks
43,1,362,human smuggling consequences
44,1,362,human smuggling security
45,1,362,human smuggling illegal
46,1,362,human smuggling statistics
47,1,362,human smuggling asia
48,1,362,human smuggling penalties
49,1,362,human smuggling refuges
50,1,362,human smuggling humanitarian
51,1,362,human smuggling rights
52,1,362,human smuggling global
53,1,362,human smuggling trafficking
54,1,362,human smuggling labor
55,1,362,human smuggling hotspots
56,1,362,human smuggling prosecutions
57,1,362,human smuggling falling
58,1,362,human smuggling violations
59,1,362,human smuggling border
60,1,362,human smuggling accomplices
61,1,362,human smuggling vehicles
62,1,362,human smuggling incidents
63,1,362,human smuggling rings
64,1,362,human smuggling modus
65,1,362,human smuggling people
66,1,362,human smuggling smuggling
67,1,362,human smuggling migrants
68,1,362,human smuggling south
69,1,362,human smuggling terrorism
70,1,362,human smuggling refugees
71,1,362,human smuggling repercussions
72,1,362,human smuggling africa
73,1,362,human smuggling prevent
74,1,362,human smuggling fighting
75,1,362,human smuggling unlawful
76,1,362,human smuggling addiction
77,1,362,human smuggling sex
78,1,362,human smuggling latin
79,1,362,human smuggling crossing
80,1,362,human smuggling transport
81,1,362,human smuggling policies
82,1,362,human smuggling multinational
83,1,362,human smuggling abuse
84,1,362,human smuggling immigration
85,1,362,human smuggling victims
86,1,362,human smuggling operandi
87,1,362,human smuggling crisis
88,1,362,human smuggling policy
89,1,362,human smuggling prey
90,1,362,human smuggling exploitation
91,1,362,human smuggling efforts
92,1,362,human smuggling cases
93,1,362,human smuggling risks
94,1,362,human smuggling breaking
95,1,362,human smuggling immigrants
96,1,362,human smuggling investigations
97,1,362,human smuggling illegally
98,1,362,human smuggling addiction
99,1,362,human smuggling danger
100,1,362,human smuggling refugees
1,1,363,transportation tunnel disasters
2,1,363,transportation tunnel disasters tornadoes
3,1,363,transportation tunnel disasters issues
4,1,363,transportation tunnel disasters toll
5,1,363,transportation tunnel disasters products
6,1,363,transportation tunnel disasters road
7,1,363,transportation tunnel disasters weather
8,1,363,transportation tunnel disasters falling
9,1,363,transportation tunnel disasters emergencies
10,1,363,transportation tunnel disasters leakage
11,1,363,transportation tunnel disasters safety
12,1,363,transportation tunnel disasters lane
13,1,363,transportation tunnel disasters landslides
14,1,363,transportation tunnel disasters entrance
15,1,363,transportation tunnel disasters pedestrian
16,1,363,transportation tunnel disasters terrorist
17,1,363,transportation tunnel disasters lighting
18,1,363,transportation tunnel disasters oil
19,1,363,transportation tunnel disasters overcrowding
20,1,363,transportation tunnel disasters transit
21,1,363,transportation tunnel disasters flood
22,1,363,transportation tunnel disasters measures
23,1,363,transportation tunnel disasters response
24,1,363,transportation tunnel disasters causing
25,1,363,transportation tunnel disasters earth
26,1,363,transportation tunnel disasters flooding
27,1,363,transportation tunnel disasters chemical
28,1,363,transportation tunnel disasters fire
29,1,363,transportation tunnel disasters explosions
30,1,363,transportation tunnel disasters poor
31,1,363,transportation tunnel disasters flooded
32,1,363,transportation tunnel disasters construction
33,1,363,transportation tunnel disasters caused
34,1,363,transportation tunnel disasters emergency
35,1,363,transportation tunnel disasters nighttime
36,1,363,transportation tunnel disasters factor
37,1,363,transportation tunnel disasters bombings
38,1,363,transportation tunnel disasters inadequate
39,1,363,transportation tunnel disasters error
40,1,363,transportation tunnel disasters human
41,1,363,transportation tunnel disasters communication
42,1,363,transportation tunnel disasters breakdown
43,1,363,transportation tunnel disasters blocking
44,1,363,transportation tunnel disasters natural
45,1,363,transportation tunnel disasters broken
46,1,363,transportation tunnel disasters malfunctions
47,1,363,transportation tunnel disasters leading
48,1,363,transportation tunnel disasters tsunamis
49,1,363,transportation tunnel disasters train
50,1,363,transportation tunnel disasters pipeline
51,1,363,transportation tunnel disasters passengers
52,1,363,transportation tunnel disasters crashes
53,1,363,transportation tunnel disasters times
54,1,363,transportation tunnel disasters collapse
55,1,363,transportation tunnel disasters maintenance
56,1,363,transportation tunnel disasters attacks
57,1,363,transportation tunnel disasters incidents
58,1,363,transportation tunnel disasters inhalation
59,1,363,transportation tunnel disasters tunnels
60,1,363,transportation tunnel disasters conditioning
61,1,363,transportation tunnel disasters inclement
62,1,363,transportation tunnel disasters dioxide
63,1,363,transportation tunnel disasters submarine
64,1,363,transportation tunnel disasters wind
65,1,363,transportation tunnel disasters schedules
66,1,363,transportation tunnel disasters derailments
67,1,363,transportation tunnel disasters mains
68,1,363,transportation tunnel disasters power
69,1,363,transportation tunnel disasters air
70,1,363,transportation tunnel disasters high
71,1,363,transportation tunnel disasters consumer
72,1,363,transportation tunnel disasters shipping
73,1,363,transportation tunnel disasters brake
74,1,363,transportation tunnel disasters smoke
75,1,363,transportation tunnel disasters failure
76,1,363,transportation tunnel disasters evacuation
77,1,363,transportation tunnel disasters derailment
78,1,363,transportation tunnel disasters fog
79,1,363,transportation tunnel disasters debris
80,1,363,transportation tunnel disasters rockslide
81,1,363,transportation tunnel disasters hydrogen
82,1,363,transportation tunnel disasters spills
83,1,363,transportation tunnel disasters propane
84,1,363,transportation tunnel disasters lack
85,1,363,transportation tunnel disasters closures
86,1,363,transportation tunnel disasters monoxide
87,1,363,transportation tunnel disasters mudslides
88,1,363,transportation tunnel disasters transportation
89,1,363,transportation tunnel disasters electrical
90,1,363,transportation tunnel disasters suffocation
91,1,363,transportation tunnel disasters involved
92,1,363,transportation tunnel disasters collisions
93,1,363,transportation tunnel disasters personnel
94,1,363,transportation tunnel disasters collapses
95,1,363,transportation tunnel disasters collapsed
96,1,363,transportation tunnel disasters exit
97,1,363,transportation tunnel disasters protocol
98,1,363,transportation tunnel disasters floods
99,1,363,transportation tunnel disasters ceiling
100,1,363,transportation tunnel disasters damage
1,1,367,piracy
2,1,367,piracy sea
3,1,367,piracy security
4,1,367,piracy legal
5,1,367,piracy nato
6,1,367,piracy intellectual
7,1,367,piracy association
8,1,367,piracy motives
9,1,367,piracy airline
10,1,367,piracy financing
11,1,367,piracy tanker
12,1,367,piracy terrorism
13,1,367,piracy laws
14,1,367,piracy payments
15,1,367,piracy law
16,1,367,piracy syndicates
17,1,367,piracy cyber
18,1,367,piracy malaysian
19,1,367,piracy trends
20,1,367,piracy regional
21,1,367,piracy pirates
22,1,367,piracy longshoremens
23,1,367,piracy states
24,1,367,piracy spanish
25,1,367,piracy trafficking
26,1,367,piracy pirate
27,1,367,piracy workers
28,1,367,piracy theft
29,1,367,piracy indonesian
30,1,367,piracy 21st
31,1,367,piracy attacks
32,1,367,piracy efforts
33,1,367,piracy federation
34,1,367,piracy mediterranean
35,1,367,piracy brazilian
36,1,367,piracy fishing
37,1,367,piracy asia
38,1,367,piracy networks
39,1,367,piracy korean
40,1,367,piracy global
41,1,367,piracy human
42,1,367,piracy literature
43,1,367,piracy incidents
44,1,367,piracy australia
45,1,367,piracy weapons
46,1,367,piracy union
47,1,367,piracy european
48,1,367,piracy prevent
49,1,367,piracy commerce
50,1,367,piracy chamber
51,1,367,piracy middle
52,1,367,piracy famous
53,1,367,piracy turkish
54,1,367,piracy independent
55,1,367,piracy movies
56,1,367,piracy hijacking
57,1,367,piracy ships
58,1,367,piracy italian
59,1,367,piracy private
60,1,367,piracy trade
61,1,367,piracy shipping
62,1,367,piracy consequences
63,1,367,piracy ransom
64,1,367,piracy aden
65,1,367,piracy russian
66,1,367,piracy australian
67,1,367,piracy maritime
68,1,367,piracy century
69,1,367,piracy organization
70,1,367,piracy communities
71,1,367,piracy network
72,1,367,piracy transport
73,1,367,piracy gulf
74,1,367,piracy operate
75,1,367,piracy cooperation
76,1,367,piracy japanese
77,1,367,piracy property
78,1,367,piracy standardization
79,1,367,piracy american
80,1,367,piracy german
81,1,367,piracy smuggling
82,1,367,piracy welfare
83,1,367,piracy industry
84,1,367,piracy bootlegging
85,1,367,piracy force
86,1,367,piracy tactics
87,1,367,piracy africa
88,1,367,piracy indian
89,1,367,piracy relations
90,1,367,piracy seas
91,1,367,piracy crimes
92,1,367,piracy statistics
93,1,367,piracy environmental
94,1,367,piracy south
95,1,367,piracy international
96,1,367,piracy seafarers
97,1,367,piracy high
98,1,367,piracy asian
99,1,367,piracy chinese
100,1,367,piracy nations
1,1,375,hydrogen energy
2,1,375,hydrogen energy space
3,1,375,hydrogen energy engineering
4,1,375,hydrogen energy sustainable
5,1,375,hydrogen energy solutions
6,1,375,hydrogen energy systems
7,1,375,hydrogen energy modeling
8,1,375,hydrogen energy testing
9,1,375,hydrogen energy transport
10,1,375,hydrogen energy electronic
11,1,375,hydrogen energy remote
12,1,375,hydrogen energy reliability
13,1,375,hydrogen energy projects
14,1,375,hydrogen energy innovations
15,1,375,hydrogen energy catalysts
16,1,375,hydrogen energy industry
17,1,375,hydrogen energy development
18,1,375,hydrogen energy potential
19,1,375,hydrogen energy locations
20,1,375,hydrogen energy commercialization
21,1,375,hydrogen energy durability
22,1,375,hydrogen energy study
23,1,375,hydrogen energy combined
24,1,375,hydrogen energy vehicles
25,1,375,hydrogen energy nanostructured
26,1,375,hydrogen energy green
27,1,375,hydrogen energy electricity
28,1,375,hydrogen energy heat
29,1,375,hydrogen energy mining
30,1,375,hydrogen energy industrial
31,1,375,hydrogen energy pilot
32,1,375,hydrogen energy processes
33,1,375,hydrogen energy drones
34,1,375,hydrogen energy system
35,1,375,hydrogen energy decentralized
36,1,375,hydrogen energy membranes
37,1,375,hydrogen energy renewable
38,1,375,hydrogen energy forklifts
39,1,375,hydrogen energy microgrids
40,1,375,hydrogen energy distributed
41,1,375,hydrogen energy aviation
42,1,375,hydrogen energy bicycles
43,1,375,hydrogen energy education
44,1,375,hydrogen energy breakthrough
45,1,375,hydrogen energy training
46,1,375,hydrogen energy research
47,1,375,hydrogen energy sources
48,1,375,hydrogen energy power
49,1,375,hydrogen energy backup
50,1,375,hydrogen energy reduction
51,1,375,hydrogen energy entrepreneurship
52,1,375,hydrogen energy trains
53,1,375,hydrogen energy partnership
54,1,375,hydrogen energy demonstration
55,1,375,hydrogen energy regulation
56,1,375,hydrogen energy economy
57,1,375,hydrogen energy generators
58,1,375,hydrogen energy goods
59,1,375,hydrogen energy submarines
60,1,375,hydrogen energy electrification
61,1,375,hydrogen energy marine
62,1,375,hydrogen energy aircraft
63,1,375,hydrogen energy transportation
64,1,375,hydrogen energy infrastructure
65,1,375,hydrogen energy opportunities
66,1,375,hydrogen energy grid
67,1,375,hydrogen energy landfills
68,1,375,hydrogen energy sustainability
69,1,375,hydrogen energy propulsion
70,1,375,hydrogen energy market
71,1,375,hydrogen energy rural
72,1,375,hydrogen energy performance
73,1,375,hydrogen energy emission
74,1,375,hydrogen energy plants
75,1,375,hydrogen energy standardization
76,1,375,hydrogen energy transfer
77,1,375,hydrogen energy assessment
78,1,375,hydrogen energy awareness
79,1,375,hydrogen energy source
80,1,375,hydrogen energy applications
81,1,375,hydrogen energy prototype
82,1,375,hydrogen energy boats
83,1,375,hydrogen energy cell
84,1,375,hydrogen energy funding
85,1,375,hydrogen energy buildings
86,1,375,hydrogen energy conversion
87,1,375,hydrogen energy deployment
88,1,375,hydrogen energy investment
89,1,375,hydrogen energy analysis
90,1,375,hydrogen energy discovery
91,1,375,hydrogen energy simulation
92,1,375,hydrogen energy exploration
93,1,375,hydrogen energy challenges
94,1,375,hydrogen energy energy
95,1,375,hydrogen energy stations
96,1,375,hydrogen energy ships
97,1,375,hydrogen energy hybrid
98,1,375,hydrogen energy efficiency
99,1,375,hydrogen energy hydrogen
100,1,375,hydrogen energy electrode
1,1,378,euro opposition
2,1,378,euro opposition fashion
3,1,378,euro opposition austerity
4,1,378,euro opposition reserve
5,1,378,euro opposition issue
6,1,378,euro opposition emigration
7,1,378,euro opposition technology
8,1,378,euro opposition workers
9,1,378,euro opposition deficit
10,1,378,euro opposition crisis
11,1,378,euro opposition western
12,1,378,euro opposition sweden
13,1,378,euro opposition transport
14,1,378,euro opposition framework
15,1,378,euro opposition services
16,1,378,euro opposition opinion
17,1,378,euro opposition irelands
18,1,378,euro opposition institutional
19,1,378,euro opposition belgian
20,1,378,euro opposition pressure
21,1,378,euro opposition national
22,1,378,euro opposition small
23,1,378,euro opposition exports
24,1,378,euro opposition peace
25,1,378,euro opposition danish
26,1,378,euro opposition banking
27,1,378,euro opposition bank
28,1,378,euro opposition finnish
29,1,378,euro opposition cost
30,1,378,euro opposition healthcare
31,1,378,euro opposition problems
32,1,378,euro opposition inflation
33,1,378,euro opposition environmental
34,1,378,euro opposition reluctance
35,1,378,euro opposition hostility
36,1,378,euro opposition pharmaceutical
37,1,378,euro opposition energy
38,1,378,euro opposition loss
39,1,378,euro opposition dissatisfaction
40,1,378,euro opposition impact
41,1,378,euro opposition rise
42,1,378,euro opposition drain
43,1,378,euro opposition imbalances
44,1,378,euro opposition systems
45,1,378,euro opposition entertainment
46,1,378,euro opposition youth
47,1,378,euro opposition french
48,1,378,euro opposition ineffectiveness
49,1,378,euro opposition hungarian
50,1,378,euro opposition control
51,1,378,euro opposition seniors
52,1,378,euro opposition symbolisms
53,1,378,euro opposition currency
54,1,378,euro opposition nature
55,1,378,euro opposition car
56,1,378,euro opposition rising
57,1,378,euro opposition aversion
58,1,378,euro opposition europe
59,1,378,euro opposition brexit
60,1,378,euro opposition polarisation
61,1,378,euro opposition debt
62,1,378,euro opposition policy
63,1,378,euro opposition hospitality
64,1,378,euro opposition norways
65,1,378,euro opposition ecb
66,1,378,euro opposition uncertainty
67,1,378,euro opposition portugals
68,1,378,euro opposition swiss
69,1,378,euro opposition icelandic
70,1,378,euro opposition identity
71,1,378,euro opposition education
72,1,378,euro opposition unemployment
73,1,378,euro opposition slovakian
74,1,378,euro opposition sovereignty
75,1,378,euro opposition regional
76,1,378,euro opposition austrian
77,1,378,euro opposition global
78,1,378,euro opposition political
79,1,378,euro opposition trade
80,1,378,euro opposition pension
81,1,378,euro opposition fiscal
82,1,378,euro opposition economies
83,1,378,euro opposition republics
84,1,378,euro opposition policies
85,1,378,euro opposition fishing
86,1,378,euro opposition dominance
87,1,378,euro opposition citizens
88,1,378,euro opposition adopt
89,1,378,euro opposition italy
90,1,378,euro opposition central
91,1,378,euro opposition corruption
92,1,378,euro opposition criticism
93,1,378,euro opposition greek
94,1,378,euro opposition countries
95,1,378,euro opposition financial
96,1,378,euro opposition lack
97,1,378,euro opposition disapproval
98,1,378,euro opposition opposition
99,1,378,euro opposition tourism
100,1,378,euro opposition campaigns