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: 2023-05-17 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 "GTSCA1O1", 50 "GTSRootR1", 51 "GTSRootR2", 52 "GTSRootR3", 53 "GTSRootR4", 54 "GlobalSignRootCA_R2" 55 ], 56 "bad_static_spki_hashes": [ 57 "GlobalSignExtendedValidationCA", 58 "GlobalSignExtendedValidationCA_G2", 59 "GlobalSignExtendedValidationCA_SHA256_G2" 60 ], 61 "report_uri": "http://clients3.google.com/cert_upload_json" 62 }, 63 { 64 "name": "tor", 65 "static_spki_hashes": [ 66 "RapidSSL", 67 "DigiCertEVRoot", 68 "Tor1", 69 "Tor2", 70 "Tor3", 71 "LetsEncryptAuthorityPrimary_X1_X3", 72 "LetsEncryptAuthorityBackup_X2_X4", 73 "R3LetsEncrypt", 74 "R4LetsEncrypt" 75 ] 76 }, 77 { 78 "name": "facebook", 79 "static_spki_hashes": [ 80 "SymantecClass3EVG3", 81 "DigiCertECCSecureServerCA", 82 "DigiCertEVRoot", 83 "FacebookBackup" 84 ] 85 }, 86 { 87 "name": "yahoo", 88 "static_spki_hashes": [ 89 "DigiCertAssuredIDRoot", 90 "DigiCertGlobalRoot", 91 "DigiCertGlobalRootG2", 92 "DigiCertGlobalRootG3", 93 "DigiCertTrustedRootG4", 94 "DigiCertEVRoot", 95 "GlobalSignRootCA", 96 "GlobalSignRootCA_R3" 97 ], 98 "report_uri": "http://csp.yahoo.com/beacon/csp?src=yahoocom-hpkp-report-only" 99 } 100 ], 101 "entries": [ 102 { 103 "name": "pinningtest.appspot.com", 104 "include_subdomains": true, 105 "pins": "test" 106 }, 107 { 108 "name": "pinning-test.badssl.com", 109 "include_subdomains": true, 110 "pins": "test" 111 }, 112 { 113 "name": "example.test", 114 "include_subdomains": true, 115 "pins": "test" 116 }, 117 { 118 "name": "google", 119 "include_subdomains": true, 120 "pins": "google" 121 }, 122 { 123 "name": "hangout", 124 "include_subdomains": true, 125 "pins": "google" 126 }, 127 { 128 "name": "mail.google.com", 129 "include_subdomains": true, 130 "pins": "google" 131 }, 132 { 133 "name": "plus.sandbox.google.com", 134 "include_subdomains": true, 135 "pins": "google" 136 }, 137 { 138 "name": "remotedesktop.corp.google.com", 139 "include_subdomains": true, 140 "pins": "google" 141 }, 142 { 143 "name": "corp.goog", 144 "include_subdomains": true, 145 "pins": "google" 146 }, 147 { 148 "name": "accounts.google.com", 149 "include_subdomains": true, 150 "pins": "google" 151 }, 152 { 153 "name": "admin.google.com", 154 "include_subdomains": true, 155 "pins": "google" 156 }, 157 { 158 "name": "apis.google.com", 159 "include_subdomains": true, 160 "pins": "google" 161 }, 162 { 163 "name": "appengine.google.com", 164 "include_subdomains": true, 165 "pins": "google" 166 }, 167 { 168 "name": "calendar.google.com", 169 "include_subdomains": true, 170 "pins": "google" 171 }, 172 { 173 "name": "checkout.google.com", 174 "include_subdomains": true, 175 "pins": "google" 176 }, 177 { 178 "name": "chrome.google.com", 179 "include_subdomains": true, 180 "pins": "google" 181 }, 182 { 183 "name": "classroom.google.com", 184 "include_subdomains": true, 185 "pins": "google" 186 }, 187 { 188 "name": "cloud.google.com", 189 "include_subdomains": true, 190 "pins": "google" 191 }, 192 { 193 "name": "code.google.com", 194 "include_subdomains": true, 195 "pins": "google" 196 }, 197 { 198 "name": "contributor.google.com", 199 "include_subdomains": true, 200 "pins": "google" 201 }, 202 { 203 "name": "datastudio.google.com", 204 "include_subdomains": true, 205 "pins": "google" 206 }, 207 { 208 "name": "dl.google.com", 209 "include_subdomains": true, 210 "pins": "google" 211 }, 212 { 213 "name": "docs.google.com", 214 "include_subdomains": true, 215 "pins": "google" 216 }, 217 { 218 "name": "domains.google.com", 219 "include_subdomains": true, 220 "pins": "google" 221 }, 222 { 223 "name": "drive.google.com", 224 "include_subdomains": true, 225 "pins": "google" 226 }, 227 { 228 "name": "encrypted.google.com", 229 "include_subdomains": true, 230 "pins": "google" 231 }, 232 { 233 "name": "fi.google.com", 234 "include_subdomains": true, 235 "pins": "google" 236 }, 237 { 238 "name": "glass.google.com", 239 "include_subdomains": true, 240 "pins": "google" 241 }, 242 { 243 "name": "goto.google.com", 244 "include_subdomains": true, 245 "pins": "google" 246 }, 247 { 248 "name": "groups.google.com", 249 "include_subdomains": true, 250 "pins": "google" 251 }, 252 { 253 "name": "hangouts.google.com", 254 "include_subdomains": true, 255 "pins": "google" 256 }, 257 { 258 "name": "history.google.com", 259 "include_subdomains": true, 260 "pins": "google" 261 }, 262 { 263 "name": "hostedtalkgadget.google.com", 264 "include_subdomains": true, 265 "pins": "google" 266 }, 267 { 268 "name": "inbox.google.com", 269 "include_subdomains": true, 270 "pins": "google" 271 }, 272 { 273 "name": "lens.google.com", 274 "include_subdomains": true, 275 "pins": "google" 276 }, 277 { 278 "name": "login.corp.google.com", 279 "include_subdomains": true, 280 "pins": "google" 281 }, 282 { 283 "name": "mail-settings.google.com", 284 "include_subdomains": true, 285 "pins": "google" 286 }, 287 { 288 "name": "meet.google.com", 289 "include_subdomains": true, 290 "pins": "google" 291 }, 292 { 293 "name": "myaccount.google.com", 294 "include_subdomains": true, 295 "pins": "google" 296 }, 297 { 298 "name": "myactivity.google.com", 299 "include_subdomains": true, 300 "pins": "google" 301 }, 302 { 303 "name": "passwords.google.com", 304 "include_subdomains": true, 305 "pins": "google" 306 }, 307 { 308 "name": "pixel.google.com", 309 "include_subdomains": true, 310 "pins": "google" 311 }, 312 { 313 "name": "play.google.com", 314 "include_subdomains": true, 315 "pins": "google" 316 }, 317 { 318 "name": "plus.google.com", 319 "include_subdomains": true, 320 "pins": "google" 321 }, 322 { 323 "name": "profiles.google.com", 324 "include_subdomains": true, 325 "pins": "google" 326 }, 327 { 328 "name": "script.google.com", 329 "include_subdomains": true, 330 "pins": "google" 331 }, 332 { 333 "name": "security.google.com", 334 "include_subdomains": true, 335 "pins": "google" 336 }, 337 { 338 "name": "sites.google.com", 339 "include_subdomains": true, 340 "pins": "google" 341 }, 342 { 343 "name": "spreadsheets.google.com", 344 "include_subdomains": true, 345 "pins": "google" 346 }, 347 { 348 "name": "talkgadget.google.com", 349 "include_subdomains": true, 350 "pins": "google" 351 }, 352 { 353 "name": "talk.google.com", 354 "include_subdomains": true, 355 "pins": "google" 356 }, 357 { 358 "name": "wallet.google.com", 359 "include_subdomains": true, 360 "pins": "google" 361 }, 362 { 363 "name": "payments.google.com", 364 "include_subdomains": true, 365 "pins": "google" 366 }, 367 { 368 "name": "xn--7xa.google.com", 369 "include_subdomains": true, 370 "pins": "google" 371 }, 372 { 373 "name": "dns.google.com", 374 "include_subdomains": true, 375 "pins": "google" 376 }, 377 { 378 "name": "build.chromium.org", 379 "include_subdomains": true, 380 "pins": "google" 381 }, 382 { 383 "name": "bugs.chromium.org", 384 "include_subdomains": true, 385 "pins": "google" 386 }, 387 { 388 "name": "cdn.ampproject.org", 389 "include_subdomains": true, 390 "pins": "google" 391 }, 392 { 393 "name": "chrome.com", 394 "include_subdomains": true, 395 "pins": "google" 396 }, 397 { 398 "name": "chrome-devtools-frontend.appspot.com", 399 "include_subdomains": true, 400 "pins": "google" 401 }, 402 { 403 "name": "chromereporting-pa.googleapis.com", 404 "include_subdomains": true, 405 "pins": "google" 406 }, 407 { 408 "name": "chromiumcodereview.appspot.com", 409 "include_subdomains": true, 410 "pins": "google" 411 }, 412 { 413 "name": "codereview.appspot.com", 414 "include_subdomains": true, 415 "pins": "google" 416 }, 417 { 418 "name": "codereview.chromium.org", 419 "include_subdomains": true, 420 "pins": "google" 421 }, 422 { 423 "name": "crbug.com", 424 "include_subdomains": true, 425 "pins": "google" 426 }, 427 { 428 "name": "crosbug.com", 429 "include_subdomains": true, 430 "pins": "google" 431 }, 432 { 433 "name": "crrev.com", 434 "include_subdomains": true, 435 "pins": "google" 436 }, 437 { 438 "name": "firebaseio.com", 439 "include_subdomains": true, 440 "pins": "google" 441 }, 442 { 443 "name": "g.co", 444 "include_subdomains": false, 445 "pins": "google" 446 }, 447 { 448 "name": "www.g.co", 449 "include_subdomains": false, 450 "pins": "google" 451 }, 452 { 453 "name": "g4w.co", 454 "include_subdomains": true, 455 "pins": "google" 456 }, 457 { 458 "name": "gmail.com", 459 "include_subdomains": false, 460 "pins": "google" 461 }, 462 { 463 "name": "goo.gl", 464 "include_subdomains": true, 465 "pins": "google" 466 }, 467 { 468 "name": "googlecode.com", 469 "include_subdomains": true, 470 "pins": "google" 471 }, 472 { 473 "name": "googlemail.com", 474 "include_subdomains": false, 475 "pins": "google" 476 }, 477 { 478 "name": "googleplex.com", 479 "include_subdomains": true, 480 "pins": "google" 481 }, 482 { 483 "name": "googlesource.com", 484 "include_subdomains": true, 485 "pins": "google" 486 }, 487 { 488 "name": "gvt2.com", 489 "include_subdomains": true, 490 "pins": "google" 491 }, 492 { 493 "name": "gvt3.com", 494 "include_subdomains": true, 495 "pins": "google" 496 }, 497 { 498 "name": "developer.android.com", 499 "include_subdomains": true, 500 "pins": "google" 501 }, 502 { 503 "name": "market.android.com", 504 "include_subdomains": true, 505 "pins": "google" 506 }, 507 { 508 "name": "oauthaccountmanager.googleapis.com", 509 "include_subdomains": true, 510 "pins": "google" 511 }, 512 { 513 "name": "passwordsleakcheck-pa.googleapis.com", 514 "include_subdomains": true, 515 "pins": "google" 516 }, 517 { 518 "name": "translate.googleapis.com", 519 "include_subdomains": true, 520 "pins": "google" 521 }, 522 { 523 "name": "tunnel.googlezip.net", 524 "include_subdomains": true, 525 "pins": "google" 526 }, 527 { 528 "name": "tunnel-staging.googlezip.net", 529 "include_subdomains": true, 530 "pins": "google" 531 }, 532 { 533 "name": "withgoogle.com", 534 "include_subdomains": true, 535 "pins": "google" 536 }, 537 { 538 "name": "withyoutube.com", 539 "include_subdomains": true, 540 "pins": "google" 541 }, 542 { 543 "name": "www.gmail.com", 544 "include_subdomains": false, 545 "pins": "google" 546 }, 547 { 548 "name": "www.googlemail.com", 549 "include_subdomains": false, 550 "pins": "google" 551 }, 552 { 553 "name": "google-analytics.com", 554 "include_subdomains": true, 555 "pins": "google" 556 }, 557 { 558 "name": "stats.g.doubleclick.net", 559 "include_subdomains": true, 560 "pins": "google" 561 }, 562 { 563 "name": "chromiumbugs.appspot.com", 564 "include_subdomains": true, 565 "pins": "google" 566 }, 567 { 568 "name": "youtube.com", 569 "include_subdomains": true, 570 "pins": "google" 571 }, 572 { 573 "name": "ua5v.com", 574 "include_subdomains": true, 575 "pins": "google" 576 }, 577 { 578 "name": "webfilings.appspot.com", 579 "include_subdomains": true, 580 "pins": "google" 581 }, 582 { 583 "name": "webfilings-eu.appspot.com", 584 "include_subdomains": true, 585 "pins": "google" 586 }, 587 { 588 "name": "webfilings-eu-mirror.appspot.com", 589 "include_subdomains": true, 590 "pins": "google" 591 }, 592 { 593 "name": "webfilings-mirror-hrd.appspot.com", 594 "include_subdomains": true, 595 "pins": "google" 596 }, 597 { 598 "name": "wf-bigsky-master.appspot.com", 599 "include_subdomains": true, 600 "pins": "google" 601 }, 602 { 603 "name": "wf-demo-eu.appspot.com", 604 "include_subdomains": true, 605 "pins": "google" 606 }, 607 { 608 "name": "wf-demo-hrd.appspot.com", 609 "include_subdomains": true, 610 "pins": "google" 611 }, 612 { 613 "name": "wf-dogfood-hrd.appspot.com", 614 "include_subdomains": true, 615 "pins": "google" 616 }, 617 { 618 "name": "wf-pentest.appspot.com", 619 "include_subdomains": true, 620 "pins": "google" 621 }, 622 { 623 "name": "wf-staging-hr.appspot.com", 624 "include_subdomains": true, 625 "pins": "google" 626 }, 627 { 628 "name": "wf-training-hrd.appspot.com", 629 "include_subdomains": true, 630 "pins": "google" 631 }, 632 { 633 "name": "wf-training-master.appspot.com", 634 "include_subdomains": true, 635 "pins": "google" 636 }, 637 { 638 "name": "wf-trial-hrd.appspot.com", 639 "include_subdomains": true, 640 "pins": "google" 641 }, 642 { 643 "name": "w-spotlight.appspot.com", 644 "include_subdomains": true, 645 "pins": "google" 646 }, 647 { 648 "name": "xbrlsuccess.appspot.com", 649 "include_subdomains": true, 650 "pins": "google" 651 }, 652 { 653 "name": "2mdn.net", 654 "include_subdomains": true, 655 "pins": "google" 656 }, 657 { 658 "name": "android.com", 659 "include_subdomains": true, 660 "pins": "google" 661 }, 662 { 663 "name": "appspot.com", 664 "include_subdomains": true, 665 "pins": "google" 666 }, 667 { 668 "name": "blogger.com", 669 "include_subdomains": true, 670 "pins": "google" 671 }, 672 { 673 "name": "blogspot.com", 674 "include_subdomains": true, 675 "pins": "google" 676 }, 677 { 678 "name": "doubleclick.net", 679 "include_subdomains": true, 680 "pins": "google" 681 }, 682 { 683 "name": "ggpht.com", 684 "include_subdomains": true, 685 "pins": "google" 686 }, 687 { 688 "name": "google.ac", 689 "include_subdomains": true, 690 "pins": "google" 691 }, 692 { 693 "name": "google.ad", 694 "include_subdomains": true, 695 "pins": "google" 696 }, 697 { 698 "name": "googleadservices.com", 699 "include_subdomains": true, 700 "pins": "google" 701 }, 702 { 703 "name": "google.ae", 704 "include_subdomains": true, 705 "pins": "google" 706 }, 707 { 708 "name": "google.af", 709 "include_subdomains": true, 710 "pins": "google" 711 }, 712 { 713 "name": "google.ag", 714 "include_subdomains": true, 715 "pins": "google" 716 }, 717 { 718 "name": "google.am", 719 "include_subdomains": true, 720 "pins": "google" 721 }, 722 { 723 "name": "googleapis.com", 724 "include_subdomains": true, 725 "pins": "google" 726 }, 727 { 728 "name": "google.as", 729 "include_subdomains": true, 730 "pins": "google" 731 }, 732 { 733 "name": "google.at", 734 "include_subdomains": true, 735 "pins": "google" 736 }, 737 { 738 "name": "google.az", 739 "include_subdomains": true, 740 "pins": "google" 741 }, 742 { 743 "name": "google.ba", 744 "include_subdomains": true, 745 "pins": "google" 746 }, 747 { 748 "name": "google.be", 749 "include_subdomains": true, 750 "pins": "google" 751 }, 752 { 753 "name": "google.bf", 754 "include_subdomains": true, 755 "pins": "google" 756 }, 757 { 758 "name": "google.bg", 759 "include_subdomains": true, 760 "pins": "google" 761 }, 762 { 763 "name": "google.bi", 764 "include_subdomains": true, 765 "pins": "google" 766 }, 767 { 768 "name": "google.bj", 769 "include_subdomains": true, 770 "pins": "google" 771 }, 772 { 773 "name": "google.bs", 774 "include_subdomains": true, 775 "pins": "google" 776 }, 777 { 778 "name": "google.by", 779 "include_subdomains": true, 780 "pins": "google" 781 }, 782 { 783 "name": "google.ca", 784 "include_subdomains": true, 785 "pins": "google" 786 }, 787 { 788 "name": "google.cat", 789 "include_subdomains": true, 790 "pins": "google" 791 }, 792 { 793 "name": "google.cc", 794 "include_subdomains": true, 795 "pins": "google" 796 }, 797 { 798 "name": "google.cd", 799 "include_subdomains": true, 800 "pins": "google" 801 }, 802 { 803 "name": "google.cf", 804 "include_subdomains": true, 805 "pins": "google" 806 }, 807 { 808 "name": "google.cg", 809 "include_subdomains": true, 810 "pins": "google" 811 }, 812 { 813 "name": "google.ch", 814 "include_subdomains": true, 815 "pins": "google" 816 }, 817 { 818 "name": "google.ci", 819 "include_subdomains": true, 820 "pins": "google" 821 }, 822 { 823 "name": "google.cl", 824 "include_subdomains": true, 825 "pins": "google" 826 }, 827 { 828 "name": "google.cm", 829 "include_subdomains": true, 830 "pins": "google" 831 }, 832 { 833 "name": "google.cn", 834 "include_subdomains": true, 835 "pins": "google" 836 }, 837 { 838 "name": "google.co.ao", 839 "include_subdomains": true, 840 "pins": "google" 841 }, 842 { 843 "name": "google.co.bw", 844 "include_subdomains": true, 845 "pins": "google" 846 }, 847 { 848 "name": "google.co.ck", 849 "include_subdomains": true, 850 "pins": "google" 851 }, 852 { 853 "name": "google.co.cr", 854 "include_subdomains": true, 855 "pins": "google" 856 }, 857 { 858 "name": "google.co.hu", 859 "include_subdomains": true, 860 "pins": "google" 861 }, 862 { 863 "name": "google.co.id", 864 "include_subdomains": true, 865 "pins": "google" 866 }, 867 { 868 "name": "google.co.il", 869 "include_subdomains": true, 870 "pins": "google" 871 }, 872 { 873 "name": "google.co.im", 874 "include_subdomains": true, 875 "pins": "google" 876 }, 877 { 878 "name": "google.co.in", 879 "include_subdomains": true, 880 "pins": "google" 881 }, 882 { 883 "name": "google.co.je", 884 "include_subdomains": true, 885 "pins": "google" 886 }, 887 { 888 "name": "google.co.jp", 889 "include_subdomains": true, 890 "pins": "google" 891 }, 892 { 893 "name": "google.co.ke", 894 "include_subdomains": true, 895 "pins": "google" 896 }, 897 { 898 "name": "google.co.kr", 899 "include_subdomains": true, 900 "pins": "google" 901 }, 902 { 903 "name": "google.co.ls", 904 "include_subdomains": true, 905 "pins": "google" 906 }, 907 { 908 "name": "google.com.af", 909 "include_subdomains": true, 910 "pins": "google" 911 }, 912 { 913 "name": "google.com.ag", 914 "include_subdomains": true, 915 "pins": "google" 916 }, 917 { 918 "name": "google.com.ai", 919 "include_subdomains": true, 920 "pins": "google" 921 }, 922 { 923 "name": "google.co.ma", 924 "include_subdomains": true, 925 "pins": "google" 926 }, 927 { 928 "name": "google.com.ar", 929 "include_subdomains": true, 930 "pins": "google" 931 }, 932 { 933 "name": "google.com.au", 934 "include_subdomains": true, 935 "pins": "google" 936 }, 937 { 938 "name": "google.com.bd", 939 "include_subdomains": true, 940 "pins": "google" 941 }, 942 { 943 "name": "google.com.bh", 944 "include_subdomains": true, 945 "pins": "google" 946 }, 947 { 948 "name": "google.com.bn", 949 "include_subdomains": true, 950 "pins": "google" 951 }, 952 { 953 "name": "google.com.bo", 954 "include_subdomains": true, 955 "pins": "google" 956 }, 957 { 958 "name": "google.com.br", 959 "include_subdomains": true, 960 "pins": "google" 961 }, 962 { 963 "name": "google.com.by", 964 "include_subdomains": true, 965 "pins": "google" 966 }, 967 { 968 "name": "google.com.bz", 969 "include_subdomains": true, 970 "pins": "google" 971 }, 972 { 973 "name": "google.com.cn", 974 "include_subdomains": true, 975 "pins": "google" 976 }, 977 { 978 "name": "google.com.co", 979 "include_subdomains": true, 980 "pins": "google" 981 }, 982 { 983 "name": "google.com.cu", 984 "include_subdomains": true, 985 "pins": "google" 986 }, 987 { 988 "name": "google.com.cy", 989 "include_subdomains": true, 990 "pins": "google" 991 }, 992 { 993 "name": "google.com.do", 994 "include_subdomains": true, 995 "pins": "google" 996 }, 997 { 998 "name": "google.com.ec", 999 "include_subdomains": true, 1000 "pins": "google" 1001 }, 1002 { 1003 "name": "google.com.eg", 1004 "include_subdomains": true, 1005 "pins": "google" 1006 }, 1007 { 1008 "name": "google.com.et", 1009 "include_subdomains": true, 1010 "pins": "google" 1011 }, 1012 { 1013 "name": "google.com.fj", 1014 "include_subdomains": true, 1015 "pins": "google" 1016 }, 1017 { 1018 "name": "google.com.ge", 1019 "include_subdomains": true, 1020 "pins": "google" 1021 }, 1022 { 1023 "name": "google.com.gh", 1024 "include_subdomains": true, 1025 "pins": "google" 1026 }, 1027 { 1028 "name": "google.com.gi", 1029 "include_subdomains": true, 1030 "pins": "google" 1031 }, 1032 { 1033 "name": "google.com.gr", 1034 "include_subdomains": true, 1035 "pins": "google" 1036 }, 1037 { 1038 "name": "google.com.gt", 1039 "include_subdomains": true, 1040 "pins": "google" 1041 }, 1042 { 1043 "name": "google.com.hk", 1044 "include_subdomains": true, 1045 "pins": "google" 1046 }, 1047 { 1048 "name": "google.com", 1049 "include_subdomains": true, 1050 "pins": "google" 1051 }, 1052 { 1053 "name": "google.com.iq", 1054 "include_subdomains": true, 1055 "pins": "google" 1056 }, 1057 { 1058 "name": "google.com.jm", 1059 "include_subdomains": true, 1060 "pins": "google" 1061 }, 1062 { 1063 "name": "google.com.jo", 1064 "include_subdomains": true, 1065 "pins": "google" 1066 }, 1067 { 1068 "name": "google.com.kh", 1069 "include_subdomains": true, 1070 "pins": "google" 1071 }, 1072 { 1073 "name": "google.com.kw", 1074 "include_subdomains": true, 1075 "pins": "google" 1076 }, 1077 { 1078 "name": "google.com.lb", 1079 "include_subdomains": true, 1080 "pins": "google" 1081 }, 1082 { 1083 "name": "google.com.ly", 1084 "include_subdomains": true, 1085 "pins": "google" 1086 }, 1087 { 1088 "name": "googlecommerce.com", 1089 "include_subdomains": true, 1090 "pins": "google" 1091 }, 1092 { 1093 "name": "google.com.mt", 1094 "include_subdomains": true, 1095 "pins": "google" 1096 }, 1097 { 1098 "name": "google.com.mx", 1099 "include_subdomains": true, 1100 "pins": "google" 1101 }, 1102 { 1103 "name": "google.com.my", 1104 "include_subdomains": true, 1105 "pins": "google" 1106 }, 1107 { 1108 "name": "google.com.na", 1109 "include_subdomains": true, 1110 "pins": "google" 1111 }, 1112 { 1113 "name": "google.com.nf", 1114 "include_subdomains": true, 1115 "pins": "google" 1116 }, 1117 { 1118 "name": "google.com.ng", 1119 "include_subdomains": true, 1120 "pins": "google" 1121 }, 1122 { 1123 "name": "google.com.ni", 1124 "include_subdomains": true, 1125 "pins": "google" 1126 }, 1127 { 1128 "name": "google.com.np", 1129 "include_subdomains": true, 1130 "pins": "google" 1131 }, 1132 { 1133 "name": "google.com.nr", 1134 "include_subdomains": true, 1135 "pins": "google" 1136 }, 1137 { 1138 "name": "google.com.om", 1139 "include_subdomains": true, 1140 "pins": "google" 1141 }, 1142 { 1143 "name": "google.com.pa", 1144 "include_subdomains": true, 1145 "pins": "google" 1146 }, 1147 { 1148 "name": "google.com.pe", 1149 "include_subdomains": true, 1150 "pins": "google" 1151 }, 1152 { 1153 "name": "google.com.ph", 1154 "include_subdomains": true, 1155 "pins": "google" 1156 }, 1157 { 1158 "name": "google.com.pk", 1159 "include_subdomains": true, 1160 "pins": "google" 1161 }, 1162 { 1163 "name": "google.com.pl", 1164 "include_subdomains": true, 1165 "pins": "google" 1166 }, 1167 { 1168 "name": "google.com.pr", 1169 "include_subdomains": true, 1170 "pins": "google" 1171 }, 1172 { 1173 "name": "google.com.py", 1174 "include_subdomains": true, 1175 "pins": "google" 1176 }, 1177 { 1178 "name": "google.com.qa", 1179 "include_subdomains": true, 1180 "pins": "google" 1181 }, 1182 { 1183 "name": "google.com.ru", 1184 "include_subdomains": true, 1185 "pins": "google" 1186 }, 1187 { 1188 "name": "google.com.sa", 1189 "include_subdomains": true, 1190 "pins": "google" 1191 }, 1192 { 1193 "name": "google.com.sb", 1194 "include_subdomains": true, 1195 "pins": "google" 1196 }, 1197 { 1198 "name": "google.com.sg", 1199 "include_subdomains": true, 1200 "pins": "google" 1201 }, 1202 { 1203 "name": "google.com.sl", 1204 "include_subdomains": true, 1205 "pins": "google" 1206 }, 1207 { 1208 "name": "google.com.sv", 1209 "include_subdomains": true, 1210 "pins": "google" 1211 }, 1212 { 1213 "name": "google.com.tj", 1214 "include_subdomains": true, 1215 "pins": "google" 1216 }, 1217 { 1218 "name": "google.com.tn", 1219 "include_subdomains": true, 1220 "pins": "google" 1221 }, 1222 { 1223 "name": "google.com.tr", 1224 "include_subdomains": true, 1225 "pins": "google" 1226 }, 1227 { 1228 "name": "google.com.tw", 1229 "include_subdomains": true, 1230 "pins": "google" 1231 }, 1232 { 1233 "name": "google.com.ua", 1234 "include_subdomains": true, 1235 "pins": "google" 1236 }, 1237 { 1238 "name": "google.com.uy", 1239 "include_subdomains": true, 1240 "pins": "google" 1241 }, 1242 { 1243 "name": "google.com.vc", 1244 "include_subdomains": true, 1245 "pins": "google" 1246 }, 1247 { 1248 "name": "google.com.ve", 1249 "include_subdomains": true, 1250 "pins": "google" 1251 }, 1252 { 1253 "name": "google.com.vn", 1254 "include_subdomains": true, 1255 "pins": "google" 1256 }, 1257 { 1258 "name": "google.co.mz", 1259 "include_subdomains": true, 1260 "pins": "google" 1261 }, 1262 { 1263 "name": "google.co.nz", 1264 "include_subdomains": true, 1265 "pins": "google" 1266 }, 1267 { 1268 "name": "google.co.th", 1269 "include_subdomains": true, 1270 "pins": "google" 1271 }, 1272 { 1273 "name": "google.co.tz", 1274 "include_subdomains": true, 1275 "pins": "google" 1276 }, 1277 { 1278 "name": "google.co.ug", 1279 "include_subdomains": true, 1280 "pins": "google" 1281 }, 1282 { 1283 "name": "google.co.uk", 1284 "include_subdomains": true, 1285 "pins": "google" 1286 }, 1287 { 1288 "name": "google.co.uz", 1289 "include_subdomains": true, 1290 "pins": "google" 1291 }, 1292 { 1293 "name": "google.co.ve", 1294 "include_subdomains": true, 1295 "pins": "google" 1296 }, 1297 { 1298 "name": "google.co.vi", 1299 "include_subdomains": true, 1300 "pins": "google" 1301 }, 1302 { 1303 "name": "google.co.za", 1304 "include_subdomains": true, 1305 "pins": "google" 1306 }, 1307 { 1308 "name": "google.co.zm", 1309 "include_subdomains": true, 1310 "pins": "google" 1311 }, 1312 { 1313 "name": "google.co.zw", 1314 "include_subdomains": true, 1315 "pins": "google" 1316 }, 1317 { 1318 "name": "google.cv", 1319 "include_subdomains": true, 1320 "pins": "google" 1321 }, 1322 { 1323 "name": "google.cz", 1324 "include_subdomains": true, 1325 "pins": "google" 1326 }, 1327 { 1328 "name": "google.de", 1329 "include_subdomains": true, 1330 "pins": "google" 1331 }, 1332 { 1333 "name": "google.dj", 1334 "include_subdomains": true, 1335 "pins": "google" 1336 }, 1337 { 1338 "name": "google.dk", 1339 "include_subdomains": true, 1340 "pins": "google" 1341 }, 1342 { 1343 "name": "google.dm", 1344 "include_subdomains": true, 1345 "pins": "google" 1346 }, 1347 { 1348 "name": "google.dz", 1349 "include_subdomains": true, 1350 "pins": "google" 1351 }, 1352 { 1353 "name": "google.ee", 1354 "include_subdomains": true, 1355 "pins": "google" 1356 }, 1357 { 1358 "name": "google.es", 1359 "include_subdomains": true, 1360 "pins": "google" 1361 }, 1362 { 1363 "name": "google.fi", 1364 "include_subdomains": true, 1365 "pins": "google" 1366 }, 1367 { 1368 "name": "google.fm", 1369 "include_subdomains": true, 1370 "pins": "google" 1371 }, 1372 { 1373 "name": "google.fr", 1374 "include_subdomains": true, 1375 "pins": "google" 1376 }, 1377 { 1378 "name": "google.ga", 1379 "include_subdomains": true, 1380 "pins": "google" 1381 }, 1382 { 1383 "name": "google.ge", 1384 "include_subdomains": true, 1385 "pins": "google" 1386 }, 1387 { 1388 "name": "google.gg", 1389 "include_subdomains": true, 1390 "pins": "google" 1391 }, 1392 { 1393 "name": "google.gl", 1394 "include_subdomains": true, 1395 "pins": "google" 1396 }, 1397 { 1398 "name": "google.gm", 1399 "include_subdomains": true, 1400 "pins": "google" 1401 }, 1402 { 1403 "name": "google.gp", 1404 "include_subdomains": true, 1405 "pins": "google" 1406 }, 1407 { 1408 "name": "google.gr", 1409 "include_subdomains": true, 1410 "pins": "google" 1411 }, 1412 { 1413 "name": "googlegroups.com", 1414 "include_subdomains": true, 1415 "pins": "google" 1416 }, 1417 { 1418 "name": "google.gy", 1419 "include_subdomains": true, 1420 "pins": "google" 1421 }, 1422 { 1423 "name": "google.hk", 1424 "include_subdomains": true, 1425 "pins": "google" 1426 }, 1427 { 1428 "name": "google.hn", 1429 "include_subdomains": true, 1430 "pins": "google" 1431 }, 1432 { 1433 "name": "google.hr", 1434 "include_subdomains": true, 1435 "pins": "google" 1436 }, 1437 { 1438 "name": "google.ht", 1439 "include_subdomains": true, 1440 "pins": "google" 1441 }, 1442 { 1443 "name": "google.hu", 1444 "include_subdomains": true, 1445 "pins": "google" 1446 }, 1447 { 1448 "name": "google.ie", 1449 "include_subdomains": true, 1450 "pins": "google" 1451 }, 1452 { 1453 "name": "google.im", 1454 "include_subdomains": true, 1455 "pins": "google" 1456 }, 1457 { 1458 "name": "google.info", 1459 "include_subdomains": true, 1460 "pins": "google" 1461 }, 1462 { 1463 "name": "google.iq", 1464 "include_subdomains": true, 1465 "pins": "google" 1466 }, 1467 { 1468 "name": "google.is", 1469 "include_subdomains": true, 1470 "pins": "google" 1471 }, 1472 { 1473 "name": "google.it.ao", 1474 "include_subdomains": true, 1475 "pins": "google" 1476 }, 1477 { 1478 "name": "google.it", 1479 "include_subdomains": true, 1480 "pins": "google" 1481 }, 1482 { 1483 "name": "google.je", 1484 "include_subdomains": true, 1485 "pins": "google" 1486 }, 1487 { 1488 "name": "google.jobs", 1489 "include_subdomains": true, 1490 "pins": "google" 1491 }, 1492 { 1493 "name": "google.jo", 1494 "include_subdomains": true, 1495 "pins": "google" 1496 }, 1497 { 1498 "name": "google.jp", 1499 "include_subdomains": true, 1500 "pins": "google" 1501 }, 1502 { 1503 "name": "google.kg", 1504 "include_subdomains": true, 1505 "pins": "google" 1506 }, 1507 { 1508 "name": "google.ki", 1509 "include_subdomains": true, 1510 "pins": "google" 1511 }, 1512 { 1513 "name": "google.kz", 1514 "include_subdomains": true, 1515 "pins": "google" 1516 }, 1517 { 1518 "name": "google.la", 1519 "include_subdomains": true, 1520 "pins": "google" 1521 }, 1522 { 1523 "name": "google.li", 1524 "include_subdomains": true, 1525 "pins": "google" 1526 }, 1527 { 1528 "name": "google.lk", 1529 "include_subdomains": true, 1530 "pins": "google" 1531 }, 1532 { 1533 "name": "google.lt", 1534 "include_subdomains": true, 1535 "pins": "google" 1536 }, 1537 { 1538 "name": "google.lu", 1539 "include_subdomains": true, 1540 "pins": "google" 1541 }, 1542 { 1543 "name": "google.lv", 1544 "include_subdomains": true, 1545 "pins": "google" 1546 }, 1547 { 1548 "name": "google.md", 1549 "include_subdomains": true, 1550 "pins": "google" 1551 }, 1552 { 1553 "name": "google.me", 1554 "include_subdomains": true, 1555 "pins": "google" 1556 }, 1557 { 1558 "name": "google.mg", 1559 "include_subdomains": true, 1560 "pins": "google" 1561 }, 1562 { 1563 "name": "google.mk", 1564 "include_subdomains": true, 1565 "pins": "google" 1566 }, 1567 { 1568 "name": "google.ml", 1569 "include_subdomains": true, 1570 "pins": "google" 1571 }, 1572 { 1573 "name": "google.mn", 1574 "include_subdomains": true, 1575 "pins": "google" 1576 }, 1577 { 1578 "name": "google.ms", 1579 "include_subdomains": true, 1580 "pins": "google" 1581 }, 1582 { 1583 "name": "google.mu", 1584 "include_subdomains": true, 1585 "pins": "google" 1586 }, 1587 { 1588 "name": "google.mv", 1589 "include_subdomains": true, 1590 "pins": "google" 1591 }, 1592 { 1593 "name": "google.mw", 1594 "include_subdomains": true, 1595 "pins": "google" 1596 }, 1597 { 1598 "name": "google.ne", 1599 "include_subdomains": true, 1600 "pins": "google" 1601 }, 1602 { 1603 "name": "google.ne.jp", 1604 "include_subdomains": true, 1605 "pins": "google" 1606 }, 1607 { 1608 "name": "google.net", 1609 "include_subdomains": true, 1610 "pins": "google" 1611 }, 1612 { 1613 "name": "google.nl", 1614 "include_subdomains": true, 1615 "pins": "google" 1616 }, 1617 { 1618 "name": "google.no", 1619 "include_subdomains": true, 1620 "pins": "google" 1621 }, 1622 { 1623 "name": "google.nr", 1624 "include_subdomains": true, 1625 "pins": "google" 1626 }, 1627 { 1628 "name": "google.nu", 1629 "include_subdomains": true, 1630 "pins": "google" 1631 }, 1632 { 1633 "name": "google.off.ai", 1634 "include_subdomains": true, 1635 "pins": "google" 1636 }, 1637 { 1638 "name": "google.pk", 1639 "include_subdomains": true, 1640 "pins": "google" 1641 }, 1642 { 1643 "name": "google.pl", 1644 "include_subdomains": true, 1645 "pins": "google" 1646 }, 1647 { 1648 "name": "google.pn", 1649 "include_subdomains": true, 1650 "pins": "google" 1651 }, 1652 { 1653 "name": "google.ps", 1654 "include_subdomains": true, 1655 "pins": "google" 1656 }, 1657 { 1658 "name": "google.pt", 1659 "include_subdomains": true, 1660 "pins": "google" 1661 }, 1662 { 1663 "name": "google.ro", 1664 "include_subdomains": true, 1665 "pins": "google" 1666 }, 1667 { 1668 "name": "google.rs", 1669 "include_subdomains": true, 1670 "pins": "google" 1671 }, 1672 { 1673 "name": "google.ru", 1674 "include_subdomains": true, 1675 "pins": "google" 1676 }, 1677 { 1678 "name": "google.rw", 1679 "include_subdomains": true, 1680 "pins": "google" 1681 }, 1682 { 1683 "name": "google.sc", 1684 "include_subdomains": true, 1685 "pins": "google" 1686 }, 1687 { 1688 "name": "google.se", 1689 "include_subdomains": true, 1690 "pins": "google" 1691 }, 1692 { 1693 "name": "google.sh", 1694 "include_subdomains": true, 1695 "pins": "google" 1696 }, 1697 { 1698 "name": "google.si", 1699 "include_subdomains": true, 1700 "pins": "google" 1701 }, 1702 { 1703 "name": "google.sk", 1704 "include_subdomains": true, 1705 "pins": "google" 1706 }, 1707 { 1708 "name": "google.sm", 1709 "include_subdomains": true, 1710 "pins": "google" 1711 }, 1712 { 1713 "name": "google.sn", 1714 "include_subdomains": true, 1715 "pins": "google" 1716 }, 1717 { 1718 "name": "google.so", 1719 "include_subdomains": true, 1720 "pins": "google" 1721 }, 1722 { 1723 "name": "google.st", 1724 "include_subdomains": true, 1725 "pins": "google" 1726 }, 1727 { 1728 "name": "googlesyndication.com", 1729 "include_subdomains": true, 1730 "pins": "google" 1731 }, 1732 { 1733 "name": "googletagmanager.com", 1734 "include_subdomains": true, 1735 "pins": "google" 1736 }, 1737 { 1738 "name": "googletagservices.com", 1739 "include_subdomains": true, 1740 "pins": "google" 1741 }, 1742 { 1743 "name": "google.td", 1744 "include_subdomains": true, 1745 "pins": "google" 1746 }, 1747 { 1748 "name": "google.tg", 1749 "include_subdomains": true, 1750 "pins": "google" 1751 }, 1752 { 1753 "name": "google.tk", 1754 "include_subdomains": true, 1755 "pins": "google" 1756 }, 1757 { 1758 "name": "google.tl", 1759 "include_subdomains": true, 1760 "pins": "google" 1761 }, 1762 { 1763 "name": "google.tm", 1764 "include_subdomains": true, 1765 "pins": "google" 1766 }, 1767 { 1768 "name": "google.tn", 1769 "include_subdomains": true, 1770 "pins": "google" 1771 }, 1772 { 1773 "name": "google.to", 1774 "include_subdomains": true, 1775 "pins": "google" 1776 }, 1777 { 1778 "name": "google.tt", 1779 "include_subdomains": true, 1780 "pins": "google" 1781 }, 1782 { 1783 "name": "googleusercontent.com", 1784 "include_subdomains": true, 1785 "pins": "google" 1786 }, 1787 { 1788 "name": "google.ua", 1789 "include_subdomains": true, 1790 "pins": "google" 1791 }, 1792 { 1793 "name": "google.us", 1794 "include_subdomains": true, 1795 "pins": "google" 1796 }, 1797 { 1798 "name": "google.uz", 1799 "include_subdomains": true, 1800 "pins": "google" 1801 }, 1802 { 1803 "name": "google.vg", 1804 "include_subdomains": true, 1805 "pins": "google" 1806 }, 1807 { 1808 "name": "googlevideo.com", 1809 "include_subdomains": true, 1810 "pins": "google" 1811 }, 1812 { 1813 "name": "google.vu", 1814 "include_subdomains": true, 1815 "pins": "google" 1816 }, 1817 { 1818 "name": "googleweblight.com", 1819 "include_subdomains": true, 1820 "pins": "google" 1821 }, 1822 { 1823 "name": "google.ws", 1824 "include_subdomains": true, 1825 "pins": "google" 1826 }, 1827 { 1828 "name": "gstatic.com", 1829 "include_subdomains": true, 1830 "pins": "google" 1831 }, 1832 { 1833 "name": "gstatic.cn", 1834 "include_subdomains": true, 1835 "pins": "google" 1836 }, 1837 { 1838 "name": "gvt1.com", 1839 "include_subdomains": true, 1840 "pins": "google" 1841 }, 1842 { 1843 "name": "static.googleadsserving.cn", 1844 "include_subdomains": true, 1845 "pins": "google" 1846 }, 1847 { 1848 "name": "urchin.com", 1849 "include_subdomains": true, 1850 "pins": "google" 1851 }, 1852 { 1853 "name": "www.googlegroups.com", 1854 "include_subdomains": true, 1855 "pins": "google" 1856 }, 1857 { 1858 "name": "youtu.be", 1859 "include_subdomains": true, 1860 "pins": "google" 1861 }, 1862 { 1863 "name": "youtube-nocookie.com", 1864 "include_subdomains": true, 1865 "pins": "google" 1866 }, 1867 { 1868 "name": "ytimg.com", 1869 "include_subdomains": true, 1870 "pins": "google" 1871 }, 1872 { 1873 "name": "at.search.yahoo.com", 1874 "include_subdomains": false, 1875 "pins": "yahoo" 1876 }, 1877 { 1878 "name": "au.search.yahoo.com", 1879 "include_subdomains": false, 1880 "pins": "yahoo" 1881 }, 1882 { 1883 "name": "az.search.yahoo.com", 1884 "include_subdomains": false, 1885 "pins": "yahoo" 1886 }, 1887 { 1888 "name": "be.search.yahoo.com", 1889 "include_subdomains": false, 1890 "pins": "yahoo" 1891 }, 1892 { 1893 "name": "bi.search.yahoo.com", 1894 "include_subdomains": false, 1895 "pins": "yahoo" 1896 }, 1897 { 1898 "name": "br.search.yahoo.com", 1899 "include_subdomains": false, 1900 "pins": "yahoo" 1901 }, 1902 { 1903 "name": "ca.search.yahoo.com", 1904 "include_subdomains": false, 1905 "pins": "yahoo" 1906 }, 1907 { 1908 "name": "cd.search.yahoo.com", 1909 "include_subdomains": false, 1910 "pins": "yahoo" 1911 }, 1912 { 1913 "name": "cg.search.yahoo.com", 1914 "include_subdomains": false, 1915 "pins": "yahoo" 1916 }, 1917 { 1918 "name": "chfr.search.yahoo.com", 1919 "include_subdomains": false, 1920 "pins": "yahoo" 1921 }, 1922 { 1923 "name": "chit.search.yahoo.com", 1924 "include_subdomains": false, 1925 "pins": "yahoo" 1926 }, 1927 { 1928 "name": "ch.search.yahoo.com", 1929 "include_subdomains": false, 1930 "pins": "yahoo" 1931 }, 1932 { 1933 "name": "cl.search.yahoo.com", 1934 "include_subdomains": false, 1935 "pins": "yahoo" 1936 }, 1937 { 1938 "name": "cn.search.yahoo.com", 1939 "include_subdomains": false, 1940 "pins": "yahoo" 1941 }, 1942 { 1943 "name": "co.search.yahoo.com", 1944 "include_subdomains": false, 1945 "pins": "yahoo" 1946 }, 1947 { 1948 "name": "cr.search.yahoo.com", 1949 "include_subdomains": false, 1950 "pins": "yahoo" 1951 }, 1952 { 1953 "name": "ct.search.yahoo.com", 1954 "include_subdomains": false, 1955 "pins": "yahoo" 1956 }, 1957 { 1958 "name": "de.search.yahoo.com", 1959 "include_subdomains": false, 1960 "pins": "yahoo" 1961 }, 1962 { 1963 "name": "dk.search.yahoo.com", 1964 "include_subdomains": false, 1965 "pins": "yahoo" 1966 }, 1967 { 1968 "name": "do.search.yahoo.com", 1969 "include_subdomains": false, 1970 "pins": "yahoo" 1971 }, 1972 { 1973 "name": "en-maktoob.search.yahoo.com", 1974 "include_subdomains": false, 1975 "pins": "yahoo" 1976 }, 1977 { 1978 "name": "espanol.search.yahoo.com", 1979 "include_subdomains": false, 1980 "pins": "yahoo" 1981 }, 1982 { 1983 "name": "es.search.yahoo.com", 1984 "include_subdomains": false, 1985 "pins": "yahoo" 1986 }, 1987 { 1988 "name": "fi.search.yahoo.com", 1989 "include_subdomains": false, 1990 "pins": "yahoo" 1991 }, 1992 { 1993 "name": "fj.search.yahoo.com", 1994 "include_subdomains": false, 1995 "pins": "yahoo" 1996 }, 1997 { 1998 "name": "fr.search.yahoo.com", 1999 "include_subdomains": false, 2000 "pins": "yahoo" 2001 }, 2002 { 2003 "name": "gl.search.yahoo.com", 2004 "include_subdomains": false, 2005 "pins": "yahoo" 2006 }, 2007 { 2008 "name": "gm.search.yahoo.com", 2009 "include_subdomains": false, 2010 "pins": "yahoo" 2011 }, 2012 { 2013 "name": "gr.search.yahoo.com", 2014 "include_subdomains": false, 2015 "pins": "yahoo" 2016 }, 2017 { 2018 "name": "hk.search.yahoo.com", 2019 "include_subdomains": false, 2020 "pins": "yahoo" 2021 }, 2022 { 2023 "name": "hn.search.yahoo.com", 2024 "include_subdomains": false, 2025 "pins": "yahoo" 2026 }, 2027 { 2028 "name": "hu.search.yahoo.com", 2029 "include_subdomains": false, 2030 "pins": "yahoo" 2031 }, 2032 { 2033 "name": "id.search.yahoo.com", 2034 "include_subdomains": false, 2035 "pins": "yahoo" 2036 }, 2037 { 2038 "name": "ie.search.yahoo.com", 2039 "include_subdomains": false, 2040 "pins": "yahoo" 2041 }, 2042 { 2043 "name": "in.search.yahoo.com", 2044 "include_subdomains": false, 2045 "pins": "yahoo" 2046 }, 2047 { 2048 "name": "it.search.yahoo.com", 2049 "include_subdomains": false, 2050 "pins": "yahoo" 2051 }, 2052 { 2053 "name": "kr.search.yahoo.com", 2054 "include_subdomains": false, 2055 "pins": "yahoo" 2056 }, 2057 { 2058 "name": "kz.search.yahoo.com", 2059 "include_subdomains": false, 2060 "pins": "yahoo" 2061 }, 2062 { 2063 "name": "li.search.yahoo.com", 2064 "include_subdomains": false, 2065 "pins": "yahoo" 2066 }, 2067 { 2068 "name": "lt.search.yahoo.com", 2069 "include_subdomains": false, 2070 "pins": "yahoo" 2071 }, 2072 { 2073 "name": "lu.search.yahoo.com", 2074 "include_subdomains": false, 2075 "pins": "yahoo" 2076 }, 2077 { 2078 "name": "lv.search.yahoo.com", 2079 "include_subdomains": false, 2080 "pins": "yahoo" 2081 }, 2082 { 2083 "name": "maktoob.search.yahoo.com", 2084 "include_subdomains": false, 2085 "pins": "yahoo" 2086 }, 2087 { 2088 "name": "malaysia.search.yahoo.com", 2089 "include_subdomains": false, 2090 "pins": "yahoo" 2091 }, 2092 { 2093 "name": "mt.search.yahoo.com", 2094 "include_subdomains": false, 2095 "pins": "yahoo" 2096 }, 2097 { 2098 "name": "mu.search.yahoo.com", 2099 "include_subdomains": false, 2100 "pins": "yahoo" 2101 }, 2102 { 2103 "name": "mw.search.yahoo.com", 2104 "include_subdomains": false, 2105 "pins": "yahoo" 2106 }, 2107 { 2108 "name": "mx.search.yahoo.com", 2109 "include_subdomains": false, 2110 "pins": "yahoo" 2111 }, 2112 { 2113 "name": "ni.search.yahoo.com", 2114 "include_subdomains": false, 2115 "pins": "yahoo" 2116 }, 2117 { 2118 "name": "nl.search.yahoo.com", 2119 "include_subdomains": false, 2120 "pins": "yahoo" 2121 }, 2122 { 2123 "name": "no.search.yahoo.com", 2124 "include_subdomains": false, 2125 "pins": "yahoo" 2126 }, 2127 { 2128 "name": "np.search.yahoo.com", 2129 "include_subdomains": false, 2130 "pins": "yahoo" 2131 }, 2132 { 2133 "name": "nz.search.yahoo.com", 2134 "include_subdomains": false, 2135 "pins": "yahoo" 2136 }, 2137 { 2138 "name": "pa.search.yahoo.com", 2139 "include_subdomains": false, 2140 "pins": "yahoo" 2141 }, 2142 { 2143 "name": "pe.search.yahoo.com", 2144 "include_subdomains": false, 2145 "pins": "yahoo" 2146 }, 2147 { 2148 "name": "ph.search.yahoo.com", 2149 "include_subdomains": false, 2150 "pins": "yahoo" 2151 }, 2152 { 2153 "name": "pk.search.yahoo.com", 2154 "include_subdomains": false, 2155 "pins": "yahoo" 2156 }, 2157 { 2158 "name": "pl.search.yahoo.com", 2159 "include_subdomains": false, 2160 "pins": "yahoo" 2161 }, 2162 { 2163 "name": "pr.search.yahoo.com", 2164 "include_subdomains": false, 2165 "pins": "yahoo" 2166 }, 2167 { 2168 "name": "py.search.yahoo.com", 2169 "include_subdomains": false, 2170 "pins": "yahoo" 2171 }, 2172 { 2173 "name": "qc.search.yahoo.com", 2174 "include_subdomains": false, 2175 "pins": "yahoo" 2176 }, 2177 { 2178 "name": "ro.search.yahoo.com", 2179 "include_subdomains": false, 2180 "pins": "yahoo" 2181 }, 2182 { 2183 "name": "ru.search.yahoo.com", 2184 "include_subdomains": false, 2185 "pins": "yahoo" 2186 }, 2187 { 2188 "name": "rw.search.yahoo.com", 2189 "include_subdomains": false, 2190 "pins": "yahoo" 2191 }, 2192 { 2193 "name": "se.search.yahoo.com", 2194 "include_subdomains": false, 2195 "pins": "yahoo" 2196 }, 2197 { 2198 "name": "sg.search.yahoo.com", 2199 "include_subdomains": false, 2200 "pins": "yahoo" 2201 }, 2202 { 2203 "name": "sv.search.yahoo.com", 2204 "include_subdomains": false, 2205 "pins": "yahoo" 2206 }, 2207 { 2208 "name": "th.search.yahoo.com", 2209 "include_subdomains": false, 2210 "pins": "yahoo" 2211 }, 2212 { 2213 "name": "tr.search.yahoo.com", 2214 "include_subdomains": false, 2215 "pins": "yahoo" 2216 }, 2217 { 2218 "name": "tv.search.yahoo.com", 2219 "include_subdomains": false, 2220 "pins": "yahoo" 2221 }, 2222 { 2223 "name": "tw.search.yahoo.com", 2224 "include_subdomains": false, 2225 "pins": "yahoo" 2226 }, 2227 { 2228 "name": "ua.search.yahoo.com", 2229 "include_subdomains": false, 2230 "pins": "yahoo" 2231 }, 2232 { 2233 "name": "uk.search.yahoo.com", 2234 "include_subdomains": false, 2235 "pins": "yahoo" 2236 }, 2237 { 2238 "name": "search.yahoo.com", 2239 "include_subdomains": false, 2240 "pins": "yahoo" 2241 }, 2242 { 2243 "name": "uy.search.yahoo.com", 2244 "include_subdomains": false, 2245 "pins": "yahoo" 2246 }, 2247 { 2248 "name": "uz.search.yahoo.com", 2249 "include_subdomains": false, 2250 "pins": "yahoo" 2251 }, 2252 { 2253 "name": "ve.search.yahoo.com", 2254 "include_subdomains": false, 2255 "pins": "yahoo" 2256 }, 2257 { 2258 "name": "vn.search.yahoo.com", 2259 "include_subdomains": false, 2260 "pins": "yahoo" 2261 }, 2262 { 2263 "name": "xa.search.yahoo.com", 2264 "include_subdomains": false, 2265 "pins": "yahoo" 2266 }, 2267 { 2268 "name": "za.search.yahoo.com", 2269 "include_subdomains": false, 2270 "pins": "yahoo" 2271 }, 2272 { 2273 "name": "zh.search.yahoo.com", 2274 "include_subdomains": false, 2275 "pins": "yahoo" 2276 }, 2277 { 2278 "name": "login.yahoo.com", 2279 "include_subdomains": true, 2280 "pins": "yahoo" 2281 }, 2282 { 2283 "name": "mail.yahoo.com", 2284 "include_subdomains": false, 2285 "pins": "yahoo" 2286 }, 2287 { 2288 "name": "edit.yahoo.com", 2289 "include_subdomains": true, 2290 "pins": "yahoo" 2291 }, 2292 { 2293 "name": "facebook.com", 2294 "include_subdomains": true, 2295 "pins": "facebook" 2296 }, 2297 { 2298 "name": "www.facebook.com", 2299 "include_subdomains": true, 2300 "pins": "facebook" 2301 }, 2302 { 2303 "name": "m.facebook.com", 2304 "include_subdomains": true, 2305 "pins": "facebook" 2306 }, 2307 { 2308 "name": "tablet.facebook.com", 2309 "include_subdomains": true, 2310 "pins": "facebook" 2311 }, 2312 { 2313 "name": "secure.facebook.com", 2314 "include_subdomains": true, 2315 "pins": "facebook" 2316 }, 2317 { 2318 "name": "pixel.facebook.com", 2319 "include_subdomains": true, 2320 "pins": "facebook" 2321 }, 2322 { 2323 "name": "apps.facebook.com", 2324 "include_subdomains": true, 2325 "pins": "facebook" 2326 }, 2327 { 2328 "name": "upload.facebook.com", 2329 "include_subdomains": true, 2330 "pins": "facebook" 2331 }, 2332 { 2333 "name": "developers.facebook.com", 2334 "include_subdomains": true, 2335 "pins": "facebook" 2336 }, 2337 { 2338 "name": "touch.facebook.com", 2339 "include_subdomains": true, 2340 "pins": "facebook" 2341 }, 2342 { 2343 "name": "mbasic.facebook.com", 2344 "include_subdomains": true, 2345 "pins": "facebook" 2346 }, 2347 { 2348 "name": "code.facebook.com", 2349 "include_subdomains": true, 2350 "pins": "facebook" 2351 }, 2352 { 2353 "name": "t.facebook.com", 2354 "include_subdomains": true, 2355 "pins": "facebook" 2356 }, 2357 { 2358 "name": "mtouch.facebook.com", 2359 "include_subdomains": true, 2360 "pins": "facebook" 2361 }, 2362 { 2363 "name": "business.facebook.com", 2364 "include_subdomains": true, 2365 "pins": "facebook" 2366 }, 2367 { 2368 "name": "research.facebook.com", 2369 "include_subdomains": true, 2370 "pins": "facebook" 2371 }, 2372 { 2373 "name": "messenger.com", 2374 "include_subdomains": true, 2375 "pins": "facebook" 2376 }, 2377 { 2378 "name": "www.messenger.com", 2379 "include_subdomains": true, 2380 "pins": "facebook" 2381 }, 2382 { 2383 "name": "torproject.org", 2384 "include_subdomains": false, 2385 "pins": "tor" 2386 }, 2387 { 2388 "name": "blog.torproject.org", 2389 "include_subdomains": true, 2390 "pins": "tor" 2391 }, 2392 { 2393 "name": "check.torproject.org", 2394 "include_subdomains": true, 2395 "pins": "tor" 2396 }, 2397 { 2398 "name": "www.torproject.org", 2399 "include_subdomains": true, 2400 "pins": "tor" 2401 }, 2402 { 2403 "name": "dist.torproject.org", 2404 "include_subdomains": true, 2405 "pins": "tor" 2406 } 2407 ] 2408}