1// Copyright 2022 The Chromium Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// This file contains the key pinning list in a machine readable format. 6 7// The top-level element is a dictionary with two keys: "pinsets" maps details 8// of certificate pinning to a name and "entries" contains the pins details for 9// each host. 10// 11// "pinsets" is a list of objects. Each object has the following members: 12// name: (string) the name of the pinset 13// static_spki_hashes: (list of strings) the set of allowed SPKIs hashes 14// bad_static_spki_hashes: (optional list of strings) the set of forbidden 15// SPKIs hashes 16// report_uri: (optional string) the URI to send violation reports to; 17// reports will be in the format defined in RFC 7469 18// 19// For a given pinset, a certificate is accepted if at least one of the 20// "static_spki_hashes" SPKIs is found in the chain and none of the 21// "bad_static_spki_hashes" SPKIs are. SPKIs are specified as names, which must 22// match up with the file of certificates. 23// 24// "entries" is a list of objects. Each object has the following members: 25// name: (string) the DNS name of the host in question. 26// include_subdomains: (optional boolean) Apply the pinset to subdomains. 27// pins: (string) the |name| member of an object in |pinsets|. 28// 29// This file is meant to be used in conjunction with 30// 'transport_security_state_static.pins', which defines the SPKI values that 31// the 'static_spki_hashes' and 'bad_static_spki_hashes' fields in 'pinsets' 32// refer to, and the timestamp at which the pins list was last updated. 33// 34// Last updated: 2024-12-02 12:54 UTC 35// 36{ 37 "pinsets": [ 38 { 39 "name": "test", 40 "static_spki_hashes": [ 41 "TestSPKI" 42 ], 43 "report_uri": "http://report-example.test/test" 44 }, 45 { 46 "name": "google", 47 "static_spki_hashes": [ 48 "GoogleBackup2048", 49 "GTSRootR1", 50 "GTSRootR2", 51 "GTSRootR3", 52 "GTSRootR4", 53 "GlobalSignR4_owned_by_Google" 54 ], 55 "bad_static_spki_hashes": [ 56 "GlobalSignExtendedValidationCA", 57 "GlobalSignExtendedValidationCA_G2", 58 "GlobalSignExtendedValidationCA_SHA256_G2" 59 ], 60 "report_uri": "http://clients3.google.com/cert_upload_json" 61 }, 62 { 63 "name": "facebook", 64 "static_spki_hashes": [ 65 "ComodoRSACertificationAuthority", 66 "ComodoECCCertificationAuthority", 67 "UserTrustRSACertificationAuthority", 68 "UserTrustECCCertificationAuthority", 69 "DigiCertGlobalRoot", 70 "DigiCertGlobalRootG2", 71 "DigiCertGlobalRootG3", 72 "DigiCertEVRoot", 73 "DigiCertTrustedRootG4", 74 "DigiCertTLSRSA4096RootG5", 75 "DigiCertTLSECCP384RootG5", 76 "GlobalSignRootCA", 77 "GlobalSignRootCA_R3", 78 "GlobalSignRootCA_R6", 79 "GlobalSignRootR46", 80 "ISRGRootX1", 81 "ISRGRootX2", 82 "FacebookBackup", 83 "SymantecClass3EVG3", 84 "DigiCertECCSecureServerCA" 85 ] 86 } 87 ], 88 "entries": [ 89 { 90 "name": "pinningtest.appspot.com", 91 "include_subdomains": true, 92 "pins": "test" 93 }, 94 { 95 "name": "pinning-test.badssl.com", 96 "include_subdomains": true, 97 "pins": "test" 98 }, 99 { 100 "name": "example.test", 101 "include_subdomains": true, 102 "pins": "test" 103 }, 104 { 105 "name": "google", 106 "include_subdomains": true, 107 "pins": "google" 108 }, 109 { 110 "name": "hangout", 111 "include_subdomains": true, 112 "pins": "google" 113 }, 114 { 115 "name": "mail.google.com", 116 "include_subdomains": true, 117 "pins": "google" 118 }, 119 { 120 "name": "plus.sandbox.google.com", 121 "include_subdomains": true, 122 "pins": "google" 123 }, 124 { 125 "name": "remotedesktop.corp.google.com", 126 "include_subdomains": true, 127 "pins": "google" 128 }, 129 { 130 "name": "corp.goog", 131 "include_subdomains": true, 132 "pins": "google" 133 }, 134 { 135 "name": "accounts.google.com", 136 "include_subdomains": true, 137 "pins": "google" 138 }, 139 { 140 "name": "admin.google.com", 141 "include_subdomains": true, 142 "pins": "google" 143 }, 144 { 145 "name": "apis.google.com", 146 "include_subdomains": true, 147 "pins": "google" 148 }, 149 { 150 "name": "appengine.google.com", 151 "include_subdomains": true, 152 "pins": "google" 153 }, 154 { 155 "name": "calendar.google.com", 156 "include_subdomains": true, 157 "pins": "google" 158 }, 159 { 160 "name": "checkout.google.com", 161 "include_subdomains": true, 162 "pins": "google" 163 }, 164 { 165 "name": "chrome.google.com", 166 "include_subdomains": true, 167 "pins": "google" 168 }, 169 { 170 "name": "classroom.google.com", 171 "include_subdomains": true, 172 "pins": "google" 173 }, 174 { 175 "name": "cloud.google.com", 176 "include_subdomains": true, 177 "pins": "google" 178 }, 179 { 180 "name": "code.google.com", 181 "include_subdomains": true, 182 "pins": "google" 183 }, 184 { 185 "name": "contributor.google.com", 186 "include_subdomains": true, 187 "pins": "google" 188 }, 189 { 190 "name": "datastudio.google.com", 191 "include_subdomains": true, 192 "pins": "google" 193 }, 194 { 195 "name": "dl.google.com", 196 "include_subdomains": true, 197 "pins": "google" 198 }, 199 { 200 "name": "docs.google.com", 201 "include_subdomains": true, 202 "pins": "google" 203 }, 204 { 205 "name": "domains.google.com", 206 "include_subdomains": true, 207 "pins": "google" 208 }, 209 { 210 "name": "drive.google.com", 211 "include_subdomains": true, 212 "pins": "google" 213 }, 214 { 215 "name": "encrypted.google.com", 216 "include_subdomains": true, 217 "pins": "google" 218 }, 219 { 220 "name": "fi.google.com", 221 "include_subdomains": true, 222 "pins": "google" 223 }, 224 { 225 "name": "glass.google.com", 226 "include_subdomains": true, 227 "pins": "google" 228 }, 229 { 230 "name": "goto.google.com", 231 "include_subdomains": true, 232 "pins": "google" 233 }, 234 { 235 "name": "groups.google.com", 236 "include_subdomains": true, 237 "pins": "google" 238 }, 239 { 240 "name": "hangouts.google.com", 241 "include_subdomains": true, 242 "pins": "google" 243 }, 244 { 245 "name": "history.google.com", 246 "include_subdomains": true, 247 "pins": "google" 248 }, 249 { 250 "name": "hostedtalkgadget.google.com", 251 "include_subdomains": true, 252 "pins": "google" 253 }, 254 { 255 "name": "inbox.google.com", 256 "include_subdomains": true, 257 "pins": "google" 258 }, 259 { 260 "name": "lens.google.com", 261 "include_subdomains": true, 262 "pins": "google" 263 }, 264 { 265 "name": "login.corp.google.com", 266 "include_subdomains": true, 267 "pins": "google" 268 }, 269 { 270 "name": "mail-settings.google.com", 271 "include_subdomains": true, 272 "pins": "google" 273 }, 274 { 275 "name": "meet.google.com", 276 "include_subdomains": true, 277 "pins": "google" 278 }, 279 { 280 "name": "myaccount.google.com", 281 "include_subdomains": true, 282 "pins": "google" 283 }, 284 { 285 "name": "myactivity.google.com", 286 "include_subdomains": true, 287 "pins": "google" 288 }, 289 { 290 "name": "passwords.google.com", 291 "include_subdomains": true, 292 "pins": "google" 293 }, 294 { 295 "name": "pixel.google.com", 296 "include_subdomains": true, 297 "pins": "google" 298 }, 299 { 300 "name": "play.google.com", 301 "include_subdomains": true, 302 "pins": "google" 303 }, 304 { 305 "name": "plus.google.com", 306 "include_subdomains": true, 307 "pins": "google" 308 }, 309 { 310 "name": "profiles.google.com", 311 "include_subdomains": true, 312 "pins": "google" 313 }, 314 { 315 "name": "script.google.com", 316 "include_subdomains": true, 317 "pins": "google" 318 }, 319 { 320 "name": "security.google.com", 321 "include_subdomains": true, 322 "pins": "google" 323 }, 324 { 325 "name": "sites.google.com", 326 "include_subdomains": true, 327 "pins": "google" 328 }, 329 { 330 "name": "spreadsheets.google.com", 331 "include_subdomains": true, 332 "pins": "google" 333 }, 334 { 335 "name": "talkgadget.google.com", 336 "include_subdomains": true, 337 "pins": "google" 338 }, 339 { 340 "name": "talk.google.com", 341 "include_subdomains": true, 342 "pins": "google" 343 }, 344 { 345 "name": "wallet.google.com", 346 "include_subdomains": true, 347 "pins": "google" 348 }, 349 { 350 "name": "payments.google.com", 351 "include_subdomains": true, 352 "pins": "google" 353 }, 354 { 355 "name": "xn--7xa.google.com", 356 "include_subdomains": true, 357 "pins": "google" 358 }, 359 { 360 "name": "dns.google.com", 361 "include_subdomains": true, 362 "pins": "google" 363 }, 364 { 365 "name": "build.chromium.org", 366 "include_subdomains": true, 367 "pins": "google" 368 }, 369 { 370 "name": "bugs.chromium.org", 371 "include_subdomains": true, 372 "pins": "google" 373 }, 374 { 375 "name": "cdn.ampproject.org", 376 "include_subdomains": true, 377 "pins": "google" 378 }, 379 { 380 "name": "chrome.com", 381 "include_subdomains": true, 382 "pins": "google" 383 }, 384 { 385 "name": "chrome-devtools-frontend.appspot.com", 386 "include_subdomains": true, 387 "pins": "google" 388 }, 389 { 390 "name": "chromereporting-pa.googleapis.com", 391 "include_subdomains": true, 392 "pins": "google" 393 }, 394 { 395 "name": "chromiumcodereview.appspot.com", 396 "include_subdomains": true, 397 "pins": "google" 398 }, 399 { 400 "name": "codereview.appspot.com", 401 "include_subdomains": true, 402 "pins": "google" 403 }, 404 { 405 "name": "codereview.chromium.org", 406 "include_subdomains": true, 407 "pins": "google" 408 }, 409 { 410 "name": "crbug.com", 411 "include_subdomains": true, 412 "pins": "google" 413 }, 414 { 415 "name": "crosbug.com", 416 "include_subdomains": true, 417 "pins": "google" 418 }, 419 { 420 "name": "crrev.com", 421 "include_subdomains": true, 422 "pins": "google" 423 }, 424 { 425 "name": "firebaseio.com", 426 "include_subdomains": true, 427 "pins": "google" 428 }, 429 { 430 "name": "g.co", 431 "include_subdomains": false, 432 "pins": "google" 433 }, 434 { 435 "name": "www.g.co", 436 "include_subdomains": false, 437 "pins": "google" 438 }, 439 { 440 "name": "g4w.co", 441 "include_subdomains": true, 442 "pins": "google" 443 }, 444 { 445 "name": "gmail.com", 446 "include_subdomains": false, 447 "pins": "google" 448 }, 449 { 450 "name": "goo.gl", 451 "include_subdomains": true, 452 "pins": "google" 453 }, 454 { 455 "name": "googlecode.com", 456 "include_subdomains": true, 457 "pins": "google" 458 }, 459 { 460 "name": "googlemail.com", 461 "include_subdomains": false, 462 "pins": "google" 463 }, 464 { 465 "name": "googleplex.com", 466 "include_subdomains": true, 467 "pins": "google" 468 }, 469 { 470 "name": "googlesource.com", 471 "include_subdomains": true, 472 "pins": "google" 473 }, 474 { 475 "name": "gvt2.com", 476 "include_subdomains": true, 477 "pins": "google" 478 }, 479 { 480 "name": "gvt3.com", 481 "include_subdomains": true, 482 "pins": "google" 483 }, 484 { 485 "name": "developer.android.com", 486 "include_subdomains": true, 487 "pins": "google" 488 }, 489 { 490 "name": "market.android.com", 491 "include_subdomains": true, 492 "pins": "google" 493 }, 494 { 495 "name": "oauthaccountmanager.googleapis.com", 496 "include_subdomains": true, 497 "pins": "google" 498 }, 499 { 500 "name": "passwordsleakcheck-pa.googleapis.com", 501 "include_subdomains": true, 502 "pins": "google" 503 }, 504 { 505 "name": "translate.googleapis.com", 506 "include_subdomains": true, 507 "pins": "google" 508 }, 509 { 510 "name": "tunnel.googlezip.net", 511 "include_subdomains": true, 512 "pins": "google" 513 }, 514 { 515 "name": "tunnel-staging.googlezip.net", 516 "include_subdomains": true, 517 "pins": "google" 518 }, 519 { 520 "name": "withgoogle.com", 521 "include_subdomains": true, 522 "pins": "google" 523 }, 524 { 525 "name": "withyoutube.com", 526 "include_subdomains": true, 527 "pins": "google" 528 }, 529 { 530 "name": "www.gmail.com", 531 "include_subdomains": false, 532 "pins": "google" 533 }, 534 { 535 "name": "www.googlemail.com", 536 "include_subdomains": false, 537 "pins": "google" 538 }, 539 { 540 "name": "google-analytics.com", 541 "include_subdomains": true, 542 "pins": "google" 543 }, 544 { 545 "name": "stats.g.doubleclick.net", 546 "include_subdomains": true, 547 "pins": "google" 548 }, 549 { 550 "name": "chromiumbugs.appspot.com", 551 "include_subdomains": true, 552 "pins": "google" 553 }, 554 { 555 "name": "youtube.com", 556 "include_subdomains": true, 557 "pins": "google" 558 }, 559 { 560 "name": "ua5v.com", 561 "include_subdomains": true, 562 "pins": "google" 563 }, 564 { 565 "name": "webfilings.appspot.com", 566 "include_subdomains": true, 567 "pins": "google" 568 }, 569 { 570 "name": "webfilings-eu.appspot.com", 571 "include_subdomains": true, 572 "pins": "google" 573 }, 574 { 575 "name": "webfilings-eu-mirror.appspot.com", 576 "include_subdomains": true, 577 "pins": "google" 578 }, 579 { 580 "name": "webfilings-mirror-hrd.appspot.com", 581 "include_subdomains": true, 582 "pins": "google" 583 }, 584 { 585 "name": "wf-bigsky-master.appspot.com", 586 "include_subdomains": true, 587 "pins": "google" 588 }, 589 { 590 "name": "wf-demo-eu.appspot.com", 591 "include_subdomains": true, 592 "pins": "google" 593 }, 594 { 595 "name": "wf-demo-hrd.appspot.com", 596 "include_subdomains": true, 597 "pins": "google" 598 }, 599 { 600 "name": "wf-dogfood-hrd.appspot.com", 601 "include_subdomains": true, 602 "pins": "google" 603 }, 604 { 605 "name": "wf-pentest.appspot.com", 606 "include_subdomains": true, 607 "pins": "google" 608 }, 609 { 610 "name": "wf-staging-hr.appspot.com", 611 "include_subdomains": true, 612 "pins": "google" 613 }, 614 { 615 "name": "wf-training-hrd.appspot.com", 616 "include_subdomains": true, 617 "pins": "google" 618 }, 619 { 620 "name": "wf-training-master.appspot.com", 621 "include_subdomains": true, 622 "pins": "google" 623 }, 624 { 625 "name": "wf-trial-hrd.appspot.com", 626 "include_subdomains": true, 627 "pins": "google" 628 }, 629 { 630 "name": "w-spotlight.appspot.com", 631 "include_subdomains": true, 632 "pins": "google" 633 }, 634 { 635 "name": "xbrlsuccess.appspot.com", 636 "include_subdomains": true, 637 "pins": "google" 638 }, 639 { 640 "name": "2mdn.net", 641 "include_subdomains": true, 642 "pins": "google" 643 }, 644 { 645 "name": "android.com", 646 "include_subdomains": true, 647 "pins": "google" 648 }, 649 { 650 "name": "appspot.com", 651 "include_subdomains": true, 652 "pins": "google" 653 }, 654 { 655 "name": "blogger.com", 656 "include_subdomains": true, 657 "pins": "google" 658 }, 659 { 660 "name": "blogspot.com", 661 "include_subdomains": true, 662 "pins": "google" 663 }, 664 { 665 "name": "doubleclick.net", 666 "include_subdomains": true, 667 "pins": "google" 668 }, 669 { 670 "name": "ggpht.com", 671 "include_subdomains": true, 672 "pins": "google" 673 }, 674 { 675 "name": "google.ac", 676 "include_subdomains": true, 677 "pins": "google" 678 }, 679 { 680 "name": "google.ad", 681 "include_subdomains": true, 682 "pins": "google" 683 }, 684 { 685 "name": "googleadservices.com", 686 "include_subdomains": true, 687 "pins": "google" 688 }, 689 { 690 "name": "google.ae", 691 "include_subdomains": true, 692 "pins": "google" 693 }, 694 { 695 "name": "google.af", 696 "include_subdomains": true, 697 "pins": "google" 698 }, 699 { 700 "name": "google.ag", 701 "include_subdomains": true, 702 "pins": "google" 703 }, 704 { 705 "name": "google.am", 706 "include_subdomains": true, 707 "pins": "google" 708 }, 709 { 710 "name": "googleapis.com", 711 "include_subdomains": true, 712 "pins": "google" 713 }, 714 { 715 "name": "google.as", 716 "include_subdomains": true, 717 "pins": "google" 718 }, 719 { 720 "name": "google.at", 721 "include_subdomains": true, 722 "pins": "google" 723 }, 724 { 725 "name": "google.az", 726 "include_subdomains": true, 727 "pins": "google" 728 }, 729 { 730 "name": "google.ba", 731 "include_subdomains": true, 732 "pins": "google" 733 }, 734 { 735 "name": "google.be", 736 "include_subdomains": true, 737 "pins": "google" 738 }, 739 { 740 "name": "google.bf", 741 "include_subdomains": true, 742 "pins": "google" 743 }, 744 { 745 "name": "google.bg", 746 "include_subdomains": true, 747 "pins": "google" 748 }, 749 { 750 "name": "google.bi", 751 "include_subdomains": true, 752 "pins": "google" 753 }, 754 { 755 "name": "google.bj", 756 "include_subdomains": true, 757 "pins": "google" 758 }, 759 { 760 "name": "google.bs", 761 "include_subdomains": true, 762 "pins": "google" 763 }, 764 { 765 "name": "google.by", 766 "include_subdomains": true, 767 "pins": "google" 768 }, 769 { 770 "name": "google.ca", 771 "include_subdomains": true, 772 "pins": "google" 773 }, 774 { 775 "name": "google.cat", 776 "include_subdomains": true, 777 "pins": "google" 778 }, 779 { 780 "name": "google.cc", 781 "include_subdomains": true, 782 "pins": "google" 783 }, 784 { 785 "name": "google.cd", 786 "include_subdomains": true, 787 "pins": "google" 788 }, 789 { 790 "name": "google.cf", 791 "include_subdomains": true, 792 "pins": "google" 793 }, 794 { 795 "name": "google.cg", 796 "include_subdomains": true, 797 "pins": "google" 798 }, 799 { 800 "name": "google.ch", 801 "include_subdomains": true, 802 "pins": "google" 803 }, 804 { 805 "name": "google.ci", 806 "include_subdomains": true, 807 "pins": "google" 808 }, 809 { 810 "name": "google.cl", 811 "include_subdomains": true, 812 "pins": "google" 813 }, 814 { 815 "name": "google.cm", 816 "include_subdomains": true, 817 "pins": "google" 818 }, 819 { 820 "name": "google.cn", 821 "include_subdomains": true, 822 "pins": "google" 823 }, 824 { 825 "name": "google.co.ao", 826 "include_subdomains": true, 827 "pins": "google" 828 }, 829 { 830 "name": "google.co.bw", 831 "include_subdomains": true, 832 "pins": "google" 833 }, 834 { 835 "name": "google.co.ck", 836 "include_subdomains": true, 837 "pins": "google" 838 }, 839 { 840 "name": "google.co.cr", 841 "include_subdomains": true, 842 "pins": "google" 843 }, 844 { 845 "name": "google.co.hu", 846 "include_subdomains": true, 847 "pins": "google" 848 }, 849 { 850 "name": "google.co.id", 851 "include_subdomains": true, 852 "pins": "google" 853 }, 854 { 855 "name": "google.co.il", 856 "include_subdomains": true, 857 "pins": "google" 858 }, 859 { 860 "name": "google.co.im", 861 "include_subdomains": true, 862 "pins": "google" 863 }, 864 { 865 "name": "google.co.in", 866 "include_subdomains": true, 867 "pins": "google" 868 }, 869 { 870 "name": "google.co.je", 871 "include_subdomains": true, 872 "pins": "google" 873 }, 874 { 875 "name": "google.co.jp", 876 "include_subdomains": true, 877 "pins": "google" 878 }, 879 { 880 "name": "google.co.ke", 881 "include_subdomains": true, 882 "pins": "google" 883 }, 884 { 885 "name": "google.co.kr", 886 "include_subdomains": true, 887 "pins": "google" 888 }, 889 { 890 "name": "google.co.ls", 891 "include_subdomains": true, 892 "pins": "google" 893 }, 894 { 895 "name": "google.com.af", 896 "include_subdomains": true, 897 "pins": "google" 898 }, 899 { 900 "name": "google.com.ag", 901 "include_subdomains": true, 902 "pins": "google" 903 }, 904 { 905 "name": "google.com.ai", 906 "include_subdomains": true, 907 "pins": "google" 908 }, 909 { 910 "name": "google.co.ma", 911 "include_subdomains": true, 912 "pins": "google" 913 }, 914 { 915 "name": "google.com.ar", 916 "include_subdomains": true, 917 "pins": "google" 918 }, 919 { 920 "name": "google.com.au", 921 "include_subdomains": true, 922 "pins": "google" 923 }, 924 { 925 "name": "google.com.bd", 926 "include_subdomains": true, 927 "pins": "google" 928 }, 929 { 930 "name": "google.com.bh", 931 "include_subdomains": true, 932 "pins": "google" 933 }, 934 { 935 "name": "google.com.bn", 936 "include_subdomains": true, 937 "pins": "google" 938 }, 939 { 940 "name": "google.com.bo", 941 "include_subdomains": true, 942 "pins": "google" 943 }, 944 { 945 "name": "google.com.br", 946 "include_subdomains": true, 947 "pins": "google" 948 }, 949 { 950 "name": "google.com.by", 951 "include_subdomains": true, 952 "pins": "google" 953 }, 954 { 955 "name": "google.com.bz", 956 "include_subdomains": true, 957 "pins": "google" 958 }, 959 { 960 "name": "google.com.cn", 961 "include_subdomains": true, 962 "pins": "google" 963 }, 964 { 965 "name": "google.com.co", 966 "include_subdomains": true, 967 "pins": "google" 968 }, 969 { 970 "name": "google.com.cu", 971 "include_subdomains": true, 972 "pins": "google" 973 }, 974 { 975 "name": "google.com.cy", 976 "include_subdomains": true, 977 "pins": "google" 978 }, 979 { 980 "name": "google.com.do", 981 "include_subdomains": true, 982 "pins": "google" 983 }, 984 { 985 "name": "google.com.ec", 986 "include_subdomains": true, 987 "pins": "google" 988 }, 989 { 990 "name": "google.com.eg", 991 "include_subdomains": true, 992 "pins": "google" 993 }, 994 { 995 "name": "google.com.et", 996 "include_subdomains": true, 997 "pins": "google" 998 }, 999 { 1000 "name": "google.com.fj", 1001 "include_subdomains": true, 1002 "pins": "google" 1003 }, 1004 { 1005 "name": "google.com.ge", 1006 "include_subdomains": true, 1007 "pins": "google" 1008 }, 1009 { 1010 "name": "google.com.gh", 1011 "include_subdomains": true, 1012 "pins": "google" 1013 }, 1014 { 1015 "name": "google.com.gi", 1016 "include_subdomains": true, 1017 "pins": "google" 1018 }, 1019 { 1020 "name": "google.com.gr", 1021 "include_subdomains": true, 1022 "pins": "google" 1023 }, 1024 { 1025 "name": "google.com.gt", 1026 "include_subdomains": true, 1027 "pins": "google" 1028 }, 1029 { 1030 "name": "google.com.hk", 1031 "include_subdomains": true, 1032 "pins": "google" 1033 }, 1034 { 1035 "name": "google.com", 1036 "include_subdomains": true, 1037 "pins": "google" 1038 }, 1039 { 1040 "name": "google.com.iq", 1041 "include_subdomains": true, 1042 "pins": "google" 1043 }, 1044 { 1045 "name": "google.com.jm", 1046 "include_subdomains": true, 1047 "pins": "google" 1048 }, 1049 { 1050 "name": "google.com.jo", 1051 "include_subdomains": true, 1052 "pins": "google" 1053 }, 1054 { 1055 "name": "google.com.kh", 1056 "include_subdomains": true, 1057 "pins": "google" 1058 }, 1059 { 1060 "name": "google.com.kw", 1061 "include_subdomains": true, 1062 "pins": "google" 1063 }, 1064 { 1065 "name": "google.com.lb", 1066 "include_subdomains": true, 1067 "pins": "google" 1068 }, 1069 { 1070 "name": "google.com.ly", 1071 "include_subdomains": true, 1072 "pins": "google" 1073 }, 1074 { 1075 "name": "googlecommerce.com", 1076 "include_subdomains": true, 1077 "pins": "google" 1078 }, 1079 { 1080 "name": "google.com.mt", 1081 "include_subdomains": true, 1082 "pins": "google" 1083 }, 1084 { 1085 "name": "google.com.mx", 1086 "include_subdomains": true, 1087 "pins": "google" 1088 }, 1089 { 1090 "name": "google.com.my", 1091 "include_subdomains": true, 1092 "pins": "google" 1093 }, 1094 { 1095 "name": "google.com.na", 1096 "include_subdomains": true, 1097 "pins": "google" 1098 }, 1099 { 1100 "name": "google.com.nf", 1101 "include_subdomains": true, 1102 "pins": "google" 1103 }, 1104 { 1105 "name": "google.com.ng", 1106 "include_subdomains": true, 1107 "pins": "google" 1108 }, 1109 { 1110 "name": "google.com.ni", 1111 "include_subdomains": true, 1112 "pins": "google" 1113 }, 1114 { 1115 "name": "google.com.np", 1116 "include_subdomains": true, 1117 "pins": "google" 1118 }, 1119 { 1120 "name": "google.com.nr", 1121 "include_subdomains": true, 1122 "pins": "google" 1123 }, 1124 { 1125 "name": "google.com.om", 1126 "include_subdomains": true, 1127 "pins": "google" 1128 }, 1129 { 1130 "name": "google.com.pa", 1131 "include_subdomains": true, 1132 "pins": "google" 1133 }, 1134 { 1135 "name": "google.com.pe", 1136 "include_subdomains": true, 1137 "pins": "google" 1138 }, 1139 { 1140 "name": "google.com.ph", 1141 "include_subdomains": true, 1142 "pins": "google" 1143 }, 1144 { 1145 "name": "google.com.pk", 1146 "include_subdomains": true, 1147 "pins": "google" 1148 }, 1149 { 1150 "name": "google.com.pl", 1151 "include_subdomains": true, 1152 "pins": "google" 1153 }, 1154 { 1155 "name": "google.com.pr", 1156 "include_subdomains": true, 1157 "pins": "google" 1158 }, 1159 { 1160 "name": "google.com.py", 1161 "include_subdomains": true, 1162 "pins": "google" 1163 }, 1164 { 1165 "name": "google.com.qa", 1166 "include_subdomains": true, 1167 "pins": "google" 1168 }, 1169 { 1170 "name": "google.com.ru", 1171 "include_subdomains": true, 1172 "pins": "google" 1173 }, 1174 { 1175 "name": "google.com.sa", 1176 "include_subdomains": true, 1177 "pins": "google" 1178 }, 1179 { 1180 "name": "google.com.sb", 1181 "include_subdomains": true, 1182 "pins": "google" 1183 }, 1184 { 1185 "name": "google.com.sg", 1186 "include_subdomains": true, 1187 "pins": "google" 1188 }, 1189 { 1190 "name": "google.com.sl", 1191 "include_subdomains": true, 1192 "pins": "google" 1193 }, 1194 { 1195 "name": "google.com.sv", 1196 "include_subdomains": true, 1197 "pins": "google" 1198 }, 1199 { 1200 "name": "google.com.tj", 1201 "include_subdomains": true, 1202 "pins": "google" 1203 }, 1204 { 1205 "name": "google.com.tn", 1206 "include_subdomains": true, 1207 "pins": "google" 1208 }, 1209 { 1210 "name": "google.com.tr", 1211 "include_subdomains": true, 1212 "pins": "google" 1213 }, 1214 { 1215 "name": "google.com.tw", 1216 "include_subdomains": true, 1217 "pins": "google" 1218 }, 1219 { 1220 "name": "google.com.ua", 1221 "include_subdomains": true, 1222 "pins": "google" 1223 }, 1224 { 1225 "name": "google.com.uy", 1226 "include_subdomains": true, 1227 "pins": "google" 1228 }, 1229 { 1230 "name": "google.com.vc", 1231 "include_subdomains": true, 1232 "pins": "google" 1233 }, 1234 { 1235 "name": "google.com.ve", 1236 "include_subdomains": true, 1237 "pins": "google" 1238 }, 1239 { 1240 "name": "google.com.vn", 1241 "include_subdomains": true, 1242 "pins": "google" 1243 }, 1244 { 1245 "name": "google.co.mz", 1246 "include_subdomains": true, 1247 "pins": "google" 1248 }, 1249 { 1250 "name": "google.co.nz", 1251 "include_subdomains": true, 1252 "pins": "google" 1253 }, 1254 { 1255 "name": "google.co.th", 1256 "include_subdomains": true, 1257 "pins": "google" 1258 }, 1259 { 1260 "name": "google.co.tz", 1261 "include_subdomains": true, 1262 "pins": "google" 1263 }, 1264 { 1265 "name": "google.co.ug", 1266 "include_subdomains": true, 1267 "pins": "google" 1268 }, 1269 { 1270 "name": "google.co.uk", 1271 "include_subdomains": true, 1272 "pins": "google" 1273 }, 1274 { 1275 "name": "google.co.uz", 1276 "include_subdomains": true, 1277 "pins": "google" 1278 }, 1279 { 1280 "name": "google.co.ve", 1281 "include_subdomains": true, 1282 "pins": "google" 1283 }, 1284 { 1285 "name": "google.co.vi", 1286 "include_subdomains": true, 1287 "pins": "google" 1288 }, 1289 { 1290 "name": "google.co.za", 1291 "include_subdomains": true, 1292 "pins": "google" 1293 }, 1294 { 1295 "name": "google.co.zm", 1296 "include_subdomains": true, 1297 "pins": "google" 1298 }, 1299 { 1300 "name": "google.co.zw", 1301 "include_subdomains": true, 1302 "pins": "google" 1303 }, 1304 { 1305 "name": "google.cv", 1306 "include_subdomains": true, 1307 "pins": "google" 1308 }, 1309 { 1310 "name": "google.cz", 1311 "include_subdomains": true, 1312 "pins": "google" 1313 }, 1314 { 1315 "name": "google.de", 1316 "include_subdomains": true, 1317 "pins": "google" 1318 }, 1319 { 1320 "name": "google.dj", 1321 "include_subdomains": true, 1322 "pins": "google" 1323 }, 1324 { 1325 "name": "google.dk", 1326 "include_subdomains": true, 1327 "pins": "google" 1328 }, 1329 { 1330 "name": "google.dm", 1331 "include_subdomains": true, 1332 "pins": "google" 1333 }, 1334 { 1335 "name": "google.dz", 1336 "include_subdomains": true, 1337 "pins": "google" 1338 }, 1339 { 1340 "name": "google.ee", 1341 "include_subdomains": true, 1342 "pins": "google" 1343 }, 1344 { 1345 "name": "google.es", 1346 "include_subdomains": true, 1347 "pins": "google" 1348 }, 1349 { 1350 "name": "google.fi", 1351 "include_subdomains": true, 1352 "pins": "google" 1353 }, 1354 { 1355 "name": "google.fm", 1356 "include_subdomains": true, 1357 "pins": "google" 1358 }, 1359 { 1360 "name": "google.fr", 1361 "include_subdomains": true, 1362 "pins": "google" 1363 }, 1364 { 1365 "name": "google.ga", 1366 "include_subdomains": true, 1367 "pins": "google" 1368 }, 1369 { 1370 "name": "google.ge", 1371 "include_subdomains": true, 1372 "pins": "google" 1373 }, 1374 { 1375 "name": "google.gg", 1376 "include_subdomains": true, 1377 "pins": "google" 1378 }, 1379 { 1380 "name": "google.gl", 1381 "include_subdomains": true, 1382 "pins": "google" 1383 }, 1384 { 1385 "name": "google.gm", 1386 "include_subdomains": true, 1387 "pins": "google" 1388 }, 1389 { 1390 "name": "google.gp", 1391 "include_subdomains": true, 1392 "pins": "google" 1393 }, 1394 { 1395 "name": "google.gr", 1396 "include_subdomains": true, 1397 "pins": "google" 1398 }, 1399 { 1400 "name": "googlegroups.com", 1401 "include_subdomains": true, 1402 "pins": "google" 1403 }, 1404 { 1405 "name": "google.gy", 1406 "include_subdomains": true, 1407 "pins": "google" 1408 }, 1409 { 1410 "name": "google.hk", 1411 "include_subdomains": true, 1412 "pins": "google" 1413 }, 1414 { 1415 "name": "google.hn", 1416 "include_subdomains": true, 1417 "pins": "google" 1418 }, 1419 { 1420 "name": "google.hr", 1421 "include_subdomains": true, 1422 "pins": "google" 1423 }, 1424 { 1425 "name": "google.ht", 1426 "include_subdomains": true, 1427 "pins": "google" 1428 }, 1429 { 1430 "name": "google.hu", 1431 "include_subdomains": true, 1432 "pins": "google" 1433 }, 1434 { 1435 "name": "google.ie", 1436 "include_subdomains": true, 1437 "pins": "google" 1438 }, 1439 { 1440 "name": "google.im", 1441 "include_subdomains": true, 1442 "pins": "google" 1443 }, 1444 { 1445 "name": "google.info", 1446 "include_subdomains": true, 1447 "pins": "google" 1448 }, 1449 { 1450 "name": "google.iq", 1451 "include_subdomains": true, 1452 "pins": "google" 1453 }, 1454 { 1455 "name": "google.is", 1456 "include_subdomains": true, 1457 "pins": "google" 1458 }, 1459 { 1460 "name": "google.it.ao", 1461 "include_subdomains": true, 1462 "pins": "google" 1463 }, 1464 { 1465 "name": "google.it", 1466 "include_subdomains": true, 1467 "pins": "google" 1468 }, 1469 { 1470 "name": "google.je", 1471 "include_subdomains": true, 1472 "pins": "google" 1473 }, 1474 { 1475 "name": "google.jobs", 1476 "include_subdomains": true, 1477 "pins": "google" 1478 }, 1479 { 1480 "name": "google.jo", 1481 "include_subdomains": true, 1482 "pins": "google" 1483 }, 1484 { 1485 "name": "google.jp", 1486 "include_subdomains": true, 1487 "pins": "google" 1488 }, 1489 { 1490 "name": "google.kg", 1491 "include_subdomains": true, 1492 "pins": "google" 1493 }, 1494 { 1495 "name": "google.ki", 1496 "include_subdomains": true, 1497 "pins": "google" 1498 }, 1499 { 1500 "name": "google.kz", 1501 "include_subdomains": true, 1502 "pins": "google" 1503 }, 1504 { 1505 "name": "google.la", 1506 "include_subdomains": true, 1507 "pins": "google" 1508 }, 1509 { 1510 "name": "google.li", 1511 "include_subdomains": true, 1512 "pins": "google" 1513 }, 1514 { 1515 "name": "google.lk", 1516 "include_subdomains": true, 1517 "pins": "google" 1518 }, 1519 { 1520 "name": "google.lt", 1521 "include_subdomains": true, 1522 "pins": "google" 1523 }, 1524 { 1525 "name": "google.lu", 1526 "include_subdomains": true, 1527 "pins": "google" 1528 }, 1529 { 1530 "name": "google.lv", 1531 "include_subdomains": true, 1532 "pins": "google" 1533 }, 1534 { 1535 "name": "google.md", 1536 "include_subdomains": true, 1537 "pins": "google" 1538 }, 1539 { 1540 "name": "google.me", 1541 "include_subdomains": true, 1542 "pins": "google" 1543 }, 1544 { 1545 "name": "google.mg", 1546 "include_subdomains": true, 1547 "pins": "google" 1548 }, 1549 { 1550 "name": "google.mk", 1551 "include_subdomains": true, 1552 "pins": "google" 1553 }, 1554 { 1555 "name": "google.ml", 1556 "include_subdomains": true, 1557 "pins": "google" 1558 }, 1559 { 1560 "name": "google.mn", 1561 "include_subdomains": true, 1562 "pins": "google" 1563 }, 1564 { 1565 "name": "google.ms", 1566 "include_subdomains": true, 1567 "pins": "google" 1568 }, 1569 { 1570 "name": "google.mu", 1571 "include_subdomains": true, 1572 "pins": "google" 1573 }, 1574 { 1575 "name": "google.mv", 1576 "include_subdomains": true, 1577 "pins": "google" 1578 }, 1579 { 1580 "name": "google.mw", 1581 "include_subdomains": true, 1582 "pins": "google" 1583 }, 1584 { 1585 "name": "google.ne", 1586 "include_subdomains": true, 1587 "pins": "google" 1588 }, 1589 { 1590 "name": "google.ne.jp", 1591 "include_subdomains": true, 1592 "pins": "google" 1593 }, 1594 { 1595 "name": "google.net", 1596 "include_subdomains": true, 1597 "pins": "google" 1598 }, 1599 { 1600 "name": "google.nl", 1601 "include_subdomains": true, 1602 "pins": "google" 1603 }, 1604 { 1605 "name": "google.no", 1606 "include_subdomains": true, 1607 "pins": "google" 1608 }, 1609 { 1610 "name": "google.nr", 1611 "include_subdomains": true, 1612 "pins": "google" 1613 }, 1614 { 1615 "name": "google.nu", 1616 "include_subdomains": true, 1617 "pins": "google" 1618 }, 1619 { 1620 "name": "google.off.ai", 1621 "include_subdomains": true, 1622 "pins": "google" 1623 }, 1624 { 1625 "name": "google.pk", 1626 "include_subdomains": true, 1627 "pins": "google" 1628 }, 1629 { 1630 "name": "google.pl", 1631 "include_subdomains": true, 1632 "pins": "google" 1633 }, 1634 { 1635 "name": "google.pn", 1636 "include_subdomains": true, 1637 "pins": "google" 1638 }, 1639 { 1640 "name": "google.ps", 1641 "include_subdomains": true, 1642 "pins": "google" 1643 }, 1644 { 1645 "name": "google.pt", 1646 "include_subdomains": true, 1647 "pins": "google" 1648 }, 1649 { 1650 "name": "google.ro", 1651 "include_subdomains": true, 1652 "pins": "google" 1653 }, 1654 { 1655 "name": "google.rs", 1656 "include_subdomains": true, 1657 "pins": "google" 1658 }, 1659 { 1660 "name": "google.ru", 1661 "include_subdomains": true, 1662 "pins": "google" 1663 }, 1664 { 1665 "name": "google.rw", 1666 "include_subdomains": true, 1667 "pins": "google" 1668 }, 1669 { 1670 "name": "google.sc", 1671 "include_subdomains": true, 1672 "pins": "google" 1673 }, 1674 { 1675 "name": "google.se", 1676 "include_subdomains": true, 1677 "pins": "google" 1678 }, 1679 { 1680 "name": "google.sh", 1681 "include_subdomains": true, 1682 "pins": "google" 1683 }, 1684 { 1685 "name": "google.si", 1686 "include_subdomains": true, 1687 "pins": "google" 1688 }, 1689 { 1690 "name": "google.sk", 1691 "include_subdomains": true, 1692 "pins": "google" 1693 }, 1694 { 1695 "name": "google.sm", 1696 "include_subdomains": true, 1697 "pins": "google" 1698 }, 1699 { 1700 "name": "google.sn", 1701 "include_subdomains": true, 1702 "pins": "google" 1703 }, 1704 { 1705 "name": "google.so", 1706 "include_subdomains": true, 1707 "pins": "google" 1708 }, 1709 { 1710 "name": "google.st", 1711 "include_subdomains": true, 1712 "pins": "google" 1713 }, 1714 { 1715 "name": "googlesyndication.com", 1716 "include_subdomains": true, 1717 "pins": "google" 1718 }, 1719 { 1720 "name": "googletagmanager.com", 1721 "include_subdomains": true, 1722 "pins": "google" 1723 }, 1724 { 1725 "name": "googletagservices.com", 1726 "include_subdomains": true, 1727 "pins": "google" 1728 }, 1729 { 1730 "name": "google.td", 1731 "include_subdomains": true, 1732 "pins": "google" 1733 }, 1734 { 1735 "name": "google.tg", 1736 "include_subdomains": true, 1737 "pins": "google" 1738 }, 1739 { 1740 "name": "google.tk", 1741 "include_subdomains": true, 1742 "pins": "google" 1743 }, 1744 { 1745 "name": "google.tl", 1746 "include_subdomains": true, 1747 "pins": "google" 1748 }, 1749 { 1750 "name": "google.tm", 1751 "include_subdomains": true, 1752 "pins": "google" 1753 }, 1754 { 1755 "name": "google.tn", 1756 "include_subdomains": true, 1757 "pins": "google" 1758 }, 1759 { 1760 "name": "google.to", 1761 "include_subdomains": true, 1762 "pins": "google" 1763 }, 1764 { 1765 "name": "google.tt", 1766 "include_subdomains": true, 1767 "pins": "google" 1768 }, 1769 { 1770 "name": "googleusercontent.com", 1771 "include_subdomains": true, 1772 "pins": "google" 1773 }, 1774 { 1775 "name": "google.ua", 1776 "include_subdomains": true, 1777 "pins": "google" 1778 }, 1779 { 1780 "name": "google.us", 1781 "include_subdomains": true, 1782 "pins": "google" 1783 }, 1784 { 1785 "name": "google.uz", 1786 "include_subdomains": true, 1787 "pins": "google" 1788 }, 1789 { 1790 "name": "google.vg", 1791 "include_subdomains": true, 1792 "pins": "google" 1793 }, 1794 { 1795 "name": "googlevideo.com", 1796 "include_subdomains": true, 1797 "pins": "google" 1798 }, 1799 { 1800 "name": "google.vu", 1801 "include_subdomains": true, 1802 "pins": "google" 1803 }, 1804 { 1805 "name": "googleweblight.com", 1806 "include_subdomains": true, 1807 "pins": "google" 1808 }, 1809 { 1810 "name": "google.ws", 1811 "include_subdomains": true, 1812 "pins": "google" 1813 }, 1814 { 1815 "name": "gstatic.com", 1816 "include_subdomains": true, 1817 "pins": "google" 1818 }, 1819 { 1820 "name": "gstatic.cn", 1821 "include_subdomains": true, 1822 "pins": "google" 1823 }, 1824 { 1825 "name": "gvt1.com", 1826 "include_subdomains": true, 1827 "pins": "google" 1828 }, 1829 { 1830 "name": "static.googleadsserving.cn", 1831 "include_subdomains": true, 1832 "pins": "google" 1833 }, 1834 { 1835 "name": "urchin.com", 1836 "include_subdomains": true, 1837 "pins": "google" 1838 }, 1839 { 1840 "name": "www.googlegroups.com", 1841 "include_subdomains": true, 1842 "pins": "google" 1843 }, 1844 { 1845 "name": "youtu.be", 1846 "include_subdomains": true, 1847 "pins": "google" 1848 }, 1849 { 1850 "name": "youtube-nocookie.com", 1851 "include_subdomains": true, 1852 "pins": "google" 1853 }, 1854 { 1855 "name": "ytimg.com", 1856 "include_subdomains": true, 1857 "pins": "google" 1858 }, 1859 { 1860 "name": "facebook.com", 1861 "include_subdomains": true, 1862 "pins": "facebook" 1863 }, 1864 { 1865 "name": "www.facebook.com", 1866 "include_subdomains": true, 1867 "pins": "facebook" 1868 }, 1869 { 1870 "name": "m.facebook.com", 1871 "include_subdomains": true, 1872 "pins": "facebook" 1873 }, 1874 { 1875 "name": "tablet.facebook.com", 1876 "include_subdomains": true, 1877 "pins": "facebook" 1878 }, 1879 { 1880 "name": "secure.facebook.com", 1881 "include_subdomains": true, 1882 "pins": "facebook" 1883 }, 1884 { 1885 "name": "pixel.facebook.com", 1886 "include_subdomains": true, 1887 "pins": "facebook" 1888 }, 1889 { 1890 "name": "apps.facebook.com", 1891 "include_subdomains": true, 1892 "pins": "facebook" 1893 }, 1894 { 1895 "name": "upload.facebook.com", 1896 "include_subdomains": true, 1897 "pins": "facebook" 1898 }, 1899 { 1900 "name": "developers.facebook.com", 1901 "include_subdomains": true, 1902 "pins": "facebook" 1903 }, 1904 { 1905 "name": "touch.facebook.com", 1906 "include_subdomains": true, 1907 "pins": "facebook" 1908 }, 1909 { 1910 "name": "mbasic.facebook.com", 1911 "include_subdomains": true, 1912 "pins": "facebook" 1913 }, 1914 { 1915 "name": "code.facebook.com", 1916 "include_subdomains": true, 1917 "pins": "facebook" 1918 }, 1919 { 1920 "name": "t.facebook.com", 1921 "include_subdomains": true, 1922 "pins": "facebook" 1923 }, 1924 { 1925 "name": "mtouch.facebook.com", 1926 "include_subdomains": true, 1927 "pins": "facebook" 1928 }, 1929 { 1930 "name": "business.facebook.com", 1931 "include_subdomains": true, 1932 "pins": "facebook" 1933 }, 1934 { 1935 "name": "research.facebook.com", 1936 "include_subdomains": true, 1937 "pins": "facebook" 1938 }, 1939 { 1940 "name": "messenger.com", 1941 "include_subdomains": true, 1942 "pins": "facebook" 1943 }, 1944 { 1945 "name": "www.messenger.com", 1946 "include_subdomains": true, 1947 "pins": "facebook" 1948 } 1949 ] 1950}