-
Notifications
You must be signed in to change notification settings - Fork 1
/
stack-overflow-prediction-data-2.json
3860 lines (3860 loc) · 160 KB
/
stack-overflow-prediction-data-2.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
{
"Data": {
"TotalTagViews": 726,
"TotalQuestionViews": 488,
"TagViews": {
"python": 17,
"javascript": 47,
"object": 6,
"java": 67,
"java-ee": 1,
"jvm": 8,
"sql": 19,
"sql-server": 5,
"git": 28,
"operating-system": 1,
"performance": 7,
"http": 10,
"database": 10,
"network-programming": 1,
"bash": 20,
"linux": 15,
"scripting": 4,
"json": 17,
"unix": 13,
"c#": 2,
"html": 8,
"xhtml": 1,
"mysql": 56,
"php": 48,
"rest": 4,
"concurrency": 3,
"wordpress": 1,
"scala": 75,
"shell": 17,
"security": 1,
"architecture": 1,
"tdd": 1,
"testing": 1,
"embedded": 1,
"statistics": 1,
"codeigniter": 1,
"zend-framework": 2,
"bigdata": 1,
"amazon-s3": 4,
"ajax": 3,
"google-analytics": 5,
"analytics": 4,
"optimization": 4,
"facebook": 10,
"gwt": 2,
"continuous-integration": 1,
"tcp": 1,
"amazon-ec2": 7,
"amazon-web-services": 14,
"osx": 2,
"r": 9,
"django": 1,
"graphics": 1,
"sql-server-2008": 2,
"akka": 8,
"servlets": 1,
"scalability": 1,
"tomcat": 2,
"solr": 1,
"ip": 2,
"github": 4,
"debugging": 2,
"eclipse": 2,
"oracle": 1,
"frameworks": 1,
"css": 2,
"playframework": 10,
"jquery": 8,
"algorithm": 2,
"swing": 1,
"jdbc": 1,
"lua": 3,
"twitter-bootstrap": 3,
"version-control": 2,
"nginx": 5,
"cassandra": 1,
"apache": 1,
"ubuntu": 1,
"dns": 1,
"debian": 2,
"haskell": 1,
"iphone": 2,
"ios": 3,
"web-applications": 1,
"node.js": 1,
"api": 3,
"matlab": 1,
"ruby-on-rails": 1,
"networking": 2,
"ssl": 2,
"jboss": 1,
"multithreading": 2,
"web-services": 1,
"android": 3,
"web": 1,
"angularjs": 1,
"numpy": 1,
"perl": 2,
"html5": 1,
"sockets": 1,
"java-8": 1,
"real-time": 1,
"objective-c": 1,
"apache-spark": 20,
"hadoop": 2,
"mapreduce": 1,
"ansible": 4,
"magento": 1,
"centos": 1,
"reactjs": 3,
"apache-kafka": 1
},
"CampaignViews": null,
"QuestionViews": [773, 18912, 37335, 45535, 47177, 61212, 74674, 135448, 149274, 174582, 175739, 213506, 216007, 229551, 298760, 313893, 339483, 352098, 356340, 365380, 369602, 374885, 493386, 493819, 506105, 510632, 538865, 559917, 610406, 640409, 674713, 758688, 766809, 793858, 818255, 834303, 856912, 862761, 898489, 922544, 949314, 951021, 971039, 976882, 986826, 1064403, 1092631, 1094173, 1129216, 1135245, 1186535, 1241801, 1262786, 1270944, 1279568, 1322732, 1361340, 1367373, 1412478, 1459656, 1463340, 1474954, 1481853, 1499269, 1503579, 1506459, 1587846, 1593440, 1597736, 1602934, 1620662, 1669277, 1669906, 1699958, 1712205, 1748129, 1786579, 1891797, 1987926, 2013547, 2019857, 2020812, 2090475, 2117771, 2149785, 2159434, 2190850, 2201925, 2237080, 2247105, 2371408, 2408908, 2415855, 2424552, 2591098, 2615697, 2669690, 2680389, 2699086, 2705389, 2715085, 2720014, 2790899, 2801882, 2817055, 2850369, 2851404, 3002605, 3058723, 3061273, 3065650, 3280006, 3290702, 3297048, 3313976, 3329641, 3342651, 3371326, 3394132, 3527856, 3531251, 3531703, 3585053, 3628374, 3630506, 3641819, 3650754, 3687358, 3845006, 3855127, 3902955, 3912753, 3914199, 3936565, 3996061, 4002340, 4078988, 4082622, 4114095, 4132927, 4136817, 4256438, 4263272, 4285185, 4286677, 4356289, 4366730, 4406417, 4420386, 4477638, 4536103, 4558707, 4561895, 4596390, 4737841, 4822471, 4834721, 4842759, 4846007, 4893642, 4930524, 4938170, 4967885, 5014632, 5083684, 5127838, 5159602, 5188871, 5213339, 5258126, 5293555, 5312205, 5317152, 5323589, 5343731, 5349062, 5362874, 5387156, 5397726, 5401992, 5497259, 5516106, 5516119, 5529718, 5566310, 5571744, 5666784, 5671719, 5685584, 5740906, 5751585, 5920837, 6000336, 6017431, 6046897, 6089294, 6115612, 6123425, 6220693, 6245570, 6249569, 6267564, 6270440, 6448163, 6492804, 6560639, 6593979, 6603015, 6612385, 6626238, 6632598, 6775671, 6780461, 6841333, 6867702, 6919121, 6986241, 7093860, 7099833, 7270544, 7310202, 7379106, 7410784, 7547509, 7574054, 7599519, 7602271, 7651293, 7679916, 7740972, 7830987, 7837763, 7845338, 8054018, 8062496, 8072921, 8085857, 8217764, 8369085, 8489829, 8537037, 8747827, 8763125, 8810998, 9094820, 9195778, 9201354, 9223574, 9229645, 9473876, 9529497, 9556579, 9594431, 9727637, 9733338, 9938098, 10033066, 10062262, 10158450, 10197559, 10236166, 10300868, 10375633, 10382916, 10400149, 10467272, 10541363, 10571709, 10588291, 10640662, 10711042, 10771140, 10839151, 10949959, 10963878, 11041729, 11055153, 11106886, 11133760, 11157552, 11176284, 11193676, 11237610, 11426087, 11470979, 11654450, 11803343, 11956710, 12081640, 12126991, 12156517, 12202021, 12517359, 12661114, 12664671, 12774709, 12830520, 12858457, 12868176, 12948809, 12952024, 13001483, 13042353, 13044805, 13051149, 13301965, 13398819, 13400000, 13403016, 13468785, 13608589, 13965858, 14046355, 14145432, 14216933, 14439582, 14763079, 14844780, 14861354, 15137308, 15161041, 15244644, 15251010, 15566350, 15568016, 15589880, 15613452, 15640287, 15656492, 15704756, 15835783, 15899544, 16133923, 16229742, 16313902, 16327105, 16360720, 16628725, 16686687, 17129963, 17143565, 17256040, 17415579, 17537571, 17541355, 17563726, 17605208, 17666391, 17823322, 18094826, 18204326, 18306362, 18321032, 18323292, 18489273, 18492576, 18569311, 18668556, 18829099, 19041549, 19166125, 19241680, 19261760, 19297520, 19309085, 19331293, 19345030, 19496919, 19516554, 19575348, 19642169, 19664666, 19808405, 20029412, 20036547, 20157938, 20175723, 20573459, 20596515, 20738722, 21159301, 21247653, 21406770, 21620406, 21811761, 21955560, 22169643, 22179405, 22338038, 22358281, 22412258, 22728508, 22909060, 22971705, 23147080, 23299332, 23816264, 23839437, 24015506, 24026348, 24085992, 24751751, 24952401, 24958558, 25068364, 25940403, 25991892, 26013592, 26179343, 26290735, 26562497, 26768459, 26852946, 26859360, 27003451, 27038640, 27173833, 27174469, 27198216, 27266550, 27304041, 27781187, 28082581, 28127119, 28349476, 28519265, 28529982, 28647926, 28769367, 28817940, 28901123, 29099115, 29121390, 29234622, 29383578, 29569239, 30162845, 30256695, 30512273, 30787411, 30838602, 30851244, 30886468, 30973774, 31045716, 31295711, 31330620, 31340868, 31358446, 31385976, 31394751, 31440413, 31789362, 31825352, 32471088, 32900862, 32932229, 33475229, 33510736, 34006538, 34087333, 34141151, 34192217, 34423644, 34455490, 34941410, 35016458, 35256817, 35383447, 35449548, 35502166, 35990482, 36140146, 36343209, 36932682, 37445054, 37959358, 39206694, 39261867, 39636792, 39715135, 39970360, 39981539, 39989771, 39990858, 40351720, 42780863, 42944455],
"InterestingTags": {
"mathoverflow.net": {
"gr.group-theory": 0.736750662326813,
"pr.probability": 0.119316644966602,
"reference-request": 0.0890290588140488,
"inequalities": 0.0871739536523819,
"at.algebraic-topology": 0.0848749205470085,
"co.combinatorics": 0.0841217339038849,
"big-list": 0.0817013829946518,
"nt.number-theory": 0.0762781426310539,
"ct.category-theory": 0.0756343826651573,
"rt.representation-theory": 0.0573177486658096,
"soft-question": 0.046064093708992,
"prime-numbers": 0.0403281822800636,
"polynomials": 0.0325453877449036,
"stochastic-processes": 0.0291677545756102,
"examples": 0.024491224437952,
"ho.history-overview": 0.0209088046103716,
"gt.geometric-topology": 0.0194353125989437,
"linear-algebra": 0.018264876678586,
"ag.algebraic-geometry": 0.0182282794266939,
"discrete-geometry": 0.0177117120474577,
"homotopy-theory": 0.0173933524638414,
"cohomology": 0.0170532688498497,
"graph-theory": 0.0167464483529329,
"measure-theory": 0.0158103462308645,
"fa.functional-analysis": 0.0155178159475327,
"mg.metric-geometry": 0.0154243940487504,
"lattices": 0.0150163881480694,
"probability-distributions": 0.0144751826301217,
"higher-category-theory": 0.0143257277086377,
"ac.commutative-algebra": 0.0142565155401826,
"abstract-algebra": 0.0137655744329095,
"matrices": 0.0137328766286373,
"real-analysis": 0.0136988572776318,
"harmonic-analysis": 0.0136812916025519,
"dg.differential-geometry": 0.0131896128877997,
"riemannian-geometry": 0.0127512086182833,
"sequences-and-series": 0.0127095719799399,
"ra.rings-and-algebras": 0.0122422259300947,
"homological-algebra": 0.0120283747091889,
"random-walk": 0.0119418017566204,
"gn.general-topology": 0.0106598120182753,
"diophantine-equations": 0.00988142751157284,
"cv.complex-variables": 0.00984535831958056,
"smooth-manifolds": 0.0093629639595747,
"algorithms": 0.00913594011217356,
"gm.general-mathematics": 0.00908773951232433,
"lie-algebras": 0.00885621551424265,
"fourier-analysis": 0.00870644953101873,
"lie-groups": 0.00837210472673178,
"complex-geometry": 0.00771878333762288,
"mp.mathematical-physics": 0.0077187274582684,
"lo.logic": 0.00759921222925186,
"convex-geometry": 0.00733536062762141,
"big-picture": 0.00689462991431355,
"vector-bundles": 0.00633934652432799,
"operator-theory": 0.00627687806263566,
"modular-forms": 0.00610841950401664,
"finite-fields": 0.00565048959106207,
"textbook-recommendation": 0.00547055387869477,
"ca.classical-analysis-and-odes": 0.00543227232992649,
"st.statistics": 0.00489848898723722,
"mathematics-education": 0.00479435222223401,
"differential-equations": 0.0047696097753942,
"euclidean-geometry": 0.00473438436165452,
"plane-geometry": 0.00471293833106756,
"elliptic-curves": 0.00469301082193851,
"differential-topology": 0.00433093542233109,
"analytic-number-theory": 0.00430219760164618,
"terminology": 0.00430029025301337,
"algebraic-number-theory": 0.00427925353869796,
"asymptotics": 0.00412183487787843,
"convexity": 0.00397801259532571,
"geometry": 0.0035969871096313,
"topological-groups": 0.00337325292639434,
"arithmetic-geometry": 0.00330245750956237,
"matrix-analysis": 0.00301627651788294,
"oc.optimization-and-control": 0.00294597842730582,
"convex-polytopes": 0.00293141114525497,
"qa.quantum-algebra": 0.00280130980536342,
"galois-theory": 0.00271018431521952,
"tag-removed": 0.00269609643146396,
"sobolev-spaces": 0.0026892526075244,
"moduli-spaces": 0.0025976172182709,
"riemann-surfaces": 0.00235370313748717,
"abelian-varieties": 0.00224893889389932,
"computer-science": 0.00220290804281831,
"sheaf-theory": 0.00219633220694959,
"open-problem": 0.00214806897565722,
"simplicial-stuff": 0.00213057361543179,
"determinants": 0.00209652399644256,
"set-theory": 0.00198874226771295,
"model-categories": 0.00172944716177881,
"deformation-theory": 0.00172287132591009,
"it.information-theory": 0.00169656798243523,
"automorphic-forms": 0.00167026452254504,
"stochastic-calculus": 0.00165711285080761,
"c-star-algebras": 0.00165711285080761,
"stacks": 0.00165053701493889,
"etale-cohomology": 0.00161108199972659,
"fields": 0.00159831065684557,
"geometric-group-theory": 0.0015855289530009,
"galois-representations": 0.00156505103223026,
"schemes": 0.00153874768875539,
"singularity-theory": 0.00149271672125906,
"banach-spaces": 0.00144021946471184,
"derived-categories": 0.00143353419844061,
"noncommutative-geometry": 0.00143353419844061,
"oa.operator-algebras": 0.0014286624500528,
"quadratic-forms": 0.00141380657441914,
"modules": 0.00140065490268171,
"noncommutative-algebra": 0.00140065490268171,
"quantum-groups": 0.00139407906681299,
"intuition": 0.00138092739507556,
"von-neumann-algebras": 0.00137435155920684,
"topos-theory": 0.00137435155920684,
"linear-programming": 0.00134147237986326,
"algebraic-k-theory": 0.00132832059171051,
"hopf-algebras": 0.00132832059171051,
"additive-combinatorics": 0.00130859308410436,
"combinatorial-geometry": 0.00127571390476078,
"3-manifolds": 0.00122503482270986,
"approximation-theory": 0.00122310710139573,
"motives": 0.00121653126552701,
"characteristic-p": 0.00121653126552701,
"markov-chains": 0.00119680375792086,
"computational-geometry": 0.00119022792205215,
"hodge-theory": 0.00118365208618343,
"stable-homotopy": 0.00114419695455581,
"algebraic-surfaces": 0.00113762111868709,
"manifolds": 0.00113104528281838,
"random-matrices": 0.00111514190211892,
"hilbert-spaces": 0.00111131777521223,
"riemann-zeta-function": 0.00107843847945333,
"order-theory": 0.00107575836591423,
"monoidal-categories": 0.00104555930010974,
"convex-optimization": 0.00100610428489745,
"computer-algebra": 0.000999594805762172,
"group-actions": 0.000992952496744692,
"semigroups": 0.000992952496744692,
"proof-theory": 0.000973225047346205,
"differential-operators": 0.000966649153269827,
"calculus-of-variations": 0.000966649153269827,
"l-functions": 0.000953497481532395,
"zeta-functions": 0.000940345809794962,
"langlands-conjectures": 0.000940345809794962,
"ds.dynamical-systems": 0.000939711462706327,
"homology": 0.000927194079849869,
"spectral-graph-theory": 0.000920618243981153,
"graph-colorings": 0.000919090525712818,
"books": 0.000887739064637572,
"intersection-theory": 0.000887739064637572,
"geometric-measure-theory": 0.000881163170561194,
"sp.spectral-theory": 0.000877897953614593,
"class-field-theory": 0.000874587334692478,
"permutations": 0.00087212969083339,
"curves-and-surfaces": 0.00083513226127252,
"career": 0.000828556425403804,
"computational-complexity": 0.000821225519757718,
"symmetric-groups": 0.000818460190203041,
"notation": 0.000815404753666371,
"diophantine-approximation": 0.000808828917797655,
"invariant-theory": 0.000808828917797655,
"coding-theory": 0.000808828917797655,
"game-theory": 0.000808828917797655,
"quantum-mechanics": 0.000802253081928939,
"kahler-manifolds": 0.000795677187852561,
"algebraic-groups": 0.000789377605542541,
"integral-transforms": 0.000769373844377697,
"spectral-sequences": 0.000769373844377697,
"complex-manifolds": 0.000769373844377697,
"profinite-groups": 0.000764790689572692,
"computational-number-theory": 0.00076279800850898,
"tensor-products": 0.00076279800850898,
"generating-functions": 0.000749646278563887,
"quantum-field-theory": 0.000749646278563887,
"banach-algebras": 0.000743070442695171,
"discrete-mathematics": 0.000736494606826454,
"peano-arithmetic": 0.000736494606826454,
"triangulated-categories": 0.000710191205143929,
"operads": 0.000710191205143929,
"partitions": 0.000710191205143929,
"recreational-mathematics": 0.000703615369275212,
"fractals": 0.000697039533406496,
"formal-languages": 0.000697039533406496,
"power-series": 0.000697039533406496,
"fundamental-group": 0.000697039533406496,
"subfactors": 0.00069046369753778,
"linear-pde": 0.00069046369753778,
"parabolic-pde": 0.000683887861669064,
"morse-theory": 0.000677577685564756,
"binomial-coefficients": 0.000677312025800347,
"eigenvector": 0.000670736189931631,
"nonlinear-optimization": 0.000670736189931631,
"convex-analysis": 0.000664160295855254,
"toric-varieties": 0.000664160295855254,
"monoids": 0.000664160295855254,
"posets": 0.000664160295855254,
"random-graphs": 0.000664160295855254,
"eigenvalues": 0.000659346231259406,
"classical-mechanics": 0.000651008624117821,
"foundations": 0.000651008624117821,
"mapping-class-groups": 0.000644432788249105,
"line-bundles": 0.000637856952380389,
"combinatorial-game-theory": 0.000637856952380389,
"connections": 0.000637856952380389,
"k3-surfaces": 0.000631281116511673,
"blow-ups": 0.000631281116511673,
"characteristic-classes": 0.000623908184934407,
"fourier-transform": 0.000618129386566579,
"entropy": 0.000611553550697863,
"fibre-bundles": 0.000604977714829147,
"norms": 0.000604977714829147,
"matrix-theory": 0.000604977714829147,
"ultrafilters": 0.000604977714829147,
"infinity-categories": 0.000598401878960431,
"number-fields": 0.000598401878960431,
"gromov-witten-theory": 0.000598401878960431,
"symmetric-functions": 0.000598401878960431,
"mathematical-writing": 0.000591826043091714,
"sheaf-cohomology": 0.000585250207222998,
"hilbert-schemes": 0.000585250207222998,
"fixed-point-theorems": 0.000585250207222998,
"hyperbolic-geometry": 0.000578985782340169,
"d-modules": 0.000578674313146621,
"polyhedra": 0.000578674313146621,
"boolean-algebras": 0.000578674313146621,
"real-algebraic-geometry": 0.000572098477277905,
"global-optimization": 0.000572098477277905,
"4-manifolds": 0.000565522641409189,
"reductive-groups": 0.000565522641409189,
"principal-bundles": 0.000558946805540472,
"perverse-sheaves": 0.000558946805540472,
"schwartz-distributions": 0.000558946805540472,
"mathematical-software": 0.000558946805540472,
"limits-and-convergence": 0.000558946805540472,
"special-functions": 0.00055683171376586,
"factorization": 0.000550112570635974,
"physics": 0.00054579513380304,
"p-adic-analysis": 0.00054579513380304,
"brownian-motion": 0.000539219239726663,
"tqft": 0.000539219239726663,
"free-groups": 0.000536695180926472,
"groupoids": 0.00052606756798923,
"galois-cohomology": 0.00052606756798923,
"foliations": 0.00052327784942463,
"teichmuller-theory": 0.000519491732120514,
"automorphism-groups": 0.000516569125466049,
"resolution-of-singularities": 0.000512915896251798,
"tiling": 0.000512915896251798,
"duality": 0.000506340060383081,
"continued-fractions": 0.000506340060383081,
"applications": 0.000506340060383081,
"gauge-theory": 0.000499764224514365,
"martingales": 0.000499764224514365,
"journals": 0.000493188330437988,
"cobordism": 0.000493188330437988,
"ramsey-theory": 0.000486612523673102,
"surfaces": 0.000486612523673102,
"arithmetic-progression": 0.000486612523673102,
"permutation-groups": 0.000483025680296123,
"statistical-physics": 0.000480036658700556,
"riemann-hypothesis": 0.000480036658700556,
"metric-spaces": 0.000480036658700556,
"computability-theory": 0.000475398468552157,
"numerical-linear-algebra": 0.000473460822831839,
"group-schemes": 0.000473460822831839,
"puzzle": 0.000473460822831839,
"string-theory": 0.000473460822831839,
"cryptography": 0.000466884986963123,
"spin-geometry": 0.000466884986963123,
"hypergeometric-functions": 0.000466884986963123,
"advice": 0.000466884986963123,
"dg-algebras": 0.000466884986963123,
"calabi-yau": 0.000460309121990576,
"topological-vector-spaces": 0.000460309121990576,
"flatness": 0.000460309121990576,
"geometric-invariant-theor": 0.000460309121990576,
"laplacian": 0.00045373328612186,
"loop-spaces": 0.000447157450253144,
"alexandrov-geometry": 0.000447157450253144,
"math-philosophy": 0.000446233287220821,
"classifying-spaces": 0.000440581585280597,
"local-rings": 0.000440581585280597,
"abelian-groups": 0.000436064845416695,
"unitary-representations": 0.000434005749411881,
"contact-geometry": 0.000434005749411881,
"adjoint-functors": 0.000427429913543165,
"fibration": 0.000427429913543165,
"extremal-graph-theory": 0.000427429913543165,
"coxeter-groups": 0.000427429913543165,
"gaussian": 0.000420854048570618,
"algebraic-combinatorics": 0.000420854048570618,
"lattice-theory": 0.000420854048570618,
"symplectic-topology": 0.000420854048570618,
"localization": 0.000420854048570618,
"p-adic-groups": 0.000420854048570618,
"integer-programming": 0.000420854048570618,
"reverse-math": 0.000420854048570618,
"definitions": 0.000420854048570618,
"coherent-sheaves": 0.000414278212701902,
"abelian-categories": 0.000414278212701902,
"amenability": 0.000414278212701902,
"rational-points": 0.000414278212701902,
"approximation-algorithms": 0.000414278212701902,
"combinatorial-group-theor": 0.00040923009510152,
"orthogonal-polynomials": 0.000407702376833186,
"simplicial-complexes": 0.000407702376833186,
"counterexamples": 0.000407702376833186,
"infinite-dim-manifolds": 0.000401126540964469,
"chern-classes": 0.000401126540964469,
"complex-dynamics": 0.000401126540964469,
"lie-algebra-cohomology": 0.000401126540964469,
"model-theory": 0.000398579868488014,
"measure-concentration": 0.000394550675991923,
"orbifolds": 0.000394550675991923,
"functional-equations": 0.000394550675991923,
"local-fields": 0.000394550675991923,
"conformal-geometry": 0.000387974840123206,
"shimura-varieties": 0.000387974840123206,
"valuation-theory": 0.000382395344786346,
"hecke-algebras": 0.00038139900425449,
"automata-theory": 0.00038139900425449,
"jacobians": 0.000374823139281943,
"quaternions": 0.000374823139281943,
"np": 0.000374823139281943,
"p-groups": 0.000368977955076844,
"young-tableaux": 0.000368247303413227,
"constructive-mathematics": 0.000368247303413227,
"grassmannians": 0.000368247303413227,
"applied-mathematics": 0.000368247303413227,
"potential-theory": 0.000361671467544511,
"algebraic-stacks": 0.000361671467544511,
"symbolic-dynamics": 0.000361671467544511,
"conformal-field-theory": 0.000361671467544511,
"point-set-topology": 0.00036101700970903,
"universal-algebra": 0.000356223696144298,
"haar-measure": 0.000355095602571964,
"trees": 0.000355095602571964,
"fusion-categories": 0.000355095602571964,
"nonstandard-analysis": 0.000355095602571964,
"clifford-algebras": 0.000348519766703248,
"hypergraph": 0.000348519766703248,
"ordinal-numbers": 0.000348519766703248,
"rational-functions": 0.000341943930834532,
"algebraic-graph-theory": 0.000341943930834532,
"pseudo-differential-opera": 0.000341943930834532,
"quantum-topology": 0.000335368094965816,
"matroid-theory": 0.000335368094965816,
"root-systems": 0.000335368094965816,
"combinatorial-optimizatio": 0.000335368094965816,
"metamathematics": 0.000335368094965816,
"flag-varieties": 0.000328792229993269,
"type-theory": 0.000328792229993269,
"characters": 0.000328725815052167,
"algebraic-cycles": 0.000322216394124553,
"gamma-function": 0.000322216394124553,
"projective-module": 0.000322216394124553,
"sums-of-squares": 0.000322216394124553,
"descent": 0.000322216394124553,
"picard-group": 0.000322216394124553,
"integer-sequences": 0.000322017120197415,
"regularity": 0.000315640558255836,
"multilinear-algebra": 0.000315640558255836,
"coalgebras": 0.000315640558255836,
"rigid-analytic-geometry": 0.000315640558255836,
"monads": 0.00030906469328329,
"taylor-series": 0.00030906469328329,
"smoothness": 0.00030906469328329,
"derived-functors": 0.000302488857414573,
"recurrences": 0.000302488857414573,
"braided-tensor-categories": 0.00028933715657331,
"cw-complexes": 0.00028933715657331,
"mathematical-modeling": 0.00028933715657331,
"p-adic-numbers": 0.00028933715657331,
"dirichlet-series": 0.00028933715657331,
"several-complex-variables": 0.00028933715657331,
"packing": 0.000282761320704594,
"integrable-systems": 0.000282761320704594,
"symmetric-spaces": 0.000282761320704594,
"interpolation": 0.000282761320704594,
"laplace-transform": 0.000282761320704594,
"ricci-flow": 0.000282761320704594,
"general-relativity": 0.000282761320704594,
"tannakian-category": 0.000282761320704594,
"homogeneous-spaces": 0.000276185484835878,
"heat-equation": 0.000276185484835878,
"equivariant": 0.000276185484835878,
"derived-algebraic-geometr": 0.000276185484835878,
"chain-complexes": 0.000276185484835878,
"traces": 0.000276185484835878,
"hochschild-cohomology": 0.000276185484835878,
"vector-spaces": 0.000275056285317987,
"index-theory": 0.000269609619863331,
"equivariant-homotopy": 0.000263033783994615,
"equivariant-cohomology": 0.000263033783994615,
"tropical-geometry": 0.000263033783994615,
"decidability": 0.000263033783994615,
"arithmetic-groups": 0.000263033783994615,
"continuity": 0.000263033783994615,
"transcend.-number-theory": 0.000263033783994615,
"elliptic-pde": 0.000258406304055825,
"divergent-series": 0.000256457948125899,
"extremal-combinatorics": 0.000256457948125899,
"formal-groups": 0.000256457948125899,
"combinatorial-designs": 0.000256457948125899,
"operator-norms": 0.000256457948125899,
"complex-multiplication": 0.000256457948125899,
"enumerative-geometry": 0.000256457948125899,
"combinatorics-on-words": 0.000256457948125899,
"compactifications": 0.000256457948125899,
"positivity": 0.000249882112257183,
"neron-models": 0.000249882112257183,
"euler-characteristics": 0.000243306261836551,
"spherical-geometry": 0.000243306261836551,
"enumerative-combinatorics": 0.000243306261836551,
"quantization": 0.00023673041141592,
"infinity-topos-theory": 0.00023673041141592,
"configuration-spaces": 0.00023673041141592,
"latex": 0.00023673041141592,
"axioms": 0.00023673041141592,
"nonnegative-matrices": 0.00023673041141592,
"unbounded-operators": 0.00023673041141592,
"weyl-group": 0.00023673041141592,
"planar-algebras": 0.000230154560995288,
"lower-bounds": 0.000230154560995288,
"locally-convex-spaces": 0.000230154560995288,
"geometry-of-numbers": 0.000230154560995288,
"harmonic-functions": 0.000230154560995288,
"geometric-analysis": 0.000230154560995288,
"rational-homotopy-theory": 0.000230154560995288,
"curvature": 0.000230154560995288,
"a-infinity-algebras": 0.000230154560995288,
"signal-analysis": 0.000230154560995288,
"ultrapowers": 0.000223578725126572,
"covering": 0.000223578725126572,
"polygons": 0.000223578725126572,
"closed-form-expressions": 0.000223578725126572,
"schrodinger-operators": 0.000223578725126572,
"modal-logic": 0.00021700287470594,
"classical-invariant-theor": 0.00021700287470594,
"algebraic-spaces": 0.00021700287470594,
"combinatorial-identities": 0.00021700287470594,
"isometries": 0.000210427024285309,
"higher-algebra": 0.000210427024285309,
"computational-group-theo": 0.000207969394978136,
"difference-equations": 0.000203851188416593,
"open-problems-list": 0.000203851188416593,
"analytic-functions": 0.000203851188416593,
"tensor": 0.000203851188416593,
"monodromy": 0.000203851188416593,
"ramification": 0.000203851188416593,
"fluid-dynamics": 0.000203851188416593,
"divisors-multiples": 0.000203851188416593,
"locales": 0.000203851188416593,
"fractional-calculus": 0.000203851188416593,
"minimal-model-program": 0.000203851188416593,
"groebner-bases": 0.000201260700123385,
"categorification": 0.000197275337995961,
"prime-number-theorem": 0.000197275337995961,
"lebesgue-measure": 0.000197275337995961,
"euclidean-lattices": 0.000197275337995961,
"continuum-hypothesis": 0.000197275337995961,
"stochastic-diff-equations": 0.000197275337995961,
"chess": 0.000197275337995961,
"formal-schemes": 0.000197275337995961,
"math-communication": 0.000194552005268633,
"fuchsian-groups": 0.000190699502127245,
"limit-theorems": 0.000190699502127245,
"translation": 0.000190699502127245,
"stability": 0.000190699502127245,
"infinite-combinatorics": 0.000184123651706614,
"dg-categories": 0.000184123651706614,
"homotopy-type-theory": 0.000184123651706614,
"billiards": 0.000184123651706614,
"integral-geometry": 0.000184123651706614,
"symmetry": 0.000184123651706614,
"extended-tqft": 0.000184123651706614,
"conjectures": 0.000184123651706614,
"geometric-probability": 0.000184123651706614,
"estimation-theory": 0.000184123651706614,
"motivation": 0.000184123651706614,
"matrix-equations": 0.000184123651706614,
"teaching": 0.000183967800694518,
"modular-rep-theory": 0.000181134630111046,
"presentations-of-groups": 0.000181134630111046,
"chern-simons-theory": 0.000177547801285982,
"compactness": 0.000177547801285982,
"absolute-galois-group": 0.000177547801285982,
"analytic-geometry": 0.000177547801285982,
"symmetric-polynomials": 0.000170971965417266,
"problem-solving": 0.000170971965417266,
"catalan-numbers": 0.000164396114996634,
"coarse-moduli-spaces": 0.000164396114996634,
"positive-characteristic": 0.000164396114996634,
"universal-property": 0.000164396114996634,
"heights": 0.000164396114996634,
"exponential-polynomials": 0.000164396114996634,
"micro-local-analysis": 0.000164396114996634,
"cohen-macaulay-rings": 0.000157820279127918,
"green-function": 0.000157820279127918,
"differential-calculus": 0.000157820279127918,
"sumsets": 0.000157820279127918,
"incidence-geometry": 0.000157820279127918,
"stable-homotopy-category": 0.000157820279127918,
"fano-varieties": 0.000157820279127918,
"isoperimetry": 0.000157820279127918,
"inverse-problems": 0.000157820279127918,
"noncommutative-rings": 0.000157820279127918,
"eisenstein-series": 0.000157820279127918,
"nilpotent-groups": 0.000157820279127918,
"heegaard-floer-homology": 0.000154299865243956,
"integral-kernel": 0.000151244428707287,
"frechet-manifold": 0.000151244428707287,
"integral-operators": 0.000151244428707287,
"etale-covers": 0.000151244428707287,
"ample-bundles": 0.000151244428707287,
"hyperbolic-pde": 0.000151244428707287,
"independence-results": 0.000151244428707287,
"morita-equivalence": 0.000151244428707287,
"derham-cohomology": 0.000151244428707287,
"short-exact-sequences": 0.000151244428707287,
"kernels": 0.000151244428707287,
"classification": 0.00014759118494112,
"linear-orders": 0.000144668578286655,
"path-connected": 0.000144668578286655,
"homological-dimension": 0.000144668578286655,
"perturbation": 0.000144668578286655,
"exposition": 0.000144668578286655,
"experimental-mathematics": 0.000144668578286655,
"sampling": 0.000144668578286655,
"linear-groups": 0.000144668578286655,
"determinacy": 0.000144668578286655,
"borel-sets": 0.000144668578286655,
"sieve-theory": 0.000144668578286655,
"arithmetic-functions": 0.000144668578286655,
"chow-groups": 0.000144668578286655,
"ring-spectra": 0.000144668578286655,
"inner-model-theory": 0.000138092742417939,
"hyperelliptic-curves": 0.000138092742417939,
"sociology-of-math": 0.000138092742417939,
"matrix-inverse": 0.000138092742417939,
"surgery-theory": 0.000138092742417939,
"congruences": 0.000138092742417939,
"symmetric-monoidal-catego": 0.000138092742417939,
"bayesian": 0.000138092742417939,
"elliptic-surfaces": 0.000138092742417939,
"loop-groups": 0.000138092742417939,
"matching-theory": 0.000131516891997308,
"filters": 0.000131516891997308,
"quasiconformal": 0.000131516891997308,
"curves": 0.000131516891997308,
"kac-moody-algebras": 0.000131516891997308,
"holonomy": 0.000131516891997308,
"weights": 0.000131516891997308,
"cycles": 0.000131516891997308,
"expander-graphs": 0.000131516891997308,
"selberg-class": 0.000131516891997308,
"roots-of-unity": 0.000131516891997308,
"differential-forms": 0.000131516891997308,
"covering-spaces": 0.000124941056128591,
"goldbach-type-problems": 0.000124941056128591,
"random-functions": 0.000124941056128591,
"surreal-numbers": 0.000124941056128591,
"perfect-numbers": 0.000124941056128591,
"proof-assistants": 0.000124941056128591,
"conic-sections": 0.000124941056128591,
"data-analysis": 0.000124941056128591,
"wavelets": 0.00011836520570796,
"cardinal-arithmetic": 0.00011836520570796,
"perturbation-theory": 0.00011836520570796,
"geometric-constructions": 0.00011836520570796,
"plethysm": 0.00011836520570796,
"20-questions": 0.00011836520570796,
"hyperplane-arrangements": 0.00011836520570796,
"local-cohomology": 0.00011836520570796,
"arxiv": 0.00011836520570796,
"constructibility": 0.00011836520570796,
"decomposition-theorem": 0.00011836520570796,
"solvable-groups": 0.000114047732495237,
"adeles": 0.000111789362563286,
"trace-formula": 0.000111789362563286,
"heuristics": 0.000111789362563286,
"maass-forms": 0.000111789362563286,
"affine-grassmannian": 0.000111789362563286,
"irrational-numbers": 0.000111789362563286,
"automorphisms": 0.000111789362563286,
"sparse-matrices": 0.000111789362563286,
"stone-cech": 0.000111789362563286,
"alternative-proof": 0.000111789362563286,
"axiom-of-choice": 0.000106424988189247,
"fukaya-category": 0.000105213512142655,
"exceptional-groups": 0.000105213512142655,
"supermanifolds": 0.000105213512142655,
"analytic-continuation": 0.000105213512142655,
"elementary-proofs": 0.000105213512142655,
"q-analogs": 0.000105213512142655,
"effective-results": 0.000105213512142655,
"mathjobs": 0.000105213512142655,
"hausdorff-spaces": 0.000105213512142655,
"lagrangian-submanifolds": 0.000105213512142655,
"complete-intersection": 9.86376689979807E-05,
"modular-tensor-categories": 9.86376689979807E-05,
"completion": 9.86376689979807E-05,
"rigidity": 9.86376689979807E-05,
"projective-resolution": 9.86376689979807E-05,
"cotangent-complex": 9.86376689979807E-05,
"hamiltonian-graphs": 9.86376689979807E-05,
"central-simple-algebras": 9.86376689979807E-05,
"economics": 9.86376689979807E-05,
"half-integral-weight": 9.86376689979807E-05,
"canonical-bases": 9.86376689979807E-05,
"cones": 9.86376689979807E-05,
"bibliography": 9.20618258533068E-05,
"modular-group": 9.20618258533068E-05,
"2-knots": 9.20618258533068E-05,
"frobenius-algebras": 9.20618258533068E-05,
"bernoulli-numbers": 9.20618258533068E-05,
"peer-review": 9.20618258533068E-05,
"symbolic-computation": 9.20618258533068E-05,
"generalized-functions": 9.20618258533068E-05,
"permanent": 9.20618258533068E-05,
"vertex-algebras": 9.20618258533068E-05,
"induced-representations": 9.20618258533068E-05,
"lie-superalgebras": 9.20618258533068E-05,
"magma": 9.20618258533068E-05,
"quadrics": 9.20618258533068E-05,
"torus-action": 9.20618258533068E-05,
"bessel-functions": 9.20618258533068E-05,
"schur-functors": 9.20618258533068E-05,
"virasoro-algebra": 8.54859827086329E-05,
"weyl-algebra": 8.54859827086329E-05,
"formal-proof": 8.54859827086329E-05,
"schubert-calculus": 8.54859827086329E-05,
"directed-graph": 8.54859827086329E-05,
"critical-point-theory": 8.54859827086329E-05,
"embeddings": 8.54859827086329E-05,
"classical-groups": 8.54859827086329E-05,
"super-algebra": 8.54859827086329E-05,
"erdos": 8.54859827086329E-05,
"extension": 8.54859827086329E-05,
"trigonometric-sums": 8.54859827086329E-05,
"slick-proof": 8.54859827086329E-05,
"regularization": 8.54859827086329E-05,
"group-rings": 8.54859827086329E-05,
"noncommutative-topology": 8.54859827086329E-05,
"definability": 8.54859827086329E-05,
"quadratic-reciprocity": 8.54859827086329E-05,
"anabelian-geometry": 8.54859827086329E-05,
"computational-topology": 8.54859827086329E-05,
"stick-knots": 8.54859827086329E-05,
"conferences": 8.05042800493538E-05,
"ergodic-theory": 8.04200099082664E-05,
"lie-algebroids": 7.89101395639591E-05,
"torsion": 7.89101395639591E-05,
"convention": 7.89101395639591E-05,
"character-varieties": 7.89101395639591E-05,
"tropical-arithmetic": 7.89101395639591E-05,
"metric-embeddings": 7.89101395639591E-05,
"new-foundations": 7.89101395639591E-05,
"bimodules": 7.89101395639591E-05,
"filtrations": 7.89101395639591E-05,
"convolution": 7.89101395639591E-05,
"operator-spaces": 7.89101395639591E-05,
"symplectic-group": 7.89101395639591E-05,
"division-rings": 7.89101395639591E-05,
"popularization": 7.89101395639591E-05,
"reading-list": 7.89101395639591E-05,
"banach-manifold": 7.89101395639591E-05,
"rational-curves": 7.89101395639591E-05,
"digits": 7.89101395639591E-05,
"hopf-fibration": 7.23342891433276E-05,
"hermitian": 7.23342891433276E-05,
"implicit-function-theorem": 7.23342891433276E-05,
"elliptic-cohomology": 7.23342891433276E-05,
"quasi-coherent-modules": 7.23342891433276E-05,
"chromatic-homotopy": 7.23342891433276E-05,
"affine-geometry": 7.23342891433276E-05,
"octonions": 7.23342891433276E-05,
"wave-equation": 7.23342891433276E-05,
"pcf-theory": 7.23342891433276E-05,
"sat": 7.23342891433276E-05,
"geodesics": 7.23342891433276E-05,
"jets": 7.23342891433276E-05,
"chaos": 6.57584459986538E-05,
"ordered-fields": 6.57584459986538E-05,
"global-fields": 6.57584459986538E-05,
"paracompactness": 6.57584459986538E-05,
"tangent-distributions": 6.57584459986538E-05,
"hahn-banach-theorem": 6.57584459986538E-05,
"oeis": 6.57584459986538E-05,
"2-categories": 6.57584459986538E-05,
"nilpotent-orbits": 6.57584459986538E-05,
"primitive-roots": 6.57584459986538E-05,
"abstract-nonsense": 6.57584459986538E-05,
"sub-riemannian-geometry": 6.57584459986538E-05,
"formality": 6.57584459986538E-05,
"linear-regression": 6.57584459986538E-05,
"birch-swinnerton-dyer": 6.57584459986538E-05,
"conjugacy-classes": 6.03782100370154E-05,
"locally-ringed-spaces": 5.91826028539799E-05,
"differential-algebra": 5.91826028539799E-05,
"simplicial-presheaves": 5.91826028539799E-05,
"computation": 5.91826028539799E-05,
"ade-classifications": 5.91826028539799E-05,
"growth-rate": 5.91826028539799E-05,
"mapping-space": 5.91826028539799E-05,
"nisnevich-topology": 5.91826028539799E-05,
"galois-descent": 5.91826028539799E-05,
"simplicial-volume": 5.91826028539799E-05,
"toeplitz-operators": 5.91826028539799E-05,
"anosov-systems": 5.91826028539799E-05,
"flags": 5.91826028539799E-05,
"isomorphism-testing": 5.91826028539799E-05,
"non-positive-curvature": 5.91826028539799E-05,
"regular-rings": 5.91826028539799E-05,
"ising-model": 5.91826028539799E-05,
"smooth-structures": 5.91826028539799E-05,
"citations": 5.91826028539799E-05,
"hida-theory": 5.91826028539799E-05,
"sage": 5.91826028539799E-05,
"restricted-lie-algebras": 5.91826028539799E-05,
"feynman-integral": 5.91826028539799E-05,
"profunctors": 5.26067560713273E-05,
"grothendieck-rings": 5.26067560713273E-05,
"non-associative-algebras": 5.26067560713273E-05,
"quasimodular-forms": 5.26067560713273E-05,
"quadratic-programming": 5.26067560713273E-05,
"intuitionism": 5.26067560713273E-05,
"character-theory": 5.26067560713273E-05,
"elimination-theory": 5.26067560713273E-05,
"log-geometry": 5.26067560713273E-05,
"fibered-categories": 5.26067560713273E-05,
"cohomological-dimension": 5.26067560713273E-05,
"square-free": 5.26067560713273E-05,
"siegel-modular-forms": 5.26067560713273E-05,
"mathscinet": 5.26067560713273E-05,
"algorithmic-randomness": 5.26067560713273E-05,
"heisenberg-groups": 5.26067560713273E-05,
"simplicial-categories": 5.26067560713273E-05,
"six-operations": 5.26067560713273E-05,
"gaga": 5.26067560713273E-05,
"visualization": 5.26067560713273E-05,
"obstruction-theory": 5.26067560713273E-05,
"exact-categories": 4.60309129266534E-05,
"jordan-algebras": 4.60309129266534E-05,
"o-minimal": 4.60309129266534E-05,
"artin-ring": 4.60309129266534E-05,
"schur-multipliers": 4.60309129266534E-05,
"stratifications": 4.60309129266534E-05,
"cup-product": 4.60309129266534E-05,
"cyclotomic-fields": 4.60309129266534E-05,
"cech-cohomology": 4.60309129266534E-05,
"reflection-groups": 4.60309129266534E-05,
"projective-morphisms": 4.60309129266534E-05,
"image-processing": 4.60309129266534E-05,
"p-laplace": 4.60309129266534E-05,
"dual-pairs": 4.60309129266534E-05,
"associated-graded": 4.60309129266534E-05,
"r-matrix": 4.60309129266534E-05,
"chromatic-polynomial": 4.60309129266534E-05,
"separable-algebras": 4.60309129266534E-05,
"pontrjagin-duality": 4.60309129266534E-05,
"generalized-smooth-spaces": 4.60309129266534E-05,
"engineering-mathematics": 4.60309129266534E-05,
"cyclic-spaces": 3.94550697819795E-05,
"algebraic-complexity": 3.94550697819795E-05,
"formalization": 3.94550697819795E-05,
"ringed-spaces": 3.94550697819795E-05,
"complete-positivity": 3.94550697819795E-05,
"dirichlet-forms": 3.94550697819795E-05,
"hadamard-product": 3.94550697819795E-05,
"discrete-morse-theory": 3.94550697819795E-05,
"bioinformatics": 3.94550697819795E-05,
"symmetric-algebras": 3.94550697819795E-05,
"euclidean-domain": 3.94550697819795E-05,
"software": 3.94550697819795E-05,
"normal-subgroups": 3.94550697819795E-05,
"hilbert-manifolds": 3.94550697819795E-05,
"relation-algebra": 3.94550697819795E-05,
"grothendieck-construction": 3.94550697819795E-05,
"torsion-theory": 3.94550697819795E-05,
"seifert-fiber-spaces": 3.94550697819795E-05,
"partition-of-unity": 3.94550697819795E-05,
"linkage": 3.94550697819795E-05,
"primitive-elements": 3.94550697819795E-05,
"diagram-chase": 3.94550697819795E-05,
"pullback": 3.94550697819795E-05,
"tate-shafarevich-groups": 3.94550697819795E-05,
"valuative-criteria": 3.94550697819795E-05,
"graph-distance": 3.94550697819795E-05,
"cofibrations": 3.94550697819795E-05,
"filtered-algebras": 3.94550697819795E-05,
"w-algebras": 3.94550697819795E-05,
"thermodynamic-formalism": 3.94550697819795E-05,
"kk-theory": 3.94550697819795E-05,
"t-structure": 3.94550697819795E-05,
"accessible-categories": 3.94550697819795E-05,
"nilpotent-matrices": 3.94550697819795E-05,
"quadrature": 3.94550697819795E-05,
"pl-manifolds": 3.94550697819795E-05,
"grants": 3.28792229993269E-05,
"unit-fractions": 3.28792229993269E-05,
"categorical-logic": 3.28792229993269E-05,
"surreal-analysis": 3.28792229993269E-05,
"free-lie-algebras": 3.28792229993269E-05,
"combinatorial-topology": 3.28792229993269E-05,
"species": 3.28792229993269E-05,
"paradox": 3.28792229993269E-05,
"voting-theory": 3.28792229993269E-05,
"orthogonal-groups": 3.28792229993269E-05,
"laurent-polynomials": 3.28792229993269E-05,
"monster": 3.28792229993269E-05,
"sites": 3.28792229993269E-05,
"hall-algebras": 3.28792229993269E-05,
"social-choice": 3.28792229993269E-05,
"multiverse-of-sets": 3.28792229993269E-05,
"homotopy-groups-of-sphere": 3.28792229993269E-05,
"outer-automorphisms": 3.28792229993269E-05,
"fibered-products": 3.28792229993269E-05,
"hodge-structure": 3.28792229993269E-05,
"flips-flops": 3.28792229993269E-05,
"spectral-triples": 3.28792229993269E-05,
"kodaira-dimension": 3.28792229993269E-05,
"deligne-lusztig-theory": 3.28792229993269E-05,
"diophantine-geometry": 3.28792229993269E-05,
"geometric-quantization": 3.28792229993269E-05,
"einstein-theory": 3.28792229993269E-05,
"differential-galois-theor": 3.28792229993269E-05,
"combinatorial-number-theo": 3.28792229993269E-05,
"algebraic-theory": 2.63033780356636E-05,
"integral-quadratic-forms": 2.63033780356636E-05,
"equitable-partition": 2.63033780356636E-05,
"bitcoins": 2.63033780356636E-05,
"cohomology-operations": 2.63033780356636E-05,
"contraction-mapping": 2.63033780356636E-05,
"arithmetic-topology": 2.63033780356636E-05,
"iterated-integral": 2.63033780356636E-05,
"primitive-ideal": 2.63033780356636E-05,
"prufer-domain": 2.63033780356636E-05,
"hypergroups": 2.63033780356636E-05,
"nauty": 2.63033780356636E-05,
"local-systems": 2.63033780356636E-05,
"fuzziness": 2.63033780356636E-05,
"koszul-algebras": 2.63033780356636E-05,
"hamiltonian-paths": 2.63033780356636E-05,
"arithmetic-scheme": 2.63033780356636E-05,
"schubert-cells": 2.63033780356636E-05,
"multiplicative-number-the": 2.63033780356636E-05,
"orbit-method": 2.63033780356636E-05,
"leibniz-algebras": 2.63033780356636E-05,
"pbw-theorems": 2.63033780356636E-05,
"reshetikhin-turaev": 2.63033780356636E-05,
"belyi": 2.63033780356636E-05,
"characteristic-2": 2.63033780356636E-05,
"fractions": 2.63033780356636E-05,
"fibre-products": 2.63033780356636E-05,
"shape-theory": 2.63033780356636E-05,
"fitting-ideals": 2.63033780356636E-05,
"internal-groupoids": 2.63033780356636E-05,
"computational-linguistics": 1.97275348909898E-05,
"divided-powers": 1.97275348909898E-05,
"database-theory": 1.97275348909898E-05,
"commuting-variety": 1.97275348909898E-05,
"hurwitz-theory": 1.97275348909898E-05,
"thesis": 1.97275348909898E-05,
"set-valued-analysis": 1.97275348909898E-05,
"nets": 1.97275348909898E-05,
"discrete-series": 1.97275348909898E-05,
"differential-graded-lie-a": 1.97275348909898E-05,
"icm-2010": 1.97275348909898E-05,
"grothendieck-riemann-roch": 1.97275348909898E-05,
"coherence": 1.97275348909898E-05,
"space-filling-curves": 1.97275348909898E-05,
"vanishing": 1.97275348909898E-05,
"msc": 1.97275348909898E-05,
"fans": 1.97275348909898E-05,
"maurer-cartan-equation": 1.97275348909898E-05,
"pushforward": 1.97275348909898E-05,
"internalization": 1.97275348909898E-05,