@thenovaweb/druid-ogold-rn-sdk 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/lib/commonjs/assets/data/countries.json +400 -200
  2. package/lib/commonjs/assets/images/numbers_1.png +0 -0
  3. package/lib/commonjs/assets/images/numbers_2.png +0 -0
  4. package/lib/commonjs/assets/images/numbers_3.png +0 -0
  5. package/lib/commonjs/assets/themes/styles2.js +32 -22
  6. package/lib/commonjs/assets/themes/styles2.js.map +1 -1
  7. package/lib/commonjs/components/BasicInput.js +2 -1
  8. package/lib/commonjs/components/BasicInput.js.map +1 -1
  9. package/lib/commonjs/components/Camera.js +22 -6
  10. package/lib/commonjs/components/Camera.js.map +1 -1
  11. package/lib/commonjs/components/Checkbox.js +2 -1
  12. package/lib/commonjs/components/Checkbox.js.map +1 -1
  13. package/lib/commonjs/components/DocumentCard.js +5 -4
  14. package/lib/commonjs/components/DocumentCard.js.map +1 -1
  15. package/lib/commonjs/components/DropdownComponent.js +5 -4
  16. package/lib/commonjs/components/DropdownComponent.js.map +1 -1
  17. package/lib/commonjs/components/Field.js +2 -2
  18. package/lib/commonjs/components/Field.js.map +1 -1
  19. package/lib/commonjs/components/Loader-not-implemented.js +3 -2
  20. package/lib/commonjs/components/Loader-not-implemented.js.map +1 -1
  21. package/lib/commonjs/components/Loader.js +1 -1
  22. package/lib/commonjs/components/SlideItem.js +3 -2
  23. package/lib/commonjs/components/SlideItem.js.map +1 -1
  24. package/lib/commonjs/components/TextDivider.js +2 -1
  25. package/lib/commonjs/components/TextDivider.js.map +1 -1
  26. package/lib/commonjs/components/UploadImageModal.js +44 -9
  27. package/lib/commonjs/components/UploadImageModal.js.map +1 -1
  28. package/lib/commonjs/components/documents-camera/IdCamera.js +3 -0
  29. package/lib/commonjs/components/documents-camera/IdCamera.js.map +1 -1
  30. package/lib/commonjs/components/ogold/CountrySelectionBottomSheet.js +209 -0
  31. package/lib/commonjs/components/ogold/CountrySelectionBottomSheet.js.map +1 -0
  32. package/lib/commonjs/components/ogold/OGoldCountry.js +159 -0
  33. package/lib/commonjs/components/ogold/OGoldCountry.js.map +1 -0
  34. package/lib/commonjs/components/ogold/OgoldButton.js +4 -10
  35. package/lib/commonjs/components/ogold/OgoldButton.js.map +1 -1
  36. package/lib/commonjs/index.js +18 -0
  37. package/lib/commonjs/index.js.map +1 -1
  38. package/lib/commonjs/screens/DocumentsScreen.js +3 -5
  39. package/lib/commonjs/screens/DocumentsScreen.js.map +1 -1
  40. package/lib/commonjs/screens/ErrorScreen.js +3 -2
  41. package/lib/commonjs/screens/ErrorScreen.js.map +1 -1
  42. package/lib/commonjs/screens/FormScreen.js +11 -4
  43. package/lib/commonjs/screens/FormScreen.js.map +1 -1
  44. package/lib/commonjs/screens/InstructionsScreen.js +32 -14
  45. package/lib/commonjs/screens/InstructionsScreen.js.map +1 -1
  46. package/lib/commonjs/screens/LivenessScreen.js +27 -20
  47. package/lib/commonjs/screens/LivenessScreen.js.map +1 -1
  48. package/lib/commonjs/screens/WelcomeScreen.js +85 -83
  49. package/lib/commonjs/screens/WelcomeScreen.js.map +1 -1
  50. package/lib/commonjs/state/slices/ocrSlice.js +11 -3
  51. package/lib/commonjs/state/slices/ocrSlice.js.map +1 -1
  52. package/lib/commonjs/utils/constants.js +2 -1
  53. package/lib/commonjs/utils/constants.js.map +1 -1
  54. package/lib/commonjs/utils/nonSliceHelpers.js +13 -4
  55. package/lib/commonjs/utils/nonSliceHelpers.js.map +1 -1
  56. package/lib/module/assets/data/countries.json +400 -200
  57. package/lib/module/assets/images/numbers_1.png +0 -0
  58. package/lib/module/assets/images/numbers_2.png +0 -0
  59. package/lib/module/assets/images/numbers_3.png +0 -0
  60. package/lib/module/assets/themes/styles2.js +32 -22
  61. package/lib/module/assets/themes/styles2.js.map +1 -1
  62. package/lib/module/components/BasicInput.js +2 -1
  63. package/lib/module/components/BasicInput.js.map +1 -1
  64. package/lib/module/components/Camera.js +22 -6
  65. package/lib/module/components/Camera.js.map +1 -1
  66. package/lib/module/components/Checkbox.js +2 -1
  67. package/lib/module/components/Checkbox.js.map +1 -1
  68. package/lib/module/components/DocumentCard.js +5 -4
  69. package/lib/module/components/DocumentCard.js.map +1 -1
  70. package/lib/module/components/DropdownComponent.js +5 -4
  71. package/lib/module/components/DropdownComponent.js.map +1 -1
  72. package/lib/module/components/Field.js +2 -2
  73. package/lib/module/components/Field.js.map +1 -1
  74. package/lib/module/components/Loader-not-implemented.js +3 -2
  75. package/lib/module/components/Loader-not-implemented.js.map +1 -1
  76. package/lib/module/components/Loader.js +1 -1
  77. package/lib/module/components/SlideItem.js +3 -2
  78. package/lib/module/components/SlideItem.js.map +1 -1
  79. package/lib/module/components/TextDivider.js +2 -1
  80. package/lib/module/components/TextDivider.js.map +1 -1
  81. package/lib/module/components/UploadImageModal.js +44 -9
  82. package/lib/module/components/UploadImageModal.js.map +1 -1
  83. package/lib/module/components/documents-camera/IdCamera.js +3 -0
  84. package/lib/module/components/documents-camera/IdCamera.js.map +1 -1
  85. package/lib/module/components/ogold/CountrySelectionBottomSheet.js +203 -0
  86. package/lib/module/components/ogold/CountrySelectionBottomSheet.js.map +1 -0
  87. package/lib/module/components/ogold/OGoldCountry.js +154 -0
  88. package/lib/module/components/ogold/OGoldCountry.js.map +1 -0
  89. package/lib/module/components/ogold/OgoldButton.js +4 -10
  90. package/lib/module/components/ogold/OgoldButton.js.map +1 -1
  91. package/lib/module/index.js +19 -1
  92. package/lib/module/index.js.map +1 -1
  93. package/lib/module/screens/DocumentsScreen.js +3 -5
  94. package/lib/module/screens/DocumentsScreen.js.map +1 -1
  95. package/lib/module/screens/ErrorScreen.js +3 -2
  96. package/lib/module/screens/ErrorScreen.js.map +1 -1
  97. package/lib/module/screens/FormScreen.js +11 -4
  98. package/lib/module/screens/FormScreen.js.map +1 -1
  99. package/lib/module/screens/InstructionsScreen.js +32 -14
  100. package/lib/module/screens/InstructionsScreen.js.map +1 -1
  101. package/lib/module/screens/LivenessScreen.js +28 -21
  102. package/lib/module/screens/LivenessScreen.js.map +1 -1
  103. package/lib/module/screens/WelcomeScreen.js +86 -84
  104. package/lib/module/screens/WelcomeScreen.js.map +1 -1
  105. package/lib/module/state/slices/ocrSlice.js +11 -3
  106. package/lib/module/state/slices/ocrSlice.js.map +1 -1
  107. package/lib/module/utils/constants.js +1 -0
  108. package/lib/module/utils/constants.js.map +1 -1
  109. package/lib/module/utils/nonSliceHelpers.js +9 -1
  110. package/lib/module/utils/nonSliceHelpers.js.map +1 -1
  111. package/lib/typescript/commonjs/src/assets/themes/styles2.d.ts +12 -2
  112. package/lib/typescript/commonjs/src/assets/themes/styles2.d.ts.map +1 -1
  113. package/lib/typescript/commonjs/src/components/BasicInput.d.ts.map +1 -1
  114. package/lib/typescript/commonjs/src/components/Camera.d.ts.map +1 -1
  115. package/lib/typescript/commonjs/src/components/DocumentCard.d.ts.map +1 -1
  116. package/lib/typescript/commonjs/src/components/DropdownComponent.d.ts.map +1 -1
  117. package/lib/typescript/commonjs/src/components/Field.d.ts.map +1 -1
  118. package/lib/typescript/commonjs/src/components/TextDivider.d.ts.map +1 -1
  119. package/lib/typescript/commonjs/src/components/UploadImageModal.d.ts.map +1 -1
  120. package/lib/typescript/commonjs/src/components/ogold/CountrySelectionBottomSheet.d.ts +15 -0
  121. package/lib/typescript/commonjs/src/components/ogold/CountrySelectionBottomSheet.d.ts.map +1 -0
  122. package/lib/typescript/commonjs/src/components/ogold/OGoldCountry.d.ts +3 -0
  123. package/lib/typescript/commonjs/src/components/ogold/OGoldCountry.d.ts.map +1 -0
  124. package/lib/typescript/commonjs/src/components/ogold/OgoldButton.d.ts.map +1 -1
  125. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  126. package/lib/typescript/commonjs/src/screens/DocumentsScreen.d.ts.map +1 -1
  127. package/lib/typescript/commonjs/src/screens/ErrorScreen.d.ts.map +1 -1
  128. package/lib/typescript/commonjs/src/screens/FormScreen.d.ts.map +1 -1
  129. package/lib/typescript/commonjs/src/screens/InstructionsScreen.d.ts.map +1 -1
  130. package/lib/typescript/commonjs/src/screens/LivenessScreen.d.ts.map +1 -1
  131. package/lib/typescript/commonjs/src/screens/WelcomeScreen.d.ts.map +1 -1
  132. package/lib/typescript/commonjs/src/state/slices/ocrSlice.d.ts +5 -1
  133. package/lib/typescript/commonjs/src/state/slices/ocrSlice.d.ts.map +1 -1
  134. package/lib/typescript/commonjs/src/utils/constants.d.ts +1 -0
  135. package/lib/typescript/commonjs/src/utils/constants.d.ts.map +1 -1
  136. package/lib/typescript/commonjs/src/utils/nonSliceHelpers.d.ts +1 -0
  137. package/lib/typescript/commonjs/src/utils/nonSliceHelpers.d.ts.map +1 -1
  138. package/lib/typescript/module/src/assets/themes/styles2.d.ts +12 -2
  139. package/lib/typescript/module/src/assets/themes/styles2.d.ts.map +1 -1
  140. package/lib/typescript/module/src/components/BasicInput.d.ts.map +1 -1
  141. package/lib/typescript/module/src/components/Camera.d.ts.map +1 -1
  142. package/lib/typescript/module/src/components/DocumentCard.d.ts.map +1 -1
  143. package/lib/typescript/module/src/components/DropdownComponent.d.ts.map +1 -1
  144. package/lib/typescript/module/src/components/Field.d.ts.map +1 -1
  145. package/lib/typescript/module/src/components/TextDivider.d.ts.map +1 -1
  146. package/lib/typescript/module/src/components/UploadImageModal.d.ts.map +1 -1
  147. package/lib/typescript/module/src/components/ogold/CountrySelectionBottomSheet.d.ts +15 -0
  148. package/lib/typescript/module/src/components/ogold/CountrySelectionBottomSheet.d.ts.map +1 -0
  149. package/lib/typescript/module/src/components/ogold/OGoldCountry.d.ts +3 -0
  150. package/lib/typescript/module/src/components/ogold/OGoldCountry.d.ts.map +1 -0
  151. package/lib/typescript/module/src/components/ogold/OgoldButton.d.ts.map +1 -1
  152. package/lib/typescript/module/src/index.d.ts.map +1 -1
  153. package/lib/typescript/module/src/screens/DocumentsScreen.d.ts.map +1 -1
  154. package/lib/typescript/module/src/screens/ErrorScreen.d.ts.map +1 -1
  155. package/lib/typescript/module/src/screens/FormScreen.d.ts.map +1 -1
  156. package/lib/typescript/module/src/screens/InstructionsScreen.d.ts.map +1 -1
  157. package/lib/typescript/module/src/screens/LivenessScreen.d.ts.map +1 -1
  158. package/lib/typescript/module/src/screens/WelcomeScreen.d.ts.map +1 -1
  159. package/lib/typescript/module/src/state/slices/ocrSlice.d.ts +5 -1
  160. package/lib/typescript/module/src/state/slices/ocrSlice.d.ts.map +1 -1
  161. package/lib/typescript/module/src/utils/constants.d.ts +1 -0
  162. package/lib/typescript/module/src/utils/constants.d.ts.map +1 -1
  163. package/lib/typescript/module/src/utils/nonSliceHelpers.d.ts +1 -0
  164. package/lib/typescript/module/src/utils/nonSliceHelpers.d.ts.map +1 -1
  165. package/package.json +5 -3
