Advertisement
AndyEveningStar

Countries JSON

Apr 10th, 2024
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 67.24 KB | Source Code | 0 0
  1. <?php
  2.  
  3. $jsonCountryList = '{
  4.    "countries": [
  5.        {
  6.            "name": "Afghanistan",
  7.            "index": 1,
  8.            "subregions": []
  9.        },
  10.        {
  11.            "name": "Albania",
  12.            "index": 2,
  13.            "subregions": []
  14.        },
  15.        {
  16.            "name": "Algeria",
  17.            "index": 3,
  18.            "subregions": []
  19.        },
  20.        {
  21.            "name": "American Samoa",
  22.            "index": 4,
  23.            "subregions": []
  24.        },
  25.        {
  26.            "name": "Andorra",
  27.            "index": 5,
  28.            "subregions": []
  29.        },
  30.        {
  31.            "name": "Angola",
  32.            "index": 6,
  33.            "subregions": []
  34.        },
  35.        {
  36.            "name": "Anguilla",
  37.            "index": 7,
  38.            "subregions": []
  39.        },
  40.        {
  41.            "name": "Antigua and Barbuda",
  42.            "index": 8,
  43.            "subregions": []
  44.        },
  45.        {
  46.            "name": "Argentina",
  47.            "index": 9,
  48.            "subregions": [
  49.                {
  50.                    "name": "Buenos Aires",
  51.                    "index": 1
  52.                },
  53.                {
  54.                    "name": "Ciudad Autónoma de Buenos Aires",
  55.                    "index": 2
  56.                },
  57.                {
  58.                    "name": "Catamarca",
  59.                    "index": 3
  60.                },
  61.                {
  62.                    "name": "Chaco",
  63.                    "index": 4
  64.                },
  65.                {
  66.                    "name": "Chubut",
  67.                    "index": 5
  68.                },
  69.                {
  70.                    "name": "Córdoba",
  71.                    "index": 6
  72.                },
  73.                {
  74.                    "name": "Corrientes",
  75.                    "index": 7
  76.                },
  77.                {
  78.                    "name": "Entre Ríos",
  79.                    "index": 8
  80.                },
  81.                {
  82.                    "name": "Formosa",
  83.                    "index": 9
  84.                },
  85.                {
  86.                    "name": "Jujuy",
  87.                    "index": 10
  88.                },
  89.                {
  90.                    "name": "La Pampa",
  91.                    "index": 11
  92.                },
  93.                {
  94.                    "name": "La Rioja",
  95.                    "index": 12
  96.                },
  97.                {
  98.                    "name": "Mendoza",
  99.                    "index": 13
  100.                },
  101.                {
  102.                    "name": "Misiones",
  103.                    "index": 14
  104.                },
  105.                {
  106.                    "name": "Neuquén",
  107.                    "index": 15
  108.                },
  109.                {
  110.                    "name": "Río Negro",
  111.                    "index": 16
  112.                },
  113.                {
  114.                    "name": "Salta",
  115.                    "index": 17
  116.                },
  117.                {
  118.                    "name": "San Juan",
  119.                    "index": 18
  120.                },
  121.                {
  122.                    "name": "San Luis",
  123.                    "index": 19
  124.                },
  125.                {
  126.                    "name": "Santa Cruz",
  127.                    "index": 20
  128.                },
  129.                {
  130.                    "name": "Santa Fe",
  131.                    "index": 21
  132.                },
  133.                {
  134.                    "name": "Santiago del Estero",
  135.                    "index": 22
  136.                },
  137.                {
  138.                    "name": "Tierra del Fuego",
  139.                    "index": 23
  140.                },
  141.                {
  142.                    "name": "Tucumán",
  143.                    "index": 24
  144.                }
  145.            ]
  146.        },
  147.        {
  148.            "name": "Armenia",
  149.            "index": 10,
  150.            "subregions": []
  151.        },
  152.        {
  153.            "name": "Aruba",
  154.            "index": 11,
  155.            "subregions": []
  156.        },
  157.        {
  158.            "name": "Australia",
  159.            "index": 12,
  160.            "subregions": [
  161.                {
  162.                    "name": "Australian Capital Territory",
  163.                    "index": 1
  164.                },
  165.                {
  166.                    "name": "New South Wales",
  167.                    "index": 2
  168.                },
  169.                {
  170.                    "name": "Northern Territory",
  171.                    "index": 3
  172.                },
  173.                {
  174.                    "name": "South Australia",
  175.                    "index": 4
  176.                },
  177.                {
  178.                    "name": "Tasmania",
  179.                    "index": 5
  180.                },
  181.                {
  182.                    "name": "Queensland",
  183.                    "index": 6
  184.                },
  185.                {
  186.                    "name": "Victoria",
  187.                    "index": 7
  188.                },
  189.                {
  190.                    "name": "Western Australia",
  191.                    "index": 8
  192.                }
  193.            ]
  194.        },
  195.        {
  196.            "name": "Austria",
  197.            "index": 13,
  198.            "subregions": []
  199.        },
  200.        {
  201.            "name": "Azerbaijan",
  202.            "index": 14,
  203.            "subregions": []
  204.        },
  205.        {
  206.            "name": "Bahamas",
  207.            "index": 15,
  208.            "subregions": []
  209.        },
  210.        {
  211.            "name": "Bahrain",
  212.            "index": 16,
  213.            "subregions": []
  214.        },
  215.        {
  216.            "name": "Bangladesh",
  217.            "index": 17,
  218.            "subregions": []
  219.        },
  220.        {
  221.            "name": "Barbados",
  222.            "index": 18,
  223.            "subregions": []
  224.        },
  225.        {
  226.            "name": "Belarus",
  227.            "index": 19,
  228.            "subregions": []
  229.        },
  230.        {
  231.            "name": "Belgium",
  232.            "index": 20,
  233.            "subregions": []
  234.        },
  235.        {
  236.            "name": "Belize",
  237.            "index": 21,
  238.            "subregions": []
  239.        },
  240.        {
  241.            "name": "Benin",
  242.            "index": 22,
  243.            "subregions": []
  244.        },
  245.        {
  246.            "name": "Bermuda",
  247.            "index": 23,
  248.            "subregions": []
  249.        },
  250.        {
  251.            "name": "Bhutan",
  252.            "index": 24,
  253.            "subregions": []
  254.        },
  255.        {
  256.            "name": "Bolivia",
  257.            "index": 25,
  258.            "subregions": []
  259.        },
  260.        {
  261.            "name": "Bosnia and Herzegovina",
  262.            "index": 26,
  263.            "subregions": []
  264.        },
  265.        {
  266.            "name": "Botswana",
  267.            "index": 27,
  268.            "subregions": []
  269.        },
  270.        {
  271.            "name": "Brazil",
  272.            "index": 28,
  273.            "subregions": [
  274.                {
  275.                    "name": "Acre",
  276.                    "index": 1
  277.                },
  278.                {
  279.                    "name": "Rondônia",
  280.                    "index": 2
  281.                },
  282.                {
  283.                    "name": "Alagoas",
  284.                    "index": 3
  285.                },
  286.                {
  287.                    "name": "Amapá",
  288.                    "index": 4
  289.                },
  290.                {
  291.                    "name": "Amazonas",
  292.                    "index": 5
  293.                },
  294.                {
  295.                    "name": "Bahia",
  296.                    "index": 6
  297.                },
  298.                {
  299.                    "name": "Ceará",
  300.                    "index": 7
  301.                },
  302.                {
  303.                    "name": "Federal District",
  304.                    "index": 8
  305.                },
  306.                {
  307.                    "name": "Espírito Santo",
  308.                    "index": 9
  309.                },
  310.                {
  311.                    "name": "Goias",
  312.                    "index": 10
  313.                },
  314.                {
  315.                    "name": "Maranhão",
  316.                    "index": 11
  317.                },
  318.                {
  319.                    "name": "Mato Grosso",
  320.                    "index": 12
  321.                },
  322.                {
  323.                    "name": "Mato Grosso do Sul",
  324.                    "index": 13
  325.                },
  326.                {
  327.                    "name": "Minas Gerais",
  328.                    "index": 14
  329.                },
  330.                {
  331.                    "name": "Pará",
  332.                    "index": 15
  333.                },
  334.                {
  335.                    "name": "Paraiba",
  336.                    "index": 16
  337.                },
  338.                {
  339.                    "name": "Paraná",
  340.                    "index": 17
  341.                },
  342.                {
  343.                    "name": "Pernambuco",
  344.                    "index": 18
  345.                },
  346.                {
  347.                    "name": "Piauí",
  348.                    "index": 19
  349.                },
  350.                {
  351.                    "name": "Rio de Janeiro",
  352.                    "index": 20
  353.                },
  354.                {
  355.                    "name": "Rio Grande do Sul",
  356.                    "index": 21
  357.                },
  358.                {
  359.                    "name": "Rio Grande do Norte",
  360.                    "index": 22
  361.                },
  362.                {
  363.                    "name": "Roraima",
  364.                    "index": 23
  365.                },
  366.                {
  367.                    "name": "Santa Catarina",
  368.                    "index": 24
  369.                },
  370.                {
  371.                    "name": "São Paulo",
  372.                    "index": 25
  373.                },
  374.                {
  375.                    "name": "Sergipe",
  376.                    "index": 26
  377.                },
  378.                {
  379.                    "name": "Tocantins",
  380.                    "index": 27
  381.                }
  382.            ]
  383.        },
  384.        {
  385.            "name": "British Virgin Islands",
  386.            "index": 29,
  387.            "subregions": []
  388.        },
  389.        {
  390.            "name": "Brunei Darussalam",
  391.            "index": 30,
  392.            "subregions": []
  393.        },
  394.        {
  395.            "name": "Bulgaria",
  396.            "index": 31,
  397.            "subregions": []
  398.        },
  399.        {
  400.            "name": "Burkina Faso",
  401.            "index": 32,
  402.            "subregions": []
  403.        },
  404.        {
  405.            "name": "Burundi",
  406.            "index": 33,
  407.            "subregions": []
  408.        },
  409.        {
  410.            "name": "Cambodia",
  411.            "index": 34,
  412.            "subregions": []
  413.        },
  414.        {
  415.            "name": "Cameroon",
  416.            "index": 35,
  417.            "subregions": []
  418.        },
  419.        {
  420.            "name": "Canada",
  421.            "index": 36,
  422.            "subregions": []
  423.        },
  424.        {
  425.            "name": "Cape Verde",
  426.            "index": 37,
  427.            "subregions": []
  428.        },
  429.        {
  430.            "name": "Cayman Islands",
  431.            "index": 38,
  432.            "subregions": []
  433.        },
  434.        {
  435.            "name": "Central African Republic",
  436.            "index": 39,
  437.            "subregions": []
  438.        },
  439.        {
  440.            "name": "Chad",
  441.            "index": 40,
  442.            "subregions": []
  443.        },
  444.        {
  445.            "name": "Channel Islands",
  446.            "index": 41,
  447.            "subregions": []
  448.        },
  449.        {
  450.            "name": "Chile",
  451.            "index": 42,
  452.            "subregions": []
  453.        },
  454.        {
  455.            "name": "China",
  456.            "index": 43,
  457.            "subregions": [
  458.                {
  459.                    "name": "Anhui",
  460.                    "index": 1
  461.                },
  462.                {
  463.                    "name": "Beijing",
  464.                    "index": 2
  465.                },
  466.                {
  467.                    "name": "Chongqing",
  468.                    "index": 3
  469.                },
  470.                {
  471.                    "name": "Fujian",
  472.                    "index": 4
  473.                },
  474.                {
  475.                    "name": "Gansu",
  476.                    "index": 5
  477.                },
  478.                {
  479.                    "name": "Guangdong",
  480.                    "index": 6
  481.                },
  482.                {
  483.                    "name": "Guangxi",
  484.                    "index": 7
  485.                },
  486.                {
  487.                    "name": "Guizhou",
  488.                    "index": 8
  489.                },
  490.                {
  491.                    "name": "Hainan",
  492.                    "index": 9
  493.                },
  494.                {
  495.                    "name": "Hebei",
  496.                    "index": 10
  497.                },
  498.                {
  499.                    "name": "Heilongjiang",
  500.                    "index": 11
  501.                },
  502.                {
  503.                    "name": "Henan",
  504.                    "index": 12
  505.                },
  506.                {
  507.                    "name": "Hubei",
  508.                    "index": 13
  509.                },
  510.                {
  511.                    "name": "Hunan",
  512.                    "index": 14
  513.                },
  514.                {
  515.                    "name": "Jiangsu",
  516.                    "index": 15
  517.                },
  518.                {
  519.                    "name": "Jiangxi",
  520.                    "index": 16
  521.                },
  522.                {
  523.                    "name": "Jilin",
  524.                    "index": 17
  525.                },
  526.                {
  527.                    "name": "Liaoning",
  528.                    "index": 18
  529.                },
  530.                {
  531.                    "name": "Inner Mongolia",
  532.                    "index": 19
  533.                },
  534.                {
  535.                    "name": "Ningxia",
  536.                    "index": 20
  537.                },
  538.                {
  539.                    "name": "Qinghai",
  540.                    "index": 21
  541.                },
  542.                {
  543.                    "name": "Shaanxi",
  544.                    "index": 22
  545.                },
  546.                {
  547.                    "name": "Shandong",
  548.                    "index": 23
  549.                },
  550.                {
  551.                    "name": "Shanghai",
  552.                    "index": 24
  553.                },
  554.                {
  555.                    "name": "Shanxi",
  556.                    "index": 25
  557.                },
  558.                {
  559.                    "name": "Sichuan",
  560.                    "index": 26
  561.                },
  562.                {
  563.                    "name": "Tianjin",
  564.                    "index": 27
  565.                },
  566.                {
  567.                    "name": "Xinjiang",
  568.                    "index": 28
  569.                },
  570.                {
  571.                    "name": "Tibet",
  572.                    "index": 29
  573.                },
  574.                {
  575.                    "name": "Yunnan",
  576.                    "index": 30
  577.                },
  578.                {
  579.                    "name": "Zhejiang",
  580.                    "index": 31
  581.                },
  582.                {
  583.                    "name": "Hong Kong",
  584.                    "index": 32
  585.                },
  586.                {
  587.                    "name": "Macau",
  588.                    "index": 33
  589.                }
  590.            ]
  591.        },
  592.        {
  593.            "name": "Christmas Island",
  594.            "index": 44,
  595.            "subregions": []
  596.        },
  597.        {
  598.            "name": "Colombia",
  599.            "index": 45,
  600.            "subregions": []
  601.        },
  602.        {
  603.            "name": "Comoros",
  604.            "index": 46,
  605.            "subregions": []
  606.        },
  607.        {
  608.            "name": "Congo",
  609.            "index": 47,
  610.            "subregions": []
  611.        },
  612.        {
  613.            "name": "Cook Islands",
  614.            "index": 48,
  615.            "subregions": []
  616.        },
  617.        {
  618.            "name": "Costa Rica",
  619.            "index": 49,
  620.            "subregions": []
  621.        },
  622.        {
  623.            "name": "Cote d\'Ivoire",
  624.            "index": 50,
  625.            "subregions": []
  626.        },
  627.        {
  628.            "name": "Croatia",
  629.            "index": 51,
  630.            "subregions": []
  631.        },
  632.        {
  633.            "name": "Cuba",
  634.            "index": 52,
  635.            "subregions": []
  636.        },
  637.        {
  638.            "name": "Cyprus",
  639.            "index": 53,
  640.            "subregions": []
  641.        },
  642.        {
  643.            "name": "Czech Republic",
  644.            "index": 54,
  645.            "subregions": []
  646.        },
  647.        {
  648.            "name": "North Korea",
  649.            "index": 55,
  650.            "subregions": []
  651.        },
  652.        {
  653.            "name": "Democratic Republic of the Congo",
  654.            "index": 56,
  655.            "subregions": []
  656.        },
  657.        {
  658.            "name": "Timor-Leste",
  659.            "index": 57,
  660.            "subregions": []
  661.        },
  662.        {
  663.            "name": "Denmark",
  664.            "index": 58,
  665.            "subregions": []
  666.        },
  667.        {
  668.            "name": "Djibouti",
  669.            "index": 59,
  670.            "subregions": []
  671.        },
  672.        {
  673.            "name": "Dominica",
  674.            "index": 60,
  675.            "subregions": []
  676.        },
  677.        {
  678.            "name": "Dominican Republic",
  679.            "index": 61,
  680.            "subregions": []
  681.        },
  682.        {
  683.            "name": "Ecuador",
  684.            "index": 62,
  685.            "subregions": []
  686.        },
  687.        {
  688.            "name": "Egypt",
  689.            "index": 63,
  690.            "subregions": []
  691.        },
  692.        {
  693.            "name": "El Salvador",
  694.            "index": 64,
  695.            "subregions": []
  696.        },
  697.        {
  698.            "name": "Equatorial Guinea",
  699.            "index": 65,
  700.            "subregions": []
  701.        },
  702.        {
  703.            "name": "Eritrea",
  704.            "index": 66,
  705.            "subregions": []
  706.        },
  707.        {
  708.            "name": "Estonia",
  709.            "index": 67,
  710.            "subregions": []
  711.        },
  712.        {
  713.            "name": "Ethiopia",
  714.            "index": 68,
  715.            "subregions": []
  716.        },
  717.        {
  718.            "name": "Falkland Islands",
  719.            "index": 69,
  720.            "subregions": []
  721.        },
  722.        {
  723.            "name": "Faroe Islands",
  724.            "index": 70,
  725.            "subregions": []
  726.        },
  727.        {
  728.            "name": "Fiji",
  729.            "index": 71,
  730.            "subregions": []
  731.        },
  732.        {
  733.            "name": "Finland",
  734.            "index": 72,
  735.            "subregions": [
  736.                {
  737.                    "name": "Alan Islands",
  738.                    "index": 1
  739.                },
  740.                {
  741.                    "name": "Lapland",
  742.                    "index": 2
  743.                },
  744.                {
  745.                    "name": "East Finland",
  746.                    "index": 3
  747.                },
  748.                {
  749.                    "name": "South Finland",
  750.                    "index": 4
  751.                },
  752.                {
  753.                    "name": "Oulu",
  754.                    "index": 5
  755.                },
  756.                {
  757.                    "name": "West Finland",
  758.                    "index": 6
  759.                }
  760.            ]
  761.        },
  762.        {
  763.            "name": "France",
  764.            "index": 73,
  765.            "subregions": [
  766.                {
  767.                    "name": "Aquitaine",
  768.                    "index": 1
  769.                },
  770.                {
  771.                    "name": "Alsace",
  772.                    "index": 2
  773.                },
  774.                {
  775.                    "name": "Île-de-France",
  776.                    "index": 3
  777.                },
  778.                {
  779.                    "name": "Auvergne",
  780.                    "index": 4
  781.                },
  782.                {
  783.                    "name": "Corse",
  784.                    "index": 5
  785.                },
  786.                {
  787.                    "name": "Champagne-Ardenne",
  788.                    "index": 6
  789.                },
  790.                {
  791.                    "name": "Nord-Pas-de-Calais",
  792.                    "index": 7
  793.                },
  794.                {
  795.                    "name": "Lower Normandy",
  796.                    "index": 8
  797.                },
  798.                {
  799.                    "name": "Upper Normandy",
  800.                    "index": 9
  801.                },
  802.                {
  803.                    "name": "Picardy",
  804.                    "index": 10
  805.                },
  806.                {
  807.                    "name": "Franche-Comté",
  808.                    "index": 11
  809.                },
  810.                {
  811.                    "name": "Burgundy",
  812.                    "index": 12
  813.                },
  814.                {
  815.                    "name": "Brittany",
  816.                    "index": 13
  817.                },
  818.                {
  819.                    "name": "Provence-Alpes-Côte d\'Azur",
  820.                    "index": 14
  821.                },
  822.                {
  823.                    "name": "Pays-de-la-Loire",
  824.                    "index": 15
  825.                },
  826.                {
  827.                    "name": "Poitou-Charentes",
  828.                    "index": 16
  829.                },
  830.                {
  831.                    "name": "Languedoc-Roussillon",
  832.                    "index": 17
  833.                },
  834.                {
  835.                    "name": "Limousin",
  836.                    "index": 18
  837.                },
  838.                {
  839.                    "name": "Rhône-Alpes",
  840.                    "index": 19
  841.                },
  842.                {
  843.                    "name": "Lorraine",
  844.                    "index": 20
  845.                },
  846.                {
  847.                    "name": "Centre",
  848.                    "index": 21
  849.                }
  850.            ]
  851.        },
  852.        {
  853.            "name": "French Guiana",
  854.            "index": 74,
  855.            "subregions": []
  856.        },
  857.        {
  858.            "name": "French Polynesia",
  859.            "index": 75,
  860.            "subregions": []
  861.        },
  862.        {
  863.            "name": "Gabon",
  864.            "index": 76,
  865.            "subregions": []
  866.        },
  867.        {
  868.            "name": "Gambia",
  869.            "index": 77,
  870.            "subregions": []
  871.        },
  872.        {
  873.            "name": "Georgia",
  874.            "index": 78,
  875.            "subregions": []
  876.        },
  877.        {
  878.            "name": "Germany",
  879.            "index": 79,
  880.            "subregions": [
  881.                {
  882.                    "name": "Baden-Württemberg",
  883.                    "index": 1
  884.                },
  885.                {
  886.                    "name": "Bayern",
  887.                    "index": 2
  888.                },
  889.                {
  890.                    "name": "Berlin",
  891.                    "index": 3
  892.                },
  893.                {
  894.                    "name": "Brandenburg",
  895.                    "index": 4
  896.                },
  897.                {
  898.                    "name": "Bremen",
  899.                    "index": 5
  900.                },
  901.                {
  902.                    "name": "Hamburg",
  903.                    "index": 6
  904.                },
  905.                {
  906.                    "name": "Hesse",
  907.                    "index": 7
  908.                },
  909.                {
  910.                    "name": "Mecklenburg-West Pomerania",
  911.                    "index": 8
  912.                },
  913.                {
  914.                    "name": "Lower Saxony",
  915.                    "index": 9
  916.                },
  917.                {
  918.                    "name": "North Rhine-Westphalia",
  919.                    "index": 10
  920.                },
  921.                {
  922.                    "name": "Rhineland-Palatinate",
  923.                    "index": 11
  924.                },
  925.                {
  926.                    "name": "Saarland",
  927.                    "index": 12
  928.                },
  929.                {
  930.                    "name": "Saxony",
  931.                    "index": 13
  932.                },
  933.                {
  934.                    "name": "Saxony-Anhalt",
  935.                    "index": 14
  936.                },
  937.                {
  938.                    "name": "Schleswig-Holstein",
  939.                    "index": 15
  940.                },
  941.                {
  942.                    "name": "Thuringia",
  943.                    "index": 16
  944.                }
  945.            ]
  946.        },
  947.        {
  948.            "name": "Ghana",
  949.            "index": 80,
  950.            "subregions": []
  951.        },
  952.        {
  953.            "name": "Gibraltar",
  954.            "index": 81,
  955.            "subregions": []
  956.        },
  957.        {
  958.            "name": "Greece",
  959.            "index": 82,
  960.            "subregions": []
  961.        },
  962.        {
  963.            "name": "Greenland",
  964.            "index": 83,
  965.            "subregions": []
  966.        },
  967.        {
  968.            "name": "Grenada",
  969.            "index": 84,
  970.            "subregions": []
  971.        },
  972.        {
  973.            "name": "Guadeloupe",
  974.            "index": 85,
  975.            "subregions": []
  976.        },
  977.        {
  978.            "name": "Guam",
  979.            "index": 86,
  980.            "subregions": []
  981.        },
  982.        {
  983.            "name": "Guatemala",
  984.            "index": 87,
  985.            "subregions": []
  986.        },
  987.        {
  988.            "name": "Guinea",
  989.            "index": 88,
  990.            "subregions": []
  991.        },
  992.        {
  993.            "name": "Guinea-Bissau",
  994.            "index": 89,
  995.            "subregions": []
  996.        },
  997.        {
  998.            "name": "Guyana",
  999.            "index": 90,
  1000.            "subregions": []
  1001.        },
  1002.        {
  1003.            "name": "Haiti",
  1004.            "index": 91,
  1005.            "subregions": []
  1006.        },
  1007.        {
  1008.            "name": "Honduras",
  1009.            "index": 92,
  1010.            "subregions": []
  1011.        },
  1012.        {
  1013.            "name": "Hungary",
  1014.            "index": 93,
  1015.            "subregions": []
  1016.        },
  1017.        {
  1018.            "name": "Iceland",
  1019.            "index": 94,
  1020.            "subregions": []
  1021.        },
  1022.        {
  1023.            "name": "India",
  1024.            "index": 95,
  1025.            "subregions": [
  1026.                {
  1027.                    "name": "Andaman and Nicobar Islands",
  1028.                    "index": 1
  1029.                },
  1030.                {
  1031.                    "name": "Andhra Pradesh",
  1032.                    "index": 2
  1033.                },
  1034.                {
  1035.                    "name": "Assam",
  1036.                    "index": 3
  1037.                },
  1038.                {
  1039.                    "name": "Bihar",
  1040.                    "index": 4
  1041.                },
  1042.                {
  1043.                    "name": "Chandigarh",
  1044.                    "index": 5
  1045.                },
  1046.                {
  1047.                    "name": "Chhattisgarh",
  1048.                    "index": 6
  1049.                },
  1050.                {
  1051.                    "name": "Dadra and Nagar Haveli",
  1052.                    "index": 7
  1053.                },
  1054.                {
  1055.                    "name": "Daman and Diu",
  1056.                    "index": 8
  1057.                },
  1058.                {
  1059.                    "name": "Delhi",
  1060.                    "index": 9
  1061.                },
  1062.                {
  1063.                    "name": "Goa",
  1064.                    "index": 10
  1065.                },
  1066.                {
  1067.                    "name": "Gujarat",
  1068.                    "index": 11
  1069.                },
  1070.                {
  1071.                    "name": "Haryana",
  1072.                    "index": 12
  1073.                },
  1074.                {
  1075.                    "name": "Himachal Pradesh",
  1076.                    "index": 13
  1077.                },
  1078.                {
  1079.                    "name": "Jammu and Kashmir",
  1080.                    "index": 14
  1081.                },
  1082.                {
  1083.                    "name": "Jharkhand",
  1084.                    "index": 15
  1085.                },
  1086.                {
  1087.                    "name": "Kerala",
  1088.                    "index": 16
  1089.                },
  1090.                {
  1091.                    "name": "Lakshadweep",
  1092.                    "index": 17
  1093.                },
  1094.                {
  1095.                    "name": "Madhya Pradesh",
  1096.                    "index": 18
  1097.                },
  1098.                {
  1099.                    "name": "Maharashtra",
  1100.                    "index": 19
  1101.                },
  1102.                {
  1103.                    "name": "Meghalaya",
  1104.                    "index": 20
  1105.                },
  1106.                {
  1107.                    "name": "Mizoram",
  1108.                    "index": 21
  1109.                },
  1110.                {
  1111.                    "name": "Manipur",
  1112.                    "index": 22
  1113.                },
  1114.                {
  1115.                    "name": "Nagaland",
  1116.                    "index": 23
  1117.                },
  1118.                {
  1119.                    "name": "Orissa",
  1120.                    "index": 24
  1121.                },
  1122.                {
  1123.                    "name": "Puducherry",
  1124.                    "index": 25
  1125.                },
  1126.                {
  1127.                    "name": "Punjab",
  1128.                    "index": 26
  1129.                },
  1130.                {
  1131.                    "name": "Rajasthan",
  1132.                    "index": 27
  1133.                },
  1134.                {
  1135.                    "name": "Sikkim",
  1136.                    "index": 28
  1137.                },
  1138.                {
  1139.                    "name": "Tamil Nadu",
  1140.                    "index": 29
  1141.                },
  1142.                {
  1143.                    "name": "Tripura",
  1144.                    "index": 30
  1145.                },
  1146.                {
  1147.                    "name": "Uttar Pradesh",
  1148.                    "index": 31
  1149.                },
  1150.                {
  1151.                    "name": "Uttarakhand",
  1152.                    "index": 32
  1153.                },
  1154.                {
  1155.                    "name": "West Bengal",
  1156.                    "index": 33
  1157.                }
  1158.            ]
  1159.        },
  1160.        {
  1161.            "name": "Indonesia",
  1162.            "index": 96,
  1163.            "subregions": []
  1164.        },
  1165.        {
  1166.            "name": "Iran",
  1167.            "index": 97,
  1168.            "subregions": []
  1169.        },
  1170.        {
  1171.            "name": "Iraq",
  1172.            "index": 98,
  1173.            "subregions": []
  1174.        },
  1175.        {
  1176.            "name": "Ireland",
  1177.            "index": 99,
  1178.            "subregions": []
  1179.        },
  1180.        {
  1181.            "name": "Isle of Man",
  1182.            "index": 100,
  1183.            "subregions": []
  1184.        },
  1185.        {
  1186.            "name": "Israel",
  1187.            "index": 101,
  1188.            "subregions": []
  1189.        },
  1190.        {
  1191.            "name": "Italy",
  1192.            "index": 102,
  1193.            "subregions": [
  1194.                {
  1195.                    "name": "Abruzzo",
  1196.                    "index": 1
  1197.                },
  1198.                {
  1199.                    "name": "Basilicata",
  1200.                    "index": 2
  1201.                },
  1202.                {
  1203.                    "name": "Calabria",
  1204.                    "index": 3
  1205.                },
  1206.                {
  1207.                    "name": "Campania",
  1208.                    "index": 4
  1209.                },
  1210.                {
  1211.                    "name": "Emilia-Romagna",
  1212.                    "index": 5
  1213.                },
  1214.                {
  1215.                    "name": "Friuli-Venezia Giulia",
  1216.                    "index": 6
  1217.                },
  1218.                {
  1219.                    "name": "Lazio",
  1220.                    "index": 7
  1221.                },
  1222.                {
  1223.                    "name": "Liguria",
  1224.                    "index": 8
  1225.                },
  1226.                {
  1227.                    "name": "Lombardy",
  1228.                    "index": 9
  1229.                },
  1230.                {
  1231.                    "name": "Marche",
  1232.                    "index": 10
  1233.                },
  1234.                {
  1235.                    "name": "Molise",
  1236.                    "index": 11
  1237.                },
  1238.                {
  1239.                    "name": "Piedmont",
  1240.                    "index": 12
  1241.                },
  1242.                {
  1243.                    "name": "Apulia",
  1244.                    "index": 13
  1245.                },
  1246.                {
  1247.                    "name": "Sardinia",
  1248.                    "index": 14
  1249.                },
  1250.                {
  1251.                    "name": "Sicily",
  1252.                    "index": 15
  1253.                },
  1254.                {
  1255.                    "name": "Tuscany",
  1256.                    "index": 16
  1257.                },
  1258.                {
  1259.                    "name": "Trentino-Alto Adige",
  1260.                    "index": 17
  1261.                },
  1262.                {
  1263.                    "name": "Umbria",
  1264.                    "index": 18
  1265.                },
  1266.                {
  1267.                    "name": "Valle d\'Aosta",
  1268.                    "index": 19
  1269.                },
  1270.                {
  1271.                    "name": "Veneto",
  1272.                    "index": 20
  1273.                }
  1274.            ]
  1275.        },
  1276.        {
  1277.            "name": "Jamaica",
  1278.            "index": 103,
  1279.            "subregions": []
  1280.        },
  1281.        {
  1282.            "name": "Jan Mayen Island",
  1283.            "index": 104,
  1284.            "subregions": []
  1285.        },
  1286.        {
  1287.            "name": "Japan",
  1288.            "index": 105,
  1289.            "subregions": [
  1290.                {
  1291.                    "name": "Hokkaido (Sapporo)",
  1292.                    "index": 1
  1293.                },
  1294.                {
  1295.                    "name": "Hokkaido (Hakodate)",
  1296.                    "index": 2
  1297.                },
  1298.                {
  1299.                    "name": "Hokkaido (Wakkanai)",
  1300.                    "index": 3
  1301.                },
  1302.                {
  1303.                    "name": "Hokkaido (Kushiro)",
  1304.                    "index": 4
  1305.                },
  1306.                {
  1307.                    "name": "Aomori",
  1308.                    "index": 5
  1309.                },
  1310.                {
  1311.                    "name": "Iwate",
  1312.                    "index": 6
  1313.                },
  1314.                {
  1315.                    "name": "Miyagi",
  1316.                    "index": 7
  1317.                },
  1318.                {
  1319.                    "name": "Akita",
  1320.                    "index": 8
  1321.                },
  1322.                {
  1323.                    "name": "Yamagata",
  1324.                    "index": 9
  1325.                },
  1326.                {
  1327.                    "name": "Fukushima",
  1328.                    "index": 10
  1329.                },
  1330.                {
  1331.                    "name": "Ibaraki",
  1332.                    "index": 11
  1333.                },
  1334.                {
  1335.                    "name": "Tochigi",
  1336.                    "index": 12
  1337.                },
  1338.                {
  1339.                    "name": "Gunma",
  1340.                    "index": 13
  1341.                },
  1342.                {
  1343.                    "name": "Saitama",
  1344.                    "index": 14
  1345.                },
  1346.                {
  1347.                    "name": "Chiba",
  1348.                    "index": 15
  1349.                },
  1350.                {
  1351.                    "name": "Tokyo",
  1352.                    "index": 16
  1353.                },
  1354.                {
  1355.                    "name": "Kanagawa",
  1356.                    "index": 17
  1357.                },
  1358.                {
  1359.                    "name": "Niigata",
  1360.                    "index": 18
  1361.                },
  1362.                {
  1363.                    "name": "Toyama",
  1364.                    "index": 19
  1365.                },
  1366.                {
  1367.                    "name": "Ishikawa",
  1368.                    "index": 20
  1369.                },
  1370.                {
  1371.                    "name": "Fukui",
  1372.                    "index": 21
  1373.                },
  1374.                {
  1375.                    "name": "Yamanashi",
  1376.                    "index": 22
  1377.                },
  1378.                {
  1379.                    "name": "Nagano",
  1380.                    "index": 23
  1381.                },
  1382.                {
  1383.                    "name": "Gifu",
  1384.                    "index": 24
  1385.                },
  1386.                {
  1387.                    "name": "Shizuoka",
  1388.                    "index": 25
  1389.                },
  1390.                {
  1391.                    "name": "Aichi",
  1392.                    "index": 26
  1393.                },
  1394.                {
  1395.                    "name": "Mie",
  1396.                    "index": 27
  1397.                },
  1398.                {
  1399.                    "name": "Shiga",
  1400.                    "index": 28
  1401.                },
  1402.                {
  1403.                    "name": "Kyoto",
  1404.                    "index": 29
  1405.                },
  1406.                {
  1407.                    "name": "Osaka",
  1408.                    "index": 30
  1409.                },
  1410.                {
  1411.                    "name": "Hyogo",
  1412.                    "index": 31
  1413.                },
  1414.                {
  1415.                    "name": "Nara",
  1416.                    "index": 32
  1417.                },
  1418.                {
  1419.                    "name": "Wakayama",
  1420.                    "index": 33
  1421.                },
  1422.                {
  1423.                    "name": "Tottori",
  1424.                    "index": 34
  1425.                },
  1426.                {
  1427.                    "name": "Shimane",
  1428.                    "index": 35
  1429.                },
  1430.                {
  1431.                    "name": "Okayama",
  1432.                    "index": 36
  1433.                },
  1434.                {
  1435.                    "name": "Hiroshima",
  1436.                    "index": 37
  1437.                },
  1438.                {
  1439.                    "name": "Yamaguchi",
  1440.                    "index": 38
  1441.                },
  1442.                {
  1443.                    "name": "Tokushima",
  1444.                    "index": 39
  1445.                },
  1446.                {
  1447.                    "name": "Kagawa",
  1448.                    "index": 40
  1449.                },
  1450.                {
  1451.                    "name": "Ehime",
  1452.                    "index": 41
  1453.                },
  1454.                {
  1455.                    "name": "Kochi",
  1456.                    "index": 42
  1457.                },
  1458.                {
  1459.                    "name": "Fukuoka",
  1460.                    "index": 43
  1461.                },
  1462.                {
  1463.                    "name": "Saga",
  1464.                    "index": 44
  1465.                },
  1466.                {
  1467.                    "name": "Nagasaki",
  1468.                    "index": 45
  1469.                },
  1470.                {
  1471.                    "name": "Kumamoto",
  1472.                    "index": 46
  1473.                },
  1474.                {
  1475.                    "name": "Oita",
  1476.                    "index": 47
  1477.                },
  1478.                {
  1479.                    "name": "Miyazaki",
  1480.                    "index": 48
  1481.                },
  1482.                {
  1483.                    "name": "Kagoshima",
  1484.                    "index": 49
  1485.                },
  1486.                {
  1487.                    "name": "Okinawa",
  1488.                    "index": 50
  1489.                }
  1490.            ]
  1491.        },
  1492.        {
  1493.            "name": "Jordan",
  1494.            "index": 106,
  1495.            "subregions": []
  1496.        },
  1497.        {
  1498.            "name": "Kashmir",
  1499.            "index": 107,
  1500.            "subregions": []
  1501.        },
  1502.        {
  1503.            "name": "Kazakhstan",
  1504.            "index": 108,
  1505.            "subregions": []
  1506.        },
  1507.        {
  1508.            "name": "Kenya",
  1509.            "index": 109,
  1510.            "subregions": []
  1511.        },
  1512.        {
  1513.            "name": "Kiribati",
  1514.            "index": 110,
  1515.            "subregions": []
  1516.        },
  1517.        {
  1518.            "name": "Kuwait",
  1519.            "index": 111,
  1520.            "subregions": []
  1521.        },
  1522.        {
  1523.            "name": "Kyrgyzstan",
  1524.            "index": 112,
  1525.            "subregions": []
  1526.        },
  1527.        {
  1528.            "name": "Laos",
  1529.            "index": 113,
  1530.            "subregions": []
  1531.        },
  1532.        {
  1533.            "name": "Latvia",
  1534.            "index": 114,
  1535.            "subregions": []
  1536.        },
  1537.        {
  1538.            "name": "Lebanon",
  1539.            "index": 115,
  1540.            "subregions": []
  1541.        },
  1542.        {
  1543.            "name": "Lesotho",
  1544.            "index": 116,
  1545.            "subregions": []
  1546.        },
  1547.        {
  1548.            "name": "Liberia",
  1549.            "index": 117,
  1550.            "subregions": []
  1551.        },
  1552.        {
  1553.            "name": "Libya",
  1554.            "index": 118,
  1555.            "subregions": []
  1556.        },
  1557.        {
  1558.            "name": "Liechtenstein",
  1559.            "index": 119,
  1560.            "subregions": []
  1561.        },
  1562.        {
  1563.            "name": "Lithuania",
  1564.            "index": 120,
  1565.            "subregions": []
  1566.        },
  1567.        {
  1568.            "name": "Luxembourg",
  1569.            "index": 121,
  1570.            "subregions": []
  1571.        },
  1572.        {
  1573.            "name": "Macedonia (FYROM)",
  1574.            "index": 122,
  1575.            "subregions": []
  1576.        },
  1577.        {
  1578.            "name": "Madagascar",
  1579.            "index": 123,
  1580.            "subregions": []
  1581.        },
  1582.        {
  1583.            "name": "Malawi",
  1584.            "index": 124,
  1585.            "subregions": []
  1586.        },
  1587.        {
  1588.            "name": "Malaysia",
  1589.            "index": 125,
  1590.            "subregions": []
  1591.        },
  1592.        {
  1593.            "name": "Maldives",
  1594.            "index": 126,
  1595.            "subregions": []
  1596.        },
  1597.        {
  1598.            "name": "Mali",
  1599.            "index": 127,
  1600.            "subregions": []
  1601.        },
  1602.        {
  1603.            "name": "Malta",
  1604.            "index": 128,
  1605.            "subregions": []
  1606.        },
  1607.        {
  1608.            "name": "Marshall Islands",
  1609.            "index": 129,
  1610.            "subregions": []
  1611.        },
  1612.        {
  1613.            "name": "Martinique",
  1614.            "index": 130,
  1615.            "subregions": []
  1616.        },
  1617.        {
  1618.            "name": "Mauritania",
  1619.            "index": 131,
  1620.            "subregions": []
  1621.        },
  1622.        {
  1623.            "name": "Mauritius",
  1624.            "index": 132,
  1625.            "subregions": []
  1626.        },
  1627.        {
  1628.            "name": "Mayotte",
  1629.            "index": 133,
  1630.            "subregions": []
  1631.        },
  1632.        {
  1633.            "name": "Mexico",
  1634.            "index": 134,
  1635.            "subregions": []
  1636.        },
  1637.        {
  1638.            "name": "Micronesia",
  1639.            "index": 135,
  1640.            "subregions": []
  1641.        },
  1642.        {
  1643.            "name": "Monaco",
  1644.            "index": 136,
  1645.            "subregions": []
  1646.        },
  1647.        {
  1648.            "name": "Mongolia",
  1649.            "index": 137,
  1650.            "subregions": []
  1651.        },
  1652.        {
  1653.            "name": "Montenegro",
  1654.            "index": 138,
  1655.            "subregions": []
  1656.        },
  1657.        {
  1658.            "name": "Morocco",
  1659.            "index": 139,
  1660.            "subregions": []
  1661.        },
  1662.        {
  1663.            "name": "Mozambique",
  1664.            "index": 140,
  1665.            "subregions": []
  1666.        },
  1667.        {
  1668.            "name": "Myanmar",
  1669.            "index": 141,
  1670.            "subregions": []
  1671.        },
  1672.        {
  1673.            "name": "Namibia",
  1674.            "index": 142,
  1675.            "subregions": []
  1676.        },
  1677.        {
  1678.            "name": "Nauru",
  1679.            "index": 143,
  1680.            "subregions": []
  1681.        },
  1682.        {
  1683.            "name": "Nepal",
  1684.            "index": 144,
  1685.            "subregions": []
  1686.        },
  1687.        {
  1688.            "name": "Netherlands",
  1689.            "index": 145,
  1690.            "subregions": []
  1691.        },
  1692.        {
  1693.            "name": "Netherlands Antilles",
  1694.            "index": 146,
  1695.            "subregions": []
  1696.        },
  1697.        {
  1698.            "name": "New Caledonia",
  1699.            "index": 147,
  1700.            "subregions": []
  1701.        },
  1702.        {
  1703.            "name": "New Zealand",
  1704.            "index": 148,
  1705.            "subregions": []
  1706.        },
  1707.        {
  1708.            "name": "Nicaragua",
  1709.            "index": 149,
  1710.            "subregions": []
  1711.        },
  1712.        {
  1713.            "name": "Niger",
  1714.            "index": 150,
  1715.            "subregions": []
  1716.        },
  1717.        {
  1718.            "name": "Nigeria",
  1719.            "index": 151,
  1720.            "subregions": []
  1721.        },
  1722.        {
  1723.            "name": "Niue",
  1724.            "index": 152,
  1725.            "subregions": []
  1726.        },
  1727.        {
  1728.            "name": "Norfolk Island",
  1729.            "index": 153,
  1730.            "subregions": []
  1731.        },
  1732.        {
  1733.            "name": "Northern Mariana Islands",
  1734.            "index": 154,
  1735.            "subregions": []
  1736.        },
  1737.        {
  1738.            "name": "Norway",
  1739.            "index": 155,
  1740.            "subregions": [
  1741.                {
  1742.                    "name": "Akershus",
  1743.                    "index": 1
  1744.                },
  1745.                {
  1746.                    "name": "Aust-Agder",
  1747.                    "index": 2
  1748.                },
  1749.                {
  1750.                    "name": "Buskerud",
  1751.                    "index": 3
  1752.                },
  1753.                {
  1754.                    "name": "Finnmark",
  1755.                    "index": 4
  1756.                },
  1757.                {
  1758.                    "name": "Hedmark",
  1759.                    "index": 5
  1760.                },
  1761.                {
  1762.                    "name": "Hordaland",
  1763.                    "index": 6
  1764.                },
  1765.                {
  1766.                    "name": "Jan Mayen Island",
  1767.                    "index": 7
  1768.                },
  1769.                {
  1770.                    "name": "Lofoten",
  1771.                    "index": 8
  1772.                },
  1773.                {
  1774.                    "name": "Møre og Romsdal",
  1775.                    "index": 9
  1776.                },
  1777.                {
  1778.                    "name": "Nordland",
  1779.                    "index": 10
  1780.                },
  1781.                {
  1782.                    "name": "Nord-Trøndelag",
  1783.                    "index": 11
  1784.                },
  1785.                {
  1786.                    "name": "Oppland",
  1787.                    "index": 12
  1788.                },
  1789.                {
  1790.                    "name": "Oslo",
  1791.                    "index": 13
  1792.                },
  1793.                {
  1794.                    "name": "Rogaland",
  1795.                    "index": 14
  1796.                },
  1797.                {
  1798.                    "name": "Sogn og Fjordane",
  1799.                    "index": 15
  1800.                },
  1801.                {
  1802.                    "name": "Sør-Trøndelag",
  1803.                    "index": 16
  1804.                },
  1805.                {
  1806.                    "name": "Svalbard",
  1807.                    "index": 17
  1808.                },
  1809.                {
  1810.                    "name": "Telemark",
  1811.                    "index": 18
  1812.                },
  1813.                {
  1814.                    "name": "Troms",
  1815.                    "index": 19
  1816.                },
  1817.                {
  1818.                    "name": "Vest-Agder",
  1819.                    "index": 20
  1820.                },
  1821.                {
  1822.                    "name": "Vestfold",
  1823.                    "index": 21
  1824.                },
  1825.                {
  1826.                    "name": "Østfold",
  1827.                    "index": 22
  1828.                }
  1829.            ]
  1830.        },
  1831.        {
  1832.            "name": "Oman",
  1833.            "index": 156,
  1834.            "subregions": []
  1835.        },
  1836.        {
  1837.            "name": "Pakistan",
  1838.            "index": 157,
  1839.            "subregions": []
  1840.        },
  1841.        {
  1842.            "name": "Palau",
  1843.            "index": 158,
  1844.            "subregions": []
  1845.        },
  1846.        {
  1847.            "name": "Palestine",
  1848.            "index": 159,
  1849.            "subregions": []
  1850.        },
  1851.        {
  1852.            "name": "Panama",
  1853.            "index": 160,
  1854.            "subregions": []
  1855.        },
  1856.        {
  1857.            "name": "Papua New Guinea",
  1858.            "index": 161,
  1859.            "subregions": []
  1860.        },
  1861.        {
  1862.            "name": "Paraguay",
  1863.            "index": 162,
  1864.            "subregions": []
  1865.        },
  1866.        {
  1867.            "name": "Peru",
  1868.            "index": 163,
  1869.            "subregions": []
  1870.        },
  1871.        {
  1872.            "name": "Philippines",
  1873.            "index": 164,
  1874.            "subregions": []
  1875.        },
  1876.        {
  1877.            "name": "Pitcairn Islands",
  1878.            "index": 165,
  1879.            "subregions": []
  1880.        },
  1881.        {
  1882.            "name": "Poland",
  1883.            "index": 166,
  1884.            "subregions": [
  1885.                {
  1886.                    "name": "Lower Silesia",
  1887.                    "index": 1
  1888.                },
  1889.                {
  1890.                    "name": "Kuyavia-Pomerania",
  1891.                    "index": 2
  1892.                },
  1893.                {
  1894.                    "name": "Lublin",
  1895.                    "index": 3
  1896.                },
  1897.                {
  1898.                    "name": "Lubusz",
  1899.                    "index": 4
  1900.                },
  1901.                {
  1902.                    "name": "Lodz",
  1903.                    "index": 5
  1904.                },
  1905.                {
  1906.                    "name": "Lesser Poland",
  1907.                    "index": 6
  1908.                },
  1909.                {
  1910.                    "name": "Masovia",
  1911.                    "index": 7
  1912.                },
  1913.                {
  1914.                    "name": "Opole",
  1915.                    "index": 8
  1916.                },
  1917.                {
  1918.                    "name": "Subcarpathia",
  1919.                    "index": 9
  1920.                },
  1921.                {
  1922.                    "name": "Podlachia",
  1923.                    "index": 10
  1924.                },
  1925.                {
  1926.                    "name": "Pomerania",
  1927.                    "index": 11
  1928.                },
  1929.                {
  1930.                    "name": "Silesia",
  1931.                    "index": 12
  1932.                },
  1933.                {
  1934.                    "name": "Holy Cross",
  1935.                    "index": 13
  1936.                },
  1937.                {
  1938.                    "name": "Warmia-Masuria",
  1939.                    "index": 14
  1940.                },
  1941.                {
  1942.                    "name": "Greater Poland",
  1943.                    "index": 15
  1944.                },
  1945.                {
  1946.                    "name": "West Pomerania",
  1947.                    "index": 16
  1948.                }
  1949.            ]
  1950.        },
  1951.        {
  1952.            "name": "Portugal",
  1953.            "index": 167,
  1954.            "subregions": []
  1955.        },
  1956.        {
  1957.            "name": "Puerto Rico",
  1958.            "index": 168,
  1959.            "subregions": []
  1960.        },
  1961.        {
  1962.            "name": "Qatar",
  1963.            "index": 169,
  1964.            "subregions": []
  1965.        },
  1966.        {
  1967.            "name": "South Korea",
  1968.            "index": 170,
  1969.            "subregions": []
  1970.        },
  1971.        {
  1972.            "name": "Moldova",
  1973.            "index": 171,
  1974.            "subregions": []
  1975.        },
  1976.        {
  1977.            "name": "Reunion",
  1978.            "index": 172,
  1979.            "subregions": []
  1980.        },
  1981.        {
  1982.            "name": "Romania",
  1983.            "index": 173,
  1984.            "subregions": []
  1985.        },
  1986.        {
  1987.            "name": "Russian Federation",
  1988.            "index": 174,
  1989.            "subregions": [
  1990.                {
  1991.                    "name": "Central Federal District",
  1992.                    "index": 1
  1993.                },
  1994.                {
  1995.                    "name": "Far Eastern Federal District",
  1996.                    "index": 2
  1997.                },
  1998.                {
  1999.                    "name": "Northwestern Federal District",
  2000.                    "index": 3
  2001.                },
  2002.                {
  2003.                    "name": "Volga Federal District",
  2004.                    "index": 4
  2005.                },
  2006.                {
  2007.                    "name": "Siberian Federal District",
  2008.                    "index": 5
  2009.                },
  2010.                {
  2011.                    "name": "Southern Federal District",
  2012.                    "index": 6
  2013.                },
  2014.                {
  2015.                    "name": "Urals Federal District",
  2016.                    "index": 7
  2017.                },
  2018.                {
  2019.                    "name": "North Caucasian Federal District",
  2020.                    "index": 8
  2021.                }
  2022.            ]
  2023.        },
  2024.        {
  2025.            "name": "Rwanda",
  2026.            "index": 175,
  2027.            "subregions": []
  2028.        },
  2029.        {
  2030.            "name": "Saint Helena",
  2031.            "index": 176,
  2032.            "subregions": []
  2033.        },
  2034.        {
  2035.            "name": "Saint Kitts and Nevis",
  2036.            "index": 177,
  2037.            "subregions": []
  2038.        },
  2039.        {
  2040.            "name": "Saint Lucia",
  2041.            "index": 178,
  2042.            "subregions": []
  2043.        },
  2044.        {
  2045.            "name": "Saint Vincent and the Grenadines",
  2046.            "index": 179,
  2047.            "subregions": []
  2048.        },
  2049.        {
  2050.            "name": "Saint Pierre and Miquelon",
  2051.            "index": 180,
  2052.            "subregions": []
  2053.        },
  2054.        {
  2055.            "name": "Samoa",
  2056.            "index": 181,
  2057.            "subregions": []
  2058.        },
  2059.        {
  2060.            "name": "San Marino",
  2061.            "index": 182,
  2062.            "subregions": []
  2063.        },
  2064.        {
  2065.            "name": "Sao Tome and Principe",
  2066.            "index": 183,
  2067.            "subregions": []
  2068.        },
  2069.        {
  2070.            "name": "Saudi Arabia",
  2071.            "index": 184,
  2072.            "subregions": []
  2073.        },
  2074.        {
  2075.            "name": "Senegal",
  2076.            "index": 185,
  2077.            "subregions": []
  2078.        },
  2079.        {
  2080.            "name": "Serbia",
  2081.            "index": 186,
  2082.            "subregions": []
  2083.        },
  2084.        {
  2085.            "name": "Seychelles",
  2086.            "index": 187,
  2087.            "subregions": []
  2088.        },
  2089.        {
  2090.            "name": "Sierra Leone",
  2091.            "index": 188,
  2092.            "subregions": []
  2093.        },
  2094.        {
  2095.            "name": "Singapore",
  2096.            "index": 189,
  2097.            "subregions": []
  2098.        },
  2099.        {
  2100.            "name": "Slovakia",
  2101.            "index": 190,
  2102.            "subregions": []
  2103.        },
  2104.        {
  2105.            "name": "Slovenia",
  2106.            "index": 191,
  2107.            "subregions": []
  2108.        },
  2109.        {
  2110.            "name": "Solomon Islands",
  2111.            "index": 192,
  2112.            "subregions": []
  2113.        },
  2114.        {
  2115.            "name": "Somalia",
  2116.            "index": 193,
  2117.            "subregions": []
  2118.        },
  2119.        {
  2120.            "name": "South Africa",
  2121.            "index": 194,
  2122.            "subregions": []
  2123.        },
  2124.        {
  2125.            "name": "Spain",
  2126.            "index": 195,
  2127.            "subregions": []
  2128.        },
  2129.        {
  2130.            "name": "Sri Lanka",
  2131.            "index": 196,
  2132.            "subregions": []
  2133.        },
  2134.        {
  2135.            "name": "Sudan",
  2136.            "index": 197,
  2137.            "subregions": []
  2138.        },
  2139.        {
  2140.            "name": "Suriname",
  2141.            "index": 198,
  2142.            "subregions": []
  2143.        },
  2144.        {
  2145.            "name": "Swaziland",
  2146.            "index": 199,
  2147.            "subregions": []
  2148.        },
  2149.        {
  2150.            "name": "Sweden",
  2151.            "index": 200,
  2152.            "subregions": [
  2153.                {
  2154.                    "name": "Blekinge",
  2155.                    "index": 1
  2156.                },
  2157.                {
  2158.                    "name": "Dalarna",
  2159.                    "index": 2
  2160.                },
  2161.                {
  2162.                    "name": "Gävleborg",
  2163.                    "index": 3
  2164.                },
  2165.                {
  2166.                    "name": "Gotland",
  2167.                    "index": 4
  2168.                },
  2169.                {
  2170.                    "name": "Halland",
  2171.                    "index": 5
  2172.                },
  2173.                {
  2174.                    "name": "Jamtland",
  2175.                    "index": 6
  2176.                },
  2177.                {
  2178.                    "name": "Jönköping",
  2179.                    "index": 7
  2180.                },
  2181.                {
  2182.                    "name": "Kalmar",
  2183.                    "index": 8
  2184.                },
  2185.                {
  2186.                    "name": "Kronoberg",
  2187.                    "index": 9
  2188.                },
  2189.                {
  2190.                    "name": "Norrbotten",
  2191.                    "index": 10
  2192.                },
  2193.                {
  2194.                    "name": "Oland",
  2195.                    "index": 11
  2196.                },
  2197.                {
  2198.                    "name": "Örebro",
  2199.                    "index": 12
  2200.                },
  2201.                {
  2202.                    "name": "Östergötland",
  2203.                    "index": 13
  2204.                },
  2205.                {
  2206.                    "name": "Skane",
  2207.                    "index": 14
  2208.                },
  2209.                {
  2210.                    "name": "Sodermanland",
  2211.                    "index": 15
  2212.                },
  2213.                {
  2214.                    "name": "Stockholm",
  2215.                    "index": 16
  2216.                },
  2217.                {
  2218.                    "name": "Uppsala",
  2219.                    "index": 17
  2220.                },
  2221.                {
  2222.                    "name": "Varmland",
  2223.                    "index": 18
  2224.                },
  2225.                {
  2226.                    "name": "Vasterbotten",
  2227.                    "index": 19
  2228.                },
  2229.                {
  2230.                    "name": "Västernorrland",
  2231.                    "index": 20
  2232.                },
  2233.                {
  2234.                    "name": "Vastmanland",
  2235.                    "index": 21
  2236.                },
  2237.                {
  2238.                    "name": "Västra Götaland",
  2239.                    "index": 22
  2240.                }
  2241.            ]
  2242.        },
  2243.        {
  2244.            "name": "Switzerland",
  2245.            "index": 201,
  2246.            "subregions": []
  2247.        },
  2248.        {
  2249.            "name": "Syria",
  2250.            "index": 202,
  2251.            "subregions": []
  2252.        },
  2253.        {
  2254.            "name": "Taiwan",
  2255.            "index": 203,
  2256.            "subregions": []
  2257.        },
  2258.        {
  2259.            "name": "Tajikistan",
  2260.            "index": 204,
  2261.            "subregions": []
  2262.        },
  2263.        {
  2264.            "name": "Thailand",
  2265.            "index": 205,
  2266.            "subregions": []
  2267.        },
  2268.        {
  2269.            "name": "Togo",
  2270.            "index": 206,
  2271.            "subregions": []
  2272.        },
  2273.        {
  2274.            "name": "Tokelau",
  2275.            "index": 207,
  2276.            "subregions": []
  2277.        },
  2278.        {
  2279.            "name": "Tonga",
  2280.            "index": 208,
  2281.            "subregions": []
  2282.        },
  2283.        {
  2284.            "name": "Trinidad and Tobago",
  2285.            "index": 209,
  2286.            "subregions": []
  2287.        },
  2288.        {
  2289.            "name": "Tunisia",
  2290.            "index": 210,
  2291.            "subregions": []
  2292.        },
  2293.        {
  2294.            "name": "Turkey",
  2295.            "index": 211,
  2296.            "subregions": []
  2297.        },
  2298.        {
  2299.            "name": "Turkmenistan",
  2300.            "index": 212,
  2301.            "subregions": []
  2302.        },
  2303.        {
  2304.            "name": "Turks and Caicos Islands",
  2305.            "index": 213,
  2306.            "subregions": []
  2307.        },
  2308.        {
  2309.            "name": "Tuvalu",
  2310.            "index": 214,
  2311.            "subregions": []
  2312.        },
  2313.        {
  2314.            "name": "Uganda",
  2315.            "index": 215,
  2316.            "subregions": []
  2317.        },
  2318.        {
  2319.            "name": "Ukraine",
  2320.            "index": 216,
  2321.            "subregions": []
  2322.        },
  2323.        {
  2324.            "name": "United Arab Emirates",
  2325.            "index": 217,
  2326.            "subregions": []
  2327.        },
  2328.        {
  2329.            "name": "United Kingdom",
  2330.            "index": 218,
  2331.            "subregions": [
  2332.                {
  2333.                    "name": "East of England",
  2334.                    "index": 1
  2335.                },
  2336.                {
  2337.                    "name": "East Midlands",
  2338.                    "index": 2
  2339.                },
  2340.                {
  2341.                    "name": "Greater London",
  2342.                    "index": 3
  2343.                },
  2344.                {
  2345.                    "name": "North East England",
  2346.                    "index": 4
  2347.                },
  2348.                {
  2349.                    "name": "North West England",
  2350.                    "index": 5
  2351.                },
  2352.                {
  2353.                    "name": "Northern Ireland",
  2354.                    "index": 6
  2355.                },
  2356.                {
  2357.                    "name": "Scotland",
  2358.                    "index": 7
  2359.                },
  2360.                {
  2361.                    "name": "South East England",
  2362.                    "index": 8
  2363.                },
  2364.                {
  2365.                    "name": "Wales",
  2366.                    "index": 9
  2367.                },
  2368.                {
  2369.                    "name": "West Midlands",
  2370.                    "index": 10
  2371.                },
  2372.                {
  2373.                    "name": "Yorkshire and the Humber",
  2374.                    "index": 11
  2375.                }
  2376.            ]
  2377.        },
  2378.        {
  2379.            "name": "Tanzania",
  2380.            "index": 219,
  2381.            "subregions": []
  2382.        },
  2383.        {
  2384.            "name": "United States of America",
  2385.            "index": 220,
  2386.            "subregions": [
  2387.                {
  2388.                    "name": "Alabama",
  2389.                    "index": 1
  2390.                },
  2391.                {
  2392.                    "name": "Alaska",
  2393.                    "index": 2
  2394.                },
  2395.                {
  2396.                    "name": "Arizona",
  2397.                    "index": 3
  2398.                },
  2399.                {
  2400.                    "name": "Arkansas",
  2401.                    "index": 4
  2402.                },
  2403.                {
  2404.                    "name": "California",
  2405.                    "index": 5
  2406.                },
  2407.                {
  2408.                    "name": "Colorado",
  2409.                    "index": 6
  2410.                },
  2411.                {
  2412.                    "name": "Connecticut",
  2413.                    "index": 7
  2414.                },
  2415.                {
  2416.                    "name": "Delaware",
  2417.                    "index": 8
  2418.                },
  2419.                {
  2420.                    "name": "Florida",
  2421.                    "index": 9
  2422.                },
  2423.                {
  2424.                    "name": "Georgia",
  2425.                    "index": 10
  2426.                },
  2427.                {
  2428.                    "name": "Hawaii",
  2429.                    "index": 11
  2430.                },
  2431.                {
  2432.                    "name": "Idaho",
  2433.                    "index": 12
  2434.                },
  2435.                {
  2436.                    "name": "Illinois",
  2437.                    "index": 13
  2438.                },
  2439.                {
  2440.                    "name": "Indiana",
  2441.                    "index": 14
  2442.                },
  2443.                {
  2444.                    "name": "Iowa",
  2445.                    "index": 15
  2446.                },
  2447.                {
  2448.                    "name": "Kansas",
  2449.                    "index": 16
  2450.                },
  2451.                {
  2452.                    "name": "Kentucky",
  2453.                    "index": 17
  2454.                },
  2455.                {
  2456.                    "name": "Louisiana",
  2457.                    "index": 18
  2458.                },
  2459.                {
  2460.                    "name": "Maine",
  2461.                    "index": 19
  2462.                },
  2463.                {
  2464.                    "name": "Maryland",
  2465.                    "index": 20
  2466.                },
  2467.                {
  2468.                    "name": "Massachusetts",
  2469.                    "index": 21
  2470.                },
  2471.                {
  2472.                    "name": "Michigan",
  2473.                    "index": 22
  2474.                },
  2475.                {
  2476.                    "name": "Minnesota",
  2477.                    "index": 23
  2478.                },
  2479.                {
  2480.                    "name": "Mississippi",
  2481.                    "index": 24
  2482.                },
  2483.                {
  2484.                    "name": "Missouri",
  2485.                    "index": 25
  2486.                },
  2487.                {
  2488.                    "name": "Montana",
  2489.                    "index": 26
  2490.                },
  2491.                {
  2492.                    "name": "Nebraska",
  2493.                    "index": 27
  2494.                },
  2495.                {
  2496.                    "name": "Nevada",
  2497.                    "index": 28
  2498.                },
  2499.                {
  2500.                    "name": "New Hampshire",
  2501.                    "index": 29
  2502.                },
  2503.                {
  2504.                    "name": "New Jersey",
  2505.                    "index": 30
  2506.                },
  2507.                {
  2508.                    "name": "New Mexico",
  2509.                    "index": 31
  2510.                },
  2511.                {
  2512.                    "name": "New York",
  2513.                    "index": 32
  2514.                },
  2515.                {
  2516.                    "name": "North Carolina",
  2517.                    "index": 33
  2518.                },
  2519.                {
  2520.                    "name": "North Dakota",
  2521.                    "index": 34
  2522.                },
  2523.                {
  2524.                    "name": "Ohio",
  2525.                    "index": 35
  2526.                },
  2527.                {
  2528.                    "name": "Oklahoma",
  2529.                    "index": 36
  2530.                },
  2531.                {
  2532.                    "name": "Oregon",
  2533.                    "index": 37
  2534.                },
  2535.                {
  2536.                    "name": "Pennsylvania",
  2537.                    "index": 38
  2538.                },
  2539.                {
  2540.                    "name": "Rhode Island",
  2541.                    "index": 39
  2542.                },
  2543.                {
  2544.                    "name": "South Carolina",
  2545.                    "index": 40
  2546.                },
  2547.                {
  2548.                    "name": "South Dakota",
  2549.                    "index": 41
  2550.                },
  2551.                {
  2552.                    "name": "Tennessee",
  2553.                    "index": 42
  2554.                },
  2555.                {
  2556.                    "name": "Texas",
  2557.                    "index": 43
  2558.                },
  2559.                {
  2560.                    "name": "Utah",
  2561.                    "index": 44
  2562.                },
  2563.                {
  2564.                    "name": "Vermont",
  2565.                    "index": 45
  2566.                },
  2567.                {
  2568.                    "name": "Virginia",
  2569.                    "index": 46
  2570.                },
  2571.                {
  2572.                    "name": "Washington",
  2573.                    "index": 47
  2574.                },
  2575.                {
  2576.                    "name": "Washington, D.C.",
  2577.                    "index": 48
  2578.                },
  2579.                {
  2580.                    "name": "West Virginia",
  2581.                    "index": 49
  2582.                },
  2583.                {
  2584.                    "name": "Wisconsin",
  2585.                    "index": 50
  2586.                },
  2587.                {
  2588.                    "name": "Wyoming",
  2589.                    "index": 51
  2590.                }
  2591.            ]
  2592.        },
  2593.        {
  2594.            "name": "United States Virgin Islands",
  2595.            "index": 221,
  2596.            "subregions": []
  2597.        },
  2598.        {
  2599.            "name": "Uruguay",
  2600.            "index": 222,
  2601.            "subregions": []
  2602.        },
  2603.        {
  2604.            "name": "Uzbekistan",
  2605.            "index": 223,
  2606.            "subregions": []
  2607.        },
  2608.        {
  2609.            "name": "Vanuatu",
  2610.            "index": 224,
  2611.            "subregions": []
  2612.        },
  2613.        {
  2614.            "name": "Holy See (Vatican City State)",
  2615.            "index": 225,
  2616.            "subregions": []
  2617.        },
  2618.        {
  2619.            "name": "Venezuela",
  2620.            "index": 226,
  2621.            "subregions": []
  2622.        },
  2623.        {
  2624.            "name": "Vietnam",
  2625.            "index": 227,
  2626.            "subregions": []
  2627.        },
  2628.        {
  2629.            "name": "Wallis and Futuna",
  2630.            "index": 228,
  2631.            "subregions": []
  2632.        },
  2633.        {
  2634.            "name": "Western Sahara",
  2635.            "index": 229,
  2636.            "subregions": []
  2637.        },
  2638.        {
  2639.            "name": "Yemen",
  2640.            "index": 230,
  2641.            "subregions": []
  2642.        },
  2643.        {
  2644.            "name": "Zambia",
  2645.            "index": 231,
  2646.            "subregions": []
  2647.        },
  2648.        {
  2649.            "name": "Zimbabwe",
  2650.            "index": 232,
  2651.            "subregions": []
  2652.        }
  2653.    ]
  2654. }';
  2655.  
  2656. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement