summaryrefslogtreecommitdiffstats
path: root/net/http/transport_security_state_static.json
blob: 563ae33caf1861794424796c6c2035aa8a3f2ff7 (plain)
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
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This file contains the HSTS preloaded list in a machine readable format.

// The top-level element is a dictionary with two keys: "pinsets" maps details
// of certificate pinning to a name and "entries" contains the HSTS details for
// each host.
//
// "pinsets" is a list of objects. Each object has the following members:
//   name: (string) the name of the pinset
//   static_spki_hashes: (list of strings) the set of allowed SPKIs hashes
//   bad_static_spki_hashes: (optional list of strings) the set of forbidden SPKIs hashes
//
// For a given pinset, a certifiacte is accepted if at least one of the
// "static_spki_hashes" SPKIs is found in the chain and none of the "bad_static_spki_hashes" SPKIs are.
// SPKIs are specified as names, which must match up with the file of
// certificates.
//
// "entries" is a list of objects. Each object has the following members:
//   name: (string) the DNS name of the host in question
//   include_subdomains: (optional bool) whether subdomains of |name| are also covered
//   mode: (optional string) "force-https" iff covered names should require HTTPS
//   pins: (optional string) the |name| member of an object in |pinsets|
//   snionly: (optional bool) if true then this entry is only enforced if TLS is
//       enabled because the site in question only serves the correct
//       certificate if SNI is sent. Note that this only covers the case where
//       TLS has been disabled by explicit configuration. If TLS was disabled
//       because of SSLv3 fallback, then the entry is still in force and a
//       fatal certificate error will result. Spurious certificate errors are
//       an unfortunate result of SSLv3 fallback.

