-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1618 lines (1618 loc) · 131 KB
/
Copy pathdata.csv
File metadata and controls
1618 lines (1618 loc) · 131 KB
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
Formula ✕ Heat of formation ✕ Band gap ✕ Work function (avg. if finite dipole) ✕ Cond. band minimum ✕ Fermi level ✕ Monolayer reported DOI ✕ Related COD id ✕ Related ICSD id ✕ Val. band maximum ✕ Unique ID ✕
Ca4As4 -0.743 0.998 2.781 -1.024 -1.523 - - 22388 -2.022 9c8195c5d3d9574071ab0a4e9bee18bf
In2Se2 -0.5 1.63 4.59 -2.271 -3.086 - 1540841 - -3.901 3310c144fbd885512e402ae4bfa0f167
Sc4S6 -1.691 1.515 4.567 -2.166 -2.924 - - 650834 -3.681 4c34c883c58df565a4462db01f23e0ae
Zr3B2H2S2 -0.636 0.0 2.709 - 2.265 - - - - 9fdc5929a57de6242d5d98df65edb58d
Zr2Te10 -0.514 0.191 4.489 -2.292 -2.387 - - 653212 -2.483 ea81af3673bb0fbfae897eb07d52a25e
Al2MgSe4 -0.962 1.064 4.304 -0.789 -1.321 - - 83363 -1.853 ff0d878ada0a1d346b0c016298dc70c1
Ca2Mn2Si2 -0.231 0.0 2.858 - -0.666 - 1539705 - - 7056c9df17f92d80242d1d1ea7fc308f
Cr2Br2O2 -1.438 0.501 5.181 -2.647 -2.897 - 1534386 - -3.147 be766c1579aa7ef746cea3565209d534
Hf2Ge2Te8 -0.464 0.565 4.243 -1.658 -1.94 - 2218123 - -2.223 6e42a376b593c041e23a6e4654830e13
Ti3C2H2O2 -1.295 0.0 1.986 - 2.615 10.1126/science.1241488 - - - d5176a7f348c834c6393568d3178d513
In4I4Te4 -0.451 1.732 5.048 -2.420 -3.286 - 1525202 - -4.152 d0ddf75738f0af22a287bbe4342eaaa1
Li2Cl2O4 -0.765 3.347 3.632 -0.966 -2.64 - 2014617 - -4.313 bdbb91b74852bf96d50ce2efef8bd4c8
Na2H2O2 -1.365 2.802 2.742 -0.738 -2.139 - 2310820 - -3.540 f3bea84c8a9c02ad42f40f11094c6c80
Nb2Br4Se4 -0.804 1.096 4.692 -2.259 -2.807 - 4031460 - -3.355 a463e0ac089504bafcbf164156e01a6b
Nb3Cl7Te -1.269 0.772 4.937 -2.670 -3.056 - - 79213 -3.442 3fcd14e922acc0b4add41e63ddddc1c6
Ni2Ta4S10 -0.967 0.0 5.417 - -3.299 - - 61147 - 8206acfa12e00a214a7f443407104656
Pd2O6Se2 -0.646 1.12 4.831 -2.762 -3.322 - 4333283 - -3.882 ac9eccef38e50bbfc3885ea553178b88
Pt4Tl2Te6 -0.423 0.663 4.069 -1.781 -2.112 - - 78787 -2.443 98cb0d179387a5aaffcf6e3a76c7572b
Sc4I4O4 -2.597 1.792 4.69 -1.088 -1.984 - - 419335 -2.880 5578fcf25c3b627b16fbf01935a39e89
Ta3I7Te -0.465 0.643 4.45 -2.000 -2.321 - - 82792 -2.643 642b88ff1e8544a284cad3fd5a97668e
W2O12Sb4 -1.722 1.745 6.088 -2.355 -3.227 - - 75595 -4.100 f3af02ae18d9598c1782bff00e2d17a0
Zr2Cl2N2 -1.885 1.923 5.771 -1.689 -2.651 - 1521250 - -3.612 89b9ddac32779526cc0a7350b2afbe95
In2Se2 -0.534 1.321 5.234 -0.617 -1.278 - - - -1.939 595e8cdc6120bcb9ab1d335a1acde4e3
Cu4Cl4H4O4 -0.712 0.403 6.52 -4.624 -4.825 - 9014716 - -5.027 c1b8c203bdb69eb8a920984309d23e71
HfNa2H6O6 -1.683 4.113 3.44 -0.597 -2.653 - 1522053 - -4.710 9ee86957087e80854be885f48704bc20
Li6H2O8Te2 -1.682 4.037 3.249 -0.112 -2.13 - 1517993 - -4.148 30a7fe1fc2231be8fc424e7f8210ac84
Na2PtH6O6 -1.142 2.835 3.192 -0.891 -2.308 - - 251042 -3.726 c96833c89dbc14257fd8e27d091f4201
Sn2F2O6P2 -2.106 3.985 4.807 -1.163 -3.156 - 2106656 - -5.148 3f0effc4dc2db1f7a4d4fb47cbc323eb
Mn3C2F2 -0.755 0.0 6.244 - -0.387 - - - - 7f8ca727f01dab15b17a6a2562b2b4ba
Hf4C3H2O2 -1.263 0.0 2.341 - 3.878 - - - - 6c0a659f12f5ac212e395fc96a80ddc8
Nb3C2 -0.033 0.0 4.408 - 1.981 - - - - b56980b1dced63a53dbcb4affa1a7257
Ti3N2 -0.985 0.0 4.598 - 1.186 - - - - 6fc3bba88c8f14a08c4212284290eb16
Ti4C3F2 -1.635 0.0 4.573 - 2.062 - - - - fe9a9c58c5b96d896f1fbb826aad6653
Mn4N3O2 -0.632 0.0 6.603 - 0.829 - - - - 849c2be3b71258e3d721c11972628f2d
Sc4C3 -0.322 0.0 3.035 - 1.517 - - - - 112caf5763c9a024f775fdc667fc66a4
V4N3 -0.593 0.0 4.768 - 2.255 - - - - 60ee2da842aa17302d0af0105c13b225
Al2Se2 -0.717 1.997 4.827 -0.008 -1.007 - - - -2.006 3b6dd62660caef9bb51a50c67ad0762b
Sc2Br2 -1.171 0.0 4.154 - 0.46 - - - - 4aa82e62854bf65326544e9c2905756d
Rb2Cl2 -1.823 4.651 3.765 -0.328 -2.654 - - - -4.979 db78a41d8f3da912e5b773a1dc01b451
F2Ge2 -1.467 0.118 7.127 -4.410 -4.469 - - - -4.528 3528602f6d7373de70e2ed981e020971
Os2F2 -0.94 0.0 8.358 - -1.463 - - - - d1e48c12cae91b5ec3c6c4415f6e4e2c
F2Si2 -1.767 0.666 6.179 -3.182 -3.515 - - - -3.848 841444ad7399875c54dce3b902c0f01a
Zr2F2 -2.31 0.0 4.682 - 0.349 - - - - 493fdf4020bdeee7b28cede0abc7489c
Fe2Te2 -0.063 0.0 4.18 - 0.109 - - 44753 - 6baa90cd5deca15ae1fe6c84a33cc4ca
Ga2Te2 -0.372 1.297 4.52 -0.102 -0.75 10.1088/2053-1583/2/3/035010 - 43328 -1.399 4b122ce63e3dd4a5629432e487801d9c
GeTe -0.006 1.474 4.217 -0.853 -1.589 - - - -2.326 d5ae402d8eb81599eabaa929faa53eb9
I2Sb2 -0.122 0.586 4.468 -1.092 -1.385 - - - -1.678 72b0170e32ad1afbb4db0fdc29dc21f9
Nb2Te2 -0.16 0.0 4.135 - 0.184 - - - - 43a390710f2d6df0b23001212a7a551c
Ni2Se2 -0.198 0.0 4.521 - -1.548 - - 162903 - 3255c035f141edff59abe202bde988c2
Pd2S2 -0.092 0.0 5.244 - -1.611 - - - - 10ab086ecc8f179056841d1ac862e348
Ru2Se2 -0.227 0.0 4.291 - -0.836 - - - - 491aefeb2396354147f504fcfc07ff7a
Sn2S2 -0.415 1.414 3.948 0.072 -0.635 - 1527226 - -1.342 75949b282d57b05fcb2b2c6913930d42
BaCl2 -2.503 5.618 4.843 0.563 -2.246 - - - -5.056 5be72740b3b99fd3d0887171446cb2af
CaCl2 -2.267 4.771 5.867 -0.507 -2.893 - - - -5.278 a71bcf20166a7978c6809966abbe1052
CdCl2 -1.074 3.616 6.118 -2.059 -3.867 - - - -5.675 9e9251049c68f54e2dd2d3bb6f3647dd
CoBr2 -0.352 0.174 5.682 -3.173 -3.26 - - - -3.347 fd1095d11d1ca9e11cf8ea76d62326c5
Co4S8 -0.317 0.322 5.771 -1.925 -2.086 - - - -2.247 ea21c857e91d256701c1ef8a42b069dd
CrO2 -1.627 0.0 6.079 - -3.828 - - - - c5139f85d050d81ad1715cabddae5130
CuI2 -0.129 0.0 5.689 - -2.752 - - - - 90dcc7232ec630e32bf7185d45ea400a
FeO2 -0.783 0.0 7.495 - -3.96 - - - - 88dd1c447e7fe3c6f58f47ac4dbdb65b
Bi2Hf -0.07 0.0 4.13 - 1.759 - - - - 6310c91505ba8ea5538af54ff99ce3ba
HfTe2 -0.698 0.132 5.154 -0.892 -0.958 - - - -1.024 316fe3b4bfe6432cd6e2f6e431c1e653
MnBr2 -0.75 1.775 5.142 -1.986 -2.873 - - - -3.761 dfc43882de76d2bd95f53c1864363e04
MnS2 -0.567 0.0 5.722 - -2.134 - - - - 3acdbe287be7da6b22a1ed7c5b37ccb5
Y2N -0.698 0.0 3.961 - 0.394 - - - - f6573db3e01c986eb2c6f9d3e1c9d0a2
Nb2I4 -0.369 0.0 2.98 - 1.178 - - - - 9f997e6592b3a3a124fdf3f53d00f61c
NbSe2 -0.845 0.0 4.902 - -0.637 - 1538603 645379 - 2d0f50dc6ce90f41601796a291b34d9f
NiI2 -0.13 0.106 4.881 -1.315 -1.368 - 9011538 - -1.421 1d5f19dcd1cb9cb91f8f220921f794fd
Ni2Te4 -0.065 0.921 4.483 -1.291 -1.752 - - - -2.212 db454753d336d372d28239b8284a7491
Bi2Ti -0.013 0.0 4.272 - 1.131 - - - - cef58d772c785b4bd8667bd788b70694
Ti2O4 -2.951 2.855 6.822 -2.264 -3.691 - - - -5.118 40cda48e6aa9f0b986e6245a1de3e956
Li2Pb -0.014 0.0 2.904 - -0.559 - - - - 9c69a9c63ce55e78073e42e3d72c1049
PdS2 -0.196 1.171 5.706 -1.632 -2.217 - - - -2.803 1a6135c2593a407d9bf3fdbbe60353d2
ScO2 -2.471 0.0 7.623 - -5.067 - - - - 4f1eb3be26308c2b9252b1f376f4254f
SnS2 -0.402 1.587 6.029 -1.623 -2.417 10.1002/anie.201204675 9009120 43003 -3.211 438abda5cb9d2142a788f12a6b7bcd53
TaCl2 -0.87 0.0 3.788 - 0.705 - - - - e0b4b430b39c97f4b5ffa524c0ac2c1d
TaS2 -1.067 0.0 5.083 - -0.888 10.1021/acs.chemmater.6b02334 1538041 52117 - 5c508a7d2df87e5638b7ad95aa56dc59
W2Cl4 -0.206 0.0 3.329 - 1.246 - - - - 327f19585c5af57125bff73c23bb7f85
W2S4 -0.696 0.0 5.661 - -1.19 - - - - d89eac02445f0fb492c5deab6d89ffd4
ZrSe2 -1.048 1.446 5.325 -1.805 -2.528 - - - -3.251 ed330f0681af3255299f251166772763
Ta2BO2 -1.718 0.0 5.543 - -0.024 - - - - a04613c2576cb4e387e45ad5856cb7a4
V2CS2 -0.739 0.0 5.564 - 0.398 - - - - 11822d14402999a32312f421ace46802
Cr2F2N -1.504 0.0 5.301 - -0.914 - - - - a70224e4600459d605c778b3680f8005
Ta2NSe2 -0.9 0.0 4.607 - 1.873 - - - - f4b1484806bd16f1ccd618e885a5d914
Zr2CH2O2 -1.485 0.0 2.031 - 1.973 - - - - 22d9287a27842b7aecfb98bf193dddd5
Mn2H2NO2 -0.778 0.0 1.549 - 1.423 - - - - 6e97a15a5bedf65d4c5e78a4464b9f04
GaNi5Cl2 -0.275 0.0 4.669 - -0.086 - - - - 4b32d4a7e308946bffd149752ebeb123
Ag2ReBr6 -0.335 0.562 5.762 -2.622 -2.903 - - - -3.183 5d61bc089c9f35e93d2d9001f409e926
Al2Br6 -1.119 3.897 5.028 -0.232 -2.18 - - - -4.129 4b7ccde51ea58d004ee9721ff90edd73
Au2Cl6 -0.098 0.208 6.589 -3.770 -3.874 - - - -3.978 a4bf0a1280162688f41b1dc1fca15712
W2Cl6 -0.709 0.487 4.65 -0.574 -0.818 - - - -1.061 b9c8ffc81f516388557dc346ad1c81bc
Cu2Br6 -0.152 0.107 6.416 -3.656 -3.71 - - - -3.763 f638e033b9372d17c74007827b3483a8
Mn2Cl6 -0.833 0.039 5.317 -2.301 -2.32 - - - -2.340 c32f59ba3e47e382cb2fdf1251c72be9
Ni2S6 -0.091 0.0 5.537 - -0.926 - - - - be4a31977be79a2a62a038b5b65b413f
Pt2Se6 -0.13 0.0 4.838 - -0.443 - - - - 62c4a04b307e0a2942591745eb10a858
Rh2Te6 -0.148 0.0 4.616 - 0.608 - - - - e6007e0f3ca0e91739ec31887f273ede
Ta2I6 -0.232 0.0 4.003 - -0.271 - - - - ff4e2f38efb6d7defcde9a3dddc0e45c
Tl2Cl6 -0.703 2.425 6.937 -3.021 -4.233 - - - -5.446 79bf165157bbe0bb061d34b642def703
HfTi3Te8 -0.613 0.052 5.16 -0.991 -1.017 - - - -1.043 1c0d41bc597f8c8f9a855c67b272005b
TiZr3Te8 -0.732 0.189 5.247 -1.022 -1.116 - - - -1.211 1066315da25ab8dda8b09beda9097c5d
Al2Br2Se2 -0.938 1.535 4.679 -0.446 -1.214 - - - -1.981 467eab86dfa304494d4490f94b90cce7
AsBrTe -0.245 1.237 5.162 -1.384 -2.002 - - - -2.621 a25e9dfb2c1cf5c344b1575480dfa8d1
AsIS -0.108 1.336 5.108 -1.126 -1.794 - - - -2.462 c080244de77e2ef89f6fbe98147ae309
BiIS -0.287 0.401 5.635 -1.678 -1.878 - - - -2.079 f3db22a683f644f2a73bb2cf62bffaf2
In2Br2O2 -1.295 2.29 6.008 -1.017 -2.162 - - 24059 -3.307 9c9b1f4cab44409b1053d040d7d2dece
Ru2Br2Se2 -0.197 0.0 5.804 - -1.7 - - - - 62f70443901e0c8e2c5a5759edf7a1b8
Sc2Br2Se2 -1.752 1.51 5.302 -1.064 -1.819 - - - -2.574 df8af6a8aa4467641044070dd0464aef
Cl2Ge2N2 -0.191 1.851 5.684 -0.715 -1.641 - - - -2.567 c6331cad6a1efbe9968208b26a58e54f
ZrClI -1.228 0.877 3.274 1.326 0.888 - - - 0.449 45278d3de75060cd1b083868156aced4
ClSbSe -0.537 1.172 5.658 -2.013 -2.599 - - - -3.185 3902b3bc8c6713c79636b695bd5b2cc3
Co2I2S2 -0.288 0.0 5.038 - -0.721 - - - - 903a8dd3705bc092ce014ced52fab469
Fe2Na2P2 -0.421 0.0 2.334 - 0.703 - - - - 6fae587e6af164cb91b445d68aa3c7c4
Hf2I2N2 -1.459 1.585 4.859 0.617 -0.175 - - - -0.967 fe64f979d0d3f54cdc0ccd5af6c3a7cc
Nb2I2N2 -0.834 0.0 4.489 - 0.085 - - - - 406a033c248cae1e5ed007579466cc4f
Ti2I2O2 -1.921 0.0 4.396 - -0.119 - - - - 354eae427e727542091fdc4ed365b96d
Rh2I2Se2 -0.388 0.0 5.186 - -1.011 - - - - c17773fa9f409c5a553c2cb2f1fa6b23
ISbSe -0.312 1.012 5.118 -1.290 -1.796 - - - -2.302 11e3d482babaed3808e4e3b7436a3b71
NbSTe -0.76 0.0 5.193 - -0.789 - - - - 8cc206b952b0f73ee0d400161d88d733
ZrSSe -1.478 0.613 5.44 -1.657 -1.964 - - - -2.270 85a488fc567b219c6d7adf24b882d4d7
TiSeTe -0.921 0.0 4.876 - -1.142 - - - - 454abd4fb1148c28661ed31904bcd406
Ag2I2Te4 -0.125 1.025 4.89 -1.508 -2.02 - - - -2.533 2dd5479dd2357c6e0155574163b7b425
Co2H2S4 -0.329 0.364 5.081 -0.998 -1.18 - - - -1.362 36bdd7f9b4aa854703ef3b1b48ae9d23
Cr2P2Se6 -0.312 0.431 4.56 -0.663 -0.879 - - 626521 -1.094 719dce0efc96142887a5df03f2efc785
Ni2P2Se6 -0.133 0.0 4.882 - -1.072 - - - - 2d1bf7ac65c105ea3f021c1ba8ba558c
Mo2W2Te8 -0.207 0.862 4.173 1.049 0.618 - - - 0.187 3778728734deddc327e960ae25cb5ae6
As4S6 -0.14 2.272 4.873 -2.444 -3.58 - 9008211 - -4.716 cb8cdd5b0e89e42e61f6cd365b33b619
Mo2Cl6 -0.918 0.639 5.156 -3.029 -3.348 - 1538556 - -3.667 3ce1146a957775669828afef86502ce5
V4O10 -2.277 2.062 7.753 -5.391 -6.422 - 4124511 - -7.453 53e7f4b6e7d85cee36e8ce1c735a02a7
Zr2Br2 -1.039 0.0 3.463 -0.634 -0.634 - 4343762 - -0.634 e9a3a0973ea78083a0c7570f10d6aab6
Al2MnS4 -0.818 0.0 4.358 - -1.047 - - 608511 - 5815418d940d7a14d0b31bec46426798
Ca2Sn4F12 -2.948 3.924 4.032 -0.037 -1.999 - 1526708 - -3.961 c8b5d7d2f65258329bcf25b4de14865e
Fe2In2Se5 -0.273 0.0 4.391 - -0.637 - - 155025 - 2426e9948ade090102695f9c91f9609d
In2Zn2S5 -0.592 0.0 5.353 - -1.663 - - 42443 - 4cb84ad95104551f11fa3de302dad676
Nb2Cl4Se4 -0.97 1.08 4.699 -2.250 -2.79 - 1522780 - -3.330 2590e33a4873d5a5a5e0e1a743828b73
Nb2Cl4S4 -1.075 1.61 4.853 -2.177 -2.982 - 1540014 - -3.788 a5ace0e3f7352143c740d21cf6ffbf04
Ni2Ta4Se10 -0.763 0.032 4.959 -2.754 -2.77 - - 61148 -2.786 f500022c8186005ee8c08989ddfc52dd
PdTa2S6 -0.885 0.0 5.585 - -3.448 - 4344384 - - adc6c2dfa14ddefb495590c903926b09
Ti2PTe2 -0.925 0.0 4.883 - -1.626 - - 418978 - 5f67b608d69f2d65a2f1796a09f1995a
Zr2I2N2 -1.441 0.284 4.563 -0.985 -1.127 - - 51772 -1.269 57be1aa728ee0a2fa0f34d0dd22c2468
Ba4F4Sb4Se8 -1.769 1.386 4.876 -0.684 -1.377 - 4300722 - -2.070 4cc0a59d5bdf3bc62a364567e893b99b
V3N2 -0.368 0.0 5.136 - 1.007 - - - - 7ea46e992bd97ec3f04d8f94d5f14a2d
Co2Br4O6Sb4 -1.018 0.831 4.858 -2.367 -2.782 - - 418858 -3.198 13ae99a6d070e5cd6ac47ba152246584
InNaI4O12 -0.517 2.81 6.057 -2.448 -3.853 - - 422057 -5.258 f457afaf409050973f0dacc2fe20e977
Mg2Mo2O12Te2 -1.951 3.167 6.421 -2.040 -3.623 - 7207940 - -5.207 48c4f870a83555b5b34406473974869e
NaW2Br6O2 -1.2 0.0 5.271 - -3.548 - - 408934 - e4fe4d3b35ccc1b3f30eac1273968801
Sn2H2O6P2 -1.532 4.3 3.997 -0.470 -2.62 - 4328407 - -4.771 eeef0bd9fb77fbb09b2b470738cfe349
NiC4H8N2O4 -0.557 1.326 4.23 -2.591 -3.254 - 4509073 - -3.916 73a1f11f06482942ec5d3813d72a8820
Ti3B2H2Se2 -0.432 0.0 3.001 - 1.648 - - - - 2a2a9cbdf77b6d7c057b292fb707c754
Sc3H2N2O2 -1.904 0.0 1.793 - 2.373 - - - - 94b60a93ea864ed18a420bf8463d57db
Ta3C2O2 -1.397 0.0 5.011 - 2.226 - - - - b6fab5dc395ffa38f0da8dfc48a0034b
Y3F2N2 -2.614 0.0 3.259 - 2.023 - - - - 7323688dac10d4182b1345cc0080523e
Mn4C3H2O2 -0.304 0.0 1.679 - 3.338 - - - - 4566a2a4622ad9d17dde85f5cd6baef3
Sc4H2N3O2 -1.947 0.0 2.043 - 3.01 - - - - 3e97090208fc75cb12280d68db768e57
Sc3C2 -0.284 0.0 3.626 - 0.768 - - - - 9653b3d259e6634ac39a91cb4a517b3e
Cr4C3O2 -0.414 0.0 6.571 - 1.001 - - - - f33e1624248ed38acab2eb0c939173bf
Ta4C3 -0.264 0.0 4.729 - 3.444 - - - - 91db28030c0592cde299b0f0b98e4260
Al2Se2 -0.711 2.138 4.723 0.145 -0.923 - - - -1.992 922880f82b432ba16cd23dd8add49863
BN -1.292 4.667 3.487 1.023 -1.311 10.1038/nmat2711 2016170 186248 -3.644 a603ee2811e8b3ee012d9c43caa7047d
Co2Te2 -0.088 0.0 4.086 - -0.167 - - - - 981688833a10561ed672183d9b638391
Cu2O2 -0.457 0.001 5.551 -3.752 -3.752 - - - -3.753 89d9c14439cb1e70821dea84ceb56479
Sn2F2 -1.46 0.316 6.875 -4.252 -4.41 - - - -4.568 f8399bc4b8043c88fe2c2d1f6c93091b
Fe2Te2 -0.011 0.0 4.417 - -0.139 - - - - 4092d6aad9af4511c85cd77bde4e81df
HgTe -0.038 0.153 5.03 -2.884 -2.961 - - - -3.037 c7b381a2734e40099e3f3cad262bb85b
Ir2Se2 -0.035 0.073 4.381 1.175 1.138 - - - 1.102 9b6601f978efe6bdf3603b9b9eaf46a1
Ni2Se2 -0.263 0.0 4.734 - -1.22 - - - - 3e7cedf37daae7916037a577466dc739
Rh2Te2 -0.331 0.0 3.802 - -0.104 - - - - 571ccc11538e9fd177fc9ff8df365fa0
Ru2Te2 -0.091 0.0 4.056 - -0.421 - - - - d41398a9d25d5f6680027461f0dd3e71
Tl2S2 -0.144 0.628 5.986 -1.660 -1.975 - - - -2.289 bc7f1704e5cae9866db0e80ab56dfb25
V2Te2 -0.128 0.0 4.272 - -0.179 - - - - 53354e0761ae0de64671f1a00cabef68
BaCl2 -2.37 4.747 5.469 -0.081 -2.454 - - - -4.828 e13de90b18c887b53baf009d019443fa
CaCl2 -2.239 5.53 5.178 -0.577 -3.343 - - - -6.108 16be7e8193557928c8e018fb32dd1cc9
CoCl2 -0.613 0.168 5.966 -3.426 -3.51 - - - -3.594 b0e330c1bd641c33a2f6ea15295a157b
Cr2S4 -0.563 0.0 5.751 - -1.558 - - - - cc5dd375e398a207e5471f8302f4ea7e
CrTe2 -0.106 0.453 4.548 0.225 -0.002 - - - -0.228 bcce3831cc265bf831634be8a6bb9fb0
FeO2 -0.94 0.0 6.323 - -4.095 - - - - a694584854b4101c828a9229601fc2ec
FeTe2 -0.026 0.0 4.268 - 0.023 - - - - 2ba96a46b24d61935cf448cba1ee35aa
Bi2Hf -0.074 0.0 4.181 - 1.668 - - - - ca4e390441838bf4de500043cbd45c9b
Mn2Se4 -0.417 0.0 4.996 - -0.86 - - - - 742b11c62e4e0a6c93a3f98cce2660ce
Mo2Cl4 -0.521 0.0 3.803 - 0.508 - - - - bbff2dbacb835f7d795f1f8a218bebe8
Mo2S4 -0.741 0.051 5.78 -1.386 -1.412 - 4124624 - -1.437 3f5a0076ac8eb33a940870af0eb65074
MoTe2 -0.301 0.932 4.3 0.921 0.455 10.1038/nature24043 9009147 15431 -0.011 2bdd7f9187acdfd9d9f096709e5d7a18
Zr2N -0.544 0.0 4.424 - 0.372 - - - - 9aac75d2d89b87d95944186ccbe74f22
NbSe2 -0.877 0.0 5.538 - -1.227 10.1038/nnano.2015.143 1539310 237740 - ab368c8468997539ff853a1deeb03a80
NiI2 -0.031 0.0 5.37 - -2.744 - - - - 63b3f36e7c60ef9927d22233fcb11260
NiTe2 -0.174 0.0 4.431 - -0.606 - 9009113 - - 7fe0c65ed4621e4d5e241bd31783f048
Os2O4 -0.838 0.169 6.142 -2.147 -2.232 - - - -2.317 142d54363a3706f584a89c96f85e2f22
PtCl2 -0.067 0.403 5.26 -1.961 -2.163 - - - -2.364 fad33b2d4349f7e029b55e4466382213
Pt2Se4 -0.31 1.441 4.67 -1.155 -1.876 - - - -2.596 f2e6c586b111be3677b05413cafffa72
Li2Rh -0.018 0.0 3.522 - -0.689 - - - - d3e4cc07f461c7002fc7091dc2aa0235
ScO2 -2.427 1.464 6.725 -3.284 -4.016 - - - -4.747 4428be2fbe683e0bed98b4d73776db60
TaS2 -1.087 0.0 5.932 - -1.632 - - 651083 - 5d561ba9fd4b629fb40f6c8d79ac3b95
TiBr2 -1.145 0.758 3.496 0.547 0.168 - - - -0.211 acc9bc0c5a099a01c426cf8399f78209
VSe2 -0.708 0.248 5.434 -1.175 -1.298 - - - -1.422 9a607b7eeb6483ee5dd41bb1c4a6698d
ZrH2 -0.065 0.0 4.474 - -1.963 - - - - a880263a578881991722fc9aa1189ff5
ZrSe2 -1.367 0.337 5.289 -1.301 -1.47 10.3390/app6090264 1539555 - -1.638 bf99491bec86619f0aa834dd3ff670ad
Ti2NSe2 -1.29 0.0 5.299 - 0.803 - - - - cf4f623588012d1970d8da4bc2bcf9b0
Au2MoSe4 -0.231 0.592 4.335 -1.088 -1.384 - - - -1.680 56932d4e7e1f4898649022faa9daedd9
Ag2ReCl6 -0.567 0.778 5.942 -2.757 -3.146 - 4508861 - -3.535 1a7c742f55fbabd803d9cc6eda560237
W2Cl6 -0.652 0.706 4.186 0.010 -0.343 - - - -0.696 95b10aecaf5ff5e3bfcc57ec3602e978
Cu2Cl6 -0.31 0.426 7.168 -4.232 -4.445 - - - -4.659 3e09ed6f37336160ed86b73925d05292
Ga2I6 -0.396 1.153 5.3 -1.581 -2.157 - - - -2.733 210bc1dbe75d23ceb5bf17769853e9a5
In2Cl6 -1.139 3.761 6.319 -1.668 -3.548 - - - -5.428 3bcef904c86f105c0bad74d6c87ca5eb
Pt2Te6 -0.139 0.0 4.502 - 0.157 - - - - 2a1faa5c97acdbe33d601a4d2635a723
Ru2Br6 -0.308 0.0 5.477 - -2.517 - - - - 7d89f68bb1a34e6ea140d810f432db03
Sc2Br6 -1.779 2.975 5.659 -1.459 -2.946 - - - -4.434 e6d745ad28fbb2f8cd6ff0ca2c9e9154
HfZr3S8 -1.394 1.154 6.306 -1.803 -2.38 - - - -2.956 2c9507be1be28275c2a28247214e0a02
Cr3WS8 -0.714 0.863 5.348 -0.546 -0.978 - - - -1.409 ec7fb8a3542d813ef01fdad12105de35
AsBrTe -0.082 1.064 5.185 -1.027 -1.56 - - - -2.092 be7ab8f5bcad3f45099a3135537cf300
BiClS -0.538 1.43 6.438 -2.242 -2.957 - - - -3.672 b0b4f7089300d716c973e0001ffbd13f
BiIS -0.412 0.777 5.822 -2.150 -2.539 - - - -2.928 c52185e9a8e1e5bf9ac6e9ddc72c7971
TiBrCl -1.326 0.83 3.646 0.479 0.064 - - - -0.351 e5ec52787d072b0e68bbbbc01a62163c
Cr2Br2S2 -0.807 0.455 5.703 -1.777 -2.004 - - 69659 -2.232 5895ae3c6e4120721ab4e1ab73b1bc4c
In2Br2S2 -0.703 1.908 5.672 -1.215 -2.169 - - - -3.123 e02d6f6ac0b05d0d79e326aef591ead2
Tl2Br2O2 -0.641 1.013 6.605 -2.304 -2.81 - - - -3.317 7d9c03fa6b1630404dc56d520729fdb2
BrSSb -0.287 1.426 5.648 -1.388 -2.101 - - - -2.814 c8ad2fa73a06068a572dbbfbae146335
Zr2Cl2N2 -1.86 1.849 5.636 -0.563 -1.488 - - - -2.412 92fa3a880831206ee26962f9b279cad0
Rh2Cl2S2 -0.62 0.011 6.235 -2.337 -2.343 - - - -2.348 3cd271ba9136e72478a2b1c38e4ab052
ClSbSe -0.405 1.674 5.653 -1.293 -2.129 - - - -2.966 dd1e4e08bbde1177a781bccf6276eb30
Co2I2Se2 -0.233 0.0 5.071 - -0.838 - - - - 1797a22901f78468e33283f73dafca3b
Fe2Sr2Si2 -0.235 0.0 2.708 - 1.134 - - - - 315f1fd80d6d4431c60532bfeb251dd2
Ti4I4O4 -1.731 0.0 4.184 - -0.424 - - - - 414c8a65915d6f3641e046111ad425ba
Ru2I2S2 -0.177 0.0 5.231 - -0.703 - - - - 49e5d8375a23706bbb957a4fcd957f1b
ISbTe -0.128 1.011 4.847 -0.495 -1.0 - - - -1.506 87cf83165f3904c2193f9029eb57eb2d
NbSTe -0.721 0.0 4.771 - -0.674 - - - - f77debc37061a89ba45b5328be94c015
VSeTe -0.502 0.12 5.048 -0.728 -0.788 - - - -0.848 bfddcb587e0a360cbbf77c923884ddbb
Ti2P2S6 -0.704 0.0 4.296 - -0.422 - - - - 3bb2ee398befceab74c15887e5723515
Cr2Mo2S8 -0.779 1.014 5.353 -0.453 -0.959 - - - -1.466 fe778b574e5d8f064878837443da3e3f
HfMnI6 -0.743 1.359 4.887 -0.989 -1.669 - - - -2.349 5705ee13d557ac2a9a8e4306e741184a
Cr2F4 -2.329 1.396 4.389 -2.568 -3.266 - 9009095 - -3.964 d68417f143d51ea52257449ab0a1d8a7
In2Te4 -0.066 0.487 4.812 -2.772 -3.016 - - 501 -3.259 3d2fd08cad030bcec12929afae253acb
P8Si4 -0.129 1.539 4.977 -2.218 -2.988 - - 43098 -3.757 296eb95400e1ddd5bc8e1fd60748d4fc
V4O8 -2.239 0.304 6.739 -4.452 -4.604 - 1527408 - -4.756 fddf28121cadcebf6bc4b14a5acfdf06
Ag2Au2Cl8 -0.389 0.909 6.352 -4.540 -4.995 - 7209314 - -5.449 5643c6b99bbdee275e327bc5426d119e
Al2ZnS4 -0.889 0.0 4.951 - -1.737 - - 609280 - 41550776a71847c6c41264e4059aca29
Ba2Mn2Ge2 -0.182 0.0 2.398 - 0.131 - 1539729 - - 61ec5cfcd67d2ca37c17c7e5843c61a3
Ca2Cl4O8 -0.861 2.819 3.523 -0.585 -1.995 - 2207379 - -3.404 c13c42ad9e167bff6252fd63cf720b0e
Cr2Nb2Se10 -0.613 0.0 4.653 - -2.112 - - 35044 - 21f429f73334a33e2bca2ae63f205ce6
Cu2Hg2Cl2Se2 -0.363 0.833 4.884 -2.902 -3.319 - 1001109 - -3.736 e99b6610b52951b72d0fba1535a33153
Hf2Br2N2 -1.688 1.955 5.248 -1.078 -2.056 - - 190383 -3.033 5bcc2a429b75688f8acb743a9595366a
In2MnSe4 -0.442 0.0 4.744 - -1.518 - - 639980 - 19fb4112fb9880b4618fd39272a5a030
Li2PdH2 -0.402 0.0 1.984 - -1.019 - - 108534 - 7e15b5a70d0bffbe51f35b7d39f91a9c
Mn2P2S6 -0.372 0.108 5.221 -3.155 -3.209 - - 61391 -3.263 6378a130737d5558a69759039c34dec7
Nb2Ge2Sb2 -0.109 0.0 4.742 - -1.146 - - 637231 - 1ad858e925b57494231df00d70a548bd
Nb4Ge2Te8 -0.5 0.416 4.415 -1.720 -1.927 - - 81417 -2.135 1b758c7c872b664ee0b99d6ca127c25a
PdTa2Se6 -0.717 0.0 5.128 - -2.935 - - 61005 - fd843a51e0e84a7bf271ac2f1fab780f
RbTiS2 -1.021 0.0 4.215 - -1.686 - - 77990 - 49dbc3761c6709f42c29beef8b891841
Tl2O6Sb2 -1.192 2.828 3.836 -0.775 -2.189 - 1524096 - -3.603 733a4903293a6b1351ad9527e5a82fca
Zr2PTe2 -1.141 0.0 4.971 - -1.63 - - 420650 - 5b2478726aa0115bbd76676fdc243a77
InLiI4O12 -0.548 2.788 5.632 -1.928 -3.322 - - 422056 -4.716 21295e21447d204f3a083fd7bebd5fa5
Na2B2H8O8 -1.563 4.681 3.649 -0.480 -2.821 - - 72913 -5.161 ec78acc382fc4e97c608917b8f347813
NiC6Cl2H4N2 -0.081 0.858 4.717 -3.124 -3.553 - 7227895 - -3.982 e02c3c0e70e7044c9b17eae4326edac4
Ti3C2O2 -1.609 0.0 6.142 - 0.029 - - - - 123ce06d1a7d6413bcf84bc1fa546d82
BP -0.029 0.898 4.678 -1.953 -2.402 - - - -2.851 366e776e72b9e6a1773b4d806f2ac3b1
Hf4C3O2 -1.678 0.0 5.3 - 2.12 - - - - 148b1a12e43d46f0cceb3046f5e217fc
Ti4C3 -0.518 0.0 3.988 - 2.18 - - - - 11809618f380345dc26776fb89f213f2
Y4N3 -1.299 0.0 4.183 - 2.556 - - - - 712233d3cb47f2a67c01dd22c4aff014
Mo2Cl2 -0.449 0.0 4.586 - 1.371 - - - - 3605baa98e3d583699b57f9d2498099a
Tl2Cl2 -0.965 3.629 3.872 -0.058 -1.872 - - - -3.687 7b1148a5ff83eeca44a0263b4f895920
Cu2S2 -0.101 0.0 5.612 - -2.488 - - - - c471ebed0b05e33dc7fea4277cb65a3e
Hf2F2 -2.227 0.0 4.616 - 0.52 - - - - e392c4b9b625fbd55e946459bf2e7c61
Pd2F2 -0.91 0.865 7.129 -3.019 -3.452 - - - -3.884 4e620bd5e3d80a973fc5a070092610b2
Sc2I2 -0.71 0.0 3.897 - 1.184 - - - - 713be3a84c455cc9abed7231ce7e99d3
Zn2I2 -0.372 2.091 4.448 0.291 -0.754 - - - -1.799 5b177fcf8abfbf2063f3d935d01fbc94
In2Se2 -0.538 1.404 5.209 -0.540 -1.242 - 9008967 640503 -1.944 67a1be08593dc651c57c0880df4e5cf3
Ni2Te2 -0.14 0.0 4.63 - -0.573 - - - - a757ba21cfe460ac4f55267e8118a751
Ta2O2 -1.256 0.0 4.603 - -1.503 - - - - 7f094a137147ce90902c6396bccc7f7f
Pb2S2 -0.514 1.162 3.927 0.042 -0.54 - - 648438 -1.121 5b2a1892e871aadc668acfeb7118070e
Rh2Te2 -0.26 0.0 4.57 - -0.521 - - - - 876f7ba48967c5eb1f694b87812cf8f3
SnS -0.34 2.289 4.937 -1.114 -2.259 - - - -3.403 cc7fca86167f607218aae2e00ffa897e
W2Se2 -0.209 0.0 4.783 - 1.586 - - - - 7d3e3e00c99f8417ff86e9353617a3ce
CaCl2 -2.421 5.784 5.264 0.293 -2.598 - - - -5.490 7f735c2c078bce610e120dfa09d7f1bc
CoCl2 -0.603 0.351 6.067 -2.725 -2.901 - 9008030 - -3.076 f06285c3a81b116ff3a3546bf58db7ee
Cr2S4 -0.193 0.0 4.792 - -2.592 - - - - 23a9f1ab8e4a66af4ede7a9efa63ac61
FeO2 -1.136 0.0 7.322 - -4.081 - 9009104 - - 29a97d62f3a0ad50ca7f9c9ed5c339f7
GeS2 -0.298 1.344 5.021 -1.379 -2.051 - - 425582 -2.724 7a4dbec044d6ae0ffde743ac12ba014c
Hf2Br4 -1.16 0.852 3.845 0.438 0.012 - - - -0.414 63f2e28e37af7c093096d90e64aa87f6
HgBr2 -0.512 2.007 5.92 -2.606 -3.609 - - - -4.613 56d24b6c41c46698116b8ce948e8d494
Ir4S8 -0.381 0.692 5.342 -1.061 -1.408 - - - -1.754 2a7b79bc15faf408fbf2ec1dae2e1588
MnCl2 -1.06 1.797 5.4 -1.514 -2.413 - 9009130 33752 -3.311 bb56cf02633e8c12c998c301803d6188
PdBr2 -0.226 0.198 5.577 -2.456 -2.555 - - - -2.654 3a54b893417a7597c31cbfacf065fa96
Sc2S4 -1.252 0.0 6.695 - -3.573 - - - - 3962d0f6b6ef5170ba684ad674dfd0ea
VSe2 -0.433 0.0 5.346 - -2.603 - - - - ee5ae5b749d75e5a00c79e26a4f34997
TaS2 -0.64 0.0 4.614 - -1.695 - - - - 7f5e82a696f01d6fd4c4787af2fd5461
ZnBr2 -0.924 3.272 5.258 -1.297 -2.933 - - - -4.570 cf76127a0bda952ac5012c88541a939e
ZnTe2 -0.078 0.0 4.54 - -0.712 - - - - 1e7550056002a4aed471eeb719d0cf6a
Zr2I4 -0.909 0.423 3.898 0.420 0.209 - 1537359 - -0.003 52bda790a135be5915251f41fcb8d308
Cr2CS2 -0.283 0.0 5.461 - 0.397 - - - - 761587449ce253464e0b66dcf562e123
Mo2CSe2 -0.333 0.0 4.811 - 1.649 - - - - 4a39a1a2c6e173ce09a84b97a16becd5
Zr2CS2 -1.219 0.0 6.239 - -0.301 - - - - b5d834fe63deaa4290db82e98c8b0bc2
FeH2O2 -0.776 0.0 1.986 - 0.152 - - - - f6760031857b3e0786e6181a504eb291
Mn2F2N -1.349 0.0 5.624 - -1.38 - - - - 20a8851f68a9c02a4527c33269ad2532
Nb2NS2 -1.119 0.0 5.433 - 0.882 - - - - f31e1d5ebd6b9536a84132fcb3dafafe
V2NSe2 -0.836 0.0 4.693 - 1.457 - - - - b3d2b3597bb89fb4e41c120817928c40
Co2Br6 -0.406 0.962 5.528 -2.038 -2.519 - - - -3.000 4825ba046a40b5c9a094ff81ebf5f651
In2I6 -0.513 1.597 5.305 -1.445 -2.244 - - - -3.042 dde23782d2dd7071e445dabe5aabf1c0
Ni2Te6 -0.02 0.0 4.515 - 0.029 - - - - 318d4af5786cfad59b89bf40bbdef5a7
Pb2Te6 -0.082 0.268 4.823 -0.451 -0.585 - - - -0.719 676d77b5a437d5b5b0bc12a82f95f600
Re2Br6 -0.095 0.135 4.703 -1.483 -1.55 - - - -1.618 904f181ca99b99e3693af1ee64a225b1
Ta2S6 -0.8 0.0 4.925 - 0.649 - - - - bb0284f1a079f788dee6d0cb3dfdb564
Zr2I6 -0.864 0.0 4.042 - -0.623 - - - - d5ebeeca3a75900ab8d6f2eb8ef3edf0
Cr3WSe8 -0.504 0.677 4.818 -0.055 -0.393 - - - -0.732 35bf378a37cfc7d72b91a9751d12bfcb
Al2Cl2O2 -2.354 5.729 5.031 1.675 -1.189 - 9009194 - -4.054 7c8266437229770b0c0b02c81b893092
AsISe -0.16 1.151 5.012 -1.111 -1.686 - - - -2.262 3ca34dccb487faeb34de2b17a3a05e39
BiClS -0.658 1.002 6.366 -2.855 -3.356 - - - -3.857 cce63b6079f7114881bce679094d2312
Cr2Br2Se2 -0.7 0.179 5.743 -1.977 -2.066 - - - -2.156 224497c93f5709570216ba204193d4fa
HfBrI -0.887 0.713 2.898 1.748 1.392 - - - 1.035 6ee5a33799b83885c5d9fce433ff74da
In2Br2Se2 -0.657 1.23 5.543 -1.469 -2.084 - - - -2.700 fb08025c9d4450075b1187be31fc9c42
Ni2Br2O2 -0.516 0.0 5.753 - -2.164 - - - - 1912ff3a585db7a798aa1e7df78a9fa6
BrSSb -0.415 1.217 5.549 -1.851 -2.46 - - - -3.068 fc56ceafa192e0fbc8162c99bcfd619e
In2Cl2O2 -1.42 2.607 6.404 -1.329 -2.632 - - 24058 -3.936 540b963ebde63a758dc43c51a2873bc1
Rh2Cl2Se2 -0.579 0.0 6.271 - -2.411 - - - - f4618d04750feef4fb592ba5e385964b
Co2Li2P2 -0.568 0.0 2.702 - 0.452 - - - - f55d2413064db2d7e97a04ee549def00
Ru2I2Se2 -0.098 0.0 5.211 - -0.791 - - - - 88d1f789d6e9b71c7f45058cea74ae0f
ISbTe -0.25 0.838 4.939 -1.171 -1.59 - - - -2.009 98290e74a33dedbc299034cb01e4262e
MoOS -1.361 1.06 5.281 -0.479 -1.009 - - - -1.539 1f53bf21254342740216a26a3bacde09
NbSeTe -0.627 0.0 4.669 - -0.498 - - - - a46f7a761589f6834b397c523cc9a941
TaSTe -0.67 0.0 4.581 - -0.464 - - - - 133160d8b50cf60e4f5ec4a69227b074
VSeTe -0.5 0.0 4.748 - -0.846 - - - - eb48e0b711b2e30f31f274f5f4ad11bb
Au2Br2Te4 -0.11 1.013 4.992 -1.856 -2.363 - - - -2.870 c33a8b7351820b06c80e3db16e933b14
Cu2I2Se4 -0.143 0.791 5.038 -1.794 -2.189 - - - -2.585 57df7a1bea90a7ca22e49e3f6ad84ce2
In2P2S6 -0.318 0.839 5.048 -1.184 -1.604 - - - -2.024 be5ec34912fc21fe29a68ed42c7b5b21
Os2P2S6 -0.1 0.038 5.016 -1.216 -1.235 - - - -1.254 c1df9619ad973c3dc51e5a27db593dd8
Cr2Mo2Se8 -0.581 0.819 4.814 0.046 -0.364 - - - -0.773 a88959f264caa50e8fa93d7c59574a29
HfNiBr6 -1.047 1.355 5.845 -2.279 -2.957 - - - -3.634 e948ba268290d23673aa36a3e639a890
As4Se6 -0.113 1.735 4.614 -2.378 -3.245 - 9011471 - -4.112 20b39d645cb88760cc6278dea4a52117
Cr2Se2 -0.324 0.0 4.441 - -2.302 - - 162899 - 1beea25e0cd098be2ba47275a2478271
Pb2O2 -1.163 2.406 3.402 -0.716 -1.919 - 1526264 - -3.122 9a552ff4e9fbb0bfbac20f07ffa5d150
Sn2O2 -1.256 2.493 3.951 -1.301 -2.548 - - 20624 -3.795 81eea2e6ba3f7f4d1f1c0524b8e6d3ab
BaF12Sb2 -2.827 4.966 8.176 -3.033 -5.516 - 1536716 - -7.999 c764dc749060bbe80cf99ab037ecce72
Fe2P2Se6 -0.121 0.0 4.956 - -2.839 - 1527653 - - 55715eef3050d879e8bdbafd19a459e7
Hf2Cl2N2 -1.861 2.33 5.544 -1.232 -2.397 - - 261539 -3.562 bb0c327c1216c3f84e5a87460203ddf7
Nb4I2Te12 -0.397 0.673 4.405 -2.060 -2.396 - - 71516 -2.732 fb860b693f0f4cc67f208c0bf4962f2f
Pd3P2S8 -0.348 1.75 5.579 -2.997 -3.872 - 1527147 - -4.747 bf5defdb9b3e3d5864d750db5f5acc00
V2Br2O2 -1.638 0.0 5.057 - -2.753 - 1537583 - - 9ad1da566e9020ca7c19c9b6a355785e
Y2Cl2O4 -1.81 0.367 7.979 -5.926 -6.109 - - 20449 -6.293 bfac103191a525cccf3cb9c5caf54071
Na2C2N2S2 -0.328 4.121 3.571 -0.313 -2.373 - - 22273 -4.433 c471bf6b2712fb1a2e601636baa9ad95
Ag2Cr2P4S12 -0.363 0.997 5.541 -3.032 -3.531 - 1000192 - -4.030 19cafb175b557ce71d11ca1e345064d3
BiCuP2Se6 -0.182 1.009 5.114 -2.599 -3.104 - 4327329 - -3.608 def78322c0d15d6bab2d8a779676281b
K2C4H6O6 -1.046 4.672 3.123 0.588 -1.748 - - 77115 -4.084 723af012b0dfe62254760dc0cf4d4130
V3C2O2 -1.107 0.0 6.383 - 0.124 - - - - 6208638f027d6dbb188016b568e37f6f
V2H4O10Se2 -1.351 0.892 3.75 -2.128 -2.574 - - 69994 -3.020 37b476b43fb1f161d7aa513cf64ea064
Zr3B2F2O2 -2.051 0.0 7.101 - -1.169 - - - - a55063e50b7fd2698b9c0ee63efbb4ca
Zr3B2H2Se2 -0.492 0.0 3.096 - 1.89 - - - - 3d842c5d9ad8009abbd25dedeec4ba10
Y3C2H2O2 -1.12 0.0 1.843 - 1.746 - - - - f0bc99dec23c48ac186c2a185bf7facf
Ti4H2N3O2 -1.667 0.0 2.235 - 3.664 - - - - a36ceefd08fe3354e8c0406df0a36ec6
Ti3C2 -0.381 0.0 3.975 - 1.182 - - - - d2c5710455b8300373a6b20472ee6a34
Y3N2 -1.093 0.0 4.134 - 1.545 - - - - 298351d9031751b10bf06fc13dbce024
Y4C3F2 -1.363 0.0 4.287 - 1.288 - - - - a177878fff75db202a3ec44151a26ce8
Mn4C3O2 -0.235 0.0 6.867 - 0.346 - - - - fc475dc3838a2f08ec6b42d24a892ea8
Sc4N3O2 -2.251 0.0 7.231 - -0.902 - - - - 332397aa9c5adc28b02861ccaf157f27
V4C3 -0.132 0.0 4.523 - 2.048 - - - - a4eaf6650e93b74247995a7e0e51ac44
Zr4N3 -1.276 0.0 4.346 - 3.359 - - - - f96c3d705f4714261e0c0aecb5fdbb5e
Al2Te2 -0.373 1.955 4.271 0.311 -0.667 - - - -1.645 706095f1ea18e1e1e8e0f644af10ff69
Au2O2 -0.01 0.174 5.315 -3.092 -3.178 - - - -3.265 8915bca1e8296db5d98908a0c97f5f54
Cs2Br2 -1.687 4.08 3.502 -0.195 -2.235 - - - -4.275 238441f41d3f8a15032c4f145891bdca
In2I2 -0.403 0.988 4.942 -0.229 -0.723 - - - -1.217 c508a3cf9a92a69963f9af923f63dc19
Fe2O2 -0.73 0.0 5.632 - -3.074 - - - - 18a893d76ac03eee504cee545dd587df
Nb2O2 -1.305 0.0 4.616 - -1.611 - - - - 49976d7f0906bb5fdea0be5aaae89636
PbS -0.337 1.82 4.831 -1.378 -2.288 - - - -3.198 643d0f1bc1a7b64bd9c7d7049270baca
Pt2Se2 -0.167 0.0 4.378 - -0.727 - - - - fc743c3ebe6121222facfdfec5ed3648
Zr2S2 -1.154 0.132 3.543 0.101 0.035 - - - -0.031 893fc2a5faed24d4a71b4db52819a578
Ti2Se2 -0.872 0.041 4.183 -0.547 -0.567 - - - -0.587 807b8a86e6c8eaac85421b22dad20325
PbO2 -0.804 1.346 7.42 -3.577 -4.251 - - - -4.924 260afd7b58c7e96214de52182e9e7eef
CdI2 -0.6 2.136 4.96 -0.607 -1.675 - 2106203 49573 -2.743 fd67deeba95f251b55c8c1b1aab12de4
BaI2 -1.732 3.332 4.968 -0.036 -1.703 - - - -3.369 861b1d37c98463ee0fc249d13599ab0c
CrS2 -0.354 0.0 5.473 - -2.843 - - - - 274e3d4e3c6ffdd50d5ccce6c78f757b
FeBr2 -0.383 0.263 5.235 -1.678 -1.81 - - - -1.941 eabf232ad5e048968caba1864b9596fe
Fe2S4 -0.383 0.654 5.392 -1.102 -1.429 - - - -1.756 c827c1aed23916775fb3f9219cc60f62
Pd2Se4 -0.287 1.313 4.747 -1.452 -2.108 10.1021/jacs.7b04865 4310736 - -2.765 cd518261ff9bd2785bddcd5990bfc73c
GeS2 -0.224 0.729 6.095 -2.012 -2.377 - - - -2.741 8b41946c43d5744c85fc8def75ff63c2
HfO2 -3.007 4.477 5.322 -0.822 -3.06 - - - -5.299 5a771e4e9fa8400b3a83d4b33f610c83
MnCl2 -1.025 2.025 5.359 -2.111 -3.123 - - - -4.136 f01a0e66154c7ff66eba60ce4c83f011
MoS2 -0.306 0.0 5.08 - -2.259 - - - - 910650153f1c38d591eb7756912faccd
Ca2N -0.545 0.0 3.589 - -0.292 - - 22231 - 8c82c42d42e2a3b84283ced65bc27c65
NiTe2 -0.076 0.0 3.968 - -0.155 - - - - f86761fc52c5f8eb42d0abc4da63be4e
Rh2Br4 -0.226 0.089 4.71 -1.592 -1.636 - - - -1.681 55a187f9dba2540f4e59216ddf1a06e6
Ru2Te4 -0.219 0.642 4.354 0.323 0.002 - - - -0.319 4b44be8462f375bd6b2c15d60a5e5727
VI2 -0.49 1.202 3.947 0.080 -0.522 - - 246907 -1.123 3cdc2a8c13056d4c6af3a0ff55ea096e
ScS2 -1.234 0.718 5.679 -2.222 -2.581 - - - -2.940 4ab3b6e23a62a383c0ba39296835f0ea
SnSe2 -0.347 0.762 5.617 -1.605 -1.986 10.1088/2053-1583/aa51a2 1548805 43857 -2.367 ab1fe6162f07c452fbb6a5a7e506e9b3
SrI2 -1.646 3.418 4.925 -0.013 -1.722 - - - -3.431 f026020c328cedef11219396b2662cd2
TiO2 -2.867 3.481 6.433 -2.484 -4.224 - - - -5.965 da3080efa02811440eae2f516578593f
VSe2 -0.692 0.0 5.0 - -0.91 - 1538289 86520 - 1fa784818a97ca83d9937d33433db81a
WS2 -0.874 1.534 4.733 0.678 -0.089 10.1021/nn503093k 9012192 202367 -0.855 4f4a425b6415a6c30e01cb1daf87eb40
YBr2 -1.729 0.344 3.762 -0.115 -0.287 - - - -0.459 55dce1949d5866d4848b7cc07f76b9a2
ZrTe2 -0.523 0.788 4.875 -1.607 -2.001 - - - -2.395 b231bc28d471952b9e3c6131f6fdc8b2
RuH2O2 -0.564 0.506 1.633 0.516 0.263 - - - 0.010 3487b05e22622f3e8bcc5e43c0d7d4e7
Hf2CF2 -2.26 0.0 3.63 - 1.124 - - - - eb25c8cef90a7a13d8b0fc747e955394
Nb2CO2 -1.728 0.0 5.76 - -0.215 10.1002/adma.201500604 - - - 8fc046021f42773d93af85898a28b85a
Ta2CSe2 -0.832 0.0 4.855 - 1.745 - - - - ae64de5b52f0653fca6ecf6b8ce092ce
Nb2NSe2 -0.973 0.0 4.794 - 1.692 - - - - bdeadc1e42923811234ea7831385407f
Bi2S2Te -0.267 0.021 5.891 -1.053 -1.063 - - - -1.074 d35f874a1833470306769c3fe2839a89
CuSr2Br2O2 -1.958 0.0 5.764 - -1.344 - 2002185 - - 7230aca17ef0702394cf2ad138c0f128
Sc2H2NO2 -1.901 0.0 2.043 - 1.445 - - - - 52b6d3e739bd1e3a1ec3eada0ddebef8
AlNi5Br2 -0.291 0.0 4.32 - 0.256 - - - - d4a299c650dc2530ff779df783be7fcb
GaNi5I2 -0.133 0.0 3.891 - 0.927 - - - - bafaf6f71fa2dab1c38ee86d8d388905
Ag2ReI6 -0.065 0.169 5.395 -1.970 -2.055 - - - -2.139 5529908383b18cd5c0fba96b6f64cc14
Al2Cl6 -1.53 5.487 5.218 0.428 -2.316 - 1535669 39566 -5.060 7b81913afe8310b5c0b96d997a86b4d5
Ta2Se6 -0.634 0.0 4.588 - 0.962 - - - - f35c8ae7c0d0d7e71ff16bcc4b5bcdcf
Zr2O6 -2.482 3.586 5.872 0.563 -1.231 - - - -3.024 fbf9cc6abda782488594121dbbee9679
HfZr3Te8 -0.765 0.213 5.251 -0.981 -1.088 - - - -1.195 dbb402ca0a5f69a5c0ec7436a5132a2d
Cr3WTe8 -0.098 0.443 4.482 0.329 0.108 - - - -0.113 f9e42f2b624ecdfc73b50198ad6c29bb
Al2Cl2S2 -1.261 2.334 4.815 -0.190 -1.357 - - - -2.524 611bdd460760ac59256cad2db82b8095
BiTiAs -0.146 0.0 4.999 - -0.961 - - - - bd7677d4e03fe10f3bb20b3e0e22ed51
AsClS -0.352 1.535 5.714 -1.873 -2.641 - - - -3.408 1cfdb39978283f26d24bb5cb36ec76be
BiISe -0.328 0.433 5.552 -1.563 -1.779 - - - -1.996 d28a90d419ac100be504197bff2f8930
Ni2Br2S2 -0.344 0.0 5.384 - -1.805 - - - - 6cbffc7215dd8fff86743b1de09fa6b0
Sc2Br2S2 -1.892 2.13 5.616 -1.048 -2.113 - - - -3.178 db9a1735a7cf33856669eae9441acd11
Ti2Br2Se2 -1.206 0.0 5.061 - -1.224 - - - - cd56628c69c37e4cc26293142df9ab6f
Cr2Cl2O2 -1.607 0.647 5.547 -1.513 -1.836 - - 28318 -2.160 b6fc35e4918e17f2451cfa80ceb9e233
In2Cl2S2 -0.81 1.797 5.833 -1.472 -2.371 - - - -3.270 12bffdeabd7393f9d897f644fb1eca34
Ru2Cl2S2 -0.398 0.0 6.325 - -2.137 - - - - 1aa6007dcf805935b3f2da9ecb83defb
ClSbTe -0.466 1.255 5.399 -1.683 -2.31 - - - -2.938 2350aa97ff5d66b857f1fe895af8739f
Co2Li2Sb2 -0.235 0.0 3.203 - 0.04 - - - - e8f4dd7f3032d87d27102b3ec5cdcb53
Hf2I2S2 -1.281 0.0 4.447 - -0.081 - - - - 2962e940b92b4d90ed6c7390a9586aa5
Ni2I2O2 -0.363 0.0 4.991 - -0.865 - - - - 9770a64d45db3c0aac98e02dc9c0a74f
ISSb -0.135 0.794 5.211 -1.021 -1.418 - - - -1.815 65eda0d14c907edb25bf1a346319cbf2
Sc2I2Se2 -1.543 1.393 5.098 -0.578 -1.275 - - - -1.971 327a3a5dd54b136942a320327e82dcaa
MoOSe -1.174 0.752 4.903 -0.169 -0.545 - - - -0.921 65060711a617e5263800d3d86f8ada10
NbSeTe -0.657 0.0 5.121 - -0.658 - - - - 1d666c780c42d8966890ddea6b416154
WSeTe -0.324 1.037 4.167 1.200 0.682 - - - 0.164 31260b6f650ba9c3312ef8151d9fbb27
Au2Cl2Te4 -0.158 0.981 4.997 -1.928 -2.418 - - - -2.909 fd6ea42c29644f092c20cd53a43d7bb5
Cu2I2Te4 -0.124 0.836 4.697 -1.372 -1.79 - 7223695 - -2.207 33d942be55b99165bf80dd845e259c27
Ti2P2Te6 -0.27 0.0 4.258 - -0.291 - - - - df46c491c883736093c9af9484810bf4
Cr2Mo2Te8 -0.19 0.556 4.477 0.422 0.144 - - - -0.134 c4576b62ab52d7b8bf98495e730d38f7
Ti2Zr2Te8 -0.68 0.117 5.213 -1.025 -1.084 - - - -1.142 7fd1203ce935820847a979f50bada836
HfNiCl6 -1.395 1.62 6.298 -2.603 -3.413 - - - -4.223 fe6cfae553f331f7fa5f84daf89f8880
Ag2F4 -1.222 0.004 7.197 -6.085 -6.088 - 1509321 - -6.090 36914d3d79ee0fe414ef963cb7248ccb
Au2Br2 -0.159 1.985 4.365 -1.857 -2.85 - 1510610 - -3.842 9b84d4f7b5756f35f0030dbbcde49df4
Cr3Te4 -0.176 0.0 4.864 - -1.101 - - 626873 - e9d46ec577f7d45d7a084aa444146ada
Ir5Te10 -0.256 0.0 4.601 - -2.386 - - 189405 - b4abbada3fb859ce983f2aa902523bd0
Pb4O4 -1.156 2.614 3.595 -0.701 -2.008 - - 36250 -3.315 537e03868fe82a0ad3db7f8193e1f006
Hf2I2N2 -1.404 0.545 4.343 -0.600 -0.873 - - 190384 -1.145 2959e6b16a0356ceb6b20e16e3886cd1
Ag2Br2 -0.338 1.724 5.375 -1.594 -2.456 - - - -3.318 7ba9ba15030f3242d95d662d4671b32e
CrGa2Se4 -0.546 0.0 3.986 - -0.827 - 2001932 - - c65b8ed80536f1a9d6143751082dec75
FeGa2S4 -0.57 0.862 4.041 -0.364 -0.795 - 1524268 - -1.226 5ac3e97641a7747f5fd76082feee96fc
Ir2Nb2Te8 -0.424 0.047 4.466 -2.052 -2.076 - - 73690 -2.099 1f1be39cb9e0bccb8fd62721828b1b95
Mn2P2Se6 -0.241 0.1 4.895 -2.792 -2.842 - - 643239 -2.892 477bdb0e79d1a5fb6bc02b8f38d3c6f1
Nb3Br7S -1.051 0.81 5.055 -2.764 -3.17 - - 81078 -3.575 7c9ba39e90b5597bafafeb624f943984
Nb4Si2Te8 -0.518 0.521 4.351 -1.584 -1.845 - - 81416 -2.105 818098d3e7eeccb88494bbf876e283a7
Ni4Ta2Te4 -0.405 0.0 4.32 - -1.214 - 1541056 - - 708c1fe1b5d6941e43df9666502cb63f
Pd2I4O12 -0.157 1.034 5.27 -2.955 -3.472 - 4316838 - -3.989 48f9afa919ded2f9c3e5158f6fbbbee7
Re2ZnO8 -1.71 3.966 6.915 -3.283 -5.266 - - 51017 -7.249 7879e6fa7ae143b3d912a89fac9424cc
Y2Cl2O2 -3.178 4.395 5.754 -0.703 -2.9 - - 60585 -5.098 44e6ccc3b35cbbeb60bb013463727b8f
AgGaP2Se6 -0.218 0.91 4.974 -2.496 -2.951 - 1509347 - -3.406 ea9f77cacea21b4e1fd39f5e4bca33f9
Bi2Cd2Cl2O4 -1.168 2.845 5.516 -2.313 -3.736 - 2012362 - -5.159 f0dc4de257605e9fe29a425fddf7d7c7
Cr2Cu2P4S12 -0.374 1.078 5.326 -2.777 -3.316 - 1000355 - -3.855 6b7f3416b7409d4242b3bb2e73d34801
Zn2H8N4Te2 -0.233 1.822 1.946 0.037 -0.874 - 4113794 - -1.786 bd4fcabad8f1c14ea865e558f018f219
Sn2C2H6O6P2 -1.145 4.034 3.644 -0.212 -2.229 - 4000254 - -4.246 2ddb015ddff4fd58bc501fd79c4497ce
Ti3B2F2S2 -0.983 0.0 6.814 - -0.532 - - - - 3dc92cae15fd870ddb47568239ed247e
Zr3C2H2O2 -1.368 0.0 2.117 - 2.932 - - - - 8a390b559843f0adf0b753b96f60ada4
Hf3N2O2 -2.386 0.32 4.357 2.577 2.417 - - - 2.257 78cdbc737188eb516fb9331a8ce57aab
Sc4C3H2O2 -1.037 0.0 1.686 - 2.06 - - - - 45ab3d57badda135210fce2a6bb31a42
Zr3N2 -0.972 0.0 4.346 - 2.151 - - - - c4567be59c19b030dff0d8ebf02b38ff
Zr4C3F2 -1.717 0.0 3.516 - 3.199 - - - - b757a9713908de24b7c6e0ba557dfa4f
Cu2Br2 -0.281 1.522 4.5 -0.676 -1.437 - - - -2.198 e3d3080b0c7463cca9c8ada868831cef
K2Br2 -1.647 4.374 3.936 -0.593 -2.78 - - - -4.967 7d2ec321599509d88d6dc57176ae0383
C2F2 -0.912 3.165 6.1 -0.921 -2.504 - - - -4.086 6ad1a737475073bb85aa8576bdf1db8b
In2Te2 -0.347 1.145 4.684 -0.243 -0.816 - - - -1.388 b0b62d77e593b4aa6e5a630165153b39
Co2S2 -0.44 0.0 4.6 - -1.346 - - - - 8fddf24c2872dcef30578f1152dde902
Cu2S2 -0.086 0.624 5.584 -2.887 -3.199 - - - -3.511 f56a7189f0e539688031a2e70a1e2a6b
Ni2O2 -0.5 0.0 6.487 - -4.116 - - - - 6236caa485069c29812973019bfa4a59
Fe2O2 -0.72 0.0 5.233 - -1.251 - - - - 8c35b22dbaecae502428d5a0873dc9d3
GaN -0.003 1.877 4.381 -1.546 -2.485 10.1038/nmat4742 - 159250 -3.423 48a8cba4543348f1cea692ca8fcc5f4b
Hf2I2 -0.416 0.0 3.594 - 2.638 - - - - 82a865dffe160a5bf3303b457f28b345
Ni2Te2 -0.135 0.0 4.27 - -0.39 - - - - 1a889b78baa19133411b6bd4dea64bcc
Pd2Se2 -0.164 0.0 4.871 - -1.251 - - - - 90d23fc08213ef8ab455623c94866d97
V2S2 -0.768 0.0 4.335 - -0.633 - - - - da9834583505904371907aadebe59472
Tl2Se2 -0.195 0.449 5.615 -1.470 -1.695 - - - -1.919 64f5f54f3bd40f904f2ca0890050b858
Zn2Se2 -0.61 1.621 4.916 -0.906 -1.717 - - - -2.528 540b276cbca2a1c78bf5e37075b23b42
BaI2 -1.816 3.873 4.604 0.277 -1.66 - - - -3.596 cdcebd5a7fa00f4845933dfe1d83ed9b
CaI2 -1.559 2.946 4.882 -0.125 -1.598 - - - -3.071 35e5d7f632390796abe3db5c22fe1556
CdI2 -0.627 2.335 4.891 -1.158 -2.326 - - - -3.494 2d617ed4df18be741c09af753bed3852
FeBr2 -0.195 0.733 4.288 -0.643 -1.01 - 8101148 409571 -1.376 926020c44e2971d3bb402f317d2b9177
FeS2 -0.125 0.0 5.366 - -2.679 - - - - 6ad89c27066b24753d9c59df64a72c32
HfBr2 -1.157 0.732 2.991 1.361 0.995 - - - 0.629 fbe127f4be49965c0b852f58e133ce8c
HfO2 -3.303 4.777 5.476 0.143 -2.245 - - - -4.633 a8875f27343d850e46ce12695c4b330c
MnSe2 -0.469 0.0 5.097 - -1.376 - - - - 74a49fcfd01266f5f771ac56dbedecf6
Al2Te2 -0.376 1.748 4.399 0.226 -0.648 - - - -1.522 3533c0a5593fb4d86f931173d263f283
NbTe2 -0.432 0.0 4.618 - -0.073 - - 645529 - b9256476b61a4cce1fa68e0e1b8ff2ab
PdSe2 -0.023 0.229 3.655 -0.652 -0.766 - - - -0.881 bd61f52edf0463e8a1032abc596036e7
PtSe2 -0.413 1.167 4.883 -0.625 -1.209 10.1021/acs.nanolett.5b00964 1537202 41389 -1.792 eb3381167bee909dbfcc151820a97856
Re4S8 -0.593 1.272 5.086 -0.160 -0.796 10.1038/ncomms4252 - 81814 -1.432 565bdeeadae4964bd18831260a16cc0f
RhO2 -0.375 0.0 6.12 - -4.049 - - - - 87e43d62272b0b439b2b6467e95621f2
Ru2O4 -0.925 0.045 6.661 -2.983 -3.006 - - - -3.029 3e8dbd982eb554bc58ee9493c26244a3
ScBr2 -1.588 0.157 3.846 -0.397 -0.476 - - - -0.554 90b505381df1dd393bfe1b47b14fba46
SrI2 -1.742 3.984 4.537 0.401 -1.59 - - - -3.582 a1c999fa50fe0260e6cae7e765410fa5
Ti2Cl4 -1.538 0.32 4.487 -0.663 -0.823 - 9009121 - -0.984 abb62501dc5891f209bb17db5abcdba7
TiS2 -1.073 1.266 5.937 -2.642 -3.275 - - - -3.908 933df55e1c2ea1b7634a939a8faa0f53
Ti2CSe2 -0.94 0.0 5.422 - 0.629 - - - - 376cd7da94489c1dbba26ce1979f84f4
ZnBr2 -0.843 3.353 5.263 -0.620 -2.297 - 9011540 - -3.973 93cf435331898a4cf6c135ac8c38442a
ZrI2 -0.881 0.687 3.051 1.496 1.153 - - - 0.809 34b137257dc36a81505ad42127b1807b
ZrTe2 -0.885 0.0 4.829 - -0.802 - - 657478 - 80287adb61264c7e605434f7959ec530
Zr2BO2 -2.038 0.0 5.162 - -0.229 - - - - 30796804c02734f240aeea5a04494061
Mn2CF2 -1.212 0.0 6.293 - -1.702 - - - - b3daf4b938248613e881f8945176eef1
Nb2CS2 -0.946 0.0 5.635 - 0.734 - 1532143 - - f68e6b849452cbbe60b40fff39c84c0f
Sc2NO2 -2.414 0.0 7.272 - -3.127 - - - - 4145f2e7281306109c7d98d93b5694a5
Zr2NSe2 -1.437 0.0 5.47 - 0.831 - - - - aab79d4e0dad0549898261e8eba26f46
Bi2SSe2 -0.391 0.354 5.827 -0.943 -1.12 - - - -1.296 d220340cdfda41f138483bd7019a9308
Bi2Se2Te -0.31 0.111 5.698 -0.799 -0.854 - 9004849 - -0.909 33a10dc8f04dcc79622bc63859d962eb
Au2ReF6 -1.459 0.182 6.815 -4.347 -4.439 - - - -4.530 f06f503b82a5f039e9c03b6342d74fd4
Bi2Br6 -0.791 1.954 6.214 -2.610 -3.587 - 8103606 - -4.564 33b145f494da473f2e43c658bf86b1a7
Co2Cl6 -0.654 1.13 5.992 -2.379 -2.944 - - - -3.509 c00d10d8cf706a5d28c56670b771f2b2
Mo2Cl6 -0.78 0.507 4.811 -0.863 -1.116 - - - -1.370 dd09d19959c94fa1bb249a19d6c2b8fa
Nb2I6 -0.363 0.0 4.201 - -0.544 - - - - e4a62810b03d186ad4774a1a06740c1b
Ru2Cl6 -0.549 0.0 5.827 - -2.747 - - 20717 - fc07fb170e536e4707c20b8e105311b7
Sc2Cl6 -2.163 3.922 6.246 -1.580 -3.541 - 1536702 74517 -5.503 84dee02753d8ef526157dd0858821fbb
Ta2Te6 -0.235 0.0 4.226 - 1.405 - - - - 76ff2ff51c95101128294e100c678a56
Zr2S6 -1.254 1.182 5.432 0.070 -0.521 - - 651463 -1.112 a3647ee81e295d97eb42bab62a068aa2
Cr3MoS8 -0.724 0.899 5.398 -0.602 -1.051 - - - -1.501 3aecffb7ceea976108adc7b38de9c14c
Mo3WS8 -0.912 1.559 5.016 0.319 -0.46 - - - -1.240 bcdb9574a04c9b7ff909e8d9d264b01e
Al2Cl2Se2 -1.089 1.416 4.547 -0.436 -1.144 - - - -1.852 843823ada91987748e15860932fbb843
AsClSe -0.382 1.373 5.583 -1.818 -2.505 - - - -3.192 bbb9e7370ee67892607902cd86da6394
BiClSe -0.561 1.235 6.203 -2.085 -2.703 - - - -3.321 b3a4714d1e01b0d52e1b047f7cec7935
BiISe -0.443 0.607 5.705 -2.099 -2.403 - - - -2.706 23d5516af26b77740ccbe0b10bee5a17
BiZrSb -0.202 0.0 4.55 - 0.866 - - - - 43460a722844d51b91a91444a6100819
VBrCl -1.009 1.289 3.981 -0.556 -1.2 - - - -1.845 2d856770830b705dd384c5ee87f46f10
Cu2Br2O2 -0.266 0.0 6.338 - -2.754 - - - - be9e890b065a9706aa39b4a5eae0e7f8
Hf2Br2N2 -1.695 2.064 5.083 0.180 -0.852 - 1532008 250913 -1.884 f9ebbe15040d1270c9d835414bcc184a
Ir2Br2O2 -0.267 0.295 4.166 -0.142 -0.29 - - - -0.437 47b7bbe9469b5067b58efefcfb63caad
Ni2Br2Se2 -0.355 0.0 5.306 - -1.732 - - - - 26b7550f8b327c70fea725daef3fce64
Ti4Br4Se4 -1.13 0.063 4.714 -0.949 -0.98 - - - -1.012 ccc574cbe4b79e0bfb34400df2469758
Cr2Cl2S2 -0.946 0.46 6.051 -2.178 -2.408 - - - -2.638 ef403bbc7cd533b51a2630411c6d1c42
In2Cl2Se2 -0.757 1.067 5.692 -1.737 -2.271 - - - -2.804 18db16c16a3f5573666887bc1253e7c7
Tl2Cl2O2 -0.723 1.03 7.0 -2.754 -3.269 - - - -3.784 b6ad18674d827ec7e890c9f2f0ff5bfe
Sc2Cl2Se2 -1.911 1.409 5.34 -1.242 -1.946 - - - -2.651 a8a10b83c163d5d2d042c68e7370838a
Co2Na2P2 -0.446 0.0 2.239 - 0.982 - - - - 6b33ca9bd699b72c8f17e8e0ec882f50
Ga2I2S2 -0.465 0.833 5.449 -1.227 -1.643 - - - -2.059 f32b6321a96586ad5becc864b211355e
Hf4I4S4 -1.134 0.0 4.122 - -0.189 - - - - 16917e28a8014e1e2d66280547ba1970
In2I2S2 -0.541 1.539 5.4 -0.820 -1.589 - - - -2.359 25c7d5c307d37fd304d3429654f174ce
Ni2I2S2 -0.207 0.0 4.908 - -0.917 - - - - f92349d1744256ba9219f2b37fe2f78a
Zr2I2O2 -2.073 0.0 3.9 - 0.419 - - - - e90bbcaa9c46992750011a9a43b0d7b9
ISSb -0.278 1.219 5.199 -1.281 -1.891 - - - -2.501 eaf3444ef749b63cbcc896539a631d1c
Sn2I2Se2 -0.354 0.0 5.559 - -1.739 - - - - f24a892c03c3a2187e407024b3481dc8
MoOTe -0.797 0.177 4.567 0.043 -0.045 - - - -0.134 65a3e61a015683da4cbebfe5c71b37db
WOS -1.349 1.503 4.887 0.257 -0.494 - - - -1.246 c58d1dea695cce3549a321d9cf408be7
TiSTe -0.921 0.093 5.183 -1.091 -1.137 - - - -1.184 e7e9ecfa3cef3ed03ba13c687b1fa741
Ni2F2O4 -0.547 0.0 6.606 - -2.995 - - - - 3fd712a5ac557873394ca4dcbda3ce08
Ru2P2Te6 -0.073 0.2 4.7 -0.607 -0.707 - - - -0.807 81c31418f913bdba781aa62bf641d3d5
Au2S2 -0.091 1.216 5.372 -2.326 -2.934 - - - -3.542 d6a69a2335bfc7df4e13af6efc651273
Cr2W2S8 -0.759 0.941 5.246 -0.333 -0.804 - - - -1.274 fda13f4aee4756889b04c1e0a535b6c3
HfNiI6 -0.616 0.862 5.231 -1.513 -1.944 - - - -2.375 ad6e3245febb2d698586cd17c39de60a
Al8Te12 -0.448 1.775 4.028 -1.404 -2.292 - - 406353 -3.179 906331282e2c7dd7b96f0be0deaffed9
Ga2Se2 -0.169 0.697 4.712 -2.455 -2.804 - 1530863 - -3.152 b117adfa325ad4939aa41b0a48d92ab9
Nb3I7Te -0.561 0.565 4.689 -2.306 -2.589 - - 86724 -2.871 efce25d0c716fdfcb6d49ee45a857bdf
Nb3Br8 -0.978 0.293 4.434 -2.408 -2.555 - 1539108 - -2.702 5cb5e43d7c42e9651150e2e5490938d7
AgNi2O4 -0.625 0.0 7.027 - -3.471 - 1510021 - - 9827d570c4c555a77efc4249ab27fe22
Ca4O12Te4 -2.02 3.969 3.792 -0.199 -2.184 - 4343089 - -4.168 48a2ca67e227bec9095f3023bfead8f8
CrHO2 -1.474 0.092 4.061 -2.596 -2.642 - 9012135 - -2.688 22c4ffd839020356e0e79b9132d13ada
Cu4Cl4O4 -0.34 0.313 7.323 -5.543 -5.699 - 9009151 - -5.856 6a7f4b411dee44d4c1ebcc07806607bb
Ga2Mn2S5 -0.592 0.0 4.071 - -0.388 - - 634664 - 39151e033566033ff277dc002d3607cd
Ir2Ta2Te8 -0.39 0.047 4.336 -1.918 -1.941 - - 657362 -1.965 a37d0c8a93f1229d51dee0e5f772ffdb
MnF12Sb2 -2.456 1.742 7.1 -4.044 -4.915 - 1535152 - -5.786 4d925d918fe6631317812b2896e8be35
Ni8As4Si4 -0.002 0.0 4.702 - -2.142 - - 83753 - ea5a9e2ce6498e320b171851b09f8bb2
NiRe2O8 -1.562 1.575 6.935 -4.481 -5.269 - - 51016 -6.056 5b2833ee266b379e50471ba3963c2391
Pd2O6Se2 -0.644 0.636 4.711 -2.855 -3.173 - - 415955 -3.491 67d7829a726cd1d32e44e9afb97eca5e
Re6Cl2Se8 -0.497 1.194 5.698 -2.453 -3.05 - - 35623 -3.647 7e411cbb73257fb77fc72915cd8643b9
Sr2Br2H2 -1.412 4.354 4.511 -0.230 -2.407 - 9009182 - -4.584 6b62f8840f190d677a7017025fcdc181
V2Cl2O2 -1.814 0.0 5.315 - -3.042 - 2106692 - - 5d28d8fb7ee93563f39f8472fb2a99e2
Zn2As4O8 -1.312 3.605 4.251 -0.287 -2.09 - 9001071 - -3.892 81bede907d9b78e6859477f8cea268d0
Ag2Br2 -0.331 1.834 5.411 -1.904 -2.821 - - - -3.738 7b582874261c25bc2e9470b73fdc7f99
AgInP2S6 -0.327 1.317 5.219 -2.558 -3.216 - 1000229 - -3.875 b4b0e6ee80776bf5289e39337414eb66
Mn2Br2S4Sb2 -0.412 0.124 4.328 -2.624 -2.686 - 1528449 - -2.748 f05b2ceaa33c75d7cf5d9c0185816b68
Zr3C2F2S2 -1.121 0.02 6.347 1.237 1.227 - - - 1.217 294c3837d0b749f2a747ead30d6172ad
Ti3C2H2S2 -0.653 0.0 1.768 - 3.121 - - - - 5d52e810f4ec683c54dac6b1fc827df6
W3H2N2O2 -0.411 0.0 2.871 - 4.49 - - - - d0da28c4ebe461fddffedd728ff69f6f
Ti3C2F2 -1.86 0.0 4.537 - 1.178 - - - - af2903d5f5664aabef879b2f1ef331eb
Y3C2O2 -1.569 0.0 2.725 - 1.73 - - - - 650ad268582259c13d441dda92eb6eae
Cr4F2N3 -1.09 0.0 5.185 - 1.76 - - - - fc33747fae5f1355a1ceeece523b8002
Nb4C3O2 -1.212 0.0 5.595 - 2.704 - - - - 444b2155ad9430b8322c4af98c31bbfc
Ti4N3O2 -2.128 0.0 5.664 - 1.951 - - - - 4f6e451ee93949430199f41e85479369
Y4C3 -0.156 0.0 3.07 - 2.13 - - - - 3886e8d7f8e8a4a09de784dd85321c44
Cu2Br2 -0.274 1.496 4.47 -0.896 -1.644 - 9013931 - -2.392 e6c4652b6c82b21c290d9910d1bd3b42
Rb2Br2 -1.646 4.18 3.768 -0.538 -2.628 - - - -4.718 569b786d9b73e67318fbc2d4728e9cdf
Cd2S2 -0.532 1.786 5.224 -1.246 -2.139 - - - -3.032 1d284eaf197a0b3c5e26005c267534de
Cu2Se2 -0.04 0.447 5.189 -2.371 -2.594 - - - -2.818 b14a2cf52381fbae3be7c7569d38cdb7
Ti2F2 -2.273 0.0 5.201 - -0.529 - - - - 8e7fb9fdb7101d2af6c84f882afb7ff7
Ga2O2 -1.45 1.556 6.335 -1.824 -2.602 - - - -3.380 1e627b4fa69237487252531babf65f8f
Hf2O2 -1.885 0.0 3.995 - -1.309 - - - - 6d215a15515481bcf23146bf1d79c237
Nb2S2 -0.723 0.0 3.843 - 0.152 - - - - 8236c8e3374139be29291d369a9eaa95
Ni2O2 -0.417 0.0 4.919 - -3.123 - - - - b677b16668e5bfcf1443788458da4ea6
Ti2O2 -1.884 0.0 4.37 - -1.957 - - - - 82d45cffa84125888e007adeed8daea1
Pt2Te2 -0.217 0.0 4.255 - 0.157 - - - - 8aaf5b4b7a4080b36b7882fdda1599e4
Rh2Te2 -0.3 0.0 4.2 - -0.362 - - - - 7e2cf91ecfbe0b4742159dad2c090ea2
Tl2Se2 -0.196 0.494 5.595 -1.421 -1.668 - - - -1.915 a7e27b92b80cb69a743215ea233db98d
Ti2Te2 -0.445 0.0 4.094 - -0.178 - - - - 8c61a3bfad3f36587727d9f28ea49b32
CrS2 -0.673 0.877 5.403 -0.667 -1.105 - - - -1.544 8fa15baae98b9e57dfe107f6ff50c411
CuBr2 -0.29 0.0 6.469 - -3.919 - - - - ad05d7b0c7a9d373061516f6000ea87f
FeBr2 -0.435 0.0 5.155 - -2.831 - - - - 744ffd69a1eb522d86486a0e2eb2d292
MoS2 -0.921 1.58 5.097 0.223 -0.567 10.1103/PhysRevLett.105.136805 9007661 38401 -1.357 8c0c876276acd176a4209ab4ef5c254d
Hf2N -0.44 0.0 4.551 - 0.421 - - - - cbedbfeabda5debb6beedc4dc6d18c25
NiO2 -0.709 1.281 7.456 -3.865 -4.505 - 9011314 78698 -5.146 861278f516e717d30adfa0c4987e9512
PbBr2 -0.965 2.004 5.974 -2.175 -3.177 - - - -4.179 dc77fc527efe4e242d4a2ae446c443bb
PbS2 -0.187 1.39 4.674 -1.656 -2.351 - - - -3.046 f5194b22192e17486beb0ac93b54d51c
Pt2Te4 -0.276 1.309 4.433 -0.883 -1.537 - - - -2.192 52fc1194b465a9ab601ff056e767df5c
S2Sb -0.107 0.0 5.572 - -1.956 - - - - 46776ad1cc21f6c13c7c8935690332e1
ScS2 -1.251 0.0 6.717 - -3.577 - - - - 2d9dc117db57fe51fad798d2000c9af1
SnSe2 -0.291 0.86 4.936 -1.635 -2.065 - - - -2.495 feb9aab0fa69efe26332cee1f45fb036
Ta2I4 -0.173 0.0 2.815 - 1.461 - - - - feaa8777b4cfa7bcbc18908e38e64ea0
ZnCl2 -1.169 4.213 5.676 -1.225 -3.332 - 8103829 - -5.438 be5fd0cd8730768b7adc37bbc745a4d9
Bi2Zr -0.171 0.0 4.279 - 1.547 - - - - 39937edd3ef9a7346b07db494b4d731b
V2O4 -2.208 0.0 6.208 - -3.069 - - - - 6c21f4b9a65cdab0d8724a70ab1b832e
ZrTe2 -0.787 0.259 5.278 -0.994 -1.123 - - - -1.252 eb26efedaddfc912af276297c5b66cf4
Ta2BS2 -0.976 0.0 5.537 - 0.688 - - - - 662249168e2b2365371448e624c46767
Nb2CSe2 -0.837 0.0 5.018 - 1.527 - - - - cf5ae637a41aee98763e59c31b7da824
V2CSe2 -0.639 0.0 4.932 - 1.206 - - - - fc6aed81ee996c76b2719083f4f99ace
Sc2F2N -2.984 0.0 3.768 - 0.346 - - - - a5bf1d81b1afb4e2b6ea6bdedbe93e2f
Bi2STe2 -0.289 0.158 5.251 -0.430 -0.509 - - - -0.588 b33284f12ffbdc6275937d7bc339dfce
Hf2CH2O2 -1.439 0.0 2.329 - 1.943 - - - - fa5ebcc3f1884e058515e70c5f637823
Ti2H2NO2 -1.645 0.0 2.173 - 1.747 - - - - 6bf49aad011723ec9412a3c150cbd1e8
Al2I6 -0.63 2.093 4.819 -0.589 -1.636 - - - -2.682 2a497e11e605f788913c0a6cb77e1dce
Co2I6 -0.138 0.526 4.874 -1.169 -1.433 - - - -1.696 84d4b400d3f07d7974ec8764fd1ba4f3
Ir2Br6 -0.339 1.567 4.73 -0.876 -1.66 - 1527188 14212 -2.443 f3501df783a0ff8f59c0f38dbb8f5ed0
Mo2I6 -0.211 0.977 4.719 -0.918 -1.406 - - - -1.895 6682103b7d71992f5d30be7be0201dc9
Sc2I6 -1.289 1.851 5.002 -1.010 -1.936 - - - -2.861 3d31fd25891e7372af60b9b4aab4f01e
Ti2Br6 -1.193 0.17 4.819 -1.903 -1.989 - - - -2.074 339e3b3fa9db61ff402f25a352655d29
V2Br6 -0.926 0.0 5.598 - -2.827 - - - - c9322615df305b762af5643793377201
Zr2Se6 -1.078 0.41 5.021 0.245 0.04 - - 652233 -0.165 6ff4b17782dfc072beadb73506319e34
Cr3MoSe8 -0.532 0.707 4.868 -0.110 -0.464 - - - -0.817 46d4b2e308b4eba9a5f4555593ed9199
Mo3WSe8 -0.681 1.3 4.493 0.766 0.117 - - - -0.533 3ec3732033b549cc6dfe1774b4086996
AsITe -0.124 0.982 4.838 -0.978 -1.469 - - - -1.960 d16d12ec1f901cfb505f9d173db07d4f
BiClSe -0.681 0.851 6.139 -2.675 -3.1 - - - -3.526 6cfe644ccb2572d05024704e2673375f
K2I2 -1.385 3.885 3.847 -0.568 -2.511 - - - -4.453 8e38fd458bd79618be93077a6d07ad84
BiITe -0.371 0.412 5.452 -1.921 -2.127 10.1088/2053-1583/aac652 - - -2.333 26dec9a618069d0bc795533fdb29ed05
BiZrSb -0.199 0.0 4.549 - 1.278 - - - - 4fd23dc2ed5e49b7f4a0ecf1a7d2d51c
Cu2Br2S2 -0.053 0.0 6.307 - -2.661 - - - - 77c5bed98f8217d1020e2d815ba3fdac
Ir2Br2S2 -0.398 0.344 5.042 -0.734 -0.906 - - - -1.078 1f05af633087cebdf4b369b3a23146c9
Os2Br2S2 -0.042 0.0 5.402 - -1.066 - - - - 61fae5f885d99b163af7d695463d5c0a
Cr2Cl2Se2 -0.834 0.176 6.051 -2.330 -2.418 - - - -2.507 8a055791b49f2b01fbbec644ff688d46
HfClI -1.032 0.814 3.039 1.657 1.25 - - - 0.843 8f9651ff4443504b5e8e52a02805f934
Co2Na2Sb2 -0.106 0.0 2.075 - 0.786 - - - - 66ad8433bcd0fc71a55b8bf59d6c2e8a
Li2F2S2 -1.488 1.69 4.365 -2.314 -3.159 - - - -4.004 58a603abc2a17452e054799e7f4b1a10
Hf2I2Se2 -1.103 0.0 4.374 - -0.018 - - - - 28b388eb965be17477095cf2a004d1dd
In2I2Se2 -0.506 1.264 5.436 -1.069 -1.701 - - - -2.333 ec386148cc3b1d3f8010da66faff999c
Ni2I2Se2 -0.223 0.0 4.814 - -0.888 - - - - 1380b8d00b2bc9e75e548796b996755e
Sc2I2S2 -1.679 1.662 5.245 -0.554 -1.385 - - - -2.217 1263b78543a76e4f67b8bb20250c8888
WOSe -1.121 1.244 4.531 0.570 -0.052 - - - -0.674 7f960eafd51812d95c7a5608de0bfe1c
TiSTe -1.031 0.0 4.83 - -1.182 - - - - 1c89acd4f6e42b9af051754b57d63637
ZrSeTe -1.129 0.0 4.868 - -1.169 - - - - a258047ce90c8a7ce10d919ff541979f
Au2I2Te4 -0.058 0.711 4.79 -1.601 -1.956 - - - -2.312 9048b03e48f85a063de5741868164b1f
Ni2F2S4 -0.671 0.0 5.544 - -1.428 - - - - 4b0da987d9f445d507a33928dc967dfc
Bi2P2S6 -0.213 0.655 5.297 -1.650 -1.978 - - - -2.305 3095a7b7ec4045da203a140d135dae43
Fe2P2Te6 -0.005 0.126 4.652 -0.589 -0.652 - - - -0.716 231be37bebb025ebb98c908acc474310
Cr2W2Se8 -0.525 0.759 4.706 0.166 -0.213 - - - -0.592 5d37cbae155c08a00853c1832fda3b10
MnZrBr6 -1.209 1.643 5.356 -1.740 -2.561 - - - -3.383 94b73bc6bdc439e5a06ef9de534f4c4c
Ba2N -0.282 0.0 3.003 - -0.627 - 8102920 - - f3c6ad0804bfc63797da81c5cc515a7e
Nb3I8 -0.537 0.193 4.236 -2.033 -2.13 - 1539109 - -2.227 835e88e54f13758e2d6e8238302e85fc
Ga2NiS4 -0.55 0.17 4.357 -1.164 -1.248 - - 634901 -1.333 a7e8fe3fd27f09d3f470d75be911f677
Sc2C -0.061 0.0 4.098 - -0.516 - - 280743 - 1b227b33e24badc18fea7c18adecbb9e
As4O12S2 -1.232 4.456 4.949 -1.511 -3.739 - 9011231 - -5.967 d185e63f060ea561c4ecff5ace968c3b
Cu4O12Te2 -0.581 0.449 7.696 -5.941 -6.165 - 9004359 - -6.390 6ec8407462fca0a6f25c83e2e6fd8d71
Hg3B2O6 -1.315 3.522 4.695 -2.349 -4.11 - - 71261 -5.871 a05abd7b645f25d50b917561a07ee3b0
Li4O8Sb4 -1.681 3.248 3.825 -0.243 -1.867 - - 262075 -3.491 6d18754fff38628000d8e37618c590c2
MnRe2O8 -1.73 1.565 5.988 -3.598 -4.381 - - 51014 -5.163 8a700275a47ea5a4959d12a529704bdc
Na2Nb2Cl12 -1.453 2.287 6.518 -3.564 -4.707 - 8103950 - -5.851 5cc73c0be9520697338f0126193f24e4
Nb2Br4O2 -1.66 1.038 5.13 -2.797 -3.317 - - 416669 -3.836 9fe6a9a349f18626e3526747cb6c793f
O14S2Te4 -1.169 3.194 6.61 -2.928 -4.525 - 7035628 - -6.122 80b5e6947126aceecaa2d6e5aea822fb
Pd4Tl2Se6 -0.376 0.834 4.408 -2.189 -2.606 - - 78786 -3.023 c31574bba25065c8329117c7e57ac2ae
Rh2Cl2Te2 -0.594 1.038 4.894 -2.486 -3.005 - - 406932 -3.524 4eecfa08bd669a1367b100ec3182b591
Sr2F2I2 -2.926 4.219 4.319 0.284 -1.826 - - 159280 -3.935 21d506bab6cbf2eb9a797da5bc811479
AgInP2Se6 -0.233 0.863 4.941 -2.490 -2.922 - 1509399 - -3.354 4dd33ef9c953a150e9b113a523d1f709
K2C2H2O6 -1.542 4.463 3.358 0.095 -2.136 - 9016039 - -4.368 3185c4dbbef5cacedd651721c1beb81c
Mn2Br2Sb2Se4 -0.376 0.265 4.397 -2.642 -2.775 - 1528451 - -2.907 b8cbe28e77c028c3b4bc268a404140e7
Zn2H4O8Se2 -1.097 4.452 4.005 -0.209 -2.435 - - 78916 -4.661 c3051e7f91e23d523ce80cf4f0827c6b
Cu2Br2C4H4N2 -0.113 0.69 4.083 -2.480 -2.824 - 7052608 - -3.169 edd68e4b75d3459a998ba56d4a61980d
Y3H2N2O2 -1.825 0.0 1.79 - 2.65 - - - - a7ad16cdaa716d94a5cb0e06299102ca
Zr3C2O2 -1.796 0.382 5.433 1.025 0.834 - - - 0.643 de8dd2b5f4dbb61b88b4c135be64514b
Ti4C3H2O2 -1.211 0.0 1.912 - 3.383 - - - - 77bc081c5c3c2ccbe712cc8b1fe3cae8
Y4H2N3O2 -1.842 0.0 2.028 - 3.322 - - - - 90e30458bcefe6731cd916b5cccd2fc3
Y3C2 -0.14 0.0 3.52 - 1.401 - - - - f0464d07eb71c3a55c48170eb20ea054
Sb2Se3 -0.263 0.421 5.272 -0.299 -0.509 - - - -0.720 29721afa4f19b144a62f52191ecd86d2
Sc4C3O2 -1.092 0.0 6.306 - -0.296 - - - - 244dfd1e9a01ea3fa695251cb94cb905
Zr4C3 -0.554 0.0 3.917 - 2.892 - - - - 329a36a9a6b6c5d8ac8959a90d3dcf2b
Ti2Br2 -0.601 0.0 3.811 - -0.392 - - - - 594cccae10cae1d14ec8e290121c3540
C2H2 -0.134 3.46 3.0 0.894 -0.836 10.1126/science.1167130 - - -2.566 fe4d1527f437c55cccd62b833af59c7a
W2Cl2 -0.301 0.0 4.271 - 1.905 - - - - d061ce3f041b82ab4246ccc28745737b
Co2S2 -0.419 0.0 4.774 - -1.158 - - - - 425e2b99a91fa5459d1f441d37b59b1a
GeO -0.925 2.133 5.492 -1.781 -2.848 - - - -3.914 877ee57cc0df02ed91c37ff167668db1
In2Te2 -0.35 1.233 4.649 -0.153 -0.769 - - - -1.385 231a58c3a515ad62b1a98ac2091dc30a
Ni2Te2 -0.167 0.0 4.416 - -0.582 - - 76730 - ad19d3dd07e88c4774cc9257cde657ac
BiS2 -0.035 0.0 6.26 - -2.739 - - - - d13f6ffad7f5c5eec7cd0493cfc54344
Ru2S2 -0.148 0.0 4.504 - -0.603 - - - - 7d2b1459d0b48e3178a605c7a93ff003
Ti2Te2 -0.097 0.217 4.61 0.370 0.262 - - - 0.153 c67a875dd1c744a3917c2b3bb9d3dfb7
CaI2 -1.666 3.537 4.589 0.241 -1.527 - 9009097 - -3.296 36b54424a540582cfafb8d3640019473
Cd2S4 -0.152 1.52 4.115 -1.031 -1.791 - - - -2.552 7f4dc88738cfe50f8f444ca18652716a
CoI2 -0.01 0.0 4.696 - -0.956 - 9009100 - - e0e46d3fb8cff64379da324aeec6b40f
FeCl2 -0.704 0.0 5.332 - -3.001 - - - - fb7c890c688b472b0dda1f2ce1827d35
FeS2 -0.263 0.0 5.116 - -1.125 - - - - f2ee62d96812df6e47b53b8a4efaa1c2
Hf2Cl4 -1.499 0.843 4.046 0.290 -0.131 - - - -0.553 977747c6e2cf0fdd1af1691f43bfc7ce
HfS2 -1.26 2.094 5.605 -1.808 -2.855 - - - -3.902 3eb41e72e2e181f1094fc95064c7e46e
HgCl2 -0.624 2.468 6.458 -2.933 -4.167 - - - -5.401 9863f72d0373a66f8d768863e6c7dbf4
InI2 -0.34 0.0 5.188 - -1.754 - - - - 17f62a62e1c9875aea5d4990091c94a2
YCl2 -2.048 0.374 3.901 -0.238 -0.425 - - - -0.612 d60b48609d45300c7c4a28fac7fc5841
MnTe2 -0.104 0.0 4.428 - -0.334 - - - - d6df71b555d89d8881c8483bd3198591
Nb4O8 -2.424 0.459 5.252 -1.795 -2.025 - - - -2.254 82c05d667f28ba3772180c0481b37e93
NbTe2 -0.442 0.0 5.005 - -0.503 - - - - 314d16a2770d5a11193d515e610bb9e7
Os2S4 -0.3 0.53 5.13 -0.634 -0.899 - - - -1.164 d1ba80f2b11c28fc476a3151137cb393
PdCl2 -0.35 0.463 6.009 -2.746 -2.977 - - - -3.209 c60e23aeedd2568792d6a464f7a3114d
PdSe2 -0.265 0.558 5.057 -1.255 -1.534 - - - -1.813 2a7b9883ca903fc6246b41a13e3e722a
ScSe2 -1.173 0.0 6.21 - -2.921 - - - - 59f8ca947dd772743c26b0c9260aa98d
TaSe2 -0.366 0.0 4.391 - -1.391 - - - - ff550ba0636746210d771b2c928b1742
TiCl2 -1.537 0.903 3.794 0.405 -0.046 - - - -0.497 8d9b1616f0257588c20c8a0d86e42af1
VO2 -2.184 0.0 5.339 - -3.113 - - - - fb86878dbbc0353156bf6dd56c2d07d3
VTe2 -0.307 0.212 4.968 -0.553 -0.659 - - - -0.765 6d2a1e27bcc0ccf2e297dea2f42a3384
W2Se4 -0.503 0.032 4.938 -0.381 -0.397 10.1038/s41467-018-04395-2 - - -0.413 6287499020d25d591abbabc90c917f4d
ZnCl2 -1.107 4.453 5.634 -0.424 -2.65 - 9009136 - -4.877 b90d3a81c2d4eaf313a45441a7544c04
Bi2Zr -0.173 0.0 4.304 - 1.489 - - - - 4dc2782369394ce38485b980f9d805fc
Ti2BS2 -0.912 0.0 5.991 - -0.501 - - - - 4bd136077f0a65cea77368eb4e13e5fc
Sc2CO2 -1.812 0.0 6.378 - -2.245 - - - - 4fdb566c9967e2739beec0f658ddc807
W2CSe2 -0.221 0.0 4.651 - 1.916 - - - - 23acc58f0ddeed82778455cb20b99c1b
NiH2O2 -0.844 1.078 1.986 0.064 -0.475 - - - -1.014 c75eba6536a3606891fcb9cbe0947ae2
Sb2Se2Te -0.191 0.573 5.218 -0.067 -0.353 - - 651529 -0.640 b5a2c32eace47b5c3a50712b8892c580
Mn2CH2O2 -0.679 0.0 1.606 - 1.433 - - - - ae144be587f959d7cdf07598ebcecfcc
AlNi5Cl2 -0.361 0.0 4.689 - -0.118 - - - - 29597719ff8bc144d727c527dfc07286
InNi5Br2 -0.093 0.0 4.292 - 0.367 - - - - 1900f5b774d759b1115b77eb7f620e83
Cu2ReCl6 -0.554 0.467 5.428 -2.322 -2.556 - - - -2.789 d1d21b2aa4960cee53e198ffd092e228
Ir2Cl6 -0.55 1.823 5.004 -0.987 -1.898 - - 23171 -2.810 edc498b47578056bc9114b5ef540333b
Os2Cl6 -0.318 0.063 5.267 -2.027 -2.059 - - - -2.090 e9049ca8b78a3c0c1eb838cb59c14f4a
Ru2I6 -0.074 0.0 5.135 - -1.773 - - - - d020b504341f3c9c2beb12e6e394ec2a
V2Cl6 -1.271 0.0 5.886 - -3.101 - 1536707 - - d54e6f2236a4ec7f31f7e1205804b269
Cr3MoTe8 -0.149 0.467 4.526 0.283 0.05 - - - -0.184 6068fc11d5c7cd6548dfaef8f159b81d
Mo3WTe8 -0.254 0.9 4.235 0.984 0.534 - - - 0.085 c63ed92258237b1e2f6813cd914e6e72
Al2I2S2 -0.854 1.615 5.145 -0.416 -1.223 - - - -2.030 16f473b5882214a0a1d4fc35bc6b147d
AsClTe -0.322 1.479 5.39 -1.527 -2.266 - - - -3.005 271069460b9ee31322a5a6a24bfd3357
BiBrS -0.442 1.188 6.199 -2.084 -2.678 - - - -3.272 48dcc07af1381fbbc3a5274eb130f344
BiClTe -0.598 0.599 5.715 -2.349 -2.649 - - - -2.949 1457b172840cea33701d0a13e2a567d0
BiITe -0.261 0.346 5.332 -1.350 -1.523 - - - -1.696 c68b10976f76b0dc08e0dbc2c608237e
TiBrI -0.877 0.679 3.429 0.819 0.479 - - - 0.140 9112d651fbebf122221fb6c827da4a8d
Ir2Br2Se2 -0.322 0.052 5.192 -1.127 -1.153 - - - -1.179 2c24655ed9c074dc2ea95f29c48d5e0c
Ti2Br2S2 -1.373 0.0 5.228 - -1.378 - - - - 6294ffa62608f4950e9283830fd93687
Hf2Cl2N2 -1.857 2.101 5.132 0.041 -1.01 - - - -2.060 bb89c39fd99d5cabf0a1f26acdc4dd96
Ir2Cl2O2 -0.41 0.444 4.573 -0.514 -0.736 - - - -0.958 b044aa1b9d9e52d550ffb59fa9d4bad6
Ni2Cl2S2 -0.455 0.0 5.761 - -2.286 - - - - 4b29c0014a8383cd0230e4510d1677ff
Na2F2O2 -1.092 2.813 4.749 -2.192 -3.598 - - - -5.005 9d833dbb54db63c5438b05a61f1b5c9f
Hf4I4Se4 -0.998 0.0 4.136 - -0.123 - - - - a67792ca027f3e5fa2c7251aff90ae37
Ti2I2Se2 -1.001 0.0 4.795 - -0.591 - - - - d56f08479389cc53e181cd552ee1ef99
MoSSe -0.805 1.453 4.849 0.445 -0.281 10.1038/nnano.2017.100 - - -1.008 c00d8a8860bd7935dd24bb0fb5d5843d
WOTe -0.685 0.537 4.331 0.587 0.319 - - - 0.051 6ebecd30cbdab1dac3238a59b87d79b4
VSTe -0.584 0.0 5.039 - -0.839 - - - - ab811f89979eaddac794f03994e3c3d9
ZrSeTe -1.017 0.262 5.334 -1.039 -1.17 - - - -1.301 42bd3b66a7b3b4d6151cc860b0c904ae
Cu2Br2S4 -0.223 0.934 5.424 -2.409 -2.876 - - - -3.343 ac0bded419325032c0cb3e7cbe55fa78
Cr2W2Te8 -0.093 0.497 4.391 0.508 0.26 - - - 0.011 5354a1c5d087a04bf5e86411f844b42e
CoZrBr6 -0.993 0.388 5.376 -2.231 -2.424 - - - -2.618 fb9e1e9f2fcdd649da36f4ac69560a69
Al2O4 -2.011 0.017 8.445 -6.416 -6.425 - 9012273 - -6.433 7ecaf3706311eefb6b9ed23157525065
Cu2F4 -1.595 0.825 7.325 -5.739 -6.152 - 1533167 - -6.564 940c276bbc271ca4364395c97e7fe19c
Sc3N2O2 -2.281 0.0 6.399 - -1.108 - - - - 975b3aff19693c62450cbdb02949bbb2
Ta4Se12 -0.68 0.005 5.02 -2.264 -2.267 - - 651965 -2.269 85d16c7d2a6407ed7551d92603305f0e
W2N3 -0.194 0.0 6.986 - -3.151 - - 186207 - fd03bee48de463a3253158ebc6fa38ce
As2O6Sb2 -1.301 3.974 4.038 -0.350 -2.337 - 9015432 - -4.324 6c27517274ca3b01f00ba8924c6d439a
Bi4B4O12 -1.861 2.865 4.412 -1.112 -2.544 - 7209481 - -3.977 832a57b41c327db0c3b5ae4328881927
Cd4Br4O4 -0.469 0.0 6.99 - -5.49 - - 56219 - 30e943b4da315291ce4268cb659156e3
Cr2Ge2Te6 -0.184 0.125 4.633 -2.426 -2.489 - 1543733 - -2.552 8bdad8437efc5f5ab65735b62f7a10fe
Ga2Y2I2 -1.07 0.0 4.098 - -1.068 - - 417149 - 29ca0f50bdae9d66167cc1c1dffc5cec
KTiS2 -1.074 0.0 4.302 - -1.861 - - 641335 - e85b8c2585446cd78d8b00000592f28d
Mo2O10P2 -2.064 1.04 5.373 -3.389 -3.909 - - 36095 -4.428 c93f3134e97869d6936ff5ce969da2ac
Nb2I2O4 -2.093 1.188 5.084 -1.559 -2.153 - - 418061 -2.747 3005e43e49a997327f4d62208b3e51c9
O4S8Sb8 -0.624 1.879 4.448 -1.947 -2.886 - 9009342 - -3.826 9cba1653f679c302a4da1d3623b64caa
Pd3Ta3Te14 -0.349 0.0 4.521 - -2.282 - - 73313 - 63fd912fbbc112ec528559ac1dc12c36
Rh2Ta2Te8 -0.444 0.076 4.41 -2.029 -2.067 - - 656453 -2.105 f60ffeab909b393ea2670920a1f45214
Sr2H8O6 -1.571 4.396 3.629 -0.227 -2.425 - - 15366 -4.623 6c6045ec52ed981bb749b0ce76a39c87
V2O10P2 -2.218 1.566 6.903 -4.779 -5.562 - - 77598 -6.345 1b277cb1cb1b3d406413efc9298af0be
Zn2Ge2O6 -1.491 2.745 5.111 -2.198 -3.571 - - 33722 -4.943 8b30de62b371b1649a8eb59131edf0d4
AgScP2S6 -0.669 2.017 5.16 -2.159 -3.168 - 4331401 - -4.176 92f59ef3f2be0f239dd31c4b9518fd85
Na2SnH6O6 -1.355 3.937 3.947 -1.142 -3.11 - 1526467 - -5.079 d37b117da7254353621fccae527eb68e
Zr3C2F2Se2 -1.005 0.0 7.13 - 1.001 - - - - c7c828a6649801eeea94f5592271835b
Zr3C2H2S2 -0.766 0.0 1.796 - 3.523 - - - - eb34475f017ee8b62e59f5046ccdeb73
Zr4H2N3O2 -1.706 0.0 2.392 - 4.162 - - - - 4879c297adc4313607e909c8b8a6ab3a
Zr3C2 -0.417 0.0 3.921 - 1.858 - - - - 95c91f9ea3c2ea80385c693c68fdc2eb
Sb2Te3 -0.121 0.337 4.797 0.242 0.073 - - - -0.095 d91b4b9d87f24c8a4b8e43693b45ea19
Mo4F2N3 -0.814 0.0 4.628 - 3.073 - - - - b9f9e38597937775fc3090e809201661
Ta4C3O2 -1.249 0.0 5.334 - 3.138 - - - - d35788e50e7f7b0bffd346e90e1363fb
Cr4N3 -0.122 0.0 4.072 - 2.083 - - - - 8acf1b0991d26a66b936e36646ddadc4
Ag2Cl2 -0.421 1.569 5.036 -1.618 -2.403 - - - -3.187 c774725892af960959b6c1025c935af0
AlN -0.865 2.893 3.876 -0.555 -2.001 - - - -3.448 67f1ef4dfc60c02f8b6d3f75f98ad675
Fe2Br2 -0.066 0.0 3.694 - -0.316 - - - - cf856b299dd69ca6d861322f96857cb8
Cd2Se2 -0.521 1.402 5.141 -1.192 -1.893 - - - -2.594 8c9b47febd699d65ca50f93d005a121b
Hf2Cl2 -1.182 0.0 4.281 - 1.607 - - - - 40f432d49f107d76ff0adb20ca338372
Fe2S2 -0.496 0.0 4.861 - -1.544 - 4124261 633338 - cb91be3162bc137a0f54b14964ac26e6
Rb2I2 -1.397 3.714 3.699 -0.555 -2.412 - - - -4.269 bdfe98975f71559d433d9e8c2690c8d7
In2O2 -1.14 0.385 6.25 -2.121 -2.313 - - - -2.506 94d7179c29ab85b6469aeefe1e3db001
Ni2S2 -0.28 0.0 4.908 - -2.06 - - - - 765a4748d7f5e2b3fd7663b1ed4eaf1a
Rh2O2 -0.301 0.0 6.177 - -3.366 - - - - 57de514643f5e0e32322192b8bfd13ca
Tl2O2 -0.479 0.0 6.85 - -2.909 - - - - f0d681ac7b7e6e1339b9eea68ced8de3
Pb2Se2 -0.51 0.789 4.11 -0.221 -0.615 - - - -1.010 feaae1a73d4c9e2618007c0ee25159f5
Ru2S2 -0.091 0.0 4.834 - -0.36 - - - - eaa2428d90886b28a1e099dffb7588cd
Ta2S2 -0.513 0.0 3.66 - 0.416 - - - - 81192b726c13a6c7697b9494acef8e03
Sn2Se2 -0.389 0.923 3.914 -0.059 -0.52 - 1537675 - -0.981 3f0c2858aea2dbb761408f043495e61f
Ti2Te2 -0.081 0.11 4.598 0.394 0.339 - - - 0.284 3dd6e6c01907d2596e1b5dc2ea1a5d2c
Fe2Se4 -0.299 0.575 4.849 -0.483 -0.771 - - - -1.059 b286d987ae18683fc09a38a0c64e2108
CoI2 -0.051 0.0 5.273 - -2.575 - - - - ab7be847a0697ace21190ff7ca37d699
FeCl2 -0.674 0.351 5.569 -1.889 -2.065 - - - -2.240 bce1c0bfd4784b490333f1f4ed73c501
HfS2 -1.592 1.221 5.726 -1.354 -1.965 10.1002/adma.201503864 - 182677 -2.575 363f3795c13e382ee0e40dbe1dc96c93
PbCl2 -1.073 2.775 6.315 -1.905 -3.293 - - - -4.680 fa5f293f7d58e3c4a3b32fe299f4aed4
MgBr2 -1.532 4.588 4.944 0.210 -2.084 - 9009107 - -4.378 c837eef807387592e908aa7527cdd33c
MnI2 -0.419 0.877 4.715 -0.885 -1.324 - 9009110 - -1.762 19b7b04c09081c9f4b4d8b3acab02e45
MnTe2 -0.2 0.0 4.574 - -0.61 - - - - 79c470e9ff263c82542f476d0d155373
NbO2 -2.346 0.0 7.02 - -3.173 - - - - 120141c4f09572a89bca81f8a70ea439
Ni2S4 -0.265 0.824 4.868 -1.911 -2.323 - - - -2.735 d7d3eb4438335b7e1960fafbb7968fae
PbBr2 -0.883 2.275 5.982 -1.812 -2.949 - - - -4.086 464d008e66661b1e36d177f6f6e9c71e
PbS2 -0.004 0.755 6.389 -2.486 -2.864 - - - -3.242 d673d72dcb556e5f498734426f92b917
Pd2Te4 -0.257 1.212 4.518 -1.149 -1.755 - - - -2.361 ae9e4cecc1e3adf08eec33363e6cb055
PtTe2 -0.392 0.303 4.133 -0.151 -0.303 - 1537197 - -0.454 c00ca1d9a12d1df037fcce6d0116ba12
HgH2S2 -0.189 2.352 5.011 -1.578 -2.754 - - - -3.930 9ab0abad0f5ebb09f803540225c8dfcd
Ti2F2N -2.562 0.0 4.45 - 0.121 - - - - b2f501723514cb1b20b255fca47336b0
ReS2 -0.027 0.0 4.74 - -1.821 - - - - de71b3eec758592dd1266f23669f516c
Rh2Cl4 -0.379 0.413 5.077 -1.815 -2.022 - - - -2.228 c90cb83008bba6eb6f6a2731a594bf0e
Rh4S8 -0.379 0.597 5.694 -1.660 -1.958 - - - -2.257 28bc4fb7191101eeef0f9ce83f9e48c4
RuO2 -0.693 0.0 5.58 - -3.305 - - - - 445e91f5bc3179ea85df19149f751001
InPd5Br2 -0.35 0.0 5.089 - -0.16 - - - - 70e6e0361c4033fd77046b3a7219ee70
Cu2ReF6 -1.673 0.872 4.857 -2.341 -2.777 - - - -3.212 5996afa92822d3b19882491d43934539
ScCl2 -1.934 0.107 4.057 -0.598 -0.651 - - - -0.705 5d589ed7a48c44373df68ce1a5ce1c7e
ScSe2 -1.126 0.56 5.338 -1.860 -2.14 - - - -2.420 cc6f59a2b0ec2033771c285c4cb9f25c
TaSe2 -0.815 0.0 4.696 - -0.418 10.1021/acs.nanolett.7b03264 4031648 24318 - c6bef2cab93b3d44a4435fef2caa28ea
TiSb2 -0.113 0.0 4.725 - 0.894 - - - - ae689f9ddfb2da5a2537ab7e6c641adf
VO2 -2.088 0.0 7.626 - -4.047 - - - - be6cc5e14c3e89037d46b19c3314cfbb
Zr2Br4 -1.336 0.58 4.04 0.016 -0.274 - - - -0.564 3446aeb42126c451dadf7514b757b36f
V2BS2 -0.699 0.0 5.722 - 0.042 - - - - ccc2cd27d8377d7a5c025ca444f49917
Sc2CF2 -2.541 1.02 4.516 -0.199 -0.709 - - - -1.219 9cd7478f554dbb1910bd0e24e701145a
Ta2CO2 -1.766 0.0 5.522 - 0.128 - - - - 6ae1ff17193872e6324e57414d447bf9
Zr2CSe2 -1.081 0.0 5.748 - 0.482 - - - - efe96a249746cb624f9700ab70c57c7b
Nb2Se6 -0.666 0.0 4.662 - 0.874 - - - - 8868e10b0ebaa5671355372d4d81e602
Sc2S6 -1.033 0.0 6.029 - -1.382 - - - - c17fbcd5e90ea19574df4a08c40d96d8
Ti2Cl6 -1.564 0.121 4.995 -2.076 -2.136 - - - -2.197 70978dd6825f54af41df8873ec7cbab2
Y2Br6 -1.963 4.087 5.392 -0.682 -2.726 - - - -4.769 c0afce31196d326d9492b2616ed0784d
CrMo3S8 -0.848 1.184 5.277 -0.235 -0.827 - - - -1.419 17bfa62b167634c08451fdf4be1d3b54
MoW3S8 -0.888 1.532 4.834 0.545 -0.221 - - - -0.987 c4b14926f246ac970b64f1e84f610655
Hf3ZrS8 -1.383 1.149 6.306 -1.767 -2.342 - - - -2.917 a2347ab9686ea50523e5e0d003e1b754
Al2I2Se2 -0.725 1.493 4.906 -0.342 -1.088 - - - -1.835 d36a6c79fdde24ac311ea0bd472c8984
BiBrS -0.557 0.891 6.155 -2.644 -3.089 - - - -3.535 7e811f4df431df444670e667a307a40a
BiClTe -0.468 0.531 5.669 -1.865 -2.131 - - - -2.396 9ef8ca3fe53d366d4a97406757b7c9e5
ZrBrCl -1.512 0.912 3.373 1.038 0.582 - - - 0.126 2b1b73b618d835f280e9439ca1738de2
Hf2Br2S2 -1.497 0.0 4.664 - -0.643 - - - - 9f4deaed27b6a01baa06d5ca958a490e
Sn2Br2N2 -0.124 1.366 5.625 -0.902 -1.585 - - - -2.267 8903a04f74363ea0829f09381afd73e1
Ti4Br4S4 -1.251 0.0 4.771 - -1.142 - - - - 2da2bd71fd179aacbaab6ff85a82a4bc
Zr2Br2Se2 -1.426 0.0 4.856 - -0.867 - - - - c777152292c71717e7146b69a1ce6b00
Ir2Cl2S2 -0.5 0.355 5.48 -1.206 -1.383 - - - -1.560 460d4f6578877778a9f3eeeff11e5adf
Ni2Cl2Se2 -0.46 0.0 5.695 - -1.964 - - - - 2f52e50ff509724749333365073ee924
Sc2Cl2S2 -2.053 2.109 5.705 -1.238 -2.293 - - - -3.347 8f9e8e50d67aa6b9586ed903393271ad
PdTe2 -0.122 0.0 3.781 - -0.293 - - - - caf7d3ceb9d8cce1577e9f699a968727
Ti2Cl2Se2 -1.361 0.0 5.231 - -1.458 - - - - 3c9a830b443ba90c586aafe6c406f3da
Cr2I2S2 -0.619 0.331 5.24 -1.019 -1.184 - - - -1.350 d8af449dba7636a22b3946bc0f43e426
HfSSe -1.471 0.684 5.321 -1.454 -1.795 - - - -2.137 96582b3441b2a4071d1232597346fbc4
Ir2I2O2 -0.108 0.0 3.727 - 0.562 - - - - a718089b73293b1e6d42881963bba69c
Sc2I2N2 -1.013 0.0 5.842 - -1.476 - - - - b9c6f69f276ae45503e96a6f2a74377b
Ti4I4Se4 -0.919 0.006 4.354 -0.495 -0.498 - - - -0.501 2fcc2ab0b8dc58cc3f1a779e44abee09
TaSSe -0.937 0.0 4.855 - -0.902 - - - - e43df3f388e5b098e8f82ce3dd7f76fd
VSTe -0.594 0.0 4.813 - -1.061 - - - - 89cf29504370b0d60a9d3ca295eaeb69
Ag2Br2S4 -0.147 1.167 5.554 -2.338 -2.922 - - - -3.505 569b6c131f21fdf379a2d3d8c7d5415d
Sc2P2S6 -0.979 0.827 4.834 -0.976 -1.389 - - - -1.803 c69c2653793bf7e18c69ef1f97e73ca5
FeHfBr6 -0.957 0.938 4.705 -1.175 -1.644 - - - -2.113 cb99f5f8ee06fd460d1ea971de9c9c83
Cu2Se2 -0.072 0.0 5.665 - -3.816 - - 162904 - fa4c54525c570063d04971defa855d18
LiC12 -0.017 0.0 3.268 - -1.003 - - 193440 - 90fda8d28b33f2717dd05ea6758ec4a0
Nb4S12 -0.82 0.376 4.689 -1.450 -1.638 - - 656322 -1.826 fa3f254c870543bb16cb3253f7f7d95b
Pd4I8 -0.254 1.069 5.257 -3.162 -3.696 - 1539344 - -4.231 1f76197c75dae5747d74ab9fc8b75c81
Ta4Se2 -0.487 0.0 3.72 - 0.227 - 1540056 - - 72967e6650dff04ed52e8ad3b9aae092
Y2I2 -0.887 0.0 4.087 - -1.296 - - 151974 - b80f4c7f68e74b50fce4c39a0e45f483
Bi2Cu2S4 -0.201 0.136 3.701 -1.645 -1.712 - 9003581 - -1.780 d5e44c0d7df342243d07acb0481395e4
Cd2Mn3O8 -1.369 1.102 4.235 -2.306 -2.857 - 1528776 - -3.408 fb836fd5f4dbaf1245464a1a9bff49ac
Cr2Si2Te6 -0.202 0.272 4.569 -2.289 -2.424 - - 626810 -2.560 57b63a0a509ca06e2267d078c3eae272
Cu2S4Sb2 -0.207 0.357 4.028 -1.752 -1.93 - 9003580 - -2.109 ddfb27cece1ceb8a7e7e03ad17f8151d
Ga2Cl2Te2 -0.73 2.163 5.494 -2.565 -3.646 - 7221395 - -4.728 b99c3fb73f4c2961899a2ef693026d8f
Mo2V2O10 -2.166 0.003 5.671 -4.342 -4.343 - 1535988 - -4.345 8a0398730e800423c47323c850330cd0
Nb2I4O2 -1.358 1.024 4.703 -2.142 -2.654 - - 36255 -3.165 2b19a357fe02ef361dfb9e66e3891c82
O8P2Sb2 -1.864 4.374 4.544 -0.906 -3.093 - - 15073 -5.280 6d17ce1865cc219e112cd4a362c89a66
Pd4P4S4 -0.456 1.195 5.186 -2.243 -2.841 - - 2331 -3.438 2bdb7f1898e91caac645018d12a82b35
RuCl2O -0.798 0.0 5.794 - -4.077 - - 83883 - dd3a517da1df1e0dff1919e54ed131da
Sr2O12P4 -2.413 5.087 5.635 -1.551 -4.094 - 2200911 - -6.638 66a016ca3c2012e3267c8db02ad5a1ec
PtO2 -0.549 1.674 6.033 -2.005 -2.842 - 1537411 76431 -3.679 df3bb6169ba7642da1b01077b84d6909
V4F12O4 -2.756 3.465 8.088 -4.916 -6.649 - 4339753 - -8.381 ccabcc26d29f907fd53721c0baa96ee2
Zn2O6Si2 -2.023 3.402 4.332 -1.112 -2.812 - - 167186 -4.513 900a6622f982e025727de0488b2f2754
AgScP2Se6 -0.534 1.634 4.864 -2.026 -2.843 - - 195336 -3.660 9d09fbdd2860d076f3a477a53f8741ba
Ca2Cl4H8O4 -1.534 5.714 5.023 -0.971 -3.828 - 1001835 - -6.685 496b690a622bd41b45f21f7dfb8629f4
Ti3C2H2Se2 -0.467 0.0 2.061 - 3.163 - - - - ed8d53d90c821af0a31d2129bb68405b
Mn2Cl2S4Sb2 -0.496 0.355 4.524 -2.769 -2.946 - - 151925 -3.124 c6329761fa8e218e62bbd21a204a0811
ZrH2O6P2 -2.17 4.28 4.4 -1.067 -3.207 - 1529538 - -5.347 6b0a65c60b69ac94a79dd724e13bf8c4
Cu2C6H8I2N2 -0.134 0.838 3.908 -2.128 -2.547 - 7217321 - -2.966 1ea1bcd862d35a7c819f5a81c99e4ce2
Cr3C2H2O2 -0.52 0.0 1.561 - 2.519 - - - - bf5b5d6c07e3d3e12beb44e200889237
Y3C2F2 -1.716 0.0 4.468 - 0.477 - - - - cf59dc8da747bd573453a33d15ace654
Bi2S3 -0.363 0.47 6.21 -1.277 -1.512 - - - -1.747 6e38f7e82b9947704d0f68c26f24216e
Cr4C3F2 -0.649 0.0 6.127 - 0.807 - - - - 956a95cce057b06fbb5769c3d501f2a5
Ti4C3O2 -1.502 0.0 6.014 - 1.146 - - - - 99dda581a766ee1b988af679de6e2b72
Y4N3O2 -2.149 0.0 6.215 - 0.101 - - - - df9d1ccbbabd705ee75d72e66ab1f2ae
Hf4N3 -1.185 0.0 4.472 - 3.542 - - - - de0c1e27bac814b84c8bdc2fdde33e66
Co2S2 -0.265 0.0 5.369 - -1.625 - - - - 4abcb07a761456d0118dcc6a03c5d423
Cu2Se2 -0.086 0.0 5.586 - -1.946 - - - - 5a192b48a63de3f6ef93710915bad983
Ti2I2 -0.347 0.0 3.572 - 0.278 - - - - 51b3c014bdc8bdafc94fbc105f95f64f
Ge2S2 -0.246 1.714 4.234 -0.271 -1.128 - 2107064 - -1.985 4b1f317f3f4d38cf9bc8d81d88b4b0a2
Ni2S2 -0.075 0.0 5.552 - -1.955 - - - - d5ad2145ed942f8d55a17581c4496ccb
Os2O2 -0.362 0.0 6.03 - 0.069 - - - - 231937af07613361ea81219ef72ff9ea
PbSe -0.365 1.532 4.619 -1.300 -2.066 - - - -2.832 8a49e71054ac6ea46416fb4d5e20752c
Pd2Te2 -0.244 0.0 4.485 - -0.622 - - - - edccb20d8eb3a9378960e097ae3b0da6
Pt2Te2 -0.009 0.0 4.722 - -0.829 - - - - 1162d78692dada3990b7ffb563c6b041
SnSe -0.333 2.177 4.653 -0.910 -1.999 - - - -3.087 657db34579e7cf92ba0728e6e16a772d
V2Se2 -0.524 0.0 4.334 - -0.483 - - - - d32a229aee0f3f2bfb1e2809de84a8ad
Zr2Se2 -0.913 0.02 3.777 -0.044 -0.053 - - - -0.063 106291e4b714ac7e6d11aeb8ebd045f6
Zn2Te2 -0.378 0.545 4.516 -0.883 -1.155 - - - -1.428 9f7d3839a9cd76b621a9e9dc9d4cebaf
BiSe2 -0.106 0.0 5.89 - -2.254 - - - - 17dff2bd52aa544f051a634e3007587c
Cr2Se4 -0.432 0.0 5.075 - -0.748 - - - - 1c1365ec2e017f88efe72705363ee551
FeCl2 -0.471 0.843 4.505 -0.766 -1.187 - 9009128 4059 -1.609 2f998e7c2dfea81a6b65447024992b04
GeSe2 -0.137 0.0 5.622 - -1.883 - - - - 7d278a839627fb6827e2604645c02212
HfCl2 -1.54 0.908 3.245 1.244 0.79 - - - 0.336 3391c2211d0463902aa27aac5f1868c4
MnI2 -0.408 1.224 4.793 -1.622 -2.234 - - - -2.846 fde1037c85f1f47df5bf6157b6ae7cff
MoAs2 -0.056 0.0 4.996 - 0.119 - - - - ad756dbb60c2b0b25711ef4732cf90fb
HfSb2 -0.16 0.0 4.667 - 1.318 - - - - 837e1e04675ac46f85ac441bb2ca7d65
Ir4Se8 -0.336 0.824 4.823 -0.423 -0.835 - - - -1.247 874e39cc7d1dcaea7673d7e5aff3970c
NiBr2 -0.266 0.0 5.86 - -3.595 - - - - 3259312b569fcca39c79a3bc9568e3ad
PdTe2 -0.263 0.0 4.317 - -0.636 - 2004955 - - 8c7c2e79dd358cd0206612970f7c94f1
Li2Pt -0.24 0.0 3.638 - -0.507 - - - - 5f704382abd0007176b86c74fae7146c
PtTe2 -0.093 0.0 4.0 - -0.059 - - - - 3327ecac16ea2830c6bba4fe1fafebd6
Ru2S4 -0.402 0.725 5.35 -1.055 -1.418 - - - -1.781 b89a0c576bc51277e1f506eb20b049e0
SnTe2 -0.071 0.0 5.071 - -1.356 - - - - 856f5d7a503a54c399aafc855ea75350
TaAs2 -0.082 0.0 5.352 - -0.783 - - - - a3187cc465bdd0306fe7ca5cd536765e
Fe2Cl6 -0.655 0.013 5.911 -2.934 -2.941 - 1535681 63329 -2.948 e0a2b6da7450e7330eccd8519b977ff0
TiSb2 -0.13 0.0 4.763 - 0.791 - - - - f2cc7a90e92ddf661170af6d80cc281e
VBr2 -0.863 1.252 3.973 -0.285 -0.911 - - 246906 -1.537 cbeb3fd5387c1ce0ada99f30d92080aa
Hf2I6 -0.736 0.0 3.779 - -0.311 - - - - 16c7bf54f63cd2144d32c8288ea2ceed
ZnF2 -2.299 4.425 6.642 -2.733 -4.945 - - - -7.158 d01d234431309a3979d4121aa7b20a3c
ZrO2 -3.051 4.369 5.306 -0.906 -3.09 - - - -5.274 842c90cc0dbfa690b8ae033eebda8c99
Ti2CO2 -2.061 0.325 5.662 -0.701 -0.863 10.1149/2.0401803jes - - -1.025 5e6b34d014e613dba4c4a655ef3ea21e
W2F2N -0.927 0.0 5.132 - 1.445 - - - - 2b3becfe47c49a742e805f4abc913648
Y2H2NO2 -1.838 0.0 2.036 - 1.681 - - - - a7d7ce57de703f90aacae4bb6d9b1739
InPt5Br2 -0.132 0.0 4.507 - 0.959 - - - - f5b230bb560b27e0fd68802ff34ea4e0
Cu2ReI6 -0.017 0.18 5.15 -1.701 -1.791 - - - -1.881 b45de2e4905e0e45b12b2586fcfe8832
Bi2Cl6 -1.014 2.36 6.603 -2.826 -4.006 - - - -5.186 82cca1945202f9a5efd0edd264840efd
Ti2I6 -0.728 0.209 4.668 -1.400 -1.504 - - - -1.609 57d82fdde9c7212a933150c21176c041
V2I6 -0.509 0.0 5.265 - -2.117 - - - - 76c26b5876733d0b11327077eba538e4
Y2Cl6 -2.345 5.113 5.821 -0.635 -3.191 - 1528118 - -5.748 6671cf1152d3181a56a61c2cf52cfae7
CrMo3Se8 -0.642 0.951 4.747 0.232 -0.244 - - - -0.719 3fdc711ae69a11e15cb0904d9478e21f
MoW3Se8 -0.625 1.258 4.321 0.968 0.34 - - - -0.289 37381fca24305de7785171d616ab0373
Hf3ZrSe8 -1.188 0.844 5.852 -1.380 -1.802 - - - -2.224 59e52ab7fd7196626bf2461f2f329182
Co2Li2As2 -0.408 0.0 2.945 - 0.321 - - 107932 - eec0b5848bdf7f47e3014ffa1f631eed
Na2Ni2As2 -0.286 0.0 2.152 - 0.442 - - - - 5e0136752be44d16bee1a48adc6bf360
Hf4Br4S4 -1.35 0.0 4.481 - -0.685 - - - - a8fb5253b00330065b8fb5affed1a030
VBrI -0.657 1.188 3.964 -0.369 -0.963 - - - -1.557 cd7d1ad4a524a1ed068d4861b1a83467
Mn2Br2Se2 -0.556 0.0 5.378 - -1.761 - - - - f7305ff0002e653dea9d561e3085eb84
V4C3O2 -0.968 0.0 6.582 - 1.125 - - - - b666bd89c1e2542e38b478abc92f0989
Zr4Br4Se4 -1.324 0.0 4.598 - -0.764 - - - - bf0d2cbd1e68146d22e55e0e09549867
TiClI -1.015 0.745 3.582 0.711 0.339 - - - -0.034 385ac4f4720aa8b3faaa7ea0fade2b27
Ir2Cl2Se2 -0.408 0.062 5.617 -1.571 -1.601 - - - -1.632 22ea7fcadf260b273e882f8bd4da861e
Os2Cl2S2 -0.141 0.0 5.801 - -1.51 - - - - 4942c75cd96978cb1963b7e2fa4dd87f
Ti4Cl4Se4 -1.287 0.042 4.971 -1.132 -1.153 - - - -1.174 d1da7914eb323cf506941264d5d34bbd
Cr2I2Se2 -0.522 0.0 5.282 - -1.278 - - - - 22f6b7291e2f3e644dc4d7b618bb9fc8
Ge2I2S2 -0.186 0.0 5.473 - -1.531 - - - - de085f40a9f7216e28bf5d31112dd484
HfSSe -1.278 0.887 6.038 -1.546 -1.99 - - - -2.433 707726a9cb44e40acd7e66102ac2ecd2
Ir2I2S2 -0.265 0.215 4.497 0.095 -0.012 - - - -0.120 b4508f4c5720bdd4cb666ee32678033a
MoSTe -0.546 0.992 4.638 0.587 0.091 - - - -0.405 1029afee729fd61726f9a7cce2da5a5d
WSTe -0.419 1.141 4.394 1.011 0.44 - - - -0.130 3cb737296d9504a5b2c7a9a6e176137f
Ag2Br2Se4 -0.184 1.237 5.364 -2.171 -2.789 - - - -3.407 4aabbac1667786ec5c8486d6c310e776
Cu2Br2Te4 -0.209 0.873 4.728 -1.562 -1.998 - - - -2.435 8cd49bd39f33abc0f5d148c6623deb88
Cd2P2S6 -0.416 1.887 5.262 -0.699 -1.642 - - 657320 -2.585 2359705381d0985611055e7dac0c179b
Ge2P2S6 -0.241 1.406 5.065 -0.881 -1.584 - - - -2.287 7d9a901f8c95ff3dbd4fb67f1d8c362f
Pd2P2S6 -0.204 0.014 5.162 -1.366 -1.373 - - 647926 -1.380 1a81a62a7b404dab7e3f9be752572ed6
Sc2P2Se6 -0.833 0.684 4.52 -0.634 -0.975 - - - -1.317 5aa09446942b04c5f4f3a9a28f76d4ad
Hf2Ti2Se8 -1.08 0.646 5.843 -1.530 -1.853 - - - -2.176 cf272181c5e21b8b6063ea06d4367066
MnZrI6 -0.756 1.052 5.057 -1.330 -1.856 - - - -2.382 6c07bfb12e3f2dc5079900d99d685598
Cu2Te2 -0.089 0.0 4.541 - -2.312 - 1526237 - - 442f27608cb684a4630cad1232e6a613
Hf2Te10 -0.455 0.159 4.459 -2.267 -2.346 - 1527386 - -2.426 65f09995628dfab722b450dcc7c71fcd
Mg2Cl4 -1.748 4.504 5.39 -1.608 -3.86 - - 51244 -6.112 b1bc4cff978993c60c922eaa7715c90d
Sc4F2N3 -2.57 0.0 3.624 - 2.342 - - - - 7427993883b64ac3a651347a28f75dbc
Nb3Cl8 -1.345 0.206 4.584 -2.583 -2.686 - - 408645 -2.789 c631656e7cb3dbed2a64101b8697776e
Pt4I8 -0.168 1.225 4.752 -2.545 -3.157 - - 60760 -3.770 1afaa92ed4e44dc0acbdcbcc3917c3ae
Ta4Te6 -0.387 0.0 4.568 - -1.951 - 1539830 - - e3513669c157e95f91a90b36c8f47f6b
Y2Te6 -0.937 0.0 4.757 - -0.966 - - 653175 - 80ff8a68819ee06a154a2e03ee42ae33
As4Ge4Se4 -0.181 1.735 4.778 -2.236 -3.103 - 1524563 - -3.971 5fb854ddcbe664275ab4aa75c588d854
Cd4I4O4 -0.383 0.023 6.259 -4.569 -4.58 - - 56220 -4.592 c7c783e5897e0dd90702c57ef0d07845
CrGa2S4 -0.641 0.0 3.944 - -0.779 - - 626052 - 855aee81a4874ed8d6b454dc146d17bf
Cu2Sb2Se4 -0.149 0.183 4.16 -1.972 -2.063 - - 628999 -2.155 10646cdf018b66eeb67a1a33b4b16c0b
Ga2In2S6 -0.638 1.981 5.813 -2.136 -3.127 - - 62340 -4.117 2865dd1c13407b7535809e83b9836acf
Hg4Mo2O8 -1.311 2.278 5.73 -2.860 -3.999 - - 90084 -5.138 c253dae72dbde2fae287e5bd0a028bfc
K2Cl2O6 -0.727 5.441 3.805 0.386 -2.335 - 2310654 - -5.056 4e90c5fac69566f37f3eec0767718804
Mo2Zn2O8 -1.845 2.915 6.151 -2.634 -4.092 - 2240887 - -5.549 443d16e2181ccbb934e571e327851773
V2H2O5 -1.852 0.0 4.698 - -3.426 - - 260368 - 73534d85b3274198e37ccd20a3923037
Na4As4O8 -1.535 4.333 3.597 0.122 -2.045 - 2013927 - -4.211 c2df629953199c82868e61b8dcaa65f3
Nb2Ni2Te10 -0.338 0.0 4.711 - -2.48 - - 73316 - 80168a9af9c9cb7e5105e2b1bf95f225
NiCl2O8 -0.0 1.554 7.147 -4.494 -5.271 - - 33289 -6.048 ef22c8f41f675e8b1a04f18527a899f1
OsCl2O -0.731 0.0 4.924 - -3.172 - - 83884 - 3f89a129057d9bfb805b93784e90f18a
Pd4P4Se4 -0.406 1.103 4.973 -2.074 -2.625 - 9012269 - -3.177 806647fe956d83025c7d7e9254159c17
Sr2Cl4O8 -0.877 2.726 3.517 -0.644 -2.007 - 2207380 - -3.370 b00c5b28e9381ba4c5aa6bf93bcc266d
Hf4C3F2 -1.684 0.0 3.198 - 3.62 - - - - 2bd3810018970b61ab311421eaa6327f
Zn4Br4O4 -0.62 0.0 6.939 - -5.406 - 9011544 - - 1cd767e0aabdc8a547a11a80add498a3
Cu2C2Cl2O2 -0.613 2.508 4.506 -1.699 -2.953 - - 63490 -4.207 45129f52e42fa7c1846b36005d382e34
Mn2H4O8S2 -1.178 2.112 3.157 -0.736 -1.792 - - 74810 -2.848 8d735b8630a9b837ac10569473c973f6
Zr3B2F2Se2 -0.948 0.0 7.507 - -0.445 - - - - 604bdf8dae9bb609db284976e73ae9e4
Hf3C2H2O2 -1.346 0.0 2.271 - 3.015 - - - - e8a7e1d7c186994e949d83cb0b3c16f6
V3C2H2Se2 -0.153 0.0 3.842 - 2.289 - - - - fe38a9b8ee80eaac171ce313026c622f
Zr3C2F2 -1.964 0.0 3.215 - 2.6 - - - - a3f81282fb161971153bfed8de603814
Ti3N2O2 -2.232 0.0 5.539 - 0.946 - - - - 417c9200e5a373475093c7215700b583
Y4C3H2O2 -0.94 0.0 1.737 - 2.326 - - - - 2886beb521c589d1e0f027eb69c18566
Hf3N2 -0.878 0.0 4.464 - 2.266 - - - - e243d390d2aeefabe463de10f83c0235
Zr4N3O2 -2.267 0.0 4.602 - 3.189 - - - - c7cbf53d15b4469a174037e07ebf76cf
Mn4N3 -0.004 0.0 5.612 - 0.782 - - - - c75e17a32f20ce8e89d6813b48606e64
Al2O2 -2.258 1.315 4.345 0.034 -0.624 - - - -1.281 35240ceeb51c2a0842fefc114c732525
Tl2Br2 -0.816 3.06 3.926 -0.373 -1.902 - - - -3.432 260059909853789a3f38f8fe462515b9
Cd2Te2 -0.371 0.633 4.778 -1.034 -1.35 - - - -1.666 b29ebdfb4a50b75555f3a8d1385e0102
Sc2Cl2 -1.393 0.0 4.376 - 0.309 - - - - 479617ace9019e2d765c9639bfc0159f
Co2Se2 -0.225 0.0 4.416 - -0.769 - - - - 5e3791198ba2f7f611093af9bb33d256
Cr2S2 -0.44 0.0 4.495 - -0.874 - - - - 9b7e5c7481b9d811a4f46f0a5b01d479
Cu2Te2 -0.063 0.0 4.96 - -0.947 - - - - 8ab2e7c95d2c9925430e9569fde8c5a0
Mo2F2 -1.452 0.0 5.453 - -0.128 - - - - 1ea3f160724c5f07581b84798d821ed5