@momo-kits/native-kits 0.152.4-beta.2 → 0.152.4-beta.3

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 (155) hide show
  1. package/CODE_OF_CONDUCT.md +133 -0
  2. package/CONTRIBUTING.md +114 -0
  3. package/LICENSE +20 -0
  4. package/README.md +7 -0
  5. package/build.gradle.kts +32 -0
  6. package/compose/MoMoComposeKits.podspec +54 -0
  7. package/compose/build.gradle.kts +149 -0
  8. package/compose/src/androidMain/AndroidManifest.xml +2 -0
  9. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +105 -0
  10. package/compose/src/commonMain/composeResources/files/lottie_circle_loader.json +1 -0
  11. package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
  12. package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
  13. package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
  14. package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
  15. package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
  16. package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
  17. package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
  18. package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
  19. package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
  20. package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
  21. package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
  22. package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
  23. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
  24. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +57 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +201 -0
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +222 -0
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +48 -0
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +306 -0
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +715 -0
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +214 -0
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +236 -0
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +77 -0
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +27 -0
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +334 -0
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +345 -0
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +90 -0
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +131 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -0
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +69 -0
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +143 -0
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +179 -0
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +111 -0
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +384 -0
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +160 -0
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +234 -0
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +223 -0
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +232 -0
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +236 -0
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +228 -0
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +364 -0
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +50 -0
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +34 -0
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +85 -0
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +33 -0
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +338 -0
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +95 -0
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +64 -0
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +89 -0
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +86 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +84 -0
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +208 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +172 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +199 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +237 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +191 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +13 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +191 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +258 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +59 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +68 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +49 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +232 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +111 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +94 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +159 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +232 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScaleSizeScope.kt +17 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +459 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +169 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +216 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +180 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +251 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +80 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +306 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +31 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +385 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +38 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +62 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +88 -0
  108. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +144 -0
  109. package/gradle.properties +19 -0
  110. package/gradlew +240 -0
  111. package/gradlew.bat +91 -0
  112. package/ios/Application/ApplicationEnvironment.swift +50 -0
  113. package/ios/Application/Components.swift +263 -0
  114. package/ios/Application/ComposeApi.swift +22 -0
  115. package/ios/Application/FloatingButton.swift +172 -0
  116. package/ios/Application/HeaderRight.swift +271 -0
  117. package/ios/Application/Screen.swift +249 -0
  118. package/ios/Badge/BadgeDot.swift +31 -0
  119. package/ios/Button/Button.swift +211 -0
  120. package/ios/CalculatorKeyboard/CalculatorKeyboard.swift +126 -0
  121. package/ios/Checkbox/Checkbox.swift +81 -0
  122. package/ios/Chip/Chip.swift +96 -0
  123. package/ios/Colors+Radius+Spacing/Colors.swift +172 -0
  124. package/ios/Colors+Radius+Spacing/Radius.swift +22 -0
  125. package/ios/Colors+Radius+Spacing/Spacing.swift +12 -0
  126. package/ios/Extensions/Color++.swift +25 -0
  127. package/ios/Icon/Icon.swift +51 -0
  128. package/ios/Image/Image.swift +70 -0
  129. package/ios/Input/Input.swift +207 -0
  130. package/ios/Input/InputPhoneNumber.swift +176 -0
  131. package/ios/Input/InputSearch.swift +238 -0
  132. package/ios/Input/InputTextArea.swift +242 -0
  133. package/ios/Lottie/LottieView.swift +86 -0
  134. package/ios/OTPKeyboard/KeyboardButton.swift +41 -0
  135. package/ios/OTPKeyboard/OTPKeyboard.swift +145 -0
  136. package/ios/Popup/PopupDisplay.swift +284 -0
  137. package/ios/Popup/PopupInput.swift +96 -0
  138. package/ios/Popup/PopupPromotion.swift +73 -0
  139. package/ios/PopupView/FullscreenPopup.swift +251 -0
  140. package/ios/PopupView/Modifiers.swift +158 -0
  141. package/ios/PopupView/PopupView.swift +289 -0
  142. package/ios/PopupView/Utils++.swift +281 -0
  143. package/ios/ScrollIndicator/ScrollIndicator.swift +110 -0
  144. package/ios/Swipeable/SwipeCell.swift +278 -0
  145. package/ios/Swipeable/SwipeCellModel.swift +86 -0
  146. package/ios/Switch/Switch.swift +44 -0
  147. package/ios/Template/Logo/Logo.swift +75 -0
  148. package/ios/Template/TrustBanner/TrustBanner.swift +120 -0
  149. package/ios/Theme.md +18 -0
  150. package/ios/Typography/Text.swift +140 -0
  151. package/ios/Typography/Typography.swift +95 -0
  152. package/ios/native-kits.podspec +18 -0
  153. package/package.json +6 -7
  154. package/settings.gradle.kts +25 -0
  155. package/shared/build.gradle.kts +0 -74