{
  "pinsets": [
    {
      "name": "test",
      "static_spki_hashes": [
        "TestSPKI"
      ]
    },
    {
      "name": "google",
      "static_spki_hashes": [
        "GoogleBackup2048",
        "GoogleG2"
      ]
    },
    {
      "name": "tor",
      "static_spki_hashes": [
        "RapidSSL",
        "DigiCertEVRoot",
        "Tor1",
        "Tor2",
        "Tor3"
      ]
    },
    {
      "name": "twitterCom",
      "static_spki_hashes": [
        "VeriSignClass1",
        "VeriSignClass3",
        "VeriSignClass3_G4",
        "VeriSignClass4_G3",
        "VeriSignClass3_G3",
        "VeriSignClass1_G3",
        "VeriSignClass2_G3",
        "VeriSignClass3_G2",
        "VeriSignClass2_G2",
        "VeriSignClass3_G5",
        "VeriSignUniversal",
        "GeoTrustGlobal",
        "GeoTrustGlobal2",
        "GeoTrustUniversal",
        "GeoTrustUniversal2",
        "GeoTrustPrimary",
        "GeoTrustPrimary_G2",
        "GeoTrustPrimary_G3",
        "DigiCertGlobalRoot",
        "DigiCertEVRoot",
        "DigiCertAssuredIDRoot",
        "Twitter1"
      ]
    },
    {
      "name": "twitterCDN",
      "static_spki_hashes": [
        "VeriSignClass1",
        "VeriSignClass3",
        "VeriSignClass3_G4",
        "VeriSignClass4_G3",
        "VeriSignClass3_G3",
        "VeriSignClass1_G3",
        "VeriSignClass2_G3",
        "VeriSignClass3_G2",
        "VeriSignClass2_G2",
        "VeriSignClass3_G5",
        "VeriSignUniversal",
        "GeoTrustGlobal",
        "GeoTrustGlobal2",
        "GeoTrustUniversal",
        "GeoTrustUniversal2",
        "GeoTrustPrimary",
        "GeoTrustPrimary_G2",
        "GeoTrustPrimary_G3",
        "DigiCertGlobalRoot",
        "DigiCertEVRoot",
        "DigiCertAssuredIDRoot",
        "Twitter1",

        "Entrust_2048",
        "Entrust_EV",
        "Entrust_G2",
        "Entrust_SSL",
        "AAACertificateServices",
        "AddTrustClass1CARoot",
        "AddTrustExternalCARoot",
        "AddTrustPublicCARoot",
        "AddTrustQualifiedCARoot",
        "COMODOCertificationAuthority",
        "SecureCertificateServices",
        "TrustedCertificateServices",
        "UTNDATACorpSGC",
        "UTNUSERFirstClientAuthenticationandEmail",
        "UTNUSERFirstHardware",
        "UTNUSERFirstObject",
        "GTECyberTrustGlobalRoot",
        "BaltimoreCyberTrustRoot",
        "GlobalSignRootCA",
        "GlobalSignRootCA_R2",
        "GlobalSignRootCA_R3"
      ]
    },
    {
      "name": "tor2web",
      "static_spki_hashes": [
        "AlphaSSL_G2",
        "Tor2web"
      ]
    },
    {
      "name": "cryptoCat",
      "static_spki_hashes": [
        "DigiCertEVRoot",
        "CryptoCat1"
      ]
    },
    {
      "name": "lavabit",
      "static_spki_hashes": [
        "Libertylavabitcom"
      ]
    },
    {
      "name": "dropbox",
      "static_spki_hashes": [
        "DigiCertAssuredIDRoot",
        "DigiCertGlobalRoot",
        "DigiCertEVRoot",
        "EntrustRootEC1",
        "Entrust_G2",
        "Entrust_EV",
        "Entrust_2048",
        "GeoTrustGlobal",
        "GeoTrustPrimary_G2",
        "GeoTrustPrimary_G3",
        "GeoTrustPrimary",
        "TheGoDaddyGroupClass2",
        "GoDaddyRoot_G2",
        "GoDaddySecure",
        "ThawtePremiumServer",
        "ThawtePrimaryRootCA_G2",
        "ThawtePrimaryRootCA_G3",
        "ThawtePrimaryRootCA"
      ]
    }
  ],

  "entries": [
    // Dummy entry to test certificate pinning.
    { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "test" },

    // (*.)google.com, iff using SSL, must use an acceptable certificate.
    { "name": "google.com", "include_subdomains": true, "pins": "google" },

    // Now we force HTTPS for subtrees of google.com.
    { "name": "wallet.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "checkout.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "chrome.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "docs.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "sites.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "spreadsheets.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "appengine.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "encrypted.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "accounts.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "profiles.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "mail.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "talkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "talk.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "hostedtalkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "plus.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "plus.sandbox.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "script.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "history.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "security.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "goto.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "cloud.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "glass.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "admin.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    // play.google.com doesn't have include_subdomains because of crbug.com/327834.
    { "name": "play.google.com", "mode": "force-https", "pins": "google" },

    // Other Google-related domains that must use HTTPS.
    { "name": "market.android.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "ssl.google-analytics.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "drive.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "googleplex.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "groups.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "apis.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "chromiumcodereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "chrome-devtools-frontend.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "codereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "codereview.chromium.org", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "code.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "googlecode.com", "include_subdomains": true, "pins": "google" },
    { "name": "dl.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "translate.googleapis.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },

    { "name": "webfilings.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "webfilings-mirror-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "webfilings-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "webfilings-eu-mirror.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-demo-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-demo-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-pentest.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-trial-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "xbrlsuccess.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "w-spotlight.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-training-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-bigsky-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-staging-hr.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-training-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
    { "name": "wf-dogfood-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },

    // chart.apis.google.com is *not* HSTS because the certificate doesn't match
    // and there are lots of links out there that still use the name. The correct
    // hostname for this is chart.googleapis.com.
    { "name": "chart.apis.google.com", "include_subdomains": true, "pins": "google" },

    // Other Google-related domains that must use an acceptable certificate
    // iff using SSL.
    { "name": "ytimg.com", "include_subdomains": true, "pins": "google" },
    { "name": "googleusercontent.com", "include_subdomains": true, "pins": "google" },
    { "name": "youtube.com", "include_subdomains": true, "pins": "google" },
    { "name": "googleapis.com", "include_subdomains": true, "pins": "google" },
    { "name": "googleadservices.com", "include_subdomains": true, "pins": "google" },
    { "name": "appspot.com", "include_subdomains": true, "pins": "google" },
    { "name": "googlesyndication.com", "include_subdomains": true, "pins": "google" },
    { "name": "doubleclick.net", "include_subdomains": true, "pins": "google" },
    { "name": "gstatic.com", "include_subdomains": true, "pins": "google" },
    { "name": "youtu.be", "include_subdomains": true, "pins": "google" },
    { "name": "android.com", "include_subdomains": true, "pins": "google" },
    { "name": "googlecommerce.com", "include_subdomains": true, "pins": "google" },
    { "name": "urchin.com", "include_subdomains": true, "pins": "google" },
    { "name": "goo.gl", "include_subdomains": true, "pins": "google" },
    { "name": "g.co", "include_subdomains": true, "pins": "google" },
    { "name": "googletagmanager.com", "include_subdomains": true, "pins": "google" },
    { "name": "googletagservices.com", "include_subdomains": true, "pins": "google" },
    { "name": "google.ac", "include_subdomains": true, "pins": "google" },
    { "name": "google.ad", "include_subdomains": true, "pins": "google" },
    { "name": "google.ae", "include_subdomains": true, "pins": "google" },
    { "name": "google.af", "include_subdomains": true, "pins": "google" },
    { "name": "google.ag", "include_subdomains": true, "pins": "google" },
    { "name": "google.am", "include_subdomains": true, "pins": "google" },
    { "name": "google.as", "include_subdomains": true, "pins": "google" },
    { "name": "google.at", "include_subdomains": true, "pins": "google" },
    { "name": "google.az", "include_subdomains": true, "pins": "google" },
    { "name": "google.ba", "include_subdomains": true, "pins": "google" },
    { "name": "google.be", "include_subdomains": true, "pins": "google" },
    { "name": "google.bf", "include_subdomains": true, "pins": "google" },
    { "name": "google.bg", "include_subdomains": true, "pins": "google" },
    { "name": "google.bi", "include_subdomains": true, "pins": "google" },
    { "name": "google.bj", "include_subdomains": true, "pins": "google" },
    { "name": "google.bs", "include_subdomains": true, "pins": "google" },
    { "name": "google.by", "include_subdomains": true, "pins": "google" },
    { "name": "google.ca", "include_subdomains": true, "pins": "google" },
    { "name": "google.cat", "include_subdomains": true, "pins": "google" },
    { "name": "google.cc", "include_subdomains": true, "pins": "google" },
    { "name": "google.cd", "include_subdomains": true, "pins": "google" },
    { "name": "google.cf", "include_subdomains": true, "pins": "google" },
    { "name": "google.cg", "include_subdomains": true, "pins": "google" },
    { "name": "google.ch", "include_subdomains": true, "pins": "google" },
    { "name": "google.ci", "include_subdomains": true, "pins": "google" },
    { "name": "google.cl", "include_subdomains": true, "pins": "google" },
    { "name": "google.cm", "include_subdomains": true, "pins": "google" },
    { "name": "google.cn", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ao", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.bw", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ck", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.cr", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.hu", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.id", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.il", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.im", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.in", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.je", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.jp", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ke", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.kr", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ls", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ma", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.mz", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.nz", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.th", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.tz", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ug", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.uk", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.uz", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.ve", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.vi", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.za", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.zm", "include_subdomains": true, "pins": "google" },
    { "name": "google.co.zw", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.af", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ag", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ai", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ar", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.au", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.bd", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.bh", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.bn", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.bo", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.br", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.by", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.bz", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.cn", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.co", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.cu", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.cy", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.do", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ec", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.eg", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.et", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.fj", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ge", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.gh", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.gi", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.gr", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.gt", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.hk", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.iq", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.jm", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.jo", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.kh", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.kw", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.lb", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ly", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.mt", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.mx", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.my", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.na", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.nf", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ng", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ni", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.np", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.nr", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.om", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.pa", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.pe", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ph", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.pk", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.pl", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.pr", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.py", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.qa", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ru", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.sa", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.sb", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.sg", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.sl", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.sv", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.tj", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.tn", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.tr", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.tw", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ua", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.uy", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.vc", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.ve", "include_subdomains": true, "pins": "google" },
    { "name": "google.com.vn", "include_subdomains": true, "pins": "google" },
    { "name": "google.cv", "include_subdomains": true, "pins": "google" },
    { "name": "google.cz", "include_subdomains": true, "pins": "google" },
    { "name": "google.de", "include_subdomains": true, "pins": "google" },
    { "name": "google.dj", "include_subdomains": true, "pins": "google" },
    { "name": "google.dk", "include_subdomains": true, "pins": "google" },
    { "name": "google.dm", "include_subdomains": true, "pins": "google" },
    { "name": "google.dz", "include_subdomains": true, "pins": "google" },
    { "name": "google.ee", "include_subdomains": true, "pins": "google" },
    { "name": "google.es", "include_subdomains": true, "pins": "google" },
    { "name": "google.fi", "include_subdomains": true, "pins": "google" },
    { "name": "google.fm", "include_subdomains": true, "pins": "google" },
    { "name": "google.fr", "include_subdomains": true, "pins": "google" },
    { "name": "google.ga", "include_subdomains": true, "pins": "google" },
    { "name": "google.ge", "include_subdomains": true, "pins": "google" },
    { "name": "google.gg", "include_subdomains": true, "pins": "google" },
    { "name": "google.gl", "include_subdomains": true, "pins": "google" },
    { "name": "google.gm", "include_subdomains": true, "pins": "google" },
    { "name": "google.gp", "include_subdomains": true, "pins": "google" },
    { "name": "google.gr", "include_subdomains": true, "pins": "google" },
    { "name": "google.gy", "include_subdomains": true, "pins": "google" },
    { "name": "google.hk", "include_subdomains": true, "pins": "google" },
    { "name": "google.hn", "include_subdomains": true, "pins": "google" },
    { "name": "google.hr", "include_subdomains": true, "pins": "google" },
    { "name": "google.ht", "include_subdomains": true, "pins": "google" },
    { "name": "google.hu", "include_subdomains": true, "pins": "google" },
    { "name": "google.ie", "include_subdomains": true, "pins": "google" },
    { "name": "google.im", "include_subdomains": true, "pins": "google" },
    { "name": "google.info", "include_subdomains": true, "pins": "google" },
    { "name": "google.iq", "include_subdomains": true, "pins": "google" },
    { "name": "google.is", "include_subdomains": true, "pins": "google" },
    { "name": "google.it", "include_subdomains": true, "pins": "google" },
    { "name": "google.it.ao", "include_subdomains": true, "pins": "google" },
    { "name": "google.je", "include_subdomains": true, "pins": "google" },
    { "name": "google.jo", "include_subdomains": true, "pins": "google" },
    { "name": "google.jobs", "include_subdomains": true, "pins": "google" },
    { "name": "google.jp", "include_subdomains": true, "pins": "google" },
    { "name": "google.kg", "include_subdomains": true, "pins": "google" },
    { "name": "google.ki", "include_subdomains": true, "pins": "google" },
    { "name": "google.kz", "include_subdomains": true, "pins": "google" },
    { "name": "google.la", "include_subdomains": true, "pins": "google" },
    { "name": "google.li", "include_subdomains": true, "pins": "google" },
    { "name": "google.lk", "include_subdomains": true, "pins": "google" },
    { "name": "google.lt", "include_subdomains": true, "pins": "google" },
    { "name": "google.lu", "include_subdomains": true, "pins": "google" },
    { "name": "google.lv", "include_subdomains": true, "pins": "google" },
    { "name": "google.md", "include_subdomains": true, "pins": "google" },
    { "name": "google.me", "include_subdomains": true, "pins": "google" },
    { "name": "google.mg", "include_subdomains": true, "pins": "google" },
    { "name": "google.mk", "include_subdomains": true, "pins": "google" },
    { "name": "google.ml", "include_subdomains": true, "pins": "google" },
    { "name": "google.mn", "include_subdomains": true, "pins": "google" },
    { "name": "google.ms", "include_subdomains": true, "pins": "google" },
    { "name": "google.mu", "include_subdomains": true, "pins": "google" },
    { "name": "google.mv", "include_subdomains": true, "pins": "google" },
    { "name": "google.mw", "include_subdomains": true, "pins": "google" },
    { "name": "google.ne", "include_subdomains": true, "pins": "google" },
    { "name": "google.ne.jp", "include_subdomains": true, "pins": "google" },
    { "name": "google.net", "include_subdomains": true, "pins": "google" },
    { "name": "google.nl", "include_subdomains": true, "pins": "google" },
    { "name": "google.no", "include_subdomains": true, "pins": "google" },
    { "name": "google.nr", "include_subdomains": true, "pins": "google" },
    { "name": "google.nu", "include_subdomains": true, "pins": "google" },
    { "name": "google.off.ai", "include_subdomains": true, "pins": "google" },
    { "name": "google.pk", "include_subdomains": true, "pins": "google" },
    { "name": "google.pl", "include_subdomains": true, "pins": "google" },
    { "name": "google.pn", "include_subdomains": true, "pins": "google" },
    { "name": "google.ps", "include_subdomains": true, "pins": "google" },
    { "name": "google.pt", "include_subdomains": true, "pins": "google" },
    { "name": "google.ro", "include_subdomains": true, "pins": "google" },
    { "name": "google.rs", "include_subdomains": true, "pins": "google" },
    { "name": "google.ru", "include_subdomains": true, "pins": "google" },
    { "name": "google.rw", "include_subdomains": true, "pins": "google" },
    { "name": "google.sc", "include_subdomains": true, "pins": "google" },
    { "name": "google.se", "include_subdomains": true, "pins": "google" },
    { "name": "google.sh", "include_subdomains": true, "pins": "google" },
    { "name": "google.si", "include_subdomains": true, "pins": "google" },
    { "name": "google.sk", "include_subdomains": true, "pins": "google" },
    { "name": "google.sm", "include_subdomains": true, "pins": "google" },
    { "name": "google.sn", "include_subdomains": true, "pins": "google" },
    { "name": "google.so", "include_subdomains": true, "pins": "google" },
    { "name": "google.st", "include_subdomains": true, "pins": "google" },
    { "name": "google.td", "include_subdomains": true, "pins": "google" },
    { "name": "google.tg", "include_subdomains": true, "pins": "google" },
    { "name": "google.tk", "include_subdomains": true, "pins": "google" },
    { "name": "google.tl", "include_subdomains": true, "pins": "google" },
    { "name": "google.tm", "include_subdomains": true, "pins": "google" },
    { "name": "google.tn", "include_subdomains": true, "pins": "google" },
    { "name": "google.to", "include_subdomains": true, "pins": "google" },
    { "name": "google.tt", "include_subdomains": true, "pins": "google" },
    { "name": "google.us", "include_subdomains": true, "pins": "google" },
    { "name": "google.uz", "include_subdomains": true, "pins": "google" },
    { "name": "google.vg", "include_subdomains": true, "pins": "google" },
    { "name": "google.vu", "include_subdomains": true, "pins": "google" },
    { "name": "google.ws", "include_subdomains": true, "pins": "google" },
    // Exclude the learn.doubleclick.net subdomain because it uses a different
    // CA.
    { "name": "learn.doubleclick.net", "include_subdomains": true },

    // Force HTTPS for sites that have requested it.
    { "name": "www.paypal.com", "mode": "force-https" },
    { "name": "paypal.com", "mode": "force-https" },
    { "name": "www.elanex.biz", "mode": "force-https" },
    { "name": "jottit.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "sunshinepress.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.noisebridge.net", "mode": "force-https" },
    { "name": "neg9.org", "mode": "force-https" },
    { "name": "riseup.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "factor.cc", "mode": "force-https" },
    { "name": "members.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "support.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "id.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "lists.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "webmail.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "roundcube.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "aladdinschools.appspot.com", "mode": "force-https" },
    { "name": "ottospora.nl", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.paycheckrecords.com", "mode": "force-https" },
    { "name": "lastpass.com", "mode": "force-https" },
    { "name": "www.lastpass.com", "mode": "force-https" },
    { "name": "keyerror.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "entropia.de", "mode": "force-https" },
    { "name": "www.entropia.de", "mode": "force-https" },
    { "name": "romab.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "logentries.com", "mode": "force-https" },
    { "name": "www.logentries.com", "mode": "force-https" },
    { "name": "stripe.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "cloudsecurityalliance.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "login.sapo.pt", "include_subdomains": true, "mode": "force-https" },
    { "name": "mattmccutchen.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "betnet.fr", "include_subdomains": true, "mode": "force-https" },
    { "name": "uprotect.it", "include_subdomains": true, "mode": "force-https" },
    { "name": "squareup.com", "mode": "force-https" },
    { "name": "square.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "cert.se", "include_subdomains": true, "mode": "force-https" },
    { "name": "crypto.is", "include_subdomains": true, "mode": "force-https" },
    { "name": "simon.butcher.name", "include_subdomains": true, "mode": "force-https" },
    { "name": "linx.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "dropcam.com", "mode": "force-https" },
    { "name": "www.dropcam.com", "mode": "force-https" },
    { "name": "ebanking.indovinabank.com.vn", "include_subdomains": true, "mode": "force-https" },
    { "name": "epoxate.com", "mode": "force-https" },
    { "name": "torproject.org", "mode": "force-https", "pins": "tor" },
    { "name": "blog.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
    { "name": "check.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
    { "name": "www.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
    { "name": "dist.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
    { "name": "www.moneybookers.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "ledgerscope.net", "mode": "force-https" },
    { "name": "www.ledgerscope.net", "mode": "force-https" },
    { "name": "app.recurly.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "api.recurly.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "greplin.com", "mode": "force-https" },
    { "name": "www.greplin.com", "mode": "force-https" },
    { "name": "luneta.nearbuysystems.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "ubertt.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "pixi.me", "include_subdomains": true, "mode": "force-https" },
    { "name": "grepular.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "mydigipass.com", "mode": "force-https" },
    { "name": "www.mydigipass.com", "mode": "force-https" },
    { "name": "developer.mydigipass.com", "mode": "force-https" },
    { "name": "www.developer.mydigipass.com", "mode": "force-https" },
    { "name": "sandbox.mydigipass.com", "mode": "force-https" },
    { "name": "www.sandbox.mydigipass.com", "mode": "force-https" },
    { "name": "crypto.cat", "mode": "force-https", "pins": "cryptoCat" },
    { "name": "bigshinylock.minazo.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "crate.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "twitter.com", "mode": "force-https", "pins": "twitterCom" },
    { "name": "www.twitter.com", "include_subdomains": true, "mode": "force-https", "pins": "twitterCom" },
    { "name": "api.twitter.com", "include_subdomains": true, "pins": "twitterCDN" },
    { "name": "oauth.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
    { "name": "mobile.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
    { "name": "dev.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
    { "name": "business.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
    { "name": "platform.twitter.com", "include_subdomains": true, "pins": "twitterCDN" },
    { "name": "twimg.com", "include_subdomains": true, "pins": "twitterCDN" },
    { "name": "braintreegateway.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "braintreepayments.com", "mode": "force-https" },
    { "name": "www.braintreepayments.com", "mode": "force-https" },
    { "name": "emailprivacytester.com", "mode": "force-https" },
    { "name": "tor2web.org", "include_subdomains": true, "pins": "tor2web" },
    { "name": "business.medbank.com.mt", "include_subdomains": true, "mode": "force-https" },
    { "name": "arivo.com.br", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.apollo-auto.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.cueup.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "jitsi.org", "mode": "force-https" },
    { "name": "www.jitsi.org", "mode": "force-https" },
    { "name": "download.jitsi.org", "mode": "force-https" },
    { "name": "sol.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "irccloud.com", "mode": "force-https" },
    { "name": "www.irccloud.com", "mode": "force-https" },
    { "name": "alpha.irccloud.com", "mode": "force-https" },
    { "name": "passwd.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "browserid.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "login.persona.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "neonisi.com", "mode": "force-https" },
    { "name": "www.neonisi.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "shops.neonisi.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "piratenlogin.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "howrandom.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "intercom.io", "mode": "force-https" },
    { "name": "api.intercom.io", "mode": "force-https" },
    { "name": "www.intercom.io", "mode": "force-https" },
    { "name": "fatzebra.com.au", "include_subdomains": true, "mode": "force-https" },
    { "name": "csawctf.poly.edu", "include_subdomains": true, "mode": "force-https" },
    { "name": "makeyourlaws.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.makeyourlaws.org", "mode": "force-https" },
    { "name": "iop.intuit.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "surfeasy.com", "mode": "force-https" },
    { "name": "www.surfeasy.com", "mode": "force-https" },
    { "name": "packagist.org", "mode": "force-https" },
    { "name": "lookout.com", "mode": "force-https" },
    { "name": "www.lookout.com", "mode": "force-https" },
    { "name": "mylookout.com", "mode": "force-https" },
    { "name": "www.mylookout.com", "mode": "force-https" },
    { "name": "dm.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "business.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "blog.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "faq.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "platform.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "email.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "app.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "api.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "keymaster.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "discovery.lookout.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "mobilethreat.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "mobilethreatnetwork.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "itriskltd.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "stocktrade.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "openshift.redhat.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "therapynotes.com", "mode": "force-https" },
    { "name": "www.therapynotes.com", "mode": "force-https" },
    { "name": "wiz.biz", "include_subdomains": true, "mode": "force-https" },
    { "name": "my.onlime.ch", "include_subdomains": true, "mode": "force-https" },
    { "name": "webmail.onlime.ch", "include_subdomains": true, "mode": "force-https" },
    { "name": "crm.onlime.ch", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.gov.uk", "include_subdomains": true, "mode": "force-https" },
    { "name": "silentcircle.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "silentcircle.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "serverdensity.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "my.alfresco.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "webmail.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
    { "name": "paymill.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "paymill.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "gocardless.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "espra.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "zoo24.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "mega.co.nz", "mode": "force-https" },
    { "name": "api.mega.co.nz", "include_subdomains": true, "mode": "force-https" },
    { "name": "lockify.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "writeapp.me", "mode": "force-https" },
    { "name": "bugzilla.mozilla.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "members.nearlyfreespeech.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "ssl.panoramio.com", "mode": "force-https" },
    { "name": "kiwiirc.com", "mode": "force-https" },
    { "name": "pay.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
    { "name": "controlcenter.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
    { "name": "simple.com", "mode": "force-https" },
    { "name": "www.simple.com", "mode": "force-https" },
    { "name": "fj.simple.com", "mode": "force-https" },
    { "name": "api.simple.com", "mode": "force-https" },
    { "name": "bank.simple.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "bassh.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "sah3.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "grc.com", "mode": "force-https" },
    { "name": "www.grc.com", "mode": "force-https" },
    { "name": "linode.com", "mode": "force-https" },
    { "name": "www.linode.com", "mode": "force-https" },
    { "name": "manager.linode.com", "mode": "force-https" },
    { "name": "blog.linode.com", "mode": "force-https" },
    { "name": "library.linode.com", "mode": "force-https" },
    { "name": "forum.linode.com", "mode": "force-https" },
    { "name": "p.linode.com", "mode": "force-https" },
    { "name": "paste.linode.com", "mode": "force-https" },
    { "name": "pastebin.linode.com", "mode": "force-https" },
    { "name": "inertianetworks.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "carezone.com", "mode": "force-https" },
    { "name": "conformal.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "cyphertite.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "logotype.se", "include_subdomains": true, "mode": "force-https" },
    { "name": "bccx.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "launchkey.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "carlolly.co.uk", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.cyveillance.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "blog.cyveillance.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "whonix.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "shodan.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "rapidresearch.me", "include_subdomains": true, "mode": "force-https" },
    { "name": "surkatty.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "securityheaders.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "haste.ch", "include_subdomains": true, "mode": "force-https" },
    { "name": "mudcrab.us", "include_subdomains": true, "mode": "force-https" },
    { "name": "mediacru.sh", "include_subdomains": true, "mode": "force-https" },
    { "name": "lolicore.ch", "include_subdomains": true, "mode": "force-https" },
    { "name": "cloudns.com.au", "include_subdomains": true, "mode": "force-https" },
    { "name": "oplop.appspot.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "bcrook.com", "mode": "force-https" },
    { "name": "wiki.python.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "lumi.do", "mode": "force-https" },
    { "name": "appseccalifornia.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "crowdcurity.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "saturngames.co.uk", "include_subdomains": true, "mode": "force-https" },
    { "name": "strongest-privacy.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "ecosystem.atlassian.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "id.atlassian.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "bitbucket.org", "mode": "force-https" },
    { "name": "cupcake.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "cupcake.is", "include_subdomains": true, "mode": "force-https" },
    { "name": "tent.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "cybozu.com", "include_subdomains": true,  "mode": "force-https" },
    { "name": "davidlyness.com", "include_subdomains": true,  "mode": "force-https" },
    { "name": "medium.com", "include_subdomains": true,  "mode": "force-https" },
    { "name": "liberty.lavabit.com", "include_subdomains": true, "mode": "force-https", "pins": "lavabit" },
    { "name": "getlantern.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "kinsights.com", "mode": "force-https" },
    { "name": "simbolo.co.uk", "mode": "force-https" },
    { "name": "www.simbolo.co.uk", "mode": "force-https" },
    { "name": "zenpayroll.com", "mode": "force-https" },
    { "name": "www.zenpayroll.com", "mode": "force-https" },
    { "name": "get.zenpayroll.com", "mode": "force-https" },
    { "name": "errors.zenpayroll.com", "mode": "force-https" },
    { "name": "manage.zenpayroll.com", "mode": "force-https" },
    { "name": "gernert-server.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "skydrive.live.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "lifeguard.aecom.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "data.qld.gov.au", "mode": "force-https" },
    { "name": "publications.qld.gov.au", "mode": "force-https" },
    { "name": "go.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "login.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "my.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "payroll.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "in.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "api.xero.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "eff.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "mail.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "passport.yandex.ru", "mode": "force-https" },
    { "name": "passport.yandex.com", "mode": "force-https" },
    { "name": "passport.yandex.ua", "mode": "force-https" },
    { "name": "passport.yandex.by", "mode": "force-https" },
    { "name": "passport.yandex.kz", "mode": "force-https" },
    { "name": "passport.yandex.com.tr", "mode": "force-https" },
    { "name": "mnsure.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "getcloak.com", "mode": "force-https" },
    { "name": "www.getcloak.com", "mode": "force-https" },
    { "name": "matteomarescotti.name", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.heliosnet.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "opsmate.com", "mode": "force-https" },
    { "name": "www.opsmate.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "f-droid.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.evernote.com", "mode": "force-https" },
    { "name": "app.yinxiang.com", "mode": "force-https" },
    { "name": "neilwynne.com", "mode": "force-https" },
    { "name": "calyxinstitute.org", "mode": "force-https" },
    { "name": "www.calyxinstitute.org", "mode": "force-https" },
    { "name": "blacklane.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "boxcryptor.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "aclu.org", "mode": "force-https" },
    { "name": "www.aclu.org", "mode": "force-https" },
    { "name": "prodpad.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "mailbox.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "roddis.net", "mode": "force-https" },
    { "name": "www.roddis.net", "mode": "force-https" },
    { "name": "fiken.no", "include_subdomains": true, "mode": "force-https" },
    { "name": "fairbill.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "nexth.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "nexth.us", "include_subdomains": true, "mode": "force-https" },
    { "name": "nexth.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "souyar.net", "include_subdomains": true, "mode": "force-https" },
    { "name": "souyar.de", "include_subdomains": true, "mode": "force-https" },
    { "name": "souyar.us", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.banking.co.at", "mode": "force-https" },
    { "name": "mbp.banking.co.at", "mode": "force-https" },
    { "name": "feedbin.com", "mode": "force-https" },
    { "name": "heha.co", "include_subdomains": true, "mode": "force-https" },
    { "name": "passwordbox.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "python.org", "mode": "force-https" },
    { "name": "pypi.python.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.python.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "docs.python.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "encircleapp.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "onedrive.live.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "onedrive.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "keepersecurity.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "keeperapp.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "donmez.ws", "include_subdomains": true, "mode": "force-https" },
    { "name": "activiti.alfresco.com", "mode": "force-https" },
    { "name": "cloudcert.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "seifried.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "wepay.com", "mode": "force-https" },
    { "name": "www.wepay.com", "mode": "force-https" },
    { "name": "static.wepay.com", "mode": "force-https" },
    { "name": "stage.wepay.com", "mode": "force-https" },
    { "name": "vmoagents.com", "mode": "force-https" },
    { "name": "adsfund.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "pult.co", "mode": "force-https" },
    { "name": "dillonkorman.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "edmodo.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.eternalgoth.co.uk", "mode": "force-https" },
    { "name": "app.manilla.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "harvestapp.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "anycoin.me", "include_subdomains": true, "mode": "force-https" },
    { "name": "noexpect.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "airbnb.com", "mode": "force-https" },
    { "name": "www.airbnb.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "usaa.com", "mode": "force-https" },
    { "name": "www.usaa.com", "mode": "force-https" },
    { "name": "mobile.usaa.com", "mode": "force-https" },
    { "name": "subrosa.io", "include_subdomains": true, "mode": "force-https" },
    { "name": "detectify.com", "mode": "force-https" },
    { "name": "crbug.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "manageprojects.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "tinfoilsecurity.com", "mode": "force-https" },
    { "name": "www.tinfoilsecurity.com", "mode": "force-https" },
    { "name": "imouto.my", "mode": "force-https" },
    { "name": "vocaloid.my", "include_subdomains": true, "mode": "force-https" },
    { "name": "sakaki.anime.my", "include_subdomains": true, "mode": "force-https" },
    { "name": "reviews.anime.my", "include_subdomains": true, "mode": "force-https" },
    { "name": "miku.hatsune.my", "include_subdomains": true, "mode": "force-https" },
    { "name": "webcollect.org.uk", "include_subdomains": true, "mode": "force-https" },
    { "name": "www.capitainetrain.com", "mode": "force-https" },
    { "name": "accounts.firefox.com", "include_subdomains": true, "mode": "force-https" },
    { "name": "z.ai", "include_subdomains": true, "mode": "force-https" },
    { "name": "wildbee.org", "include_subdomains": true, "mode": "force-https" },
    { "name": "portal.tirol.gv.at", "include_subdomains": true, "mode": "force-https" },
    { "name": "dropbox.com", "mode": "force-https", "pins": "dropbox" },
    { "name": "www.dropbox.com", "include_subdomains": true, "mode": "force-https", "pins": "dropbox" },
    { "name": "code-poets.co.uk", "include_subdomains": true, "mode": "force-https" },
    { "name": "jackyyf.com", "mode": "force-https" },
    { "name": "flynn.io", "include_subdomains": true, "mode": "force-https" },

    // Entries that are only valid if the client supports SNI.
    { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": true },
    { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionly": true },
    { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly": true },
    { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "snionly": true },
    { "name": "google-analytics.com", "include_subdomains": true, "pins": "google", "snionly": true },
    { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true },
    { "name": "mykolab.com", "include_subdomains": true, "mode": "force-https", "snionly": true },
    { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-https", "snionly": true }
  ]
}