@@ -1,802 +1,1002 @@
1
1
  [
2
2
  {
3
3
  "value": "Afghanistan",
4
- "image": "https://img.icons8.com/?size=100&id=HVxwrj5XZX5J&format=png&color=000000"
4
+ "image": "https://img.icons8.com/?size=100&id=HVxwrj5XZX5J&format=png&color=000000",
5
+ "dial_code": "+93"
5
6
  },
6
7
  {
7
8
  "value": "Albania",
8
- "image": "https://img.icons8.com/?size=100&id=J0pOhDQDNT47&format=png&color=000000"
9
+ "image": "https://img.icons8.com/?size=100&id=J0pOhDQDNT47&format=png&color=000000",
10
+ "dial_code": "+355"
9
11
  },
10
12
  {
11
13
  "value": "Algeria",
12
- "image": "https://img.icons8.com/?size=100&id=ohQGuW5WrzUc&format=png&color=000000"
14
+ "image": "https://img.icons8.com/?size=100&id=ohQGuW5WrzUc&format=png&color=000000",
15
+ "dial_code": "+213"
13
16
  },
14
17
  {
15
18
  "value": "Andorra",
16
- "image": "https://img.icons8.com/?size=100&id=D6SQnPUqkSDz&format=png&color=000000"
19
+ "image": "https://img.icons8.com/?size=100&id=D6SQnPUqkSDz&format=png&color=000000",
20
+ "dial_code": "+376"
17
21
  },
18
22
  {
19
23
  "value": "Angola",
20
- "image": "https://img.icons8.com/?size=100&id=lhY9u5hriVM0&format=png&color=000000"
24
+ "image": "https://img.icons8.com/?size=100&id=lhY9u5hriVM0&format=png&color=000000",
25
+ "dial_code": "+244"
21
26
  },
22
27
  {
23
28
  "value": "Antigua and Barbuda",
24
- "image": "https://img.icons8.com/?size=100&id=FOUsVf5JP0Yk&format=png&color=000000"
29
+ "image": "https://img.icons8.com/?size=100&id=FOUsVf5JP0Yk&format=png&color=000000",
30
+ "dial_code": "+1-268"
25
31
  },
26
32
  {
27
33
  "value": "Argentina",
28
- "image": "https://img.icons8.com/?size=100&id=ibqKXaaqCBHo&format=png&color=000000"
34
+ "image": "https://img.icons8.com/?size=100&id=ibqKXaaqCBHo&format=png&color=000000",
35
+ "dial_code": "+54"
29
36
  },
30
37
  {
31
38
  "value": "Armenia",
32
- "image": "https://img.icons8.com/?size=100&id=cPDPVfgeUA2l&format=png&color=000000"
39
+ "image": "https://img.icons8.com/?size=100&id=cPDPVfgeUA2l&format=png&color=000000",
40
+ "dial_code": "+374"
33
41
  },
34
42
  {
35
43
  "value": "Australia",
36
- "image": "https://img.icons8.com/?size=100&id=UN34m1KGQG9v&format=png&color=000000"
44
+ "image": "https://img.icons8.com/?size=100&id=UN34m1KGQG9v&format=png&color=000000",
45
+ "dial_code": "+61"
37
46
  },
38
47
  {
39
48
  "value": "Austria",
40
- "image": "https://img.icons8.com/?size=100&id=6Hs1IM1NzN7p&format=png&color=000000"
49
+ "image": "https://img.icons8.com/?size=100&id=6Hs1IM1NzN7p&format=png&color=000000",
50
+ "dial_code": "+43"
41
51
  },
42
52
  {
43
53
  "value": "Azerbaijan",
44
- "image": "https://img.icons8.com/?size=100&id=nTcULYnn7dkC&format=png&color=000000"
54
+ "image": "https://img.icons8.com/?size=100&id=nTcULYnn7dkC&format=png&color=000000",
55
+ "dial_code": "+994"
45
56
  },
46
57
  {
47
58
  "value": "Bahamas",
48
- "image": "https://img.icons8.com/?size=100&id=TfFnu2ecDfTT&format=png&color=000000"
59
+ "image": "https://img.icons8.com/?size=100&id=TfFnu2ecDfTT&format=png&color=000000",
60
+ "dial_code": "+1-242"
49
61
  },
50
62
  {
51
63
  "value": "Bahrain",
52
- "image": "https://img.icons8.com/?size=100&id=LoaYivEJp4MV&format=png&color=000000"
64
+ "image": "https://img.icons8.com/?size=100&id=LoaYivEJp4MV&format=png&color=000000",
65
+ "dial_code": "+973"
53
66
  },
54
67
  {
55
68
  "value": "Bangladesh",
56
- "image": "https://img.icons8.com/?size=100&id=TyDZNgOeTyqW&format=png&color=000000"
69
+ "image": "https://img.icons8.com/?size=100&id=TyDZNgOeTyqW&format=png&color=000000",
70
+ "dial_code": "+880"
57
71
  },
58
72
  {
59
73
  "value": "Barbados",
60
- "image": "https://img.icons8.com/?size=100&id=FTVBeIPzPAXg&format=png&color=000000"
74
+ "image": "https://img.icons8.com/?size=100&id=FTVBeIPzPAXg&format=png&color=000000",
75
+ "dial_code": "+1-246"
61
76
  },
62
77
  {
63
78
  "value": "Belarus",
64
- "image": "https://img.icons8.com/?size=100&id=MvQ8Pu9VD4gT&format=png&color=000000"
79
+ "image": "https://img.icons8.com/?size=100&id=MvQ8Pu9VD4gT&format=png&color=000000",
80
+ "dial_code": "+375"
65
81
  },
66
82
  {
67
83
  "value": "Belgium",
68
- "image": "https://img.icons8.com/?size=100&id=ARmbqGBLERSo&format=png&color=000000"
84
+ "image": "https://img.icons8.com/?size=100&id=ARmbqGBLERSo&format=png&color=000000",
85
+ "dial_code": "+32"
69
86
  },
70
87
  {
71
88
  "value": "Belize",
72
- "image": "https://img.icons8.com/?size=100&id=4fUkZtYzJwxs&format=png&color=000000"
89
+ "image": "https://img.icons8.com/?size=100&id=4fUkZtYzJwxs&format=png&color=000000",
90
+ "dial_code": "+501"
73
91
  },
74
92
  {
75
93
  "value": "Benin",
76
- "image": "https://img.icons8.com/?size=100&id=SUXVXWPCfQeF&format=png&color=000000"
94
+ "image": "https://img.icons8.com/?size=100&id=SUXVXWPCfQeF&format=png&color=000000",
95
+ "dial_code": "+229"
77
96
  },
78
97
  {
79
98
  "value": "Bhutan",
80
- "image": "https://img.icons8.com/?size=100&id=kNP1AoC0D6cR&format=png&color=000000"
99
+ "image": "https://img.icons8.com/?size=100&id=kNP1AoC0D6cR&format=png&color=000000",
100
+ "dial_code": "+975"
81
101
  },
82
102
  {
83
103
  "value": "Bolivia",
84
- "image": "https://img.icons8.com/?size=100&id=KuDAQKPk7dlU&format=png&color=000000"
104
+ "image": "https://img.icons8.com/?size=100&id=KuDAQKPk7dlU&format=png&color=000000",
105
+ "dial_code": "+591"
85
106
  },
86
107
  {
87
108
  "value": "Bosnia and Herzegovina",
88
- "image": "https://img.icons8.com/?size=100&id=wWA0WNSSxJ4g&format=png&color=000000"
109
+ "image": "https://img.icons8.com/?size=100&id=wWA0WNSSxJ4g&format=png&color=000000",
110
+ "dial_code": "+387"
89
111
  },
90
112
  {
91
113
  "value": "Botswana",
92
- "image": "https://img.icons8.com/?size=100&id=lopsM2MYKMJK&format=png&color=000000"
114
+ "image": "https://img.icons8.com/?size=100&id=lopsM2MYKMJK&format=png&color=000000",
115
+ "dial_code": "+267"
93
116
  },
94
117
  {
95
118
  "value": "Brazil",
96
- "image": "https://img.icons8.com/?size=100&id=iHI2gDXCsMzH&format=png&color=000000"
119
+ "image": "https://img.icons8.com/?size=100&id=iHI2gDXCsMzH&format=png&color=000000",
120
+ "dial_code": "+55"
97
121
  },
98
122
  {
99
123
  "value": "Brunei",
100
- "image": "https://img.icons8.com/?size=100&id=aQIkU7tcnZtt&format=png&color=000000"
124
+ "image": "https://img.icons8.com/?size=100&id=aQIkU7tcnZtt&format=png&color=000000",
125
+ "dial_code": "+673"
101
126
  },
102
127
  {
103
128
  "value": "Bulgaria",
104
- "image": "https://img.icons8.com/?size=100&id=D8d97JyA7dc6&format=png&color=000000"
129
+ "image": "https://img.icons8.com/?size=100&id=D8d97JyA7dc6&format=png&color=000000",
130
+ "dial_code": "+359"
105
131
  },
106
132
  {
107
133
  "value": "Burkina Faso",
108
- "image": "https://img.icons8.com/?size=100&id=5AYLedQUrHYi&format=png&color=000000"
134
+ "image": "https://img.icons8.com/?size=100&id=5AYLedQUrHYi&format=png&color=000000",
135
+ "dial_code": "+226"
109
136
  },
110
137
  {
111
138
  "value": "Burundi",
112
- "image": "https://img.icons8.com/?size=100&id=sXRBzrhiPLNG&format=png&color=000000"
139
+ "image": "https://img.icons8.com/?size=100&id=sXRBzrhiPLNG&format=png&color=000000",
140
+ "dial_code": "+257"
113
141
  },
114
142
  {
115
143
  "value": "Cape Verde",
116
- "image": "https://img.icons8.com/?size=100&id=7BZN4cVPswUB&format=png&color=000000"
144
+ "image": "https://img.icons8.com/?size=100&id=7BZN4cVPswUB&format=png&color=000000",
145
+ "dial_code": "+238"
117
146
  },
118
147
  {
119
148
  "value": "Cambodia",
120
- "image": "https://img.icons8.com/?size=100&id=cuPwZyT32YLA&format=png&color=000000"
149
+ "image": "https://img.icons8.com/?size=100&id=cuPwZyT32YLA&format=png&color=000000",
150
+ "dial_code": "+855"
121
151
  },
122
152
  {
123
153
  "value": "Cameroon",
124
- "image": "https://img.icons8.com/?size=100&id=b6s4tU1sF3zC&format=png&color=000000"
154
+ "image": "https://img.icons8.com/?size=100&id=b6s4tU1sF3zC&format=png&color=000000",
155
+ "dial_code": "+237"
125
156
  },
126
157
  {
127
158
  "value": "Canada",
128
- "image": "https://img.icons8.com/?size=100&id=Dum84gAXfBP6&format=png&color=000000"
159
+ "image": "https://img.icons8.com/?size=100&id=Dum84gAXfBP6&format=png&color=000000",
160
+ "dial_code": "+1"
129
161
  },
130
162
  {
131
163
  "value": "Central African Republic",
132
- "image": "https://img.icons8.com/?size=100&id=m83C5D78XBm8&format=png&color=000000"
164
+ "image": "https://img.icons8.com/?size=100&id=m83C5D78XBm8&format=png&color=000000",
165
+ "dial_code": "+236"
133
166
  },
134
167
  {
135
168
  "value": "Chad",
136
- "image": "https://img.icons8.com/?size=100&id=senHCgyCYidl&format=png&color=000000"
169
+ "image": "https://img.icons8.com/?size=100&id=senHCgyCYidl&format=png&color=000000",
170
+ "dial_code": "+235"
137
171
  },
138
172
  {
139
173
  "value": "Chile",
140
- "image": "https://img.icons8.com/?size=100&id=oBEl4fKQY7gE&format=png&color=000000"
174
+ "image": "https://img.icons8.com/?size=100&id=oBEl4fKQY7gE&format=png&color=000000",
175
+ "dial_code": "+56"
141
176
  },
142
177
  {
143
178
  "value": "China",
144
- "image": "https://img.icons8.com/?size=100&id=OafC2pWK4RV4&format=png&color=000000"
179
+ "image": "https://img.icons8.com/?size=100&id=OafC2pWK4RV4&format=png&color=000000",
180
+ "dial_code": "+86"
145
181
  },
146
182
  {
147
183
  "value": "Colombia",
148
- "image": "https://img.icons8.com/?size=100&id=N8GN5w7Vt8qp&format=png&color=000000"
184
+ "image": "https://img.icons8.com/?size=100&id=N8GN5w7Vt8qp&format=png&color=000000",
185
+ "dial_code": "+57"
149
186
  },
150
187
  {
151
188
  "value": "Comoros",
152
- "image": "https://img.icons8.com/?size=100&id=k5fkI0aMANUY&format=png&color=000000"
189
+ "image": "https://img.icons8.com/?size=100&id=k5fkI0aMANUY&format=png&color=000000",
190
+ "dial_code": "+269"
153
191
  },
154
192
  {
155
193
  "value": "Congo (Congo-Brazzaville)",
156
- "image": "https://img.icons8.com/?size=100&id=OFeHmiNwGhbN&format=png&color=000000"
194
+ "image": "https://img.icons8.com/?size=100&id=OFeHmiNwGhbN&format=png&color=000000",
195
+ "dial_code": "+242"
157
196
  },
158
197
  {
159
198
  "value": "Republic of the Congo",
160
- "image": "https://img.icons8.com/?size=100&id=QwgMHovQbJkO&format=png&color=000000"
199
+ "image": "https://img.icons8.com/?size=100&id=QwgMHovQbJkO&format=png&color=000000",
200
+ "dial_code": "+242"
161
201
  },
162
202
  {
163
203
  "value": "Costa Rica",
164
- "image": "https://img.icons8.com/?size=100&id=5ltp63P4dj0r&format=png&color=000000"
204
+ "image": "https://img.icons8.com/?size=100&id=5ltp63P4dj0r&format=png&color=000000",
205
+ "dial_code": "+506"
165
206
  },
166
207
  {
167
208
  "value": "Croatia",
168
- "image": "https://img.icons8.com/?size=100&id=NneB5FIUGHEe&format=png&color=000000"
209
+ "image": "https://img.icons8.com/?size=100&id=NneB5FIUGHEe&format=png&color=000000",
210
+ "dial_code": "+385"
169
211
  },
170
212
  {
171
213
  "value": "Cuba",
172
- "image": "https://img.icons8.com/?size=100&id=14cQ5Y3V852x&format=png&color=000000"
214
+ "image": "https://img.icons8.com/?size=100&id=14cQ5Y3V852x&format=png&color=000000",
215
+ "dial_code": "+53"
173
216
  },
174
217
  {
175
218
  "value": "Cyprus",
176
- "image": "https://img.icons8.com/?size=100&id=NfWY6fD0nzVl&format=png&color=000000"
219
+ "image": "https://img.icons8.com/?size=100&id=NfWY6fD0nzVl&format=png&color=000000",
220
+ "dial_code": "+357"
177
221
  },
178
222
  {
179
223
  "value": "Czech Republic",
180
- "image": "https://img.icons8.com/?size=100&id=E22mnB0L10Nv&format=png&color=000000"
224
+ "image": "https://img.icons8.com/?size=100&id=E22mnB0L10Nv&format=png&color=000000",
225
+ "dial_code": "+420"
181
226
  },
182
227
  {
183
228
  "value": "Denmark",
184
- "image": "https://img.icons8.com/?size=100&id=WpPbz1F98VUy&format=png&color=000000"
229
+ "image": "https://img.icons8.com/?size=100&id=WpPbz1F98VUy&format=png&color=000000",
230
+ "dial_code": "+45"
185
231
  },
186
232
  {
187
233
  "value": "Djibouti",
188
- "image": "https://img.icons8.com/?size=100&id=KlYceB9IQZWW&format=png&color=000000"
234
+ "image": "https://img.icons8.com/?size=100&id=KlYceB9IQZWW&format=png&color=000000",
235
+ "dial_code": "+253"
189
236
  },
190
237
  {
191
238
  "value": "Dominica",
192
- "image": "https://img.icons8.com/?size=100&id=o08g7jRL63ki&format=png&color=000000"
239
+ "image": "https://img.icons8.com/?size=100&id=o08g7jRL63ki&format=png&color=000000",
240
+ "dial_code": "+1-767"
193
241
  },
194
242
  {
195
243
  "value": "Dominican Republic",
196
- "image": "https://img.icons8.com/?size=100&id=Xtd6MUL8UCpP&format=png&color=000000"
244
+ "image": "https://img.icons8.com/?size=100&id=Xtd6MUL8UCpP&format=png&color=000000",
245
+ "dial_code": "+1-809,+1-829,+1-849"
197
246
  },
198
247
  {
199
248
  "value": "Ecuador",
200
- "image": "https://img.icons8.com/?size=100&id=Gp7ZO2LREDvq&format=png&color=000000"
249
+ "image": "https://img.icons8.com/?size=100&id=Gp7ZO2LREDvq&format=png&color=000000",
250
+ "dial_code": "+593"
201
251
  },
202
252
  {
203
253
  "value": "Egypt",
204
- "image": "https://img.icons8.com/?size=100&id=URAZ6JFhZFg8&format=png&color=000000"
254
+ "image": "https://img.icons8.com/?size=100&id=URAZ6JFhZFg8&format=png&color=000000",
255
+ "dial_code": "+20"
205
256
  },
206
257
  {
207
258
  "value": "El Salvador",
208
- "image": "https://img.icons8.com/?size=100&id=gOaDa6s8dXWp&format=png&color=000000"
259
+ "image": "https://img.icons8.com/?size=100&id=gOaDa6s8dXWp&format=png&color=000000",
260
+ "dial_code": "+503"
209
261
  },
210
262
  {
211
263
  "value": "Equatorial Guinea",
212
- "image": "https://img.icons8.com/?size=100&id=3tiPUoAtewMb&format=png&color=000000"
264
+ "image": "https://img.icons8.com/?size=100&id=3tiPUoAtewMb&format=png&color=000000",
265
+ "dial_code": "+240"
213
266
  },
214
267
  {
215
268
  "value": "Eritrea",
216
- "image": "https://img.icons8.com/?size=100&id=6N8MwoOL06V7&format=png&color=000000"
269
+ "image": "https://img.icons8.com/?size=100&id=6N8MwoOL06V7&format=png&color=000000",
270
+ "dial_code": "+291"
217
271
  },
218
272
  {
219
273
  "value": "Estonia",
220
- "image": "https://img.icons8.com/?size=100&id=U06I1aoQSzr7&format=png&color=000000"
274
+ "image": "https://img.icons8.com/?size=100&id=U06I1aoQSzr7&format=png&color=000000",
275
+ "dial_code": "+372"
221
276
  },
222
277
  {
223
278
  "value": "Eswatini (Swaziland)",
224
- "image": "https://img.icons8.com/?size=100&id=RUS2EGYyn6TO&format=png&color=000000"
279
+ "image": "https://img.icons8.com/?size=100&id=RUS2EGYyn6TO&format=png&color=000000",
280
+ "dial_code": "+268"
225
281
  },
226
282
  {
227
283
  "value": "Ethiopia",
228
- "image": "https://img.icons8.com/?size=100&id=Gj4LI8fsA2Qv&format=png&color=000000"
284
+ "image": "https://img.icons8.com/?size=100&id=Gj4LI8fsA2Qv&format=png&color=000000",
285
+ "dial_code": "+251"
229
286
  },
230
287
  {
231
288
  "value": "Fiji",
232
- "image": "https://img.icons8.com/?size=100&id=ctarB89CRGGm&format=png&color=000000"
289
+ "image": "https://img.icons8.com/?size=100&id=ctarB89CRGGm&format=png&color=000000",
290
+ "dial_code": "+679"
233
291
  },
234
292
  {
235
293
  "value": "Finland",
236
- "image": "https://img.icons8.com/?size=100&id=1prIDfxA5f6g&format=png&color=000000"
294
+ "image": "https://img.icons8.com/?size=100&id=1prIDfxA5f6g&format=png&color=000000",
295
+ "dial_code": "+358"
237
296
  },
238
297
  {
239
298
  "value": "France",
240
- "image": "https://img.icons8.com/?size=100&id=5RtaKEr09Jy6&format=png&color=000000"
299
+ "image": "https://img.icons8.com/?size=100&id=5RtaKEr09Jy6&format=png&color=000000",
300
+ "dial_code": "+33"
241
301
  },
242
302
  {
243
303
  "value": "Gabon",
244
- "image": "https://img.icons8.com/?size=100&id=k76DrpvVgPdx&format=png&color=000000"
304
+ "image": "https://img.icons8.com/?size=100&id=k76DrpvVgPdx&format=png&color=000000",
305
+ "dial_code": "+241"
245
306
  },
246
307
  {
247
308
  "value": "Gambia",
248
- "image": "https://img.icons8.com/?size=100&id=vZxzmu4WPdkL&format=png&color=000000"
309
+ "image": "https://img.icons8.com/?size=100&id=vZxzmu4WPdkL&format=png&color=000000",
310
+ "dial_code": "+220"
249
311
  },
250
312
  {
251
313
  "value": "Georgia",
252
- "image": "https://img.icons8.com/?size=100&id=ib9GZIDk6aiv&format=png&color=000000"
314
+ "image": "https://img.icons8.com/?size=100&id=ib9GZIDk6aiv&format=png&color=000000",
315
+ "dial_code": "+995"
253
316
  },
254
317
  {
255
318
  "value": "Germany",
256
- "image": "https://img.icons8.com/?size=100&id=OyqucOGoByl9&format=png&color=000000"
319
+ "image": "https://img.icons8.com/?size=100&id=OyqucOGoByl9&format=png&color=000000",
320
+ "dial_code": "+49"
257
321
  },
258
322
  {
259
323
  "value": "Ghana",
260
- "image": "https://img.icons8.com/?size=100&id=miuwSDC4iBWJ&format=png&color=000000"
324
+ "image": "https://img.icons8.com/?size=100&id=miuwSDC4iBWJ&format=png&color=000000",
325
+ "dial_code": "+233"
261
326
  },
262
327
  {
263
328
  "value": "Gibraltar",
264
- "image": "https://img.icons8.com/?size=100&id=faKjgaJJmADB&format=png&color=000000"
329
+ "image": "https://img.icons8.com/?size=100&id=faKjgaJJmADB&format=png&color=000000",
330
+ "dial_code": "+350"
265
331
  },
266
332
  {
267
333
  "value": "Greece",
268
- "image": "https://img.icons8.com/?size=100&id=1xhydKzjnswq&format=png&color=000000"
334
+ "image": "https://img.icons8.com/?size=100&id=1xhydKzjnswq&format=png&color=000000",
335
+ "dial_code": "+30"
269
336
  },
270
337
  {
271
338
  "value": "Greenland",
272
- "image": "https://img.icons8.com/?size=100&id=IyLOGQiG3XKQ&format=png&color=000000"
339
+ "image": "https://img.icons8.com/?size=100&id=IyLOGQiG3XKQ&format=png&color=000000",
340
+ "dial_code": "+299"
273
341
  },
274
342
  {
275
343
  "value": "Grenada",
276
- "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000"
344
+ "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000",
345
+ "dial_code": "+1-473"
277
346
  },
278
347
  {
279
348
  "value": "Guatemala",
280
- "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000"
349
+ "image": "https://img.icons8.com/?size=100&id=SXnz3GLvdahx&format=png&color=000000",
350
+ "dial_code": "+502"
281
351
  },
282
352
  {
283
353
  "value": "Guinea",
284
- "image": "https://img.icons8.com/?size=100&id=klhYUnMRbRpB&format=png&color=000000"
354
+ "image": "https://img.icons8.com/?size=100&id=klhYUnMRbRpB&format=png&color=000000",
355
+ "dial_code": "+224"
285
356
  },
286
357
  {
287
358
  "value": "Guinea-Bissau",
288
- "image": "https://img.icons8.com/?size=100&id=zqtbOjlHjkz5&format=png&color=000000"
359
+ "image": "https://img.icons8.com/?size=100&id=zqtbOjlHjkz5&format=png&color=000000",
360
+ "dial_code": "+245"
289
361
  },
290
362
  {
291
363
  "value": "Guyana",
292
- "image": "https://img.icons8.com/?size=100&id=IZvZTnD6yvKD&format=png&color=000000"
364
+ "image": "https://img.icons8.com/?size=100&id=IZvZTnD6yvKD&format=png&color=000000",
365
+ "dial_code": "+592"
293
366
  },
294
367
  {
295
368
  "value": "Haiti",
296
- "image": "https://img.icons8.com/?size=100&id=axkxqpHx4DcP&format=png&color=000000"
369
+ "image": "https://img.icons8.com/?size=100&id=axkxqpHx4DcP&format=png&color=000000",
370
+ "dial_code": "+509"
297
371
  },
298
372
  {
299
373
  "value": "Honduras",
300
- "image": "https://img.icons8.com/?size=100&id=nvOnWmwpRx0v&format=png&color=000000"
374
+ "image": "https://img.icons8.com/?size=100&id=nvOnWmwpRx0v&format=png&color=000000",
375
+ "dial_code": "+504"
301
376
  },
302
377
  {
303
378
  "value": "Hungary",
304
- "image": "https://img.icons8.com/?size=100&id=fZxAZSGO7Y9O&format=png&color=000000"
379
+ "image": "https://img.icons8.com/?size=100&id=fZxAZSGO7Y9O&format=png&color=000000",
380
+ "dial_code": "+36"
305
381
  },
306
382
  {
307
383
  "value": "Iceland",
308
- "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000"
384
+ "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000",
385
+ "dial_code": "+354"
309
386
  },
310
387
  {
311
388
  "value": "India",
312
- "image": "https://img.icons8.com/?size=100&id=HgrhrvtEzvc1&format=png&color=000000"
389
+ "image": "https://img.icons8.com/?size=100&id=HgrhrvtEzvc1&format=png&color=000000",
390
+ "dial_code": "+91"
313
391
  },
314
392
  {
315
393
  "value": "Indonesia",
316
- "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000"
394
+ "image": "https://img.icons8.com/?size=100&id=8iS3pPd8EWNM&format=png&color=000000",
395
+ "dial_code": "+62"
317
396
  },
318
397
  {
319
398
  "value": "Iran",
320
- "image": "https://img.icons8.com/?size=100&id=fFSAB8w06EdS&format=png&color=000000"
399
+ "image": "https://img.icons8.com/?size=100&id=fFSAB8w06EdS&format=png&color=000000",
400
+ "dial_code": "+98"
321
401
  },
322
402
  {
323
403
  "value": "Iraq",
324
- "image": "https://img.icons8.com/?size=100&id=YAow50FOci1Q&format=png&color=000000"
404
+ "image": "https://img.icons8.com/?size=100&id=YAow50FOci1Q&format=png&color=000000",
405
+ "dial_code": "+964"
325
406
  },
326
407
  {
327
408
  "value": "Ireland",
328
- "image": "https://img.icons8.com/?size=100&id=UtF7eqZKX1PP&format=png&color=000000"
409
+ "image": "https://img.icons8.com/?size=100&id=UtF7eqZKX1PP&format=png&color=000000",
410
+ "dial_code": "+353"
329
411
  },
330
412
  {
331
413
  "value": "Israel",
332
- "image": "https://img.icons8.com/?size=100&id=3pIpA27MPjIB&format=png&color=000000"
414
+ "image": "https://img.icons8.com/?size=100&id=3pIpA27MPjIB&format=png&color=000000",
415
+ "dial_code": "+972"
333
416
  },
334
417
  {
335
418
  "value": "Italy",
336
- "image": "https://img.icons8.com/?size=100&id=JfBHeXaPw7Gu&format=png&color=000000"
419
+ "image": "https://img.icons8.com/?size=100&id=JfBHeXaPw7Gu&format=png&color=000000",
420
+ "dial_code": "+39"
337
421
  },
338
422
  {
339
423
  "value": "Jamaica",
340
- "image": "https://img.icons8.com/?size=100&id=VuSnTDp6qwND&format=png&color=000000"
424
+ "image": "https://img.icons8.com/?size=100&id=VuSnTDp6qwND&format=png&color=000000",
425
+ "dial_code": "+1-876"
341
426
  },
342
427
  {
343
428
  "value": "Japan",
344
- "image": "https://img.icons8.com/?size=100&id=KvglG3FkCenH&format=png&color=000000"
429
+ "image": "https://img.icons8.com/?size=100&id=KvglG3FkCenH&format=png&color=000000",
430
+ "dial_code": "+81"
345
431
  },
346
432
  {
347
433
  "value": "Jordan",
348
- "image": "https://img.icons8.com/?size=100&id=YL7vldB3JyFQ&format=png&color=000000"
434
+ "image": "https://img.icons8.com/?size=100&id=YL7vldB3JyFQ&format=png&color=000000",
435
+ "dial_code": "+962"
349
436
  },
350
437
  {
351
438
  "value": "Kazakhstan",
352
- "image": "https://img.icons8.com/?size=100&id=bTwapbmoLtc6&format=png&color=000000"
439
+ "image": "https://img.icons8.com/?size=100&id=bTwapbmoLtc6&format=png&color=000000",
440
+ "dial_code": "+7"
353
441
  },
354
442
  {
355
443
  "value": "Kenya",
356
- "image": "https://img.icons8.com/?size=100&id=Zc4y1uKmKn17&format=png&color=000000"
444
+ "image": "https://img.icons8.com/?size=100&id=Zc4y1uKmKn17&format=png&color=000000",
445
+ "dial_code": "+254"
357
446
  },
358
447
  {
359
448
  "value": "Kiribati",
360
- "image": "https://img.icons8.com/?size=100&id=sdt8u79Sp2JE&format=png&color=000000"
449
+ "image": "https://img.icons8.com/?size=100&id=sdt8u79Sp2JE&format=png&color=000000",
450
+ "dial_code": "+686"
361
451
  },
362
452
  {
363
453
  "value": "Kuwait",
364
- "image": "https://img.icons8.com/?size=100&id=OOIQuQ0hPQ5e&format=png&color=000000"
454
+ "image": "https://img.icons8.com/?size=100&id=OOIQuQ0hPQ5e&format=png&color=000000",
455
+ "dial_code": "+965"
365
456
  },
366
457
  {
367
458
  "value": "Kyrgyzstan",
368
- "image": "https://img.icons8.com/?size=100&id=lsAqyiWXuktO&format=png&color=000000"
459
+ "image": "https://img.icons8.com/?size=100&id=lsAqyiWXuktO&format=png&color=000000",
460
+ "dial_code": "+996"
369
461
  },
370
462
  {
371
463
  "value": "Laos",
372
- "image": "https://img.icons8.com/?size=100&id=twzsfdyhg1sl&format=png&color=000000"
464
+ "image": "https://img.icons8.com/?size=100&id=twzsfdyhg1sl&format=png&color=000000",
465
+ "dial_code": "+856"
373
466
  },
374
467
  {
375
468
  "value": "Latvia",
376
- "image": "https://img.icons8.com/?size=100&id=nH2vLKzUCvFr&format=png&color=000000"
469
+ "image": "https://img.icons8.com/?size=100&id=nH2vLKzUCvFr&format=png&color=000000",
470
+ "dial_code": "+371"
377
471
  },
378
472
  {
379
473
  "value": "Lebanon",
380
- "image": "https://img.icons8.com/?size=100&id=B1PQYc0h2MS8&format=png&color=000000"
474
+ "image": "https://img.icons8.com/?size=100&id=B1PQYc0h2MS8&format=png&color=000000",
475
+ "dial_code": "+961"
381
476
  },
382
477
  {
383
478
  "value": "Lesotho",
384
- "image": "https://img.icons8.com/?size=100&id=etM2vzIjzMs0&format=png&color=000000"
479
+ "image": "https://img.icons8.com/?size=100&id=etM2vzIjzMs0&format=png&color=000000",
480
+ "dial_code": "+266"
385
481
  },
386
482
  {
387
483
  "value": "Liberia",
388
- "image": "https://img.icons8.com/?size=100&id=uuRAtTzhLyT5&format=png&color=000000"
484
+ "image": "https://img.icons8.com/?size=100&id=uuRAtTzhLyT5&format=png&color=000000",
485
+ "dial_code": "+231"
389
486
  },
390
487
  {
391
488
  "value": "Libya",
392
- "image": "https://img.icons8.com/?size=100&id=V6o0Ho74eYye&format=png&color=000000"
489
+ "image": "https://img.icons8.com/?size=100&id=V6o0Ho74eYye&format=png&color=000000",
490
+ "dial_code": "+218"
393
491
  },
394
492
  {
395
493
  "value": "Liechtenstein",
396
- "image": "https://img.icons8.com/?size=100&id=Gnqf4gdzkOQB&format=png&color=000000"
494
+ "image": "https://img.icons8.com/?size=100&id=Gnqf4gdzkOQB&format=png&color=000000",
495
+ "dial_code": "+423"
397
496
  },
398
497
  {
399
498
  "value": "Lithuania",
400
- "image": "https://img.icons8.com/?size=100&id=OK36NncBzfOL&format=png&color=000000"
499
+ "image": "https://img.icons8.com/?size=100&id=OK36NncBzfOL&format=png&color=000000",
500
+ "dial_code": "+370"
401
501
  },
402
502
  {
403
503
  "value": "Luxembourg",
404
- "image": "https://img.icons8.com/?size=100&id=FC8jYfZj81i1&format=png&color=000000"
504
+ "image": "https://img.icons8.com/?size=100&id=FC8jYfZj81i1&format=png&color=000000",
505
+ "dial_code": "+352"
405
506
  },
406
507
  {
407
508
  "value": "Madagascar",
408
- "image": "https://img.icons8.com/?size=100&id=uIkIG9VtQhit&format=png&color=000000"
509
+ "image": "https://img.icons8.com/?size=100&id=uIkIG9VtQhit&format=png&color=000000",
510
+ "dial_code": "+261"
409
511
  },
410
512
  {
411
513
  "value": "Malawi",
412
- "image": "https://img.icons8.com/?size=100&id=xrBcegmys1vF&format=png&color=000000"
514
+ "image": "https://img.icons8.com/?size=100&id=xrBcegmys1vF&format=png&color=000000",
515
+ "dial_code": "+265"
413
516
  },
414
517
  {
415
518
  "value": "Malaysia",
416
- "image": "https://img.icons8.com/?size=100&id=KsbAg9A20Twe&format=png&color=000000"
519
+ "image": "https://img.icons8.com/?size=100&id=KsbAg9A20Twe&format=png&color=000000",
520
+ "dial_code": "+60"
417
521
  },
418
522
  {
419
523
  "value": "Maldives",
420
- "image": "https://img.icons8.com/?size=100&id=TZRoXrlVzvtq&format=png&color=000000"
524
+ "image": "https://img.icons8.com/?size=100&id=TZRoXrlVzvtq&format=png&color=000000",
525
+ "dial_code": "+960"
421
526
  },
422
527
  {
423
528
  "value": "Mali",
424
- "image": "https://img.icons8.com/?size=100&id=EzM7O4uKa1pa&format=png&color=000000"
529
+ "image": "https://img.icons8.com/?size=100&id=EzM7O4uKa1pa&format=png&color=000000",
530
+ "dial_code": "+223"
425
531
  },
426
532
  {
427
533
  "value": "Malta",
428
- "image": "https://img.icons8.com/?size=100&id=PGrLpqnqOmfY&format=png&color=000000"
534
+ "image": "https://img.icons8.com/?size=100&id=PGrLpqnqOmfY&format=png&color=000000",
535
+ "dial_code": "+356"
429
536
  },
430
537
  {
431
538
  "value": "Marshall Islands",
432
- "image": "https://img.icons8.com/?size=100&id=0SRNdGyvreLf&format=png&color=000000"
539
+ "image": "https://img.icons8.com/?size=100&id=0SRNdGyvreLf&format=png&color=000000",
540
+ "dial_code": "+692"
433
541
  },
434
542
  {
435
543
  "value": "Mauritania",
436
- "image": "https://img.icons8.com/?size=100&id=lQjEiBWP58M4&format=png&color=000000"
544
+ "image": "https://img.icons8.com/?size=100&id=lQjEiBWP58M4&format=png&color=000000",
545
+ "dial_code": "+222"
437
546
  },
438
547
  {
439
548
  "value": "Mauritius",
440
- "image": "https://img.icons8.com/?size=100&id=sghglUoFAtE7&format=png&color=000000"
549
+ "image": "https://img.icons8.com/?size=100&id=sghglUoFAtE7&format=png&color=000000",
550
+ "dial_code": "+230"
441
551
  },
442
552
  {
443
553
  "value": "Mexico",
444
- "image": "https://img.icons8.com/?size=100&id=YdToLHA8MpDK&format=png&color=000000"
554
+ "image": "https://img.icons8.com/?size=100&id=YdToLHA8MpDK&format=png&color=000000",
555
+ "dial_code": "+52"
445
556
  },
446
557
  {
447
558
  "value": "Micronesia",
448
- "image": "https://img.icons8.com/?size=100&id=VuDtDU6OASxV&format=png&color=000000"
559
+ "image": "https://img.icons8.com/?size=100&id=VuDtDU6OASxV&format=png&color=000000",
560
+ "dial_code": "+691"
449
561
  },
450
562
  {
451
563
  "value": "Moldova",
452
- "image": "https://img.icons8.com/?size=100&id=0PV7wUbTWcAJ&format=png&color=000000"
564
+ "image": "https://img.icons8.com/?size=100&id=0PV7wUbTWcAJ&format=png&color=000000",
565
+ "dial_code": "+373"
453
566
  },
454
567
  {
455
568
  "value": "Monaco",
456
- "image": "https://img.icons8.com/?size=100&id=QaW8bqIcKydR&format=png&color=000000"
569
+ "image": "https://img.icons8.com/?size=100&id=QaW8bqIcKydR&format=png&color=000000",
570
+ "dial_code": "+377"
457
571
  },
458
572
  {
459
573
  "value": "Mongolia",
460
- "image": "https://img.icons8.com/?size=100&id=NM1SAQei4b64&format=png&color=000000"
574
+ "image": "https://img.icons8.com/?size=100&id=NM1SAQei4b64&format=png&color=000000",
575
+ "dial_code": "+976"
461
576
  },
462
577
  {
463
578
  "value": "Montenegro",
464
- "image": "https://img.icons8.com/?size=100&id=eRadEC2G3qg6&format=png&color=000000"
579
+ "image": "https://img.icons8.com/?size=100&id=eRadEC2G3qg6&format=png&color=000000",
580
+ "dial_code": "+382"
465
581
  },
466
582
  {
467
583
  "value": "Morocco",
468
- "image": "https://img.icons8.com/?size=100&id=VCP1NmeRnI3Y&format=png&color=000000"
584
+ "image": "https://img.icons8.com/?size=100&id=VCP1NmeRnI3Y&format=png&color=000000",
585
+ "dial_code": "+212"
469
586
  },
470
587
  {
471
588
  "value": "Mozambique",
472
- "image": "https://img.icons8.com/?size=100&id=EWNEq2WbP6D4&format=png&color=000000"
589
+ "image": "https://img.icons8.com/?size=100&id=EWNEq2WbP6D4&format=png&color=000000",
590
+ "dial_code": "+258"
473
591
  },
474
592
  {
475
593
  "value": "Myanmar",
476
- "image": "https://img.icons8.com/?size=100&id=Ng5oLA8HaJIC&format=png&color=000000"
594
+ "image": "https://img.icons8.com/?size=100&id=Ng5oLA8HaJIC&format=png&color=000000",
595
+ "dial_code": "+95"
477
596
  },
478
597
  {
479
598
  "value": "Namibia",
480
- "image": "https://img.icons8.com/?size=100&id=Gq87btxMiTaS&format=png&color=000000"
599
+ "image": "https://img.icons8.com/?size=100&id=Gq87btxMiTaS&format=png&color=000000",
600
+ "dial_code": "+264"
481
601
  },
482
602
  {
483
603
  "value": "Nauru",
484
- "image": "https://img.icons8.com/?size=100&id=qK7z31xvk14Z&format=png&color=000000"
604
+ "image": "https://img.icons8.com/?size=100&id=qK7z31xvk14Z&format=png&color=000000",
605
+ "dial_code": "+674"
485
606
  },
486
607
  {
487
608
  "value": "Nepal",
488
- "image": "https://img.icons8.com/?size=100&id=D11CBKsFvp32&format=png&color=000000"
609
+ "image": "https://img.icons8.com/?size=100&id=D11CBKsFvp32&format=png&color=000000",
610
+ "dial_code": "+977"
489
611
  },
490
612
  {
491
613
  "value": "Netherlands",
492
- "image": "https://img.icons8.com/?size=100&id=7Rco5PqWIoaC&format=png&color=000000"
614
+ "image": "https://img.icons8.com/?size=100&id=7Rco5PqWIoaC&format=png&color=000000",
615
+ "dial_code": "+31"
493
616
  },
494
617
  {
495
618
  "value": "New Caledonia",
496
- "image": "https://img.icons8.com/?size=100&id=z2DcLk5XE7Va&format=png&color=000000"
619
+ "image": "https://img.icons8.com/?size=100&id=z2DcLk5XE7Va&format=png&color=000000",
620
+ "dial_code": "+687"
497
621
  },
498
622
  {
499
623
  "value": "New Zealand",
500
- "image": "https://img.icons8.com/?size=100&id=0a7FEoHu4nJX&format=png&color=000000"
624
+ "image": "https://img.icons8.com/?size=100&id=0a7FEoHu4nJX&format=png&color=000000",
625
+ "dial_code": "+64"
501
626
  },
502
627
  {
503
628
  "value": "Nicaragua",
504
- "image": "https://img.icons8.com/?size=100&id=onHR7ptd33nw&format=png&color=000000"
629
+ "image": "https://img.icons8.com/?size=100&id=onHR7ptd33nw&format=png&color=000000",
630
+ "dial_code": "+505"
505
631
  },
506
632
  {
507
633
  "value": "Niger",
508
- "image": "https://img.icons8.com/?size=100&id=ZW6uYioMmJdp&format=png&color=000000"
634
+ "image": "https://img.icons8.com/?size=100&id=ZW6uYioMmJdp&format=png&color=000000",
635
+ "dial_code": "+227"
509
636
  },
510
637
  {
511
638
  "value": "Nigeria",
512
- "image": "https://img.icons8.com/?size=100&id=Qbb2whnonplQ&format=png&color=000000"
639
+ "image": "https://img.icons8.com/?size=100&id=Qbb2whnonplQ&format=png&color=000000",
640
+ "dial_code": "+234"
513
641
  },
514
642
  {
515
643
  "value": "Niue",
516
- "image": "https://img.icons8.com/?size=100&id=ExFXuF9cDMWN&format=png&color=000000"
644
+ "image": "https://img.icons8.com/?size=100&id=ExFXuF9cDMWN&format=png&color=000000",
645
+ "dial_code": "+683"
517
646
  },
518
647
  {
519
648
  "value": "North Korea",
520
- "image": "https://img.icons8.com/?size=100&id=ENks8ysXsOtX&format=png&color=000000"
649
+ "image": "https://img.icons8.com/?size=100&id=ENks8ysXsOtX&format=png&color=000000",
650
+ "dial_code": "+850"
521
651
  },
522
652
  {
523
653
  "value": "North Macedonia",
524
- "image": "https://img.icons8.com/?size=100&id=LlEDiLzu2TnT&format=png&color=000000"
654
+ "image": "https://img.icons8.com/?size=100&id=LlEDiLzu2TnT&format=png&color=000000",
655
+ "dial_code": "+389"
525
656
  },
526
657
  {
527
658
  "value": "Norway",
528
- "image": "https://img.icons8.com/?size=100&id=JZr09lm1sOOE&format=png&color=000000"
659
+ "image": "https://img.icons8.com/?size=100&id=JZr09lm1sOOE&format=png&color=000000",
660
+ "dial_code": "+47"
529
661
  },
530
662
  {
531
663
  "value": "Oman",
532
- "image": "https://img.icons8.com/?size=100&id=sepNJobrTO2e&format=png&color=000000"
664
+ "image": "https://img.icons8.com/?size=100&id=sepNJobrTO2e&format=png&color=000000",
665
+ "dial_code": "+968"
533
666
  },
534
667
  {
535
668
  "value": "Pakistan",
536
- "image": "https://img.icons8.com/?size=100&id=rW6BKNNuxTDd&format=png&color=000000"
669
+ "image": "https://img.icons8.com/?size=100&id=rW6BKNNuxTDd&format=png&color=000000",
670
+ "dial_code": "+92"
537
671
  },
538
672
  {
539
673
  "value": "Palau",
540
- "image": "https://img.icons8.com/?size=100&id=aQmK36Bxsw4R&format=png&color=000000"
674
+ "image": "https://img.icons8.com/?size=100&id=aQmK36Bxsw4R&format=png&color=000000",
675
+ "dial_code": "+680"
541
676
  },
542
677
  {
543
678
  "value": "Panama",
544
- "image": "https://img.icons8.com/?size=100&id=kXqcsqoApAjm&format=png&color=000000"
679
+ "image": "https://img.icons8.com/?size=100&id=kXqcsqoApAjm&format=png&color=000000",
680
+ "dial_code": "+507"
545
681
  },
546
682
  {
547
683
  "value": "Papua New Guinea",
548
- "image": "https://img.icons8.com/?size=100&id=SbuwwRxB4j7n&format=png&color=000000"
684
+ "image": "https://img.icons8.com/?size=100&id=SbuwwRxB4j7n&format=png&color=000000",
685
+ "dial_code": "+675"
549
686
  },
550
687
  {
551
688
  "value": "Paraguay",
552
- "image": "https://img.icons8.com/?size=100&id=4DTgNMRGzkyB&format=png&color=000000"
689
+ "image": "https://img.icons8.com/?size=100&id=4DTgNMRGzkyB&format=png&color=000000",
690
+ "dial_code": "+595"
553
691
  },
554
692
  {
555
693
  "value": "Peru",
556
- "image": "https://img.icons8.com/?size=100&id=NHeZBF9H8ztb&format=png&color=000000"
694
+ "image": "https://img.icons8.com/?size=100&id=NHeZBF9H8ztb&format=png&color=000000",
695
+ "dial_code": "+51"
557
696
  },
558
697
  {
559
698
  "value": "Philippines",
560
- "image": "https://img.icons8.com/?size=100&id=fcKQPjqEVc7z&format=png&color=000000"
699
+ "image": "https://img.icons8.com/?size=100&id=fcKQPjqEVc7z&format=png&color=000000",
700
+ "dial_code": "+63"
561
701
  },
562
702
  {
563
703
  "value": "Poland",
564
- "image": "https://img.icons8.com/?size=100&id=xO4eugbOFV13&format=png&color=000000"
704
+ "image": "https://img.icons8.com/?size=100&id=xO4eugbOFV13&format=png&color=000000",
705
+ "dial_code": "+48"
565
706
  },
566
707
  {
567
708
  "value": "Portugal",
568
- "image": "https://img.icons8.com/?size=100&id=U7gojzqjuzog&format=png&color=000000"
709
+ "image": "https://img.icons8.com/?size=100&id=U7gojzqjuzog&format=png&color=000000",
710
+ "dial_code": "+351"
569
711
  },
570
712
  {
571
713
  "value": "Qatar",
572
- "image": "https://img.icons8.com/?size=100&id=A7XOFIOr8m8T&format=png&color=000000"
714
+ "image": "https://img.icons8.com/?size=100&id=A7XOFIOr8m8T&format=png&color=000000",
715
+ "dial_code": "+974"
573
716
  },
574
717
  {
575
718
  "value": "Romania",
576
- "image": "https://img.icons8.com/?size=100&id=xkOxfMSiGhEq&format=png&color=000000"
719
+ "image": "https://img.icons8.com/?size=100&id=xkOxfMSiGhEq&format=png&color=000000",
720
+ "dial_code": "+40"
577
721
  },
578
722
  {
579
723
  "value": "Russia",
580
- "image": "https://img.icons8.com/?size=100&id=hT4UdesmXlvG&format=png&color=000000"
724
+ "image": "https://img.icons8.com/?size=100&id=hT4UdesmXlvG&format=png&color=000000",
725
+ "dial_code": "+7"
581
726
  },
582
727
  {
583
728
  "value": "Rwanda",
584
- "image": "https://img.icons8.com/?size=100&id=mtAkNA30WLik&format=png&color=000000"
729
+ "image": "https://img.icons8.com/?size=100&id=mtAkNA30WLik&format=png&color=000000",
730
+ "dial_code": "+250"
585
731
  },
586
732
  {
587
733
  "value": "Saint Barthelemy",
588
- "image": "https://img.icons8.com/?size=100&id=zGhOtq2R9bNA&format=png&color=000000"
734
+ "image": "https://img.icons8.com/?size=100&id=zGhOtq2R9bNA&format=png&color=000000",
735
+ "dial_code": "+590"
589
736
  },
590
737
  {
591
738
  "value": "Saint Helena",
592
- "image": "https://img.icons8.com/?size=100&id=jiG4px095E65&format=png&color=000000"
739
+ "image": "https://img.icons8.com/?size=100&id=jiG4px095E65&format=png&color=000000",
740
+ "dial_code": "+290"
593
741
  },
594
742
  {
595
743
  "value": "Saint Kitts and Nevis",
596
- "image": "https://img.icons8.com/?size=100&id=Hnwb7qDLD33U&format=png&color=000000"
744
+ "image": "https://img.icons8.com/?size=100&id=Hnwb7qDLD33U&format=png&color=000000",
745
+ "dial_code": "+1-869"
597
746
  },
598
747
  {
599
748
  "value": "Saint Lucia",
600
- "image": "https://img.icons8.com/?size=100&id=z1A0Gd7avvVb&format=png&color=000000"
749
+ "image": "https://img.icons8.com/?size=100&id=z1A0Gd7avvVb&format=png&color=000000",
750
+ "dial_code": "+1-758"
601
751
  },
602
752
  {
603
753
  "value": "Saint Pierre and the Miquelon",
604
- "image": "https://img.icons8.com/?size=100&id=6aH7lwJAuvhP&format=png&color=000000"
754
+ "image": "https://img.icons8.com/?size=100&id=6aH7lwJAuvhP&format=png&color=000000",
755
+ "dial_code": "+508"
605
756
  },
606
757
  {
607
758
  "value": "Saint Vincent and the Grenadines",
608
- "image": "https://img.icons8.com/?size=100&id=zvb3Npzz2In4&format=png&color=000000"
759
+ "image": "https://img.icons8.com/?size=100&id=zvb3Npzz2In4&format=png&color=000000",
760
+ "dial_code": "+1-784"
609
761
  },
610
762
  {
611
763
  "value": "Samoa",
612
- "image": "https://img.icons8.com/?size=100&id=5BxNN95CLpGb&format=png&color=000000"
764
+ "image": "https://img.icons8.com/?size=100&id=5BxNN95CLpGb&format=png&color=000000",
765
+ "dial_code": "+685"
613
766
  },
614
767
  {
615
768
  "value": "San Marino",
616
- "image": "https://img.icons8.com/?size=100&id=p6mKe0WfwTHr&format=png&color=000000"
769
+ "image": "https://img.icons8.com/?size=100&id=p6mKe0WfwTHr&format=png&color=000000",
770
+ "dial_code": "+378"
617
771
  },
618
772
  {
619
773
  "value": "Sao Tome and Principe",
620
- "image": "https://img.icons8.com/?size=100&id=HHwba2jK3d0H&format=png&color=000000"
774
+ "image": "https://img.icons8.com/?size=100&id=HHwba2jK3d0H&format=png&color=000000",
775
+ "dial_code": "+239"
621
776
  },
622
777
  {
623
778
  "value": "Saudi Arabia",
624
- "image": "https://img.icons8.com/?size=100&id=ZVRmMM44IJUW&format=png&color=000000"
779
+ "image": "https://img.icons8.com/?size=100&id=ZVRmMM44IJUW&format=png&color=000000",
780
+ "dial_code": "+966"
625
781
  },
626
782
  {
627
783
  "value": "Senegal",
628
- "image": "https://img.icons8.com/?size=100&id=QpU3DlDnMdlj&format=png&color=000000"
784
+ "image": "https://img.icons8.com/?size=100&id=QpU3DlDnMdlj&format=png&color=000000",
785
+ "dial_code": "+221"
629
786
  },
630
787
  {
631
788
  "value": "Serbia",
632
- "image": "https://img.icons8.com/?size=100&id=qBERnFK6lLrh&format=png&color=000000"
789
+ "image": "https://img.icons8.com/?size=100&id=qBERnFK6lLrh&format=png&color=000000",
790
+ "dial_code": "+381"
633
791
  },
634
792
  {
635
793
  "value": "Seychelles",
636
- "image": "https://img.icons8.com/?size=100&id=TOjc0Gt2FTtz&format=png&color=000000"
794
+ "image": "https://img.icons8.com/?size=100&id=TOjc0Gt2FTtz&format=png&color=000000",
795
+ "dial_code": "+248"
637
796
  },
638
797
  {
639
798
  "value": "Sierra Leone",
640
- "image": "https://img.icons8.com/?size=100&id=yci0A5xBsZt9&format=png&color=000000"
799
+ "image": "https://img.icons8.com/?size=100&id=yci0A5xBsZt9&format=png&color=000000",
800
+ "dial_code": "+232"
641
801
  },
642
802
  {
643
803
  "value": "Singapore",
644
- "image": "https://img.icons8.com/?size=100&id=7PcP1AnTKBDc&format=png&color=000000"
804
+ "image": "https://img.icons8.com/?size=100&id=7PcP1AnTKBDc&format=png&color=000000",
805
+ "dial_code": "+65"
645
806
  },
646
807
  {
647
808
  "value": "Slovakia",
648
- "image": "https://img.icons8.com/?size=100&id=8b0Y5pzFsCFU&format=png&color=000000"
809
+ "image": "https://img.icons8.com/?size=100&id=8b0Y5pzFsCFU&format=png&color=000000",
810
+ "dial_code": "+421"
649
811
  },
650
812
  {
651
813
  "value": "Slovenia",
652
- "image": "https://img.icons8.com/?size=100&id=VLKK6MVJuoXO&format=png&color=000000"
814
+ "image": "https://img.icons8.com/?size=100&id=VLKK6MVJuoXO&format=png&color=000000",
815
+ "dial_code": "+386"
653
816
  },
654
817
  {
655
818
  "value": "Solomon Islands",
656
- "image": "https://img.icons8.com/?size=100&id=j1nDt1GzI6IY&format=png&color=000000"
819
+ "image": "https://img.icons8.com/?size=100&id=j1nDt1GzI6IY&format=png&color=000000",
820
+ "dial_code": "+677"
657
821
  },
658
822
  {
659
823
  "value": "Somalia",
660
- "image": "https://img.icons8.com/?size=100&id=exqa6Bvswweq&format=png&color=000000"
824
+ "image": "https://img.icons8.com/?size=100&id=exqa6Bvswweq&format=png&color=000000",
825
+ "dial_code": "+252"
661
826
  },
662
827
  {
663
828
  "value": "South Africa",
664
- "image": "https://img.icons8.com/?size=100&id=RbNYuxlloexJ&format=png&color=000000"
829
+ "image": "https://img.icons8.com/?size=100&id=RbNYuxlloexJ&format=png&color=000000",
830
+ "dial_code": "+27"
665
831
  },
666
832
  {
667
833
  "value": "South Korea",
668
- "image": "https://img.icons8.com/?size=100&id=uCynf758t5TG&format=png&color=000000"
834
+ "image": "https://img.icons8.com/?size=100&id=uCynf758t5TG&format=png&color=000000",
835
+ "dial_code": "+82"
669
836
  },
670
837
  {
671
838
  "value": "South Sudan",
672
- "image": "https://img.icons8.com/?size=100&id=KoxirtH42D0h&format=png&color=000000"
839
+ "image": "https://img.icons8.com/?size=100&id=KoxirtH42D0h&format=png&color=000000",
840
+ "dial_code": "+211"
673
841
  },
674
842
  {
675
843
  "value": "Spain",
676
- "image": "https://img.icons8.com/?size=100&id=ZGEFKpJoPdJQ&format=png&color=000000"
844
+ "image": "https://img.icons8.com/?size=100&id=ZGEFKpJoPdJQ&format=png&color=000000",
845
+ "dial_code": "+34"
677
846
  },
678
847
  {
679
848
  "value": "Sri Lanka",
680
- "image": "https://img.icons8.com/?size=100&id=6kxTaT3MGXjV&format=png&color=000000"
849
+ "image": "https://img.icons8.com/?size=100&id=6kxTaT3MGXjV&format=png&color=000000",
850
+ "dial_code": "+94"
681
851
  },
682
852
  {
683
853
  "value": "Sudan",
684
- "image": "https://img.icons8.com/?size=100&id=zt8Jf7JdIs3A&format=png&color=000000"
854
+ "image": "https://img.icons8.com/?size=100&id=zt8Jf7JdIs3A&format=png&color=000000",
855
+ "dial_code": "+249"
685
856
  },
686
857
  {
687
858
  "value": "Suriname",
688
- "image": "https://img.icons8.com/?size=100&id=PGJsf3Ywq7zb&format=png&color=000000"
859
+ "image": "https://img.icons8.com/?size=100&id=PGJsf3Ywq7zb&format=png&color=000000",
860
+ "dial_code": "+597"
689
861
  },
690
862
  {
691
863
  "value": "Sweden",
692
- "image": "https://img.icons8.com/?size=100&id=INQZPwNNw3L8&format=png&color=000000"
864
+ "image": "https://img.icons8.com/?size=100&id=INQZPwNNw3L8&format=png&color=000000",
865
+ "dial_code": "+46"
693
866
  },
694
867
  {
695
868
  "value": "Switzerland",
696
- "image": "https://img.icons8.com/?size=100&id=nz6Zx2vJbzRG&format=png&color=000000"
869
+ "image": "https://img.icons8.com/?size=100&id=nz6Zx2vJbzRG&format=png&color=000000",
870
+ "dial_code": "+41"
697
871
  },
698
872
  {
699
873
  "value": "Syria",
700
- "image": "https://img.icons8.com/?size=100&id=VLi099FS1KKp&format=png&color=000000"
874
+ "image": "https://img.icons8.com/?size=100&id=VLi099FS1KKp&format=png&color=000000",
875
+ "dial_code": "+963"
701
876
  },
702
877
  {
703
878
  "value": "Taiwan",
704
- "image": "https://img.icons8.com/?size=100&id=bk4OWjKLox79&format=png&color=000000"
879
+ "image": "https://img.icons8.com/?size=100&id=bk4OWjKLox79&format=png&color=000000",
880
+ "dial_code": "+886"
705
881
  },
706
882
  {
707
883
  "value": "Tajikistan",
708
- "image": "https://img.icons8.com/?size=100&id=UD86Iig3CPEo&format=png&color=000000"
884
+ "image": "https://img.icons8.com/?size=100&id=UD86Iig3CPEo&format=png&color=000000",
885
+ "dial_code": "+992"
709
886
  },
710
887
  {
711
888
  "value": "Tanzania",
712
- "image": "https://img.icons8.com/?size=100&id=tKTNmFIOAIAt&format=png&color=000000"
889
+ "image": "https://img.icons8.com/?size=100&id=tKTNmFIOAIAt&format=png&color=000000",
890
+ "dial_code": "+255"
713
891
  },
714
892
  {
715
893
  "value": "Thailand",
716
- "image": "https://img.icons8.com/?size=100&id=FEav4DJ1yMx7&format=png&color=000000"
894
+ "image": "https://img.icons8.com/?size=100&id=FEav4DJ1yMx7&format=png&color=000000",
895
+ "dial_code": "+66"
717
896
  },
718
897
  {
719
898
  "value": "Timor-Leste",
720
- "image": "https://img.icons8.com/?size=100&id=gklKvzSLQKjr&format=png&color=000000"
899
+ "image": "https://img.icons8.com/?size=100&id=gklKvzSLQKjr&format=png&color=000000",
900
+ "dial_code": "+670"
721
901
  },
722
902
  {
723
903
  "value": "Togo",
724
- "image": "https://img.icons8.com/?size=100&id=iaep8gymdwVp&format=png&color=000000"
904
+ "image": "https://img.icons8.com/?size=100&id=iaep8gymdwVp&format=png&color=000000",
905
+ "dial_code": "+228"
725
906
  },
726
907
  {
727
908
  "value": "Tonga",
728
- "image": "https://img.icons8.com/?size=100&id=wMXSJVSumKDP&format=png&color=000000"
909
+ "image": "https://img.icons8.com/?size=100&id=wMXSJVSumKDP&format=png&color=000000",
910
+ "dial_code": "+676"
729
911
  },
730
912
  {
731
913
  "value": "Trinidad and Tobago",
732
- "image": "https://img.icons8.com/?size=100&id=1jv6shXZUucO&format=png&color=000000"
914
+ "image": "https://img.icons8.com/?size=100&id=1jv6shXZUucO&format=png&color=000000",
915
+ "dial_code": "+1-868"
733
916
  },
734
917
  {
735
918
  "value": "Tunisia",
736
- "image": "https://img.icons8.com/?size=100&id=G218aoNvqk85&format=png&color=000000"
919
+ "image": "https://img.icons8.com/?size=100&id=G218aoNvqk85&format=png&color=000000",
920
+ "dial_code": "+216"
737
921
  },
738
922
  {
739
923
  "value": "Turkey",
740
- "image": "https://img.icons8.com/?size=100&id=nJGqu5tRdUdC&format=png&color=000000"
924
+ "image": "https://img.icons8.com/?size=100&id=nJGqu5tRdUdC&format=png&color=000000",
925
+ "dial_code": "+90"
741
926
  },
742
927
  {
743
928
  "value": "Turkmenistan",
744
- "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000"
929
+ "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000",
930
+ "dial_code": "+993"
745
931
  },
746
932
  {
747
933
  "value": "Tuvalu",
748
- "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000"
934
+ "image": "https://img.icons8.com/?size=100&id=99V7QBWWodOy&format=png&color=000000",
935
+ "dial_code": "+688"
749
936
  },
750
937
  {
751
938
  "value": "Uganda",
752
- "image": "https://img.icons8.com/?size=100&id=mkzV8cqzfcfC&format=png&color=000000"
939
+ "image": "https://img.icons8.com/?size=100&id=mkzV8cqzfcfC&format=png&color=000000",
940
+ "dial_code": "+256"
753
941
  },
754
942
  {
755
943
  "value": "Ukraine",
756
- "image": "https://img.icons8.com/?size=100&id=2dThoYcv8J73&format=png&color=000000"
944
+ "image": "https://img.icons8.com/?size=100&id=2dThoYcv8J73&format=png&color=000000",
945
+ "dial_code": "+380"
757
946
  },
758
947
  {
759
948
  "value": "United Arab Emirates",
760
- "image": "https://img.icons8.com/?size=100&id=muBaktrtkHc5&format=png&color=000000"
949
+ "image": "https://img.icons8.com/?size=100&id=muBaktrtkHc5&format=png&color=000000",
950
+ "dial_code": "+971"
761
951
  },
762
952
  {
763
953
  "value": "United Kingdom",
764
- "image": "https://img.icons8.com/?size=100&id=xapj7ZzAUZKI&format=png&color=000000"
954
+ "image": "https://img.icons8.com/?size=100&id=xapj7ZzAUZKI&format=png&color=000000",
955
+ "dial_code": "+44"
765
956
  },
766
957
  {
767
958
  "value": "United States",
768
- "image": "https://img.icons8.com/?size=100&id=yzSggttkqLf4&format=png&color=000000"
959
+ "image": "https://img.icons8.com/?size=100&id=yzSggttkqLf4&format=png&color=000000",
960
+ "dial_code": "+1"
769
961
  },
770
962
  {
771
963
  "value": "Uruguay",
772
- "image": "https://img.icons8.com/?size=100&id=tOs8JNg5GEGu&format=png&color=000000"
964
+ "image": "https://img.icons8.com/?size=100&id=tOs8JNg5GEGu&format=png&color=000000",
965
+ "dial_code": "+598"
773
966
  },
774
967
  {
775
968
  "value": "Uzbekistan",
776
- "image": "https://img.icons8.com/?size=100&id=S29dqEC4xS0j&format=png&color=000000"
969
+ "image": "https://img.icons8.com/?size=100&id=S29dqEC4xS0j&format=png&color=000000",
970
+ "dial_code": "+998"
777
971
  },
778
972
  {
779
973
  "value": "Vanuatu",
780
- "image": "https://img.icons8.com/?size=100&id=DS62mGn77q8Q&format=png&color=000000"
974
+ "image": "https://img.icons8.com/?size=100&id=DS62mGn77q8Q&format=png&color=000000",
975
+ "dial_code": "+678"
781
976
  },
782
977
  {
783
978
  "value": "Venezuela",
784
- "image": "https://img.icons8.com/?size=100&id=1r7fsP5SQK4D&format=png&color=000000"
979
+ "image": "https://img.icons8.com/?size=100&id=1r7fsP5SQK4D&format=png&color=000000",
980
+ "dial_code": "+58"
785
981
  },
786
982
  {
787
983
  "value": "Vietnam",
788
- "image": "https://img.icons8.com/?size=100&id=Wjhd8tSYkD8r&format=png&color=000000"
984
+ "image": "https://img.icons8.com/?size=100&id=Wjhd8tSYkD8r&format=png&color=000000",
985
+ "dial_code": "+84"
789
986
  },
790
987
  {
791
988
  "value": "Yemen",
792
- "image": "https://img.icons8.com/?size=100&id=jJgFBlhYSW2s&format=png&color=000000"
989
+ "image": "https://img.icons8.com/?size=100&id=jJgFBlhYSW2s&format=png&color=000000",
990
+ "dial_code": "+967"
793
991
  },
794
992
  {
795
993
  "value": "Zambia",
796
- "image": "https://img.icons8.com/?size=100&id=uRmB4og4w5P7&format=png&color=000000"
994
+ "image": "https://img.icons8.com/?size=100&id=uRmB4og4w5P7&format=png&color=000000",
995
+ "dial_code": "+260"
797
996
  },
798
997
  {
799
998
  "value": "Zimbabwe",
800
- "image": "https://img.icons8.com/?size=100&id=HpweXtU8yqOx&format=png&color=000000"
999
+ "image": "https://img.icons8.com/?size=100&id=HpweXtU8yqOx&format=png&color=000000",
1000
+ "dial_code": "+263"
801
1001
  }
802
1002
  ]