@@ -0,0 +1,1329 @@
1
+ package vn.momo.kits.utils
2
+
3
+ val Icons = mapOf(
4
+ "01.MoMo Copy" to "https://img.mservice.com.vn/app/img/kits/01.MoMo%20Copy.png",
5
+ "01.MoMo" to "https://img.mservice.com.vn/app/img/kits/01.MoMo.png",
6
+ "Phonebook" to "https://img.mservice.com.vn/app/img/kits/Phonebook.png",
7
+ "arrow-back" to "https://static.momocdn.net/app/img/kits/arrow-back.png",
8
+ "arrow_arrow-back" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow-back.png",
9
+ "arrow_arrow-down" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow-down.png",
10
+ "arrow_arrow-next" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow-next.png",
11
+ "arrow_arrow-top" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow-top.png",
12
+ "arrow_arrow_bold_forward" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_forward.png",
13
+ "arrow_arrow_bold_forward_all" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_forward_all.png",
14
+ "arrow_arrow_bold_redo" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_redo.png",
15
+ "arrow_arrow_bold_reply" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_reply.png",
16
+ "arrow_arrow_bold_reply_all" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_reply_all.png",
17
+ "arrow_arrow_bold_undo" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_bold_undo.png",
18
+ "arrow_arrow_forward" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_forward.png",
19
+ "arrow_arrow_redo" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_redo.png",
20
+ "arrow_arrow_reply" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_reply.png",
21
+ "arrow_arrow_undo" to "https://img.mservice.com.vn/app/img/kits/arrow_arrow_undo.png",
22
+ "arrow_chevron_down" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_down.png",
23
+ "arrow_chevron_down_small" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_down_small.png",
24
+ "arrow_chevron_left" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_left.png",
25
+ "arrow_chevron_left_small" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_left_small.png",
26
+ "arrow_chevron_right" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_right.png",
27
+ "arrow_chevron_right_small" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_right_small.png",
28
+ "arrow_chevron_up" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_up.png",
29
+ "arrow_chevron_up_small" to "https://img.mservice.com.vn/app/img/kits/arrow_chevron_up_small.png",
30
+ "arrow_chevrons_double_down" to "https://img.mservice.com.vn/app/img/kits/arrow_chevrons_double_down.png",
31
+ "arrow_chevrons_double_left" to "https://img.mservice.com.vn/app/img/kits/arrow_chevrons_double_left.png",
32
+ "arrow_chevrons_double_right" to "https://img.mservice.com.vn/app/img/kits/arrow_chevrons_double_right.png",
33
+ "arrow_chevrons_double_up" to "https://img.mservice.com.vn/app/img/kits/arrow_chevrons_double_up.png",
34
+ "arrow_circle_chevron_bottom" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevron_bottom.png",
35
+ "arrow_circle_chevron_left" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevron_left.png",
36
+ "arrow_circle_chevron_right" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevron_right.png",
37
+ "arrow_circle_chevron_top" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevron_top.png",
38
+ "arrow_circle_chevrons_double_down" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevrons_double_down.png",
39
+ "arrow_circle_chevrons_double_up" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevrons_double_up.png",
40
+ "arrow_circle_chevrons_left" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevrons_left.png",
41
+ "arrow_circle_chevrons_right" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_chevrons_right.png",
42
+ "arrow_circle_redo" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_redo.png",
43
+ "arrow_circle_undo" to "https://img.mservice.com.vn/app/img/kits/arrow_circle_undo.png",
44
+ "arrow_diagonals" to "https://img.mservice.com.vn/app/img/kits/arrow_diagonals.png",
45
+ "arrow_diagonals_bltr" to "https://img.mservice.com.vn/app/img/kits/arrow_diagonals_bltr.png",
46
+ "arrow_diagonals_tlbr" to "https://img.mservice.com.vn/app/img/kits/arrow_diagonals_tlbr.png",
47
+ "arrow_hv" to "https://img.mservice.com.vn/app/img/kits/arrow_hv.png",
48
+ "arrow_redo" to "https://img.mservice.com.vn/app/img/kits/arrow_redo.png",
49
+ "arrow_refresh_ccw" to "https://img.mservice.com.vn/app/img/kits/arrow_refresh_ccw.png",
50
+ "arrow_refresh_ccw_alert" to "https://img.mservice.com.vn/app/img/kits/arrow_refresh_ccw_alert.png",
51
+ "arrow_rotate_ccw" to "https://img.mservice.com.vn/app/img/kits/arrow_rotate_ccw.png",
52
+ "arrow_rotate_cw" to "https://img.mservice.com.vn/app/img/kits/arrow_rotate_cw.png",
53
+ "arrow_undo" to "https://img.mservice.com.vn/app/img/kits/arrow_undo.png",
54
+ "basic_Moon" to "https://img.mservice.com.vn/app/img/kits/basic_Moon.png",
55
+ "basic_account" to "https://img.mservice.com.vn/app/img/kits/basic_account.png",
56
+ "basic_chart" to "https://img.mservice.com.vn/app/img/kits/basic_chart.png",
57
+ "basic_chart_down" to "https://img.mservice.com.vn/app/img/kits/basic_chart_down.png",
58
+ "basic_chart_up" to "https://img.mservice.com.vn/app/img/kits/basic_chart_up.png",
59
+ "basic_copy" to "https://img.mservice.com.vn/app/img/kits/basic_copy.png",
60
+ "basic_delete" to "https://img.mservice.com.vn/app/img/kits/basic_delete.png",
61
+ "basic_duplicate" to "https://img.mservice.com.vn/app/img/kits/basic_duplicate.png",
62
+ "basic_filter" to "https://img.mservice.com.vn/app/img/kits/basic_filter.png",
63
+ "basic_flag" to "https://img.mservice.com.vn/app/img/kits/basic_flag.png",
64
+ "basic_home" to "https://img.mservice.com.vn/app/img/kits/basic_home.png",
65
+ "basic_name_tag" to "https://img.mservice.com.vn/app/img/kits/basic_name_tag.png",
66
+ "basic_options" to "https://img.mservice.com.vn/app/img/kits/basic_options.png",
67
+ "basic_person" to "https://img.mservice.com.vn/app/img/kits/basic_person.png",
68
+ "basic_person_add" to "https://img.mservice.com.vn/app/img/kits/basic_person_add.png",
69
+ "basic_person_block" to "https://img.mservice.com.vn/app/img/kits/basic_person_block.png",
70
+ "basic_person_check" to "https://img.mservice.com.vn/app/img/kits/basic_person_check.png",
71
+ "basic_person_group" to "https://img.mservice.com.vn/app/img/kits/basic_person_group.png",
72
+ "basic_person_minus" to "https://img.mservice.com.vn/app/img/kits/basic_person_minus.png",
73
+ "basic_person_tag" to "https://img.mservice.com.vn/app/img/kits/basic_person_tag.png",
74
+ "basic_power" to "https://img.mservice.com.vn/app/img/kits/basic_power.png",
75
+ "basic_pubic" to "https://img.mservice.com.vn/app/img/kits/basic_pubic.png",
76
+ "basic_pubic_explore" to "https://img.mservice.com.vn/app/img/kits/basic_pubic_explore.png",
77
+ "basic_pubic_off" to "https://img.mservice.com.vn/app/img/kits/basic_pubic_off.png",
78
+ "basic_screen_rotation" to "https://img.mservice.com.vn/app/img/kits/basic_screen_rotation.png",
79
+ "basic_screen_rotation_lock" to "https://img.mservice.com.vn/app/img/kits/basic_screen_rotation_lock.png",
80
+ "basic_setting" to "https://img.mservice.com.vn/app/img/kits/basic_setting.png",
81
+ "basic_sort_a_z" to "https://img.mservice.com.vn/app/img/kits/basic_sort_a_z.png",
82
+ "basic_sorting" to "https://img.mservice.com.vn/app/img/kits/basic_sorting.png",
83
+ "basic_sun" to "https://img.mservice.com.vn/app/img/kits/basic_sun.png",
84
+ "basic_suport_24" to "https://img.mservice.com.vn/app/img/kits/basic_suport_24.png",
85
+ "basic_ticket" to "https://img.mservice.com.vn/app/img/kits/basic_ticket.png",
86
+ "basic_ticket_full" to "https://img.mservice.com.vn/app/img/kits/basic_ticket_full.png",
87
+ "basic_ticket_star" to "https://img.mservice.com.vn/app/img/kits/basic_ticket_star.png",
88
+ "basic_ticket_star_full" to "https://img.mservice.com.vn/app/img/kits/basic_ticket_star_full.png",
89
+ "chat_back_space" to "https://img.mservice.com.vn/app/img/kits/chat_back_space.png",
90
+ "chat_bot" to "https://img.mservice.com.vn/app/img/kits/chat_bot.2x.png",
91
+ "chat_comment" to "https://img.mservice.com.vn/app/img/kits/chat_comment.png",
92
+ "chat_comment_alert" to "https://img.mservice.com.vn/app/img/kits/chat_comment_alert.png",
93
+ "chat_comment_checked" to "https://img.mservice.com.vn/app/img/kits/chat_comment_checked.png",
94
+ "chat_comment_delete" to "https://img.mservice.com.vn/app/img/kits/chat_comment_delete.png",
95
+ "chat_comment_empty" to "https://img.mservice.com.vn/app/img/kits/chat_comment_empty.png",
96
+ "chat_comment_minus" to "https://img.mservice.com.vn/app/img/kits/chat_comment_minus.png",
97
+ "chat_comment_plus" to "https://img.mservice.com.vn/app/img/kits/chat_comment_plus.png",
98
+ "chat_q_and_a" to "https://img.mservice.com.vn/app/img/kits/chat_q_and_a.png",
99
+ "chat_sent" to "https://img.mservice.com.vn/app/img/kits/chat_sent.png",
100
+ "chat_sticker" to "https://img.mservice.com.vn/app/img/kits/chat_sticker.png",
101
+ "connection_airplay" to "https://img.mservice.com.vn/app/img/kits/connection_airplay.png",
102
+ "connection_bluetooth" to "https://img.mservice.com.vn/app/img/kits/connection_bluetooth.png",
103
+ "connection_bluetooth_no" to "https://img.mservice.com.vn/app/img/kits/connection_bluetooth_no.png",
104
+ "connection_broadcast" to "https://img.mservice.com.vn/app/img/kits/connection_broadcast.png",
105
+ "connection_broadcasting" to "https://img.mservice.com.vn/app/img/kits/connection_broadcasting.png",
106
+ "connection_cast" to "https://img.mservice.com.vn/app/img/kits/connection_cast.png",
107
+ "connection_link" to "https://img.mservice.com.vn/app/img/kits/connection_link.png",
108
+ "connection_link_disable" to "https://img.mservice.com.vn/app/img/kits/connection_link_disable.png",
109
+ "connection_mail" to "https://img.mservice.com.vn/app/img/kits/connection_mail.png",
110
+ "connection_share" to "https://img.mservice.com.vn/app/img/kits/connection_share.png",
111
+ "connection_share_2" to "https://img.mservice.com.vn/app/img/kits/connection_share_2.png",
112
+ "connection_wifi" to "https://img.mservice.com.vn/app/img/kits/connection_wifi.png",
113
+ "connection_wifi_no" to "https://img.mservice.com.vn/app/img/kits/connection_wifi_no.png",
114
+ "file" to "https://img.mservice.com.vn/app/img/kits/file.png",
115
+ "file_Billsetting" to "https://img.mservice.com.vn/app/img/kits/file_Billsetting.png",
116
+ "file_briefcase" to "https://img.mservice.com.vn/app/img/kits/file_briefcase.png",
117
+ "file_checked" to "https://img.mservice.com.vn/app/img/kits/file_checked.png",
118
+ "file_clipboard" to "https://img.mservice.com.vn/app/img/kits/file_clipboard.png",
119
+ "file_clipboard_checked" to "https://img.mservice.com.vn/app/img/kits/file_clipboard_checked.png",
120
+ "file_clipboard_delete" to "https://img.mservice.com.vn/app/img/kits/file_clipboard_delete.png",
121
+ "file_clipboard_minus" to "https://img.mservice.com.vn/app/img/kits/file_clipboard_minus.png",
122
+ "file_clipboard_note" to "https://img.mservice.com.vn/app/img/kits/file_clipboard_note.png",
123
+ "file_clipboard_plus" to "https://img.mservice.com.vn/app/img/kits/file_clipboard_plus.png",
124
+ "file_cloud" to "https://img.mservice.com.vn/app/img/kits/file_cloud.png",
125
+ "file_cloud_checked" to "https://img.mservice.com.vn/app/img/kits/file_cloud_checked.png",
126
+ "file_cloud_connect" to "https://img.mservice.com.vn/app/img/kits/file_cloud_connect.png",
127
+ "file_cloud_download" to "https://img.mservice.com.vn/app/img/kits/file_cloud_download.png",
128
+ "file_cloud_no" to "https://img.mservice.com.vn/app/img/kits/file_cloud_no.png",
129
+ "file_cloud_upload" to "https://img.mservice.com.vn/app/img/kits/file_cloud_upload.png",
130
+ "file_code" to "https://img.mservice.com.vn/app/img/kits/file_code.png",
131
+ "file_database" to "https://img.mservice.com.vn/app/img/kits/file_database.png",
132
+ "file_delete" to "https://img.mservice.com.vn/app/img/kits/file_delete.png",
133
+ "file_download" to "https://img.mservice.com.vn/app/img/kits/file_download.png",
134
+ "file_draft" to "https://img.mservice.com.vn/app/img/kits/file_draft.png",
135
+ "file_edit" to "https://img.mservice.com.vn/app/img/kits/file_edit.png",
136
+ "file_edit_in_box" to "https://img.mservice.com.vn/app/img/kits/file_edit_in_box.png",
137
+ "file_file_create" to "https://img.mservice.com.vn/app/img/kits/file_file_create.png",
138
+ "file_folder" to "https://img.mservice.com.vn/app/img/kits/file_folder.png",
139
+ "file_folder_checked" to "https://img.mservice.com.vn/app/img/kits/file_folder_checked.png",
140
+ "file_folder_cloud" to "https://img.mservice.com.vn/app/img/kits/file_folder_cloud.png",
141
+ "file_folder_create" to "https://img.mservice.com.vn/app/img/kits/file_folder_create.png",
142
+ "file_folder_delete" to "https://img.mservice.com.vn/app/img/kits/file_folder_delete.png",
143
+ "file_folder_forward" to "https://img.mservice.com.vn/app/img/kits/file_folder_forward.png",
144
+ "file_folder_minus" to "https://img.mservice.com.vn/app/img/kits/file_folder_minus.png",
145
+ "file_folder_music" to "https://img.mservice.com.vn/app/img/kits/file_folder_music.png",
146
+ "file_folder_opened" to "https://img.mservice.com.vn/app/img/kits/file_folder_opened.png",
147
+ "file_folder_photo" to "https://img.mservice.com.vn/app/img/kits/file_folder_photo.png",
148
+ "file_folder_plus" to "https://img.mservice.com.vn/app/img/kits/file_folder_plus.png",
149
+ "file_folder_zip" to "https://img.mservice.com.vn/app/img/kits/file_folder_zip.png",
150
+ "file_mail" to "https://img.mservice.com.vn/app/img/kits/file_mail.png",
151
+ "file_minus" to "https://img.mservice.com.vn/app/img/kits/file_minus.png",
152
+ "file_paperclip" to "https://img.mservice.com.vn/app/img/kits/file_paperclip.png",
153
+ "file_paperclip_no" to "https://img.mservice.com.vn/app/img/kits/file_paperclip_no.png",
154
+ "file_pin" to "https://img.mservice.com.vn/app/img/kits/Pin.png",
155
+ "file_plus" to "https://img.mservice.com.vn/app/img/kits/file_plus.png",
156
+ "file_scan" to "https://img.mservice.com.vn/app/img/kits/file_scan.png",
157
+ "file_search" to "https://img.mservice.com.vn/app/img/kits/file_search.png",
158
+ "file_shredder" to "https://img.mservice.com.vn/app/img/kits/file_shredder.png",
159
+ "file_text" to "https://img.mservice.com.vn/app/img/kits/file_text.png",
160
+ "file_unpin" to "https://img.mservice.com.vn/app/img/kits/Unpin.png",
161
+ "file_upload" to "https://img.mservice.com.vn/app/img/kits/file_upload.png",
162
+ "finance_atm" to "https://img.mservice.com.vn/app/img/kits/finance_atm.png",
163
+ "finance_card_1" to "https://img.mservice.com.vn/app/img/kits/finance_card_1.png",
164
+ "finance_card_2" to "https://img.mservice.com.vn/app/img/kits/finance_card_2.png",
165
+ "finance_card_jcb" to "https://img.mservice.com.vn/app/img/kits/finance_card_jcb.png",
166
+ "finance_card_master" to "https://img.mservice.com.vn/app/img/kits/finance_card_master.png",
167
+ "finance_card_visa" to "https://img.mservice.com.vn/app/img/kits/finance_card_visa.png",
168
+ "finance_credit_card" to "https://img.mservice.com.vn/app/img/kits/finance_credit_card.png",
169
+ "finance_jcb" to "https://img.mservice.com.vn/app/img/kits/finance_jcb.png",
170
+ "finance_master" to "https://img.mservice.com.vn/app/img/kits/finance_master.png",
171
+ "finance_paypass" to "https://img.mservice.com.vn/app/img/kits/finance_paypass.png",
172
+ "finance_safe" to "https://img.mservice.com.vn/app/img/kits/finance_safe.png",
173
+ "finance_visa" to "https://img.mservice.com.vn/app/img/kits/finance_visa.png",
174
+ "finance_wallet" to "https://img.mservice.com.vn/app/img/kits/finance_wallet.png",
175
+ "gadgets_devices" to "https://img.mservice.com.vn/app/img/kits/gadgets_devices.png",
176
+ "gadgets_ipad" to "https://img.mservice.com.vn/app/img/kits/gadgets_ipad.png",
177
+ "gadgets_iphone" to "https://img.mservice.com.vn/app/img/kits/gadgets_iphone.png",
178
+ "gadgets_keyboard" to "https://img.mservice.com.vn/app/img/kits/gadgets_keyboard.png",
179
+ "gadgets_laptop" to "https://img.mservice.com.vn/app/img/kits/gadgets_laptop.png",
180
+ "gadgets_memory_card" to "https://img.mservice.com.vn/app/img/kits/gadgets_memory_card.png",
181
+ "gadgets_mobile" to "https://img.mservice.com.vn/app/img/kits/gadgets_mobile.png",
182
+ "gadgets_monitor" to "https://img.mservice.com.vn/app/img/kits/gadgets_monitor.png",
183
+ "gadgets_mouse" to "https://img.mservice.com.vn/app/img/kits/gadgets_mouse.png",
184
+ "gadgets_print" to "https://img.mservice.com.vn/app/img/kits/gadgets_print.png",
185
+ "gadgets_server" to "https://img.mservice.com.vn/app/img/kits/gadgets_server.png",
186
+ "gadgets_soft_disk" to "https://img.mservice.com.vn/app/img/kits/gadgets_soft_disk.png",
187
+ "gadgets_usb" to "https://img.mservice.com.vn/app/img/kits/gadgets_usb.png",
188
+ "logicstics_delivery" to "https://img.mservice.com.vn/app/img/kits/logicstics_delivery.png",
189
+ "logicstics_delivery_fast" to "https://img.mservice.com.vn/app/img/kits/logicstics_delivery_fast.png",
190
+ "logicstics_delivey_bike" to "https://img.mservice.com.vn/app/img/kits/logicstics_delivey_bike.png",
191
+ "logicstics_package_cancel" to "https://img.mservice.com.vn/app/img/kits/logicstics_package_cancel.png",
192
+ "logicstics_package_done" to "https://img.mservice.com.vn/app/img/kits/logicstics_package_done.png",
193
+ "logicstics_package_list" to "https://img.mservice.com.vn/app/img/kits/logicstics_package_list.png",
194
+ "logicstics_package_preparing" to "https://img.mservice.com.vn/app/img/kits/logicstics_package_preparing.png",
195
+ "logicstics_trolley_package" to "https://img.mservice.com.vn/app/img/kits/logicstics_trolley_package.png",
196
+ "logicstics_package" to "https://img.mservice.com.vn/app/img/kits/logicstics_package.png",
197
+ "maps_360" to "https://img.mservice.com.vn/app/img/kits/maps_360.png",
198
+ "maps_compass" to "https://img.mservice.com.vn/app/img/kits/maps_compass.png",
199
+ "maps_direction" to "https://img.mservice.com.vn/app/img/kits/maps_direction.png",
200
+ "maps_direction_45" to "https://img.mservice.com.vn/app/img/kits/maps_direction_45.png",
201
+ "maps_globe" to "https://img.mservice.com.vn/app/img/kits/maps_globe.png",
202
+ "maps_location" to "https://img.mservice.com.vn/app/img/kits/maps_location.png",
203
+ "maps_location_no" to "https://img.mservice.com.vn/app/img/kits/maps_location_no.png",
204
+ "maps_map" to "https://img.mservice.com.vn/app/img/kits/maps_map.png",
205
+ "maps_map_pin_location" to "https://img.mservice.com.vn/app/img/kits/maps_map_pin_location.png",
206
+ "maps_panorama" to "https://img.mservice.com.vn/app/img/kits/maps_panorama.png",
207
+ "maps_pin" to "https://img.mservice.com.vn/app/img/kits/maps_pin.png",
208
+ "maps_pin_add" to "https://img.mservice.com.vn/app/img/kits/maps_pin_add.png",
209
+ "maps_pin_edit" to "https://img.mservice.com.vn/app/img/kits/maps_pin_edit.png",
210
+ "maps_pin_no" to "https://img.mservice.com.vn/app/img/kits/maps_pin_no.png",
211
+ "maps_pin_question" to "https://img.mservice.com.vn/app/img/kits/maps_pin_question.png",
212
+ "maps_pin_round" to "https://img.mservice.com.vn/app/img/kits/maps_pin_round.png",
213
+ "maps_pin_start" to "https://img.mservice.com.vn/app/img/kits/maps_pin_start.png",
214
+ "maps_radar" to "https://img.mservice.com.vn/app/img/kits/maps_radar.png",
215
+ "maps_route" to "https://img.mservice.com.vn/app/img/kits/maps_route.png",
216
+ "maps_zoom_in" to "https://img.mservice.com.vn/app/img/kits/maps_zoom_in.png",
217
+ "maps_zoom_out" to "https://img.mservice.com.vn/app/img/kits/maps_zoom_out.png",
218
+ "media" to "https://img.mservice.com.vn/app/img/kits/media.png",
219
+ "media_add" to "https://img.mservice.com.vn/app/img/kits/media_add.png",
220
+ "media_camera" to "https://img.mservice.com.vn/app/img/kits/media_camera.png",
221
+ "media_camera_add" to "https://img.mservice.com.vn/app/img/kits/media_camera_add.png",
222
+ "media_camera_linked" to "https://img.mservice.com.vn/app/img/kits/media_camera_linked.png",
223
+ "media_camera_switch" to "https://img.mservice.com.vn/app/img/kits/media_camera_switch.png",
224
+ "media_cd" to "https://img.mservice.com.vn/app/img/kits/media_cd.png",
225
+ "media_collection" to "https://img.mservice.com.vn/app/img/kits/media_collection.png",
226
+ "media_color_picker" to "https://img.mservice.com.vn/app/img/kits/media_color_picker.png",
227
+ "media_control_point" to "https://img.mservice.com.vn/app/img/kits/media_control_point.png",
228
+ "media_flash_auto" to "https://img.mservice.com.vn/app/img/kits/media_flash_auto.png",
229
+ "media_flash_off" to "https://img.mservice.com.vn/app/img/kits/media_flash_off.png",
230
+ "media_flash_on" to "https://img.mservice.com.vn/app/img/kits/media_flash_on.png",
231
+ "media_flashlight_disable" to "https://img.mservice.com.vn/app/img/kits/media_flashlight_disable.png",
232
+ "media_flashlight_off" to "https://img.mservice.com.vn/app/img/kits/media_flashlight_off.png",
233
+ "media_flashlight_on" to "https://img.mservice.com.vn/app/img/kits/media_flashlight_on.png",
234
+ "media_focus" to "https://img.mservice.com.vn/app/img/kits/media_focus.png",
235
+ "media_leak_add" to "https://img.mservice.com.vn/app/img/kits/media_leak_add.png",
236
+ "media_player_pause_circle" to "https://img.mservice.com.vn/app/img/kits/media_player_pause_circle.png",
237
+ "media_player_play_circle" to "https://img.mservice.com.vn/app/img/kits/media_player_play_circle.png",
238
+ "media_player_stop_circle" to "https://img.mservice.com.vn/app/img/kits/media_player_stop_circle.png",
239
+ "media_record" to "https://img.mservice.com.vn/app/img/kits/media_record.png",
240
+ "media_repeat" to "https://img.mservice.com.vn/app/img/kits/media_repeat.png",
241
+ "media_rotate_left" to "https://img.mservice.com.vn/app/img/kits/media_rotate_left.png",
242
+ "media_rotate_right" to "https://img.mservice.com.vn/app/img/kits/media_rotate_right.png",
243
+ "media_search" to "https://img.mservice.com.vn/app/img/kits/media_search.png",
244
+ "media_shuffle" to "https://img.mservice.com.vn/app/img/kits/media_shuffle.png",
245
+ "media_shutter_speed" to "https://img.mservice.com.vn/app/img/kits/media_shutter_speed.png",
246
+ "media_slideshow" to "https://img.mservice.com.vn/app/img/kits/media_slideshow.png",
247
+ "media_timelapse" to "https://img.mservice.com.vn/app/img/kits/media_timelapse.png",
248
+ "media_timer" to "https://img.mservice.com.vn/app/img/kits/media_timer.png",
249
+ "media_timer_10s" to "https://img.mservice.com.vn/app/img/kits/media_timer_10s.png",
250
+ "media_timer_3s" to "https://img.mservice.com.vn/app/img/kits/media_timer_3s.png",
251
+ "media_timer_off" to "https://img.mservice.com.vn/app/img/kits/media_timer_off.png",
252
+ "media_video" to "https://img.mservice.com.vn/app/img/kits/media_video.png",
253
+ "media_volume" to "https://img.mservice.com.vn/app/img/kits/media_volume.png",
254
+ "media_volume_high" to "https://img.mservice.com.vn/app/img/kits/media_volume_high.png",
255
+ "media_volume_low" to "https://img.mservice.com.vn/app/img/kits/media_volume_low.png",
256
+ "media_volume_no" to "https://img.mservice.com.vn/app/img/kits/media_volume_no.png",
257
+ "media_volume_off" to "https://img.mservice.com.vn/app/img/kits/media_volume_off.png",
258
+ "navigation_app" to "https://img.mservice.com.vn/app/img/kits/navigation_app.png",
259
+ "navigation_cash_in" to "https://img.mservice.com.vn/app/img/kits/navigation_cash_in.png",
260
+ "navigation_close" to "https://img.mservice.com.vn/app/img/kits/navigation_close.png",
261
+ "navigation_close_circle" to "https://img.mservice.com.vn/app/img/kits/navigation_close_circle.png",
262
+ "navigation_close_circle_full" to "https://img.mservice.com.vn/app/img/kits/navigation_close_circle_full.png",
263
+ "navigation_close_circle_full_02" to "https://img.mservice.com.vn/app/img/kits/navigation_close_circle_full_02.png",
264
+ "navigation_close_circle_full_2" to "https://img.mservice.com.vn/app/img/kits/navigation_close_circle_full_2.png",
265
+ "navigation_full_screen" to "https://img.mservice.com.vn/app/img/kits/navigation_full_screen.png",
266
+ "navigation_full_screen_exit" to "https://img.mservice.com.vn/app/img/kits/navigation_full_screen_exit.png",
267
+ "navigation_log_out" to "https://img.mservice.com.vn/app/img/kits/navigation_log_out.png",
268
+ "navigation_menu" to "https://img.mservice.com.vn/app/img/kits/navigation_menu.png",
269
+ "navigation_minus" to "https://img.mservice.com.vn/app/img/kits/navigation_minus.png",
270
+ "navigation_minus_circle" to "https://img.mservice.com.vn/app/img/kits/navigation_minus_circle.png",
271
+ "navigation_minus_circle_full" to "https://img.mservice.com.vn/app/img/kits/navigation_minus_circle_full.png",
272
+ "navigation_more_horiz" to "https://img.mservice.com.vn/app/img/kits/navigation_more_horiz.png",
273
+ "navigation_more_vert" to "https://img.mservice.com.vn/app/img/kits/navigation_more_vert.png",
274
+ "navigation_plus" to "https://img.mservice.com.vn/app/img/kits/navigation_plus.png",
275
+ "navigation_plus_circle" to "https://img.mservice.com.vn/app/img/kits/navigation_plus_circle.png",
276
+ "navigation_plus_circle_full" to "https://img.mservice.com.vn/app/img/kits/navigation_plus_circle_full.png",
277
+ "navigation_qrcode" to "https://img.mservice.com.vn/app/img/kits/navigation_qrcode.png",
278
+ "navigation_scan" to "https://img.mservice.com.vn/app/img/kits/navigation_scan.png",
279
+ "navigation_search" to "https://img.mservice.com.vn/app/img/kits/navigation_search.png",
280
+ "navigation_search_add" to "https://img.mservice.com.vn/app/img/kits/navigation_search_add.png",
281
+ "navigation_search_minus" to "https://img.mservice.com.vn/app/img/kits/navigation_search_minus.png",
282
+ "navigation_unfold_less" to "https://img.mservice.com.vn/app/img/kits/navigation_unfold_less.png",
283
+ "navigation_unfold_more" to "https://img.mservice.com.vn/app/img/kits/navigation_unfold_more.png",
284
+ "notifications_alert_octagon" to "https://img.mservice.com.vn/app/img/kits/notifications_alert_octagon.png",
285
+ "notifications_alert_triangle" to "https://img.mservice.com.vn/app/img/kits/notifications_alert_triangle.png",
286
+ "notifications_app_notification" to "https://img.mservice.com.vn/app/img/kits/notifications_app_notification.png",
287
+ "notifications_bell" to "https://img.mservice.com.vn/app/img/kits/notifications_bell.png",
288
+ "notifications_bell_add" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_add.png",
289
+ "notifications_bell_alert" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_alert.png",
290
+ "notifications_bell_checked" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_checked.png",
291
+ "notifications_bell_full" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_full.png",
292
+ "notifications_bell_minus" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_minus.png",
293
+ "notifications_bell_no" to "https://img.mservice.com.vn/app/img/kits/notifications_bell_no.png",
294
+ "notifications_check" to "https://img.mservice.com.vn/app/img/kits/notifications_check.png",
295
+ "notifications_check_circle" to "https://img.mservice.com.vn/app/img/kits/notifications_check_circle.png",
296
+ "notifications_check_circle_full" to "https://img.mservice.com.vn/app/img/kits/notifications_check_circle_full.png",
297
+ "notifications_check_double" to "https://img.mservice.com.vn/app/img/kits/notifications_check_double.png",
298
+ "notifications_circle_alert" to "https://img.mservice.com.vn/app/img/kits/notifications_circle_alert.png",
299
+ "notifications_circle_question" to "https://img.mservice.com.vn/app/img/kits/notifications_circle_question.png",
300
+ "notifications_info" to "https://img.mservice.com.vn/app/img/kits/notifications_info.png",
301
+ "notifications_minus_octagon" to "https://img.mservice.com.vn/app/img/kits/notifications_minus_octagon.png",
302
+ "notifications_x_octagon" to "https://img.mservice.com.vn/app/img/kits/notifications_x_octagon.png",
303
+ "phone_call" to "https://img.mservice.com.vn/app/img/kits/phone_call.png",
304
+ "phone_call_add" to "https://img.mservice.com.vn/app/img/kits/phone_call_add.png",
305
+ "phone_call_decline" to "https://img.mservice.com.vn/app/img/kits/phone_call_decline.png",
306
+ "phone_call_end" to "https://img.mservice.com.vn/app/img/kits/phone_call_end.png",
307
+ "phone_call_forwarded" to "https://img.mservice.com.vn/app/img/kits/phone_call_forwarded.png",
308
+ "phone_call_hash" to "https://img.mservice.com.vn/app/img/kits/phone_call_hash.png",
309
+ "phone_call_hold" to "https://img.mservice.com.vn/app/img/kits/phone_call_hold.png",
310
+ "phone_call_incoming" to "https://img.mservice.com.vn/app/img/kits/phone_call_incoming.png",
311
+ "phone_call_mic_off" to "https://img.mservice.com.vn/app/img/kits/phone_call_mic_off.png",
312
+ "phone_call_mic_on" to "https://img.mservice.com.vn/app/img/kits/phone_call_mic_on.png",
313
+ "phone_call_missed" to "https://img.mservice.com.vn/app/img/kits/phone_call_missed.png",
314
+ "phone_call_muted" to "https://img.mservice.com.vn/app/img/kits/phone_call_muted.png",
315
+ "phone_call_no" to "https://img.mservice.com.vn/app/img/kits/phone_call_no.png",
316
+ "phone_call_numbers" to "https://img.mservice.com.vn/app/img/kits/phone_call_numbers.png",
317
+ "phone_call_outcoming" to "https://img.mservice.com.vn/app/img/kits/phone_call_outcoming.png",
318
+ "phone_call_phone_calling" to "https://img.mservice.com.vn/app/img/kits/phone_call_phone_calling.png",
319
+ "phone_call_recieved" to "https://img.mservice.com.vn/app/img/kits/phone_call_recieved.png",
320
+ "phone_call_voicemail" to "https://img.mservice.com.vn/app/img/kits/phone_call_voicemail.png",
321
+ "reaction_emoji_happy" to "https://img.mservice.com.vn/app/img/kits/reaction_emoji_happy.png",
322
+ "reaction_emoji_sad" to "https://img.mservice.com.vn/app/img/kits/reaction_emoji_sad.png",
323
+ "reaction_emoji_satisfy" to "https://img.mservice.com.vn/app/img/kits/reaction_emoji_satisfy.png",
324
+ "reaction_heart" to "https://img.mservice.com.vn/app/img/kits/reaction_heart.png",
325
+ "reaction_heart_disable" to "https://img.mservice.com.vn/app/img/kits/reaction_heart_disable.png",
326
+ "reaction_heart_full" to "https://img.mservice.com.vn/app/img/kits/reaction_heart_full.png",
327
+ "reaction_like" to "https://img.mservice.com.vn/app/img/kits/reaction_like.png",
328
+ "reaction_like_dislike" to "https://img.mservice.com.vn/app/img/kits/reaction_like_dislike.png",
329
+ "reaction_star_full" to "https://img.mservice.com.vn/app/img/kits/reaction_star_full.png",
330
+ "reaction_star_half" to "https://img.mservice.com.vn/app/img/kits/reaction_star_half.png",
331
+ "reaction_star_non" to "https://img.mservice.com.vn/app/img/kits/reaction_star_non.png",
332
+ "security_eye_off" to "https://img.mservice.com.vn/app/img/kits/security_eye_off.png",
333
+ "security_eye_open" to "https://img.mservice.com.vn/app/img/kits/security_eye_open.png",
334
+ "security_fingerprint" to "https://img.mservice.com.vn/app/img/kits/security_fingerprint.png",
335
+ "security_key" to "https://img.mservice.com.vn/app/img/kits/security_key.png",
336
+ "security_key_no" to "https://img.mservice.com.vn/app/img/kits/security_key_no.png",
337
+ "security_lock" to "https://img.mservice.com.vn/app/img/kits/security_lock.png",
338
+ "security_lock_no" to "https://img.mservice.com.vn/app/img/kits/security_lock_no.png",
339
+ "security_password" to "https://img.mservice.com.vn/app/img/kits/security_password.png",
340
+ "security_shield" to "https://img.mservice.com.vn/app/img/kits/security_shield.png",
341
+ "security_shield_admin" to "https://img.mservice.com.vn/app/img/kits/security_shield_admin.png",
342
+ "security_shield_check" to "https://img.mservice.com.vn/app/img/kits/security_shield_check.png",
343
+ "security_shield_disable" to "https://img.mservice.com.vn/app/img/kits/security_shield_disable.png",
344
+ "security_unlock" to "https://img.mservice.com.vn/app/img/kits/security_unlock.png",
345
+ "security_verifiedface_id" to "https://img.mservice.com.vn/app/img/kits/security_verifiedface_id.png",
346
+ "shopping_bag" to "https://img.mservice.com.vn/app/img/kits/shopping_bag.png",
347
+ "shopping_bag_shopping" to "https://img.mservice.com.vn/app/img/kits/shopping_bag_shopping.png",
348
+ "shopping_cart" to "https://img.mservice.com.vn/app/img/kits/shopping_cart.png",
349
+ "shopping_coupon" to "https://img.mservice.com.vn/app/img/kits/shopping_coupon.png",
350
+ "shopping_coupon_star" to "https://img.mservice.com.vn/app/img/kits/shopping_coupon_star.png",
351
+ "shopping_fast_food" to "https://img.mservice.com.vn/app/img/kits/shopping_fast_food.png",
352
+ "shopping_gift_card" to "https://img.mservice.com.vn/app/img/kits/shopping_gift_card.png",
353
+ "shopping_restaurant" to "https://img.mservice.com.vn/app/img/kits/shopping_restaurant.png",
354
+ "shopping_store" to "https://img.mservice.com.vn/app/img/kits/shopping_store.png",
355
+ "shopping_tag" to "https://img.mservice.com.vn/app/img/kits/shopping_tag.png",
356
+ "shopping_tag_love" to "https://img.mservice.com.vn/app/img/kits/shopping_tag_love.png",
357
+ "time_alarm" to "https://img.mservice.com.vn/app/img/kits/time_alarm.png",
358
+ "time_alarm_add" to "https://img.mservice.com.vn/app/img/kits/time_alarm_add.png",
359
+ "time_alarm_check" to "https://img.mservice.com.vn/app/img/kits/time_alarm_check.png",
360
+ "time_alarm_remove" to "https://img.mservice.com.vn/app/img/kits/time_alarm_remove.png",
361
+ "time_calendar" to "https://img.mservice.com.vn/app/img/kits/time_calendar.png",
362
+ "time_calendar_add" to "https://img.mservice.com.vn/app/img/kits/time_calendar_add.png",
363
+ "time_calendar_checked" to "https://img.mservice.com.vn/app/img/kits/time_calendar_checked.png",
364
+ "time_calendar_remove" to "https://img.mservice.com.vn/app/img/kits/time_calendar_remove.png",
365
+ "time_calendar_x" to "https://img.mservice.com.vn/app/img/kits/time_calendar_x.png",
366
+ "time_clock" to "https://img.mservice.com.vn/app/img/kits/time_clock.png",
367
+ "time_clock_reset" to "https://img.mservice.com.vn/app/img/kits/time_clock_reset.png",
368
+ "time_note" to "https://img.mservice.com.vn/app/img/kits/time_note.png",
369
+ "time_stop_watch" to "https://img.mservice.com.vn/app/img/kits/time_stop_watch.png",
370
+ "time_stop_watch_disable" to "https://img.mservice.com.vn/app/img/kits/time_stop_watch_disable.png",
371
+ "time_watch" to "https://img.mservice.com.vn/app/img/kits/time_watch.png",
372
+ "travel_Cold" to "https://img.mservice.com.vn/app/img/kits/travel_Cold.png",
373
+ "travel_Karaoke" to "https://img.mservice.com.vn/app/img/kits/travel_Karaoke.png",
374
+ "travel_apartment" to "https://img.mservice.com.vn/app/img/kits/travel_apartment.png",
375
+ "travel_bathtub" to "https://img.mservice.com.vn/app/img/kits/travel_bathtub.png",
376
+ "travel_bed-single" to "https://img.mservice.com.vn/app/img/kits/travel_bed-single.png",
377
+ "travel_bed" to "https://img.mservice.com.vn/app/img/kits/travel_bed.png",
378
+ "travel_bike" to "https://img.mservice.com.vn/app/img/kits/travel_bike.png",
379
+ "travel_bus" to "https://img.mservice.com.vn/app/img/kits/travel_bus.png",
380
+ "travel_car" to "https://img.mservice.com.vn/app/img/kits/travel_car.png",
381
+ "travel_cleaning_services" to "https://img.mservice.com.vn/app/img/kits/travel_cleaning_services.png",
382
+ "travel_coffee_maker" to "https://img.mservice.com.vn/app/img/kits/travel_coffee_maker.png",
383
+ "travel_dry_clean" to "https://img.mservice.com.vn/app/img/kits/travel_dry_clean.png",
384
+ "travel_fridge" to "https://img.mservice.com.vn/app/img/kits/travel_fridge.png",
385
+ "travel_gas_station" to "https://img.mservice.com.vn/app/img/kits/travel_gas_station.png",
386
+ "travel_holiday_village Copy" to "https://img.mservice.com.vn/app/img/kits/travel_holiday_village Copy.png",
387
+ "travel_holiday_village" to "https://img.mservice.com.vn/app/img/kits/travel_holiday_village.png",
388
+ "travel_hotel" to "https://img.mservice.com.vn/app/img/kits/travel_hotel.png",
389
+ "travel_hottub" to "https://img.mservice.com.vn/app/img/kits/travel_hottub.png",
390
+ "travel_iron" to "https://img.mservice.com.vn/app/img/kits/travel_iron.png",
391
+ "travel_kitchen" to "https://img.mservice.com.vn/app/img/kits/travel_kitchen.png",
392
+ "travel_laundry" to "https://img.mservice.com.vn/app/img/kits/travel_laundry.png",
393
+ "travel_microwave" to "https://img.mservice.com.vn/app/img/kits/travel_microwave.png",
394
+ "travel_parking" to "https://img.mservice.com.vn/app/img/kits/travel_parking.png",
395
+ "travel_people_baby" to "https://img.mservice.com.vn/app/img/kits/travel_people_baby.png",
396
+ "travel_people_college" to "https://img.mservice.com.vn/app/img/kits/travel_people_college.png",
397
+ "travel_people_family" to "https://img.mservice.com.vn/app/img/kits/travel_people_family.png",
398
+ "travel_people_kid" to "https://img.mservice.com.vn/app/img/kits/travel_people_kid.png",
399
+ "travel_people_man" to "https://img.mservice.com.vn/app/img/kits/travel_people_man.png",
400
+ "travel_people_old" to "https://img.mservice.com.vn/app/img/kits/travel_people_old.png",
401
+ "travel_people_run" to "https://img.mservice.com.vn/app/img/kits/travel_people_run.png",
402
+ "travel_people_walk" to "https://img.mservice.com.vn/app/img/kits/travel_people_walk.png",
403
+ "travel_people_wheelchair" to "https://img.mservice.com.vn/app/img/kits/travel_people_wheelchair.png",
404
+ "travel_people_woman" to "https://img.mservice.com.vn/app/img/kits/travel_people_woman.png",
405
+ "travel_people_women_pregnant" to "https://img.mservice.com.vn/app/img/kits/travel_people_women_pregnant.png",
406
+ "travel_plane" to "https://img.mservice.com.vn/app/img/kits/travel_plane.png",
407
+ "travel_plane_landing" to "https://img.mservice.com.vn/app/img/kits/travel_plane_landing.png",
408
+ "travel_plane_take_off" to "https://img.mservice.com.vn/app/img/kits/travel_plane_take_off.png",
409
+ "travel_seat_comfort" to "https://img.mservice.com.vn/app/img/kits/travel_seat_comfort.png",
410
+ "travel_seat_economy" to "https://img.mservice.com.vn/app/img/kits/travel_seat_economy.png",
411
+ "travel_seat_extra_seat" to "https://img.mservice.com.vn/app/img/kits/travel_seat_extra_seat.png",
412
+ "travel_subway" to "https://img.mservice.com.vn/app/img/kits/travel_subway.png",
413
+ "travel_suport_service" to "https://img.mservice.com.vn/app/img/kits/travel_suport_service.png",
414
+ "travel_taxi" to "https://img.mservice.com.vn/app/img/kits/travel_taxi.png",
415
+ "travel_train_1" to "https://img.mservice.com.vn/app/img/kits/travel_train_1.png",
416
+ "travel_train_2" to "https://img.mservice.com.vn/app/img/kits/travel_train_2.png",
417
+ "travel_tram" to "https://img.mservice.com.vn/app/img/kits/travel_tram.png",
418
+ "travel_van" to "https://img.mservice.com.vn/app/img/kits/travel_van.png",
419
+ "travel_villa" to "https://img.mservice.com.vn/app/img/kits/travel_villa.png",
420
+ "travel_wc" to "https://img.mservice.com.vn/app/img/kits/travel_wc.png",
421
+ "home_banner" to "https://img.mservice.com.vn/app/img/kits/im_background_new_user.png",
422
+ "travel_airconditional" to "https://img.mservice.com.vn/app/img/kits/travel_airconditional.png",
423
+ "request_money" to "https://img.mservice.com.vn/app/img/kits/request_money.png",
424
+ "notifications_guide" to "https://img.mservice.com.vn/app/img/kits/notifications_guide.png",
425
+ "navigation_remove_from_home" to "https://img.mservice.com.vn/app/img/kits/navigation_remove_from_home.png",
426
+ "navigation_add_to_home" to "https://img.mservice.com.vn/app/img/kits/navigation_add_to_home.png",
427
+ "finance_saving" to "https://img.mservice.com.vn/app/img/kits/finance_saving.png",
428
+ "finance_cash" to "https://img.mservice.com.vn/app/img/kits/finance_cash.png",
429
+ "connection_launch" to "https://img.mservice.com.vn/app/img/kits/connection_launch.png",
430
+ "media_color" to "https://img.mservice.com.vn/app/img/kits/icon_kit/icon_media_media_color.png",
431
+ "media_flip" to "https://img.mservice.com.vn/app/img/kits/icon_kit/icon_media_media_flip.png",
432
+ "media_crop" to "https://img.mservice.com.vn/app/img/kits/icon_kit/icon_media_media_crop.png",
433
+ "media_nope" to "https://img.mservice.com.vn/app/img/kits/icon_kit/icon_media_media_nope.png",
434
+ "16_arrow_arrow_bold_forward_all" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_forward_all.png",
435
+ "16_arrow_arrow_bold_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_forward.png",
436
+ "16_arrow_arrow_bold_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_redo.png",
437
+ "16_arrow_arrow_bold_reply_all" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_reply_all.png",
438
+ "16_arrow_arrow_bold_reply" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_reply.png",
439
+ "16_arrow_arrow_bold_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_bold_undo.png",
440
+ "16_arrow_arrow_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_forward.png",
441
+ "16_arrow_arrow_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_redo.png",
442
+ "16_arrow_arrow_reply" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_reply.png",
443
+ "16_arrow_arrow_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_arrow_undo.png",
444
+ "16_arrow_chevron_down_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_down_small.png",
445
+ "16_arrow_chevron_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_down.png",
446
+ "16_arrow_chevron_left_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_left_small.png",
447
+ "16_arrow_chevron_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_left.png",
448
+ "16_arrow_chevron_right_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_right_small.png",
449
+ "16_arrow_chevron_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_right.png",
450
+ "16_arrow_chevron_up_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_up_small.png",
451
+ "16_arrow_chevron_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevron_up.png",
452
+ "16_arrow_chevrons_double_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevrons_double_down.png",
453
+ "16_arrow_chevrons_double_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevrons_double_left.png",
454
+ "16_arrow_chevrons_double_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevrons_double_right.png",
455
+ "16_arrow_chevrons_double_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_chevrons_double_up.png",
456
+ "16_arrow_circle_chevron_bottom" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevron_bottom.png",
457
+ "16_arrow_circle_chevron_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevron_left.png",
458
+ "16_arrow_circle_chevron_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevron_right.png",
459
+ "16_arrow_circle_chevron_top" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevron_top.png",
460
+ "16_arrow_circle_chevrons_double_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevrons_double_down.png",
461
+ "16_arrow_circle_chevrons_double_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevrons_double_up.png",
462
+ "16_arrow_circle_chevrons_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevrons_left.png",
463
+ "16_arrow_circle_chevrons_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_chevrons_right.png",
464
+ "16_arrow_circle_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_redo.png",
465
+ "16_arrow_circle_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_circle_undo.png",
466
+ "16_arrow_diagonals_bltr" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_diagonals_bltr.png",
467
+ "16_arrow_diagonals_tlbr" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_diagonals_tlbr.png",
468
+ "16_arrow_diagonals" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_diagonals.png",
469
+ "16_arrow_hv" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_hv.png",
470
+ "16_arrow_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_redo.png",
471
+ "16_arrow_refresh_ccw_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_refresh_ccw_alert.png",
472
+ "16_arrow_refresh_ccw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_refresh_ccw.png",
473
+ "16_arrow_rotate_ccw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_rotate_ccw.png",
474
+ "16_arrow_rotate_cw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_rotate_cw.png",
475
+ "16_arrow_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_arrow_undo.png",
476
+ "24_arrow_arrow_bold_forward_all" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_forward_all.png",
477
+ "24_arrow_arrow_bold_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_forward.png",
478
+ "24_arrow_arrow_bold_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_redo.png",
479
+ "24_arrow_arrow_bold_reply_all" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_reply_all.png",
480
+ "24_arrow_arrow_bold_reply" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_reply.png",
481
+ "24_arrow_arrow_bold_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_bold_undo.png",
482
+ "24_arrow_arrow_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_forward.png",
483
+ "24_arrow_arrow_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_redo.png",
484
+ "24_arrow_arrow_reply" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_reply.png",
485
+ "24_arrow_arrow_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_arrow_undo.png",
486
+ "24_arrow_chevron_down_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_down_small.png",
487
+ "24_arrow_chevron_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_down.png",
488
+ "24_arrow_chevron_left_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_left_small.png",
489
+ "24_arrow_chevron_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_left.png",
490
+ "24_arrow_chevron_right_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_right_small.png",
491
+ "24_arrow_chevron_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_right.png",
492
+ "24_arrow_chevron_up_small" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_up_small.png",
493
+ "24_arrow_chevron_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevron_up.png",
494
+ "24_arrow_chevrons_double_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevrons_double_down.png",
495
+ "24_arrow_chevrons_double_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevrons_double_left.png",
496
+ "24_arrow_chevrons_double_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevrons_double_right.png",
497
+ "24_arrow_chevrons_double_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_chevrons_double_up.png",
498
+ "24_arrow_circle_chevron_bottom" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevron_bottom.png",
499
+ "24_arrow_circle_chevron_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevron_left.png",
500
+ "24_arrow_circle_chevron_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevron_right.png",
501
+ "24_arrow_circle_chevron_top" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevron_top.png",
502
+ "24_arrow_circle_chevrons_double_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevrons_double_down.png",
503
+ "24_arrow_circle_chevrons_double_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevrons_double_up.png",
504
+ "24_arrow_circle_chevrons_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevrons_left.png",
505
+ "24_arrow_circle_chevrons_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_chevrons_right.png",
506
+ "24_arrow_circle_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_redo.png",
507
+ "24_arrow_circle_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_circle_undo.png",
508
+ "24_arrow_diagonals_bltr" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_diagonals_bltr.png",
509
+ "24_arrow_diagonals_tlbr" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_diagonals_tlbr.png",
510
+ "24_arrow_diagonals" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_diagonals.png",
511
+ "24_arrow_hv" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_hv.png",
512
+ "24_arrow_redo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_redo.png",
513
+ "24_arrow_refresh_ccw_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_refresh_ccw_alert.png",
514
+ "24_arrow_refresh_ccw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_refresh_ccw.png",
515
+ "24_arrow_rotate_ccw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_rotate_ccw.png",
516
+ "24_arrow_rotate_cw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_rotate_cw.png",
517
+ "24_arrow_undo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_arrow_undo.png",
518
+ "16_basic_account" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_account.png",
519
+ "16_basic_chart_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_chart_down.png",
520
+ "16_basic_chart_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_chart_up.png",
521
+ "16_basic_chart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_chart.png",
522
+ "16_basic_copy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_copy.png",
523
+ "16_basic_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_delete.png",
524
+ "16_basic_duplicate" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_duplicate.png",
525
+ "16_basic_filter" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_filter.png",
526
+ "16_basic_flag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_flag.png",
527
+ "16_basic_home" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_home.png",
528
+ "16_basic_options" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_options.png",
529
+ "16_basic_person_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_person_add.png",
530
+ "16_basic_person_group" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_person_group.png",
531
+ "16_basic_person" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_person.png",
532
+ "16_basic_power" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_power.png",
533
+ "16_basic_screen_rotation_lock" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_screen_rotation_lock.png",
534
+ "16_basic_screen_rotation" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_screen_rotation.png",
535
+ "16_basic_setting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_setting.png",
536
+ "16_basic_sort_a_z" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_sort_a_z.png",
537
+ "16_basic_sorting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_sorting.png",
538
+ "16_basic_ticket_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_ticket_full.png",
539
+ "16_basic_ticket_star_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_ticket_star_full.png",
540
+ "16_basic_ticket_star" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_ticket_star.png",
541
+ "16_basic_ticket" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_basic_ticket.png",
542
+ "24_basic_account" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_account.png",
543
+ "24_basic_chart_down" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_chart_down.png",
544
+ "24_basic_chart_up" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_chart_up.png",
545
+ "24_basic_chart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_chart.png",
546
+ "24_basic_copy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_copy.png",
547
+ "24_basic_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_delete.png",
548
+ "24_basic_duplicate" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_duplicate.png",
549
+ "24_basic_filter" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_filter.png",
550
+ "24_basic_flag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_flag.png",
551
+ "24_basic_home" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_home.png",
552
+ "24_basic_options" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_options.png",
553
+ "24_basic_person_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_person_add.png",
554
+ "24_basic_person_group" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_person_group.png",
555
+ "24_basic_person" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_person.png",
556
+ "24_basic_power" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_power.png",
557
+ "24_basic_screen_rotation_lock" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_screen_rotation_lock.png",
558
+ "24_basic_screen_rotation" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_screen_rotation.png",
559
+ "24_basic_setting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_setting.png",
560
+ "24_basic_sort_a_z" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_sort_a_z.png",
561
+ "24_basic_sorting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_sorting.png",
562
+ "24_basic_ticket_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_ticket_full.png",
563
+ "24_basic_ticket_star_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_ticket_star_full.png",
564
+ "24_basic_ticket_star" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_ticket_star.png",
565
+ "24_basic_ticket" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_basic_ticket.png",
566
+ "16_chatting_comment_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_alert.png",
567
+ "16_chatting_comment_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_checked.png",
568
+ "16_chatting_comment_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_delete.png",
569
+ "16_chatting_comment_empty" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_empty.png",
570
+ "16_chatting_comment_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_minus.png",
571
+ "16_chatting_comment_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment_plus.png",
572
+ "16_chatting_comment" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_comment.png",
573
+ "16_chatting_q_and_a" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_q_and_a.png",
574
+ "16_chatting_sent" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_chatting_sent.png",
575
+ "24_chatting_comment_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_alert.png",
576
+ "24_chatting_comment_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_checked.png",
577
+ "24_chatting_comment_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_delete.png",
578
+ "24_chatting_comment_empty" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_empty.png",
579
+ "24_chatting_comment_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_minus.png",
580
+ "24_chatting_comment_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment_plus.png",
581
+ "24_chatting_comment" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_comment.png",
582
+ "24_chatting_q_and_a" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_q_and_a.png",
583
+ "24_chatting_sent" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_chatting_sent.png",
584
+ "16_connection_airplay" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_airplay.png",
585
+ "16_connection_bluetooth_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_bluetooth_no.png",
586
+ "16_connection_bluetooth" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_bluetooth.png",
587
+ "16_connection_broadcast" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_broadcast.png",
588
+ "16_connection_broadcasting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_broadcasting.png",
589
+ "16_connection_cast" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_cast.png",
590
+ "16_connection_link_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_link_disable.png",
591
+ "16_connection_link" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_link.png",
592
+ "16_connection_share_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_share_2.png",
593
+ "16_connection_share" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_share.png",
594
+ "16_connection_wi_fi_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_wi_fi_no.png",
595
+ "16_connection_wi_fi" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_connection_wi_fi.png",
596
+ "24_connection_airplay" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_airplay.png",
597
+ "24_connection_bluetooth_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_bluetooth_no.png",
598
+ "24_connection_bluetooth" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_bluetooth.png",
599
+ "24_connection_broadcast" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_broadcast.png",
600
+ "24_connection_broadcasting" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_broadcasting.png",
601
+ "24_connection_cast" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_cast.png",
602
+ "24_connection_link_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_link_disable.png",
603
+ "24_connection_link" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_link.png",
604
+ "24_connection_share_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_share_2.png",
605
+ "24_connection_share" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_share.png",
606
+ "24_connection_wi_fi_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_wi_fi_no.png",
607
+ "24_connection_wi_fi" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_connection_wi_fi.png",
608
+ "16_file_briefcase" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_briefcase.png",
609
+ "16_file_clipboard_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard_checked.png",
610
+ "16_file_clipboard_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard_delete.png",
611
+ "16_file_clipboard_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard_minus.png",
612
+ "16_file_clipboard_note" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard_note.png",
613
+ "16_file_clipboard_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard_plus.png",
614
+ "16_file_clipboard" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_clipboard.png",
615
+ "16_file_cloud_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud_checked.png",
616
+ "16_file_cloud_connect" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud_connect.png",
617
+ "16_file_cloud_download" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud_download.png",
618
+ "16_file_cloud_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud_no.png",
619
+ "16_file_cloud_upload" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud_upload.png",
620
+ "16_file_cloud" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_cloud.png",
621
+ "16_file_code" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_code.png",
622
+ "16_file_database" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_database.png",
623
+ "16_file_edit_in_box" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_edit_in_box.png",
624
+ "16_file_edit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_edit.png",
625
+ "16_file_file_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_checked.png",
626
+ "16_file_file_code" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_code.png",
627
+ "16_file_file_create" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_create.png",
628
+ "16_file_file_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_delete.png",
629
+ "16_file_file_download" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_download.png",
630
+ "16_file_file_draft" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_draft.png",
631
+ "16_file_file_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_minus.png",
632
+ "16_file_file_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_plus.png",
633
+ "16_file_file_scan" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_scan.png",
634
+ "16_file_file_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_search.png",
635
+ "16_file_file_shredder" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_shredder.png",
636
+ "16_file_file_text" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_text.png",
637
+ "16_file_file_upload" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file_upload.png",
638
+ "16_file_file" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_file.png",
639
+ "16_file_folder_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_checked.png",
640
+ "16_file_folder_cloud" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_cloud.png",
641
+ "16_file_folder_create" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_create.png",
642
+ "16_file_folder_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_delete.png",
643
+ "16_file_folder_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_forward.png",
644
+ "16_file_folder_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_minus.png",
645
+ "16_file_folder_music" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_music.png",
646
+ "16_file_folder_opened" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_opened.png",
647
+ "16_file_folder_photo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_photo.png",
648
+ "16_file_folder_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_plus.png",
649
+ "16_file_folder_zip" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder_zip.png",
650
+ "16_file_folder" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_folder.png",
651
+ "16_file_mail" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_mail.png",
652
+ "16_file_paperclip_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_paperclip_no.png",
653
+ "16_file_paperclip" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_file_paperclip.png",
654
+ "24_file_briefcase" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_briefcase.png",
655
+ "24_file_clipboard_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard_checked.png",
656
+ "24_file_clipboard_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard_delete.png",
657
+ "24_file_clipboard_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard_minus.png",
658
+ "24_file_clipboard_note" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard_note.png",
659
+ "24_file_clipboard_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard_plus.png",
660
+ "24_file_clipboard" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_clipboard.png",
661
+ "24_file_cloud_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud_checked.png",
662
+ "24_file_cloud_connect" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud_connect.png",
663
+ "24_file_cloud_download" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud_download.png",
664
+ "24_file_cloud_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud_no.png",
665
+ "24_file_cloud_upload" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud_upload.png",
666
+ "24_file_cloud" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_cloud.png",
667
+ "24_file_code" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_code.png",
668
+ "24_file_database" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_database.png",
669
+ "24_file_edit_in_box" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_edit_in_box.png",
670
+ "24_file_edit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_edit.png",
671
+ "24_file_file_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_checked.png",
672
+ "24_file_file_code" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_code.png",
673
+ "24_file_file_create" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_create.png",
674
+ "24_file_file_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_delete.png",
675
+ "24_file_file_download" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_download.png",
676
+ "24_file_file_draft" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_draft.png",
677
+ "24_file_file_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_minus.png",
678
+ "24_file_file_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_plus.png",
679
+ "24_file_file_scan" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_scan.png",
680
+ "24_file_file_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_search.png",
681
+ "24_file_file_shredder" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_shredder.png",
682
+ "24_file_file_text" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_text.png",
683
+ "24_file_file_upload" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file_upload.png",
684
+ "24_file_file" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_file.png",
685
+ "24_file_folder_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_checked.png",
686
+ "24_file_folder_cloud" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_cloud.png",
687
+ "24_file_folder_create" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_create.png",
688
+ "24_file_folder_delete" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_delete.png",
689
+ "24_file_folder_forward" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_forward.png",
690
+ "24_file_folder_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_minus.png",
691
+ "24_file_folder_music" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_music.png",
692
+ "24_file_folder_opened" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_opened.png",
693
+ "24_file_folder_photo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_photo.png",
694
+ "24_file_folder_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_plus.png",
695
+ "24_file_folder_zip" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder_zip.png",
696
+ "24_file_folder" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_folder.png",
697
+ "24_file_mail" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_mail.png",
698
+ "24_file_paperclip_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_paperclip_no.png",
699
+ "24_file_paperclip" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_file_paperclip.png",
700
+ "16_finance_atm" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_atm.png",
701
+ "16_finance_card_1" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_card_1.png",
702
+ "16_finance_card_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_card_2.png",
703
+ "16_finance_card_jcb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_card_jcb.png",
704
+ "16_finance_card_master" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_card_master.png",
705
+ "16_finance_card_visa" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_card_visa.png",
706
+ "16_finance_jcb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_jcb.png",
707
+ "16_finance_master" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_master.png",
708
+ "16_finance_paypass" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_paypass.png",
709
+ "16_finance_safe" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_safe.png",
710
+ "16_finance_visa" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_visa.png",
711
+ "16_finance_wallet" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_finance_wallet.png",
712
+ "24_finance_atm" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_atm.png",
713
+ "24_finance_card_1" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_card_1.png",
714
+ "24_finance_card_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_card_2.png",
715
+ "24_finance_card_jcb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_card_jcb.png",
716
+ "24_finance_card_master" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_card_master.png",
717
+ "24_finance_card_visa" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_card_visa.png",
718
+ "24_finance_jcb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_jcb.png",
719
+ "24_finance_master" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_master.png",
720
+ "24_finance_paypass" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_paypass.png",
721
+ "24_finance_safe" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_safe.png",
722
+ "24_finance_visa" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_visa.png",
723
+ "24_finance_wallet" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_finance_wallet.png",
724
+ "16_gadgets_devices" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_devices.png",
725
+ "16_gadgets_ipad" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_ipad.png",
726
+ "16_gadgets_iphone" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_iphone.png",
727
+ "16_gadgets_keyboard" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_keyboard.png",
728
+ "16_gadgets_laptop" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_laptop.png",
729
+ "16_gadgets_memory_card" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_memory_card.png",
730
+ "16_gadgets_mobile" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_mobile.png",
731
+ "16_gadgets_monitor" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_monitor.png",
732
+ "16_gadgets_mouse" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_mouse.png",
733
+ "16_gadgets_print" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_print.png",
734
+ "16_gadgets_server" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_server.png",
735
+ "16_gadgets_soft_disk" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_soft_disk.png",
736
+ "16_gadgets_usb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_gadgets_usb.png",
737
+ "24_gadgets_devices" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_devices.png",
738
+ "24_gadgets_ipad" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_ipad.png",
739
+ "24_gadgets_iphone" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_iphone.png",
740
+ "24_gadgets_keyboard" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_keyboard.png",
741
+ "24_gadgets_laptop" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_laptop.png",
742
+ "24_gadgets_memory_card" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_memory_card.png",
743
+ "24_gadgets_mobile" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_mobile.png",
744
+ "24_gadgets_monitor" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_monitor.png",
745
+ "24_gadgets_mouse" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_mouse.png",
746
+ "24_gadgets_print" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_print.png",
747
+ "24_gadgets_server" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_server.png",
748
+ "24_gadgets_soft_disk" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_soft_disk.png",
749
+ "24_gadgets_usb" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_gadgets_usb.png",
750
+ "16_maps_360" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_360.png",
751
+ "16_maps_compass" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_compass.png",
752
+ "16_maps_direction_45" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_direction_45.png",
753
+ "16_maps_direction" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_direction.png",
754
+ "16_maps_globe" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_globe.png",
755
+ "16_maps_location_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_location_no.png",
756
+ "16_maps_location" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_location.png",
757
+ "16_maps_map_pin_location" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_map_pin_location.png",
758
+ "16_maps_map" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_map.png",
759
+ "16_maps_panorama" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_panorama.png",
760
+ "16_maps_pin_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_add.png",
761
+ "16_maps_pin_edit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_edit.png",
762
+ "16_maps_pin_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_no.png",
763
+ "16_maps_pin_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_question.png",
764
+ "16_maps_pin_round" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_round.png",
765
+ "16_maps_pin_start" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin_start.png",
766
+ "16_maps_pin" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_pin.png",
767
+ "16_maps_radar" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_radar.png",
768
+ "16_maps_route" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_route.png",
769
+ "16_maps_zoom_in" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_zoom_in.png",
770
+ "16_maps_zoom_out" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_maps_zoom_out.png",
771
+ "24_maps_360" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_360.png",
772
+ "24_maps_compass" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_compass.png",
773
+ "24_maps_direction_45" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_direction_45.png",
774
+ "24_maps_direction" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_direction.png",
775
+ "24_maps_globe" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_globe.png",
776
+ "24_maps_location_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_location_no.png",
777
+ "24_maps_location" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_location.png",
778
+ "24_maps_map_pin_location" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_map_pin_location.png",
779
+ "24_maps_map" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_map.png",
780
+ "24_maps_panorama" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_panorama.png",
781
+ "24_maps_pin_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_add.png",
782
+ "24_maps_pin_edit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_edit.png",
783
+ "24_maps_pin_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_no.png",
784
+ "24_maps_pin_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_question.png",
785
+ "24_maps_pin_round" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_round.png",
786
+ "24_maps_pin_start" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin_start.png",
787
+ "24_maps_pin" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_pin.png",
788
+ "24_maps_radar" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_radar.png",
789
+ "24_maps_route" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_route.png",
790
+ "24_maps_zoom_in" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_zoom_in.png",
791
+ "24_maps_zoom_out" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_maps_zoom_out.png",
792
+ "16_media_camera_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_camera_add.png",
793
+ "16_media_camera_linked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_camera_linked.png",
794
+ "16_media_camera_switch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_camera_switch.png",
795
+ "16_media_camera" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_camera.png",
796
+ "16_media_cd" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_cd.png",
797
+ "16_media_color_picker" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_color_picker.png",
798
+ "16_media_control_point" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_control_point.png",
799
+ "16_media_flash_auto" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_flash_auto.png",
800
+ "16_media_flash_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_flash_off.png",
801
+ "16_media_flash_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_flash_on.png",
802
+ "16_media_flashlight_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_flashlight_disable.png",
803
+ "16_media_focus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_focus.png",
804
+ "16_media_leak_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_leak_add.png",
805
+ "16_media_media_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_media_add.png",
806
+ "16_media_media_collection" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_media_collection.png",
807
+ "16_media_media_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_media_search.png",
808
+ "16_media_media" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_media.png",
809
+ "16_media_player_pause_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_player_pause_circle.png",
810
+ "16_media_player_play_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_player_play_circle.png",
811
+ "16_media_player_stop_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_player_stop_circle.png",
812
+ "16_media_repeat" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_repeat.png",
813
+ "16_media_rotate_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_rotate_left.png",
814
+ "16_media_rotate_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_rotate_right.png",
815
+ "16_media_shuffle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_shuffle.png",
816
+ "16_media_shutter_speed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_shutter_speed.png",
817
+ "16_media_slideshow" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_slideshow.png",
818
+ "16_media_timelapse" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_timelapse.png",
819
+ "16_media_timer_3s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_timer_3s.png",
820
+ "16_media_timer_10s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_timer_10s.png",
821
+ "16_media_timer_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_timer_off.png",
822
+ "16_media_timer" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_timer.png",
823
+ "16_media_video" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_video.png",
824
+ "16_media_volume_high" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_volume_high.png",
825
+ "16_media_volume_low" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_volume_low.png",
826
+ "16_media_volume_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_volume_no.png",
827
+ "16_media_volume_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_volume_off.png",
828
+ "16_media_volume" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_media_volume.png",
829
+ "24_media_camera_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_camera_add.png",
830
+ "24_media_camera_linked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_camera_linked.png",
831
+ "24_media_camera_switch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_camera_switch.png",
832
+ "24_media_camera" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_camera.png",
833
+ "24_media_cd" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_cd.png",
834
+ "24_media_color_picker" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_color_picker.png",
835
+ "24_media_control_point" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_control_point.png",
836
+ "24_media_flash_auto" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flash_auto.png",
837
+ "24_media_flash_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flash_off.png",
838
+ "24_media_flash_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flash_on.png",
839
+ "24_media_flashlight_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flashlight_disable.png",
840
+ "24_media_flashlight_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flashlight_off.png",
841
+ "24_media_flashlight_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_flashlight_on.png",
842
+ "24_media_focus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_focus.png",
843
+ "24_media_leak_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_leak_add.png",
844
+ "24_media_media_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_media_add.png",
845
+ "24_media_media_collection" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_media_collection.png",
846
+ "24_media_media_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_media_search.png",
847
+ "24_media_media" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_media.png",
848
+ "24_media_player_pause_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_player_pause_circle.png",
849
+ "24_media_player_play_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_player_play_circle.png",
850
+ "24_media_player_stop_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_player_stop_circle.png",
851
+ "24_media_repeat" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_repeat.png",
852
+ "24_media_rotate_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_rotate_left.png",
853
+ "24_media_rotate_right" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_rotate_right.png",
854
+ "24_media_shuffle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_shuffle.png",
855
+ "24_media_shutter_speed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_shutter_speed.png",
856
+ "24_media_slideshow" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_slideshow.png",
857
+ "24_media_timelapse" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_timelapse.png",
858
+ "24_media_timer_3s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_timer_3s.png",
859
+ "24_media_timer_10s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_timer_10s.png",
860
+ "24_media_timer_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_timer_off.png",
861
+ "24_media_timer" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_timer.png",
862
+ "24_media_video" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_video.png",
863
+ "24_media_volume_high" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_volume_high.png",
864
+ "24_media_volume_low" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_volume_low.png",
865
+ "24_media_volume_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_volume_no.png",
866
+ "24_media_volume_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_volume_off.png",
867
+ "24_media_volume" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_media_volume.png",
868
+ "momomain_account" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_account.png",
869
+ "momomain_barcode_s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_barcode_s.png",
870
+ "momomain_barcode" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_barcode.png",
871
+ "momomain_chat" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_chat.png",
872
+ "momomain_gift" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_gift.png",
873
+ "momomain_history" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_history.png",
874
+ "momomain_momo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_momo.png",
875
+ "momomain_money_in_s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_money_in_s.png",
876
+ "momomain_money_in" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_money_in.png",
877
+ "momomain_scan_code_s" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_scan_code_s.png",
878
+ "momomain_scan_code" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_scan_code.png",
879
+ "momomain_withdraw_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_withdraw_2.png",
880
+ "momomain_withdraw" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_withdraw.png",
881
+ "16_navigation_app" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_app.png",
882
+ "16_navigation_cash_in" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_cash_in.png",
883
+ "16_navigation_close_circle_full_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_close_circle_full_2.png",
884
+ "16_navigation_close_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_close_circle_full.png",
885
+ "16_navigation_close_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_close_circle.png",
886
+ "16_navigation_close" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_close.png",
887
+ "16_navigation_full_screen_exit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_full_screen_exit.png",
888
+ "16_navigation_full_screen" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_full_screen.png",
889
+ "16_navigation_log_out" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_log_out.png",
890
+ "16_navigation_menu" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_menu.png",
891
+ "16_navigation_minus_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_minus_circle_full.png",
892
+ "16_navigation_minus_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_minus_circle.png",
893
+ "16_navigation_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_minus.png",
894
+ "16_navigation_more_horiz" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_more_horiz.png",
895
+ "16_navigation_more_vert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_more_vert.png",
896
+ "16_navigation_plus_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_plus_circle_full.png",
897
+ "16_navigation_plus_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_plus_circle.png",
898
+ "16_navigation_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_plus.png",
899
+ "16_navigation_qrcode" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_qrcode.png",
900
+ "16_navigation_scan" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_scan.png",
901
+ "16_navigation_search_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_search_add.png",
902
+ "16_navigation_search_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_search_minus.png",
903
+ "16_navigation_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_search.png",
904
+ "16_navigation_unfold_less" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_unfold_less.png",
905
+ "16_navigation_unfold_more" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_navigation_unfold_more.png",
906
+ "24_navigation_app" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_app.png",
907
+ "24_navigation_cash_in" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_cash_in.png",
908
+ "24_navigation_close_circle_full_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close_circle_full_2.png",
909
+ "24_navigation_close_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close_circle_full.png",
910
+ "24_navigation_close_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close_circle.png",
911
+ "24_navigation_close" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close.png",
912
+ "24_navigation_full_screen_exit" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_full_screen_exit.png",
913
+ "24_navigation_full_screen" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_full_screen.png",
914
+ "24_navigation_log_out" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_log_out.png",
915
+ "24_navigation_menu" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_menu.png",
916
+ "24_navigation_minus_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_minus_circle_full.png",
917
+ "24_navigation_minus_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_minus_circle.png",
918
+ "24_navigation_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_minus.png",
919
+ "24_navigation_more_horiz" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_more_horiz.png",
920
+ "24_navigation_more_vert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_more_vert.png",
921
+ "24_navigation_plus_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_plus_circle_full.png",
922
+ "24_navigation_plus_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_plus_circle.png",
923
+ "24_navigation_plus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_plus.png",
924
+ "24_navigation_qrcode" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_qrcode.png",
925
+ "24_navigation_scan" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_scan.png",
926
+ "24_navigation_search_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_search_add.png",
927
+ "24_navigation_search_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_search_minus.png",
928
+ "24_navigation_search" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_search.png",
929
+ "24_navigation_unfold_less" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_unfold_less.png",
930
+ "24_navigation_unfold_more" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_unfold_more.png",
931
+ "16_notifications_alert_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_alert_octagon.png",
932
+ "16_notifications_alert_triangle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_alert_triangle.png",
933
+ "16_notifications_app_notification" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_app_notification.png",
934
+ "16_notifications_bell_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell_add.png",
935
+ "16_notifications_bell_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell_checked.png",
936
+ "16_notifications_bell_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell_full.png",
937
+ "16_notifications_bell_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell_minus.png",
938
+ "16_notifications_bell_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell_no.png",
939
+ "16_notifications_bell" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_bell.png",
940
+ "16_notifications_check_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_check_circle_full.png",
941
+ "16_notifications_check_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_check_circle.png",
942
+ "16_notifications_check_double" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_check_double.png",
943
+ "16_notifications_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_check.png",
944
+ "16_notifications_circle_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_circle_alert.png",
945
+ "16_notifications_circle_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_circle_question.png",
946
+ "16_notifications_icon16_info" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_icon16_info.png",
947
+ "16_notifications_minus_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_minus_octagon.png",
948
+ "16_notifications_x_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_notifications_x_octagon.png",
949
+ "24_notifications_alert_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_alert_octagon.png",
950
+ "24_notifications_alert_triangle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_alert_triangle.png",
951
+ "24_notifications_app_notification" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_app_notification.png",
952
+ "24_notifications_bell_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell_add.png",
953
+ "24_notifications_bell_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell_checked.png",
954
+ "24_notifications_bell_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell_full.png",
955
+ "24_notifications_bell_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell_minus.png",
956
+ "24_notifications_bell_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell_no.png",
957
+ "24_notifications_bell" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_bell.png",
958
+ "24_notifications_check_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_check_circle_full.png",
959
+ "24_notifications_check_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_check_circle.png",
960
+ "24_notifications_check_double" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_check_double.png",
961
+ "24_notifications_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_check.png",
962
+ "24_notifications_circle_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_circle_alert.png",
963
+ "24_notifications_circle_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_circle_question.png",
964
+ "24_notifications_icon24_info" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_icon24_info.png",
965
+ "24_notifications_minus_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_minus_octagon.png",
966
+ "24_notifications_x_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_notifications_x_octagon.png",
967
+ "32_notifications_alert_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_alert_octagon.png",
968
+ "32_notifications_alert_triangle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_alert_triangle.png",
969
+ "32_notifications_app_notification" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_app_notification.png",
970
+ "32_notifications_bell_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell_add.png",
971
+ "32_notifications_bell_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell_checked.png",
972
+ "32_notifications_bell_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell_full.png",
973
+ "32_notifications_bell_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell_minus.png",
974
+ "32_notifications_bell_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell_no.png",
975
+ "32_notifications_bell" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_bell.png",
976
+ "32_notifications_check_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_check_circle_full.png",
977
+ "32_notifications_check_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_check_circle.png",
978
+ "32_notifications_check_double" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_check_double.png",
979
+ "32_notifications_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_check.png",
980
+ "32_notifications_circle_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_circle_alert.png",
981
+ "32_notifications_circle_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_circle_question.png",
982
+ "32_notifications_icon32_info" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_icon32_info.png",
983
+ "32_notifications_minus_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_minus_octagon.png",
984
+ "32_notifications_x_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/32_notifications_x_octagon.png",
985
+ "48_notifications_alert_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_alert_octagon.png",
986
+ "48_notifications_alert_triangle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_alert_triangle.png",
987
+ "48_notifications_app_notification" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_app_notification.png",
988
+ "48_notifications_bell_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell_add.png",
989
+ "48_notifications_bell_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell_checked.png",
990
+ "48_notifications_bell_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell_full.png",
991
+ "48_notifications_bell_minus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell_minus.png",
992
+ "48_notifications_bell_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell_no.png",
993
+ "48_notifications_bell" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_bell.png",
994
+ "48_notifications_check_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_check_circle_full.png",
995
+ "48_notifications_check_circle" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_check_circle.png",
996
+ "48_notifications_check_double" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_check_double.png",
997
+ "48_notifications_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_check.png",
998
+ "48_notifications_circle_alert" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_circle_alert.png",
999
+ "48_notifications_circle_question" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_circle_question.png",
1000
+ "48_notifications_icon48_info" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_icon48_info.png",
1001
+ "48_notifications_minus_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_minus_octagon.png",
1002
+ "48_notifications_x_octagon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/48_notifications_x_octagon.png",
1003
+ "16_phone_call_icon16_phone_call_phone" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_icon16_phone_call_phone.png",
1004
+ "16_phone_call_mic_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_mic_off.png",
1005
+ "16_phone_call_mic_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_mic_on.png",
1006
+ "16_phone_call_phone_call_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_add.png",
1007
+ "16_phone_call_phone_call_decline" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_decline.png",
1008
+ "16_phone_call_phone_call_end" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_end.png",
1009
+ "16_phone_call_phone_call_forwarded" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_forwarded.png",
1010
+ "16_phone_call_phone_call_hash" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_hash.png",
1011
+ "16_phone_call_phone_call_hold" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_hold.png",
1012
+ "16_phone_call_phone_call_incoming" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_incoming.png",
1013
+ "16_phone_call_phone_call_missed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_missed.png",
1014
+ "16_phone_call_phone_call_muted" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_muted.png",
1015
+ "16_phone_call_phone_call_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_no.png",
1016
+ "16_phone_call_phone_call_numbers" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_numbers.png",
1017
+ "16_phone_call_phone_call_outcoming" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_outcoming.png",
1018
+ "16_phone_call_phone_call_phone_calling" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_phone_calling.png",
1019
+ "16_phone_call_phone_call_received" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_received.png",
1020
+ "16_phone_call_phone_call_voicemail" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_phone_call_phone_call_voicemail.png",
1021
+ "24_phone_call_icon24_phone_call_phone" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_icon24_phone_call_phone.png",
1022
+ "24_phone_call_mic_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_mic_off.png",
1023
+ "24_phone_call_mic_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_mic_on.png",
1024
+ "24_phone_call_phone_call_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_add.png",
1025
+ "24_phone_call_phone_call_decline" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_decline.png",
1026
+ "24_phone_call_phone_call_end" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_end.png",
1027
+ "24_phone_call_phone_call_forwarded" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_forwarded.png",
1028
+ "24_phone_call_phone_call_hash" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_hash.png",
1029
+ "24_phone_call_phone_call_hold" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_hold.png",
1030
+ "24_phone_call_phone_call_incoming" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_incoming.png",
1031
+ "24_phone_call_phone_call_missed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_missed.png",
1032
+ "24_phone_call_phone_call_muted" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_muted.png",
1033
+ "24_phone_call_phone_call_no" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_no.png",
1034
+ "24_phone_call_phone_call_numbers" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_numbers.png",
1035
+ "24_phone_call_phone_call_outcoming" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_outcoming.png",
1036
+ "24_phone_call_phone_call_phone_calling" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_phone_calling.png",
1037
+ "24_phone_call_phone_call_received" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_received.png",
1038
+ "24_phone_call_phone_call_voicemail" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_phone_call_phone_call_voicemail.png",
1039
+ "16_reaction_emoji_happy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_emoji_happy.png",
1040
+ "16_reaction_emoji_sad" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_emoji_sad.png",
1041
+ "16_reaction_emoji_satisfy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_emoji_satisfy.png",
1042
+ "16_reaction_heart_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_heart_disable.png",
1043
+ "16_reaction_heart_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_heart_full.png",
1044
+ "16_reaction_heart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_heart.png",
1045
+ "16_reaction_like_dislike" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_like_dislike.png",
1046
+ "16_reaction_like" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_like.png",
1047
+ "16_reaction_star_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_star_full.png",
1048
+ "16_reaction_star_half" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_star_half.png",
1049
+ "16_reaction_star_non" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_reaction_star_non.png",
1050
+ "24_reaction_emoji_happy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_emoji_happy.png",
1051
+ "24_reaction_emoji_sad" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_emoji_sad.png",
1052
+ "24_reaction_emoji_satisfy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_emoji_satisfy.png",
1053
+ "24_reaction_heart_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_heart_disable.png",
1054
+ "24_reaction_heart_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_heart_full.png",
1055
+ "24_reaction_heart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_heart.png",
1056
+ "24_reaction_like_dislike" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_like_dislike.png",
1057
+ "24_reaction_like" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_like.png",
1058
+ "24_reaction_star_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_star_full.png",
1059
+ "24_reaction_star_half" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_star_half.png",
1060
+ "24_reaction_star_non" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_reaction_star_non.png",
1061
+ "16_shopping_bag_shopping" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_bag_shopping.png",
1062
+ "16_shopping_bag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_bag.png",
1063
+ "16_shopping_cart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_cart.png",
1064
+ "16_shopping_coupon_star" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_coupon_star.png",
1065
+ "16_shopping_coupon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_coupon.png",
1066
+ "16_shopping_fast_food" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_fast_food.png",
1067
+ "16_shopping_gift_card" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_gift_card.png",
1068
+ "16_shopping_restaurant" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_restaurant.png",
1069
+ "16_shopping_store" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_store.png",
1070
+ "16_shopping_tag_love" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_tag_love.png",
1071
+ "16_shopping_tag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_shopping_tag.png",
1072
+ "24_shopping_bag_shopping" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_bag_shopping.png",
1073
+ "24_shopping_bag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_bag.png",
1074
+ "24_shopping_cart" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_cart.png",
1075
+ "24_shopping_coupon_star" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_coupon_star.png",
1076
+ "24_shopping_coupon" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_coupon.png",
1077
+ "24_shopping_fast_food" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_fast_food.png",
1078
+ "24_shopping_gift_card" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_gift_card.png",
1079
+ "24_shopping_restaurant" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_restaurant.png",
1080
+ "24_shopping_store" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_store.png",
1081
+ "24_shopping_tag_love" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_tag_love.png",
1082
+ "24_shopping_tag" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_shopping_tag.png",
1083
+ "16_time_alarm_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_alarm_add.png",
1084
+ "16_time_alarm_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_alarm_check.png",
1085
+ "16_time_alarm_remove" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_alarm_remove.png",
1086
+ "16_time_alarm" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_alarm.png",
1087
+ "16_time_calendar_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_calendar_add.png",
1088
+ "16_time_calendar_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_calendar_checked.png",
1089
+ "16_time_calendar_remove" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_calendar_remove.png",
1090
+ "16_time_calendar_x" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_calendar_x.png",
1091
+ "16_time_calendar" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_calendar.png",
1092
+ "16_time_clock_reset" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_clock_reset.png",
1093
+ "16_time_clock" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_clock.png",
1094
+ "16_time_note" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_note.png",
1095
+ "16_time_stop_watch_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_stop_watch_disable.png",
1096
+ "16_time_stop_watch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_stop_watch.png",
1097
+ "16_time_watch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_time_watch.png",
1098
+ "24_time_alarm_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_alarm_add.png",
1099
+ "24_time_alarm_check" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_alarm_check.png",
1100
+ "24_time_alarm_remove" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_alarm_remove.png",
1101
+ "24_time_alarm" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_alarm.png",
1102
+ "24_time_calendar_add" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_calendar_add.png",
1103
+ "24_time_calendar_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_calendar_checked.png",
1104
+ "24_time_calendar_remove" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_calendar_remove.png",
1105
+ "24_time_calendar_x" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_calendar_x.png",
1106
+ "24_time_calendar" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_calendar.png",
1107
+ "24_time_clock_reset" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_clock_reset.png",
1108
+ "24_time_clock" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_clock.png",
1109
+ "24_time_note" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_note.png",
1110
+ "24_time_stop_watch_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_stop_watch_disable.png",
1111
+ "24_time_stop_watch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_stop_watch.png",
1112
+ "24_time_watch" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_time_watch.png",
1113
+ "24_toggle_check_box_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_check_box_checked.png",
1114
+ "24_toggle_check_box_default" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_check_box_default.png",
1115
+ "24_toggle_check_box_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_check_box_disable.png",
1116
+ "24_toggle_radio_default" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_radio_default.png",
1117
+ "24_toggle_radio_selected" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_radio_selected.png",
1118
+ "24_toggle_turn_off_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_turn_off_disable.png",
1119
+ "24_toggle_turn_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_turn_off.png",
1120
+ "24_toggle_turn_on_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_turn_on_disable.png",
1121
+ "24_toggle_turn_on" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_toggle_turn_on.png",
1122
+ "16_travel_bed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_bed.png",
1123
+ "16_travel_bike" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_bike.png",
1124
+ "16_travel_bus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_bus.png",
1125
+ "16_travel_car" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_car.png",
1126
+ "16_travel_gas_station" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_gas_station.png",
1127
+ "16_travel_laundry" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_laundry.png",
1128
+ "16_travel_parking" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_parking.png",
1129
+ "16_travel_people_baby" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_baby.png",
1130
+ "16_travel_people_college" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_college.png",
1131
+ "16_travel_people_family" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_family.png",
1132
+ "16_travel_people_kid" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_kid.png",
1133
+ "16_travel_people_man" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_man.png",
1134
+ "16_travel_people_old" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_old.png",
1135
+ "16_travel_people_run" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_run.png",
1136
+ "16_travel_people_walk" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_walk.png",
1137
+ "16_travel_people_wheelchair" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_wheelchair.png",
1138
+ "16_travel_people_woman" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_people_woman.png",
1139
+ "16_travel_plane_landing" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_plane_landing.png",
1140
+ "16_travel_plane_take_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_plane_take_off.png",
1141
+ "16_travel_plane" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_plane.png",
1142
+ "16_travel_seat_comfort" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_seat_comfort.png",
1143
+ "16_travel_seat_economy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_seat_economy.png",
1144
+ "16_travel_seat_extra_seat" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_seat_extra_seat.png",
1145
+ "16_travel_subway" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_subway.png",
1146
+ "16_travel_taxi" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_taxi.png",
1147
+ "16_travel_train" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_train.png",
1148
+ "16_travel_tram" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_tram.png",
1149
+ "16_travel_van" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_van.png",
1150
+ "16_travel_wc" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_wc.png",
1151
+ "16_travel_women_pregnant" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/16_travel_women_pregnant.png",
1152
+ "24_travel_bed" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_bed.png",
1153
+ "24_travel_bike" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_bike.png",
1154
+ "24_travel_bus" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_bus.png",
1155
+ "24_travel_car" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_car.png",
1156
+ "24_travel_gas_station" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_gas_station.png",
1157
+ "24_travel_laundry" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_laundry.png",
1158
+ "24_travel_parking" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_parking.png",
1159
+ "24_travel_people_baby" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_baby.png",
1160
+ "24_travel_people_college" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_college.png",
1161
+ "24_travel_people_family" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_family.png",
1162
+ "24_travel_people_kid" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_kid.png",
1163
+ "24_travel_people_man" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_man.png",
1164
+ "24_travel_people_old" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_old.png",
1165
+ "24_travel_people_run" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_run.png",
1166
+ "24_travel_people_walk" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_walk.png",
1167
+ "24_travel_people_wheelchair" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_wheelchair.png",
1168
+ "24_travel_people_woman" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_people_woman.png",
1169
+ "24_travel_plane_landing" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_plane_landing.png",
1170
+ "24_travel_plane_take_off" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_plane_take_off.png",
1171
+ "24_travel_plane" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_plane.png",
1172
+ "24_travel_seat_comfort" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_seat_comfort.png",
1173
+ "24_travel_seat_economy" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_seat_economy.png",
1174
+ "24_travel_seat_extra_seat" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_seat_extra_seat.png",
1175
+ "24_travel_subway" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_subway.png",
1176
+ "24_travel_taxi" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_taxi.png",
1177
+ "24_travel_train_1" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_train_1.png",
1178
+ "24_travel_train_2" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_train_2.png",
1179
+ "24_travel_tram" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_tram.png",
1180
+ "24_travel_van" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_van.png",
1181
+ "24_travel_wc" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_wc.png",
1182
+ "24_travel_women_pregnant" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_travel_women_pregnant.png",
1183
+ "cinema_theaters_picking_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_theaters_picking_active.png",
1184
+ "cinema_theaters_picking_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_theaters_picking_disable.png",
1185
+ "cinema_ticket_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_ticket_active.png",
1186
+ "cinema_ticket_disable" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_ticket_disable.png",
1187
+ "cinema_ticket_my_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_ticket_my_active.png",
1188
+ "cinema_ticket_my_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/cinema_ticket_my_inactive.png",
1189
+ "home_friends_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_friends_active.png",
1190
+ "home_friends_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_friends_inactive.png",
1191
+ "home_history_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_history_active.png",
1192
+ "home_history_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_history_inactive.png",
1193
+ "home_momo_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_momo_active.png",
1194
+ "home_momo_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_momo_inactive.png",
1195
+ "home_promotions_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_promotions_active.png",
1196
+ "home_promotions_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_promotions_inactive.png",
1197
+ "home_wallet_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/home_wallet_inactive.png",
1198
+ "shop_online_address_book_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_address_book_active.png",
1199
+ "shop_online_address_book_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_address_book_inactive.png",
1200
+ "shop_online_favorite_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_favorite_active.png",
1201
+ "shop_online_favorite_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_favorite_inactive.png",
1202
+ "shop_online_home_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_home_active.png",
1203
+ "shop_online_home_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_home_inactive.png",
1204
+ "shop_online_order_active" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_order_active.png",
1205
+ "shop_online_order_inactive" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/shop_online_order_inactive.png",
1206
+ "24_ic_public" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_ic_public.png",
1207
+ "24_ic_person_checked" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_ic_person_checked.png",
1208
+ "ic_back_android" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_back_android.png",
1209
+ "ic_back_ios" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_back_ios.png",
1210
+ "24_security_eye_off" to "https://img.mservice.com.vn/app/img/kits/24_security_eye_off.png",
1211
+ "32_security_key" to "https://img.mservice.com.vn/app/img/kits/32_security_key.png",
1212
+ "16_security_fingerprint" to "https://img.mservice.com.vn/app/img/kits/16_security_fingerprint.png",
1213
+ "16_security_eye_off" to "https://img.mservice.com.vn/app/img/kits/16_security_eye_off.png",
1214
+ "32_security_lock" to "https://img.mservice.com.vn/app/img/kits/32_security_lock.png",
1215
+ "32_security_shield_check" to "https://img.mservice.com.vn/app/img/kits/32_security_shield_check.png",
1216
+ "24_security_lock_no" to "https://img.mservice.com.vn/app/img/kits/24_security_lock_no.png",
1217
+ "24_security_shield" to "https://img.mservice.com.vn/app/img/kits/24_security_shield.png",
1218
+ "16_security_lock_no" to "https://img.mservice.com.vn/app/img/kits/16_security_lock_no.png",
1219
+ "16_security_unlock" to "https://img.mservice.com.vn/app/img/kits/16_security_unlock.png",
1220
+ "32_security_lock_no" to "https://img.mservice.com.vn/app/img/kits/32_security_lock_no.png",
1221
+ "48_notifications_bell_alert" to "https://img.mservice.com.vn/app/img/kits/48_notifications_bell_alert.png",
1222
+ "16_security_shield_disable" to "https://img.mservice.com.vn/app/img/kits/16_security_shield_disable.png",
1223
+ "32_security_fingerprint" to "https://img.mservice.com.vn/app/img/kits/32_security_fingerprint.png",
1224
+ "32_security_shield" to "https://img.mservice.com.vn/app/img/kits/32_security_shield.png",
1225
+ "16_security_key_no" to "https://img.mservice.com.vn/app/img/kits/16_security_key_no.png",
1226
+ "16_security_shield_check" to "https://img.mservice.com.vn/app/img/kits/16_security_shield_check.png",
1227
+ "32_security_eye_off" to "https://img.mservice.com.vn/app/img/kits/32_security_eye_off.png",
1228
+ "16_security_key" to "https://img.mservice.com.vn/app/img/kits/16_security_key.png",
1229
+ "24_security_fingerprint" to "https://img.mservice.com.vn/app/img/kits/24_security_fingerprint.png",
1230
+ "24_security_lock" to "https://img.mservice.com.vn/app/img/kits/24_security_lock.png",
1231
+ "24_security_shield_check" to "https://img.mservice.com.vn/app/img/kits/24_security_shield_check.png",
1232
+ "24_security_key_no" to "https://img.mservice.com.vn/app/img/kits/24_security_key_no.png",
1233
+ "24_security_key" to "https://img.mservice.com.vn/app/img/kits/24_security_key.png",
1234
+ "24_security_verifiedface_id" to "https://img.mservice.com.vn/app/img/kits/24_security_verifiedface_id.png",
1235
+ "32_security_verifiedface_id" to "https://img.mservice.com.vn/app/img/kits/32_security_verifiedface_id.png",
1236
+ "24_security_eye_open" to "https://img.mservice.com.vn/app/img/kits/24_security_eye_open.png",
1237
+ "16_security_verifiedface_id" to "https://img.mservice.com.vn/app/img/kits/16_security_verifiedface_id.png",
1238
+ "32_security_eye_open" to "https://img.mservice.com.vn/app/img/kits/32_security_eye_open.png",
1239
+ "16_security_eye_open" to "https://img.mservice.com.vn/app/img/kits/16_security_eye_open.png",
1240
+ "32_security_unlock" to "https://img.mservice.com.vn/app/img/kits/32_security_unlock.png",
1241
+ "24_security_shield_disable" to "https://img.mservice.com.vn/app/img/kits/24_security_shield_disable.png",
1242
+ "32_security_shield_disable" to "https://img.mservice.com.vn/app/img/kits/32_security_shield_disable.png",
1243
+ "16_notifications_bell_alert" to "https://img.mservice.com.vn/app/img/kits/16_notifications_bell_alert.png",
1244
+ "24_security_unlock" to "https://img.mservice.com.vn/app/img/kits/24_security_unlock.png",
1245
+ "16_security_shield" to "https://img.mservice.com.vn/app/img/kits/16_security_shield.png",
1246
+ "32_notifications_bell_alert" to "https://img.mservice.com.vn/app/img/kits/32_notifications_bell_alert.png",
1247
+ "32_security_key_no" to "https://img.mservice.com.vn/app/img/kits/32_security_key_no.png",
1248
+ "24_notifications_bell_alert" to "https://img.mservice.com.vn/app/img/kits/24_notifications_bell_alert.png",
1249
+ "16_security_lock" to "https://img.mservice.com.vn/app/img/kits/16_security_lock.png",
1250
+ "ic_close_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_close_circle.png",
1251
+ "ic_close_circle_full" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close_circle_full.png",
1252
+ "ic_close_x_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/24_navigation_close.png",
1253
+ "ic_check_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_check_green.png",
1254
+ "ic_warning_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_warning.png",
1255
+ "ic_location_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_location_mark.png",
1256
+ "ic_round_momo_tiny" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_image/ic_momo.png",
1257
+ "ic_checkbox_checked_24" to "https://img.mservice.com.vn/app/img/kits/ic_checkbox_checked_24.png",
1258
+ "ic_checkbox_unchecked_24" to "https://img.mservice.com.vn/app/img/kits/ic_checkbox_unchecked_24.png",
1259
+ "ic_check_mini" to "https://img.mservice.com.vn/app/img/kits/ic_check_mini.png",
1260
+ "ic_eye_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_eye.png",
1261
+ "ic_order_film_gif" to "https://img.mservice.com.vn/app/img/kits/ic_order_film.gif",
1262
+ "ic_backspace_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_backspace.png",
1263
+ "ic_momo" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_image/ic_common_logo_momo.png",
1264
+ "ic_line" to "https://img.mservice.com.vn/app/img/kits/ic_line.png",
1265
+ "ic_momo_small_bottom_left" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_image/ic_momo_small.png",
1266
+ "ic_arrow_drop_down_24" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_down.png",
1267
+ "ic_discount_voucher" to "https://img.mservice.com.vn/app/img/kits/ic_discount_voucher.png",
1268
+ "ic_arrow_next" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_arrow_next.png",
1269
+ "ic_back_arrow" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_arrow_back.png",
1270
+ "ic_star_selected" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_star_yellow.png",
1271
+ "ic_star" to "https://img.mservice.com.vn/app/img/kits/ic_star_big.png",
1272
+ "ic_success_process_white" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/ic_check_white.png",
1273
+ "ic_camera_circle" to "https://img.mservice.com.vn/app/img/kits/ic_camera_circle.png",
1274
+ "ic_transaction_history_status_fail" to "https://img.mservice.com.vn/app/img/kits/ic_status_fail.png",
1275
+ "ic_transaction_history_status_success" to "https://img.mservice.com.vn/app/img/kits/ic_status_success.png",
1276
+ "ic_transaction_history_status_processing" to "https://img.mservice.com.vn/app/img/kits/ic_status_processing.png",
1277
+ "ic_film_pin" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_image/ic_film_Pin.png",
1278
+ "ic_film_ticket" to "https://img.mservice.io/momo_app_v2/new_version/img/appx_image/ic_ticket.png",
1279
+ "ic_warning" to "https://img.mservice.com.vn/app/img/kits/ic_warning.png",
1280
+ "ic_plus" to "https://img.mservice.com.vn/app/img/kits/ic_plus.png",
1281
+ "ic_calendar" to "https://img.mservice.com.vn/app/img/kits/ic_calendar.png",
1282
+ "ic_assistant" to "https://img.mservice.com.vn/app/img/kits/ic_assistant.png",
1283
+ "ic_arrow_assistant" to "https://img.mservice.com.vn/app/img/kits/ic_arrow_assistant.png",
1284
+ "icon_location_snakebar" to "https://img.mservice.com.vn/app/img/kits/icon_location_snakebar.png",
1285
+ "ic_info_gray" to "https://img.mservice.com.vn/app/img/kits/ic_info_gray.png",
1286
+ "ic_tag_voucher" to "https://img.mservice.com.vn/app/img/kits/ic_tag.png",
1287
+ "ic_step_active" to "https://img.mservice.com.vn/app/img/kits/step_active.png",
1288
+ "ic_step_coming" to "https://img.mservice.com.vn/app/img/kits/step_coming.png",
1289
+ "ic_notification_info" to "https://img.mservice.com.vn/app/img/kits/ic_notification_info.png",
1290
+ "ic_cinema_poster" to "https://img.mservice.com.vn/app/img/kits/ic_cinema_poster.png",
1291
+ "ic_momo_gift" to "https://img.mservice.com.vn/app/img/kits/ic_momo_gift.png",
1292
+ "graphic_wifi_disconnect" to "https://img.mservice.com.vn/app/img/kits/wifi_disconnect.png",
1293
+ "graphic_time_out" to "https://img.mservice.com.vn/app/img/kits/time_out.png",
1294
+ "graphic_ticket" to "https://img.mservice.com.vn/app/img/kits/ticket.png",
1295
+ "graphic_photo" to "https://img.mservice.com.vn/app/img/kits/photo.png",
1296
+ "graphic_notification" to "https://img.mservice.com.vn/app/img/kits/notification.png",
1297
+ "graphic_not_found" to "https://img.mservice.com.vn/app/img/kits/not_found.png",
1298
+ "graphic_no_location" to "https://img.mservice.com.vn/app/img/kits/no_location.png",
1299
+ "graphic_no_data" to "https://img.mservice.com.vn/app/img/kits/no_data.png",
1300
+ "graphic_missing" to "https://img.mservice.com.vn/app/img/kits/missing.png",
1301
+ "graphic_merchant" to "https://img.mservice.com.vn/app/img/kits/merchant.png",
1302
+ "graphic_maintance" to "https://img.mservice.com.vn/app/img/kits/maintance.png",
1303
+ "graphic_logo" to "https://img.mservice.com.vn/app/img/kits/logo.png",
1304
+ "graphic_file_default" to "https://img.mservice.com.vn/app/img/kits/file_default.png",
1305
+ "graphic_directory" to "https://img.mservice.com.vn/app/img/kits/directory.png",
1306
+ "graphic_comment" to "https://img.mservice.com.vn/app/img/kits/comment.png",
1307
+ "graphic_avatar" to "https://img.mservice.com.vn/app/img/kits/avatar.png",
1308
+ "ic_money" to "https://img.mservice.com.vn/app/img/kits/money.png",
1309
+ "file_pinned" to "https://img.mservice.com.vn/app/img/kits/Pinned.png",
1310
+ "phonebook_outline" to "https://img.mservice.com.vn/app/img/kits/Phonebook-outline.png",
1311
+ "ic_back" to "https://img.mservice.com.vn/momo_app_v2/new_version/img/appx_icon/ic_back_ios.png",
1312
+ "share" to "https://img.mservice.com.vn/app/img/mini-app-center/share.png",
1313
+ "addFavorite" to "https://cdn.mservice.com.vn/app/img/kits/navigation_add_to_home.png",
1314
+ "addShortcut" to "https://img.mservice.com.vn/app/img/mini-app-center/phone.png",
1315
+ "header_background" to "https://img.mservice.com.vn/app/img/kits/navigation-bar.png",
1316
+ "ic_error" to "https://img.mservice.com.vn/app/img/kits/error_mess_icon.png",
1317
+ "media_fail" to "https://static.momocdn.net/app/img/kits/media_fail.png",
1318
+ "ic_checked" to "https://img.mservice.com.vn/app/img/kits/checked_ic.png",
1319
+ "ic_minus" to "https://img.mservice.com.vn/app/img/kits/minus.png",
1320
+ "ic_navigation" to "https://static.momocdn.net/app/img/kits/ic_navigation.png",
1321
+ "ic_money_bag" to "https://static.momocdn.net/app/img/kits/ic_money_bag.png",
1322
+ "ic_support" to "https://static.momocdn.net/app/img/kits/ic_support.png",
1323
+ "navigation_more_icon" to "https://static.momocdn.net/app/img/kits/navigation_more_icon.png",
1324
+ "help_center" to "https://static.momocdn.net/app/img/kits/help-center.png",
1325
+ "pin_star" to "https://static.momocdn.net/app/img/kits/pin_star.png",
1326
+ "pin_star_checked" to "https://static.momocdn.net/app/img/kits/pin_star_checked.png"
1327
+ )
1328
+
1329
+ val noThemeIcons = listOf("ic_round_momo_tiny")