Hanye官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

products-en.json 62KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. [
  2. {
  3. "id": "01.Q60-256GST3",
  4. "title": "Q60-256GST3",
  5. "name": "Q60-256GST3",
  6. "usage": [
  7. "System Boot Drive",
  8. "Gaming Acceleration/Storage",
  9. "Office/Study Expansion"
  10. ],
  11. "category": 2,
  12. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3.webp",
  13. "description": "",
  14. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  15. "series": [
  16. "2.5-inch SATA III"
  17. ],
  18. "gallery": [
  19. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-1.webp",
  20. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-2.webp",
  21. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-3.webp",
  22. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-4.webp",
  23. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-5.webp",
  24. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-6.webp",
  25. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-7.webp",
  26. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-8.webp",
  27. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-9.webp",
  28. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-10.webp",
  29. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-11.webp",
  30. "/images/products/2.5-inch SSD_M.2 SSD/Q60-256GST3/q60-256gst3-12.webp"
  31. ],
  32. "capacities": [
  33. "256GB"
  34. ]
  35. },
  36. {
  37. "id": "010.Q55-256GSY04",
  38. "title": "Q55-256GSY04",
  39. "name": "Q55-256GSY04",
  40. "usage": [
  41. "System Boot Drive",
  42. "Gaming Acceleration/Storage",
  43. "Office/Study Expansion"
  44. ],
  45. "category": 2,
  46. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q55-256GSY04/q55-256gsy04.webp",
  47. "description": "",
  48. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  49. "series": [
  50. "2.5-inch SATA III"
  51. ],
  52. "gallery": [],
  53. "capacities": [
  54. "256GB"
  55. ]
  56. },
  57. {
  58. "id": "011.Q55-512GSY04",
  59. "title": "Q55-512GSY04",
  60. "name": "Q55-512GSY04",
  61. "usage": [
  62. "System Boot Drive",
  63. "Gaming Acceleration/Storage",
  64. "Office/Study Expansion"
  65. ],
  66. "category": 2,
  67. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q55-512GSY04/q55-512gsy04.webp",
  68. "description": "",
  69. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  70. "series": [
  71. "2.5-inch SATA III"
  72. ],
  73. "gallery": [],
  74. "capacities": [
  75. "512GB"
  76. ]
  77. },
  78. {
  79. "id": "012.Q55-1TSY04",
  80. "title": "Q55-1TSY04",
  81. "name": "Q55-1TSY04",
  82. "usage": [
  83. "System Boot Drive",
  84. "Gaming Acceleration/Storage",
  85. "Office/Study Expansion"
  86. ],
  87. "category": 2,
  88. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q55-1TSY04/q55-1tsy04.webp",
  89. "description": "",
  90. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  91. "series": [
  92. "2.5-inch SATA III"
  93. ],
  94. "gallery": [],
  95. "capacities": [
  96. "1TB"
  97. ]
  98. },
  99. {
  100. "id": "013.Q55-2TSY04",
  101. "title": "Q55-2TSY04",
  102. "name": "Q55-2TSY04",
  103. "usage": [
  104. "System Boot Drive",
  105. "Gaming Acceleration/Storage",
  106. "Office/Study Expansion"
  107. ],
  108. "category": 2,
  109. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q55-2TSY04/q55-2tsy04.webp",
  110. "description": "",
  111. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  112. "series": [
  113. "2.5-inch SATA III"
  114. ],
  115. "gallery": [],
  116. "capacities": [
  117. "2TB"
  118. ]
  119. },
  120. {
  121. "id": "02.Q60-512GST3",
  122. "title": "Q60-512GST3",
  123. "name": "Q60-512GST3",
  124. "usage": [
  125. "System Boot Drive",
  126. "Gaming Acceleration/Storage",
  127. "Office/Study Expansion"
  128. ],
  129. "category": 2,
  130. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3.webp",
  131. "description": "",
  132. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  133. "series": [
  134. "2.5-inch SATA III"
  135. ],
  136. "gallery": [
  137. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-1.webp",
  138. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-2.webp",
  139. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-3.webp",
  140. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-4.webp",
  141. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-5.webp",
  142. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-6.webp",
  143. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-7.webp",
  144. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-8.webp",
  145. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-9.webp",
  146. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-10.webp",
  147. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-11.webp",
  148. "/images/products/2.5-inch SSD_M.2 SSD/Q60-512GST3/q60-512gst3-12.webp"
  149. ],
  150. "capacities": [
  151. "512GB"
  152. ]
  153. },
  154. {
  155. "id": "020.N400-128GSY03",
  156. "title": "N400-128GSY03",
  157. "name": "N400-128GSY03",
  158. "usage": [
  159. "System Boot Drive",
  160. "Gaming Acceleration/Storage",
  161. "Office/Study Expansion"
  162. ],
  163. "category": 2,
  164. "image": "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03.webp",
  165. "description": "High-performance 2.5-inch SATA III SSD for laptops and desktops",
  166. "summary": "High-speed, reliable 2.5-inch SSD, offering excellent performance and storage capacity.",
  167. "series": [
  168. "2.5-inch SATA III"
  169. ],
  170. "gallery": [
  171. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-0.webp",
  172. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-1.webp",
  173. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-2.webp",
  174. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-3.webp",
  175. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-4.webp",
  176. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-5.webp",
  177. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-6.webp",
  178. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-7.webp",
  179. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-8.webp",
  180. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-9.webp",
  181. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-10.webp",
  182. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-11.webp",
  183. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-12.webp",
  184. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-13.webp",
  185. "/images/products/2.5-inch SSD_M.2 SSD/N400-128GSY03/n400-128gsy03-14.webp"
  186. ],
  187. "capacities": [
  188. "128GB"
  189. ]
  190. },
  191. {
  192. "id": "021.N400-256GSY03",
  193. "title": "N400-256GSY03",
  194. "name": "N400-256GSY03",
  195. "usage": [
  196. "System Boot Drive",
  197. "Gaming Acceleration/Storage",
  198. "Office/Study Expansion"
  199. ],
  200. "category": 2,
  201. "image": "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03.webp",
  202. "description": "High-performance 2.5-inch SATA III SSD for laptops and desktops",
  203. "summary": "High-speed, reliable 2.5-inch SSD, offering excellent performance and storage capacity.",
  204. "series": [
  205. "2.5-inch SATA III"
  206. ],
  207. "gallery": [
  208. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-1.webp",
  209. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-2.webp",
  210. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-3.webp",
  211. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-4.webp",
  212. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-5.webp",
  213. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-6.webp",
  214. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-7.webp",
  215. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-8.webp",
  216. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-9.webp",
  217. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-10.webp",
  218. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-11.webp",
  219. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-12.webp",
  220. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-13.webp",
  221. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-14.webp",
  222. "/images/products/2.5-inch SSD_M.2 SSD/N400-256GSY03/n400-256gsy03-15.webp"
  223. ],
  224. "capacities": [
  225. "256GB"
  226. ]
  227. },
  228. {
  229. "id": "022.N400-512GSY03",
  230. "title": "N400-512GSY03",
  231. "name": "N400-512GSY03",
  232. "usage": [
  233. "System Boot Drive",
  234. "Gaming Acceleration/Storage",
  235. "Office/Study Expansion"
  236. ],
  237. "category": 2,
  238. "image": "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03.webp",
  239. "description": "High-performance 2.5-inch SATA III SSD for laptops and desktops",
  240. "summary": "High-speed, reliable 2.5-inch SSD, offering excellent performance and storage capacity.",
  241. "series": [
  242. "2.5-inch SATA III"
  243. ],
  244. "gallery": [
  245. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-1.webp",
  246. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-2.webp",
  247. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-3.webp",
  248. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-4.webp",
  249. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-5.webp",
  250. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-6.webp",
  251. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-7.webp",
  252. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-8.webp",
  253. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-9.webp",
  254. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-10.webp",
  255. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-11.webp",
  256. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-12.webp",
  257. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-13.webp",
  258. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-14.webp",
  259. "/images/products/2.5-inch SSD_M.2 SSD/N400-512GSY03/n400-512gsy03-15.webp"
  260. ],
  261. "capacities": [
  262. "512GB"
  263. ]
  264. },
  265. {
  266. "id": "023.N400-1TSY03",
  267. "title": "N400-1TSY03",
  268. "name": "N400-1TSY03",
  269. "usage": [
  270. "System Boot Drive",
  271. "Gaming Acceleration/Storage",
  272. "Office/Study Expansion"
  273. ],
  274. "category": 2,
  275. "image": "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03.webp",
  276. "description": "",
  277. "summary": "Comprehensive computer performance upgrade with shorter boot times and improved gaming and image loading performance. Significantly enhances application loading and file transfer speeds",
  278. "series": [
  279. "2.5-inch SATA III"
  280. ],
  281. "gallery": [
  282. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-1.webp",
  283. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-2.webp",
  284. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-3.webp",
  285. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-4.webp",
  286. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-5.webp",
  287. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-6.webp",
  288. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-7.webp",
  289. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-8.webp",
  290. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-9.webp",
  291. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-10.webp",
  292. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-11.webp",
  293. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-12.webp",
  294. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-13.webp",
  295. "/images/products/2.5-inch SSD_M.2 SSD/N400-1TSY03/n400-1tsy03-14.webp"
  296. ],
  297. "capacities": [
  298. "1TB"
  299. ]
  300. },
  301. {
  302. "id": "03.Q60-1TST3",
  303. "title": "Q60-1TST3",
  304. "name": "Q60-1TST3",
  305. "usage": [
  306. "System Boot Drive",
  307. "Gaming Acceleration/Storage",
  308. "Office/Study Expansion"
  309. ],
  310. "category": 2,
  311. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q60-1TST3/q60-1tst3.webp",
  312. "description": "",
  313. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  314. "series": [
  315. "2.5-inch SATA III"
  316. ],
  317. "gallery": [],
  318. "capacities": [
  319. "1TB"
  320. ]
  321. },
  322. {
  323. "id": "030.E500P-2T00A",
  324. "title": "E500P-2T00A",
  325. "name": "E500P-2T00A",
  326. "usage": [
  327. "System Boot Drive",
  328. "Gaming Storage",
  329. "Office/Learning Storage"
  330. ],
  331. "category": 2,
  332. "image": "/images/products/2.5-inch SSD_M.2 SSD/E500P-2T00A/E500P-2T00A.webp",
  333. "description": "",
  334. "summary": "Equipped with graphene heatsink, suitable for high-performance gaming PCs and PS5",
  335. "series": [
  336. "PCIe 5.0 SSD"
  337. ],
  338. "gallery": [],
  339. "capacities": [
  340. "2TB"
  341. ]
  342. },
  343. {
  344. "id": "031.E500P-4T00A",
  345. "title": "E500P-4T00A",
  346. "name": "E500P-4T00A",
  347. "usage": [
  348. "System Boot Drive",
  349. "Gaming Storage",
  350. "Office/Learning Storage"
  351. ],
  352. "category": 2,
  353. "image": "/images/products/2.5-inch SSD_M.2 SSD/E500P-4T00A/E500P-4T00A.webp",
  354. "description": "",
  355. "summary": "Equipped with graphene heatsink, suitable for high-performance gaming PCs and PS5",
  356. "series": [
  357. "PCIe 5.0 SSD"
  358. ],
  359. "gallery": [],
  360. "capacities": [
  361. "4TB"
  362. ]
  363. },
  364. {
  365. "id": "032.W400-512GSY01",
  366. "title": "W400-512GSY01",
  367. "name": "W400-512GSY01",
  368. "usage": [
  369. "System Boot Drive",
  370. "Gaming Storage",
  371. "Office/Learning Storage"
  372. ],
  373. "category": 2,
  374. "image": "/images/products/2.5-inch SSD_M.2 SSD/W400-512GSY01/w400-512gsy01.webp",
  375. "description": "",
  376. "summary": "Max transfer speed up to 520MB/s, can significantly shorten boot times and loading times!",
  377. "series": [
  378. "2.5-inch SATA III"
  379. ],
  380. "gallery": [],
  381. "capacities": [
  382. "512GB"
  383. ]
  384. },
  385. {
  386. "id": "033.HE80-2TGHS",
  387. "title": "HE80-2TGHS",
  388. "name": "HE80-2TGHS",
  389. "usage": [
  390. "System Boot Drive",
  391. "Gaming Storage",
  392. "Office/Learning Storage"
  393. ],
  394. "category": 2,
  395. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE80-2TGHS/he80-2tghs.webp",
  396. "description": "",
  397. "summary": "Equipped with graphene heatsink, suitable for high-performance gaming PCs and PS5",
  398. "series": [
  399. "PCIe 4.0 SSD"
  400. ],
  401. "gallery": [],
  402. "capacities": [
  403. "2TB"
  404. ]
  405. },
  406. {
  407. "id": "034.HE80-2TNLHS",
  408. "title": "HE80-2TNLHS",
  409. "name": "HE80-2TNLHS",
  410. "usage": [
  411. "System Boot Drive",
  412. "Gaming Storage",
  413. "Office/Learning Storage"
  414. ],
  415. "category": 2,
  416. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE80-2TNLHS/he80-2tnlhs.webp",
  417. "description": "",
  418. "summary": "Equipped with heatsink, suitable for high-performance gaming PCs and PS5",
  419. "series": [
  420. "PCIe 4.0 SSD"
  421. ],
  422. "gallery": [],
  423. "capacities": [
  424. "2TB"
  425. ]
  426. },
  427. {
  428. "id": "04.Q60-2TST3",
  429. "title": "Q60-2TST3",
  430. "name": "Q60-2TST3",
  431. "usage": [
  432. "System Boot Drive",
  433. "Gaming Acceleration/Storage",
  434. "Office/Study Expansion"
  435. ],
  436. "category": 2,
  437. "image": "/images/products/2.5-inch SSD_M.2 SSD/Q60-2TST3/q60-2tst3.webp",
  438. "description": "",
  439. "summary": "Adopts high-speed and reliable 3D NAND flash, enabling fast computer and system startups, about 5 times faster than traditional HDDs.",
  440. "series": [
  441. "2.5-inch SATA III"
  442. ],
  443. "gallery": [],
  444. "capacities": [
  445. "2TB"
  446. ]
  447. },
  448. {
  449. "id": "040.MN50-512GA01",
  450. "title": "MN50-512GA01",
  451. "name": "MN50-512GA01",
  452. "usage": [
  453. "System Boot Drive",
  454. "Gaming Storage",
  455. "Office/Learning Storage"
  456. ],
  457. "category": 2,
  458. "image": "/images/products/2.5-inch SSD_M.2 SSD/MN50-512GA01/mn50-512ga01.webp",
  459. "description": "High-performance PCIe NVMe M.2 SSD for laptops and desktops",
  460. "summary": "High-speed, reliable PCIe NVMe M.2 SSD offering excellent performance and storage capacity",
  461. "series": [
  462. "PCIe 4.0 SSD"
  463. ],
  464. "gallery": [],
  465. "capacities": [
  466. "512GB"
  467. ]
  468. },
  469. {
  470. "id": "041.MN50-1000GA01",
  471. "title": "MN50-1000GA01",
  472. "name": "MN50-1000GA01",
  473. "usage": [
  474. "System Boot Drive",
  475. "Gaming Storage",
  476. "Office/Learning Storage"
  477. ],
  478. "category": 2,
  479. "image": "/images/products/2.5-inch SSD_M.2 SSD/MN50-1000GA01/mn50-1000ga01.webp",
  480. "description": "High-performance PCIe NVMe M.2 SSD for laptops and desktop PCs",
  481. "summary": "High-speed, reliable PCIe NVMe M.2 SSD offering excellent performance and storage capacity",
  482. "series": [
  483. "PCIe 4.0 SSD"
  484. ],
  485. "gallery": [],
  486. "capacities": [
  487. "1TB"
  488. ]
  489. },
  490. {
  491. "id": "042.ME70-1TA01",
  492. "title": "ME70-1TA01",
  493. "name": "ME70-1TA01",
  494. "usage": [
  495. "System Boot Drive",
  496. "Gaming Storage",
  497. "Office/Learning Storage"
  498. ],
  499. "category": 2,
  500. "image": "/images/products/2.5-inch SSD_M.2 SSD/ME70-1TA01/me70-1ta01.webp",
  501. "description": "",
  502. "summary": "This product pursues high-speed gaming loading, video editing, and graphics rendering, offering large capacity and cutting-edge performance for gamers and hardware enthusiasts.",
  503. "series": [
  504. "PCIe 4.0 SSD"
  505. ],
  506. "gallery": [],
  507. "capacities": [
  508. "1TB"
  509. ]
  510. },
  511. {
  512. "id": "043.ME70-2TA01",
  513. "title": "ME70-2TA01",
  514. "name": "ME70-2TA01",
  515. "usage": [
  516. "System Boot Drive",
  517. "Gaming Storage",
  518. "Office/Learning Storage"
  519. ],
  520. "category": 2,
  521. "image": "/images/products/2.5-inch SSD_M.2 SSD/ME70-2TA01/me70-2ta01.webp",
  522. "description": "",
  523. "summary": "This product pursues high-speed gaming loading, video editing, and graphics rendering, offering large capacity and cutting-edge performance for gamers and hardware enthusiasts.",
  524. "series": [
  525. "PCIe 4.0 SSD"
  526. ],
  527. "gallery": [],
  528. "capacities": [
  529. "2TB"
  530. ]
  531. },
  532. {
  533. "id": "044.E26-256GTN1-EB",
  534. "title": "E26-256GTN1-EB",
  535. "name": "E26-256GTN1-EB",
  536. "usage": [
  537. "System boot disk",
  538. "Game acceleration/storage",
  539. "Office/learning expansion"
  540. ],
  541. "category": 2,
  542. "image": "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB.webp",
  543. "description": "High-speed, stable, and energy-saving. Storage device that performs well in various scenarios.",
  544. "summary": "High-speed, stable, and energy-saving storage device, providing ultra-high-speed data access and high-performance NVMe interface, using highly reliable 3D NAND, compatible with a variety of PCs.",
  545. "series": [
  546. "PCIe 3.0 SSD"
  547. ],
  548. "gallery": [
  549. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_1.webp",
  550. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_2.webp",
  551. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_3.webp",
  552. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_4.webp",
  553. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_5.webp",
  554. "/images/products/2.5-inch SSD_M.2 SSD/E26-256GTN1-EB/E26-256GTN1-EB_6.webp"
  555. ],
  556. "capacities": [
  557. "256GB"
  558. ]
  559. },
  560. {
  561. "id": "045.E26-512GTN1-EB",
  562. "title": "E26-512GTN1-EB",
  563. "name": "E26-512GTN1-EB",
  564. "usage": [
  565. "System boot disk",
  566. "Game acceleration/storage",
  567. "Office/learning expansion"
  568. ],
  569. "category": 2,
  570. "image": "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB.webp",
  571. "description": "High-speed, stable, and energy-saving. Storage device that performs well in various scenarios.",
  572. "summary": "High-speed, stable, and energy-saving storage device, providing ultra-high-speed data access and high-performance NVMe interface, using highly reliable 3D NAND, compatible with a variety of PCs.",
  573. "series": [
  574. "PCIe 3.0 SSD"
  575. ],
  576. "gallery": [
  577. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_1.webp",
  578. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_2.webp",
  579. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_3.webp",
  580. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_4.webp",
  581. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_5.webp",
  582. "/images/products/2.5-inch SSD_M.2 SSD/E26-512GTN1-EB/E26-512GTN1-EB_6.webp"
  583. ],
  584. "capacities": [
  585. "512GB"
  586. ]
  587. },
  588. {
  589. "id": "046.E26-1TTN1-EB",
  590. "title": "E26-1TTN1-EB",
  591. "name": "E26-1TTN1-EB",
  592. "usage": [
  593. "System boot disk",
  594. "Game acceleration/storage",
  595. "Office/learning expansion"
  596. ],
  597. "category": 2,
  598. "image": "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB.webp",
  599. "description": "High-speed, stable, and energy-saving. Storage device that performs well in various scenarios.",
  600. "summary": "High-speed, stable, and energy-saving storage device, providing ultra-high-speed data access and high-performance NVMe interface, using highly reliable 3D NAND, compatible with a variety of PCs.",
  601. "series": [
  602. "PCIe 3.0 SSD"
  603. ],
  604. "gallery": [
  605. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_1.webp",
  606. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_2.webp",
  607. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_3.webp",
  608. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_4.webp",
  609. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_5.webp",
  610. "/images/products/2.5-inch SSD_M.2 SSD/E26-1TTN1-EB/E26-1TTN1-EB_6.webp"
  611. ],
  612. "capacities": [
  613. "1TB"
  614. ]
  615. },
  616. {
  617. "id": "050.E30-256GTN1",
  618. "title": "E30-256GTN1",
  619. "name": "E30-256GTN1",
  620. "usage": [
  621. "System Boot Drive",
  622. "Gaming Storage",
  623. "Office/Learning Storage"
  624. ],
  625. "category": 2,
  626. "image": "/images/products/2.5-inch SSD_M.2 SSD/E30-256GTN1/e30-256gtn1.webp",
  627. "description": "High-performance PCIe NVMe M.2 2280 SSD for laptops and desktops",
  628. "summary": "Utilizes 3D NAND TLC technology for high-speed PC startup and accelerated file and application operation.",
  629. "series": [
  630. "PCIe 3.0 SSD"
  631. ],
  632. "gallery": [],
  633. "capacities": [
  634. "256GB"
  635. ]
  636. },
  637. {
  638. "id": "051.E30-512GTN1",
  639. "title": "E30-512GTN1",
  640. "name": "E30-512GTN1",
  641. "usage": [
  642. "System Boot Drive",
  643. "Gaming Storage",
  644. "Office/Learning Storage"
  645. ],
  646. "category": 2,
  647. "image": "/images/products/2.5-inch SSD_M.2 SSD/E30-512GTN1/e30-512gtn1.webp",
  648. "description": "",
  649. "summary": "Utilizes 3D NAND TLC technology for high-speed PC startup and accelerated file and application operation.",
  650. "series": [
  651. "PCIe 3.0 SSD"
  652. ],
  653. "gallery": [],
  654. "capacities": [
  655. "512GB"
  656. ]
  657. },
  658. {
  659. "id": "052.E30-1TBTN1",
  660. "title": "E30-1TBTN1",
  661. "name": "E30-1TBTN1",
  662. "usage": [
  663. "System Boot Drive",
  664. "Gaming Storage",
  665. "Office/Learning Storage"
  666. ],
  667. "category": 2,
  668. "image": "/images/products/2.5-inch SSD_M.2 SSD/E30-1TBTN1/e30-1tbtn1.webp",
  669. "description": "",
  670. "summary": "Utilizes 3D NAND TLC technology for high-speed PC startup and accelerated file and application operation.",
  671. "series": [
  672. "PCIe 3.0 SSD"
  673. ],
  674. "gallery": [],
  675. "capacities": [
  676. "1TB"
  677. ]
  678. },
  679. {
  680. "id": "060.HE70-1TBNHS1",
  681. "title": "HE70-1TBNHS1",
  682. "name": "HE70-1TBNHS1",
  683. "usage": [
  684. "System Boot Drive",
  685. "Gaming Storage",
  686. "Office/Learning Storage"
  687. ],
  688. "category": 2,
  689. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE70-1TBNHS1/he70-1tbnhs1.webp",
  690. "description": "",
  691. "summary": "PS5 compatible, integrated heatsink SSD. Best value for money, no regrets.",
  692. "series": [
  693. "PCIe 4.0 SSD"
  694. ],
  695. "gallery": [],
  696. "capacities": [
  697. "1TB"
  698. ]
  699. },
  700. {
  701. "id": "061.HE70-2TBNHS1",
  702. "title": "HE70-2TBNHS1",
  703. "name": "HE70-2TBNHS1",
  704. "usage": [
  705. "System Boot Drive",
  706. "Gaming Storage",
  707. "Office/Learning Storage"
  708. ],
  709. "category": 2,
  710. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE70-2TBNHS1/he70-2tbnhs1.webp",
  711. "description": "",
  712. "summary": "Compatible with PS5, integrated heatsink SSD. Best value for money, a choice without regret.",
  713. "series": [
  714. "PCIe 4.0 SSD"
  715. ],
  716. "gallery": [],
  717. "capacities": [
  718. "2TB"
  719. ]
  720. },
  721. {
  722. "id": "062.HE70-4TBNHS1",
  723. "title": "HE70-4TBNHS1",
  724. "name": "HE70-4TBNHS1",
  725. "usage": [
  726. "System Boot Drive",
  727. "Gaming Storage",
  728. "Office/Learning Storage"
  729. ],
  730. "category": 2,
  731. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE70-4TBNHS1/he70-4tbnhs1.webp",
  732. "description": "High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers",
  733. "summary": "Compatible with PS5, integrated heatsink SSD. Best value for money, a choice without regret.",
  734. "series": [
  735. "PCIe 4.0 SSD"
  736. ],
  737. "gallery": [],
  738. "capacities": [
  739. "4TB"
  740. ]
  741. },
  742. {
  743. "id": "070.HE71-2TBNDGH",
  744. "title": "HE71-2TBNDGH",
  745. "name": "HE71-2TBNDGH",
  746. "usage": [
  747. "System Boot Drive",
  748. "Gaming Storage",
  749. "Office/Learning Storage"
  750. ],
  751. "category": 2,
  752. "image": "/images/products/2.5-inch SSD_M.2 SSD/HE71-2TBNDGH/he71-2tbndgh.webp",
  753. "description": "High-performance PCIe NVMe M.2 2280 SSD for laptops and desktop computers",
  754. "summary": "High-speed, reliable PCIe NVMe M.2 2280 SSD offering excellent performance and storage capacity",
  755. "series": [
  756. "PCIe 4.0 SSD"
  757. ],
  758. "gallery": [],
  759. "capacities": [
  760. "2TB"
  761. ]
  762. },
  763. {
  764. "id": "090.M200-SC256G",
  765. "title": "M200-SC256G",
  766. "name": "M200-SC256G",
  767. "usage": [
  768. "System Boot Drive",
  769. "Gaming Storage",
  770. "Office/Learning Storage"
  771. ],
  772. "category": 2,
  773. "image": "/images/products/2.5-inch SSD_M.2 SSD/M200-SC256G/m200-sc256g.webp",
  774. "description": "",
  775. "summary": "Achieves read speeds up to 550MB/s, reducing read times and accelerating data transfer",
  776. "series": [
  777. "M200 Series"
  778. ],
  779. "gallery": [],
  780. "capacities": [
  781. "256GB"
  782. ]
  783. },
  784. {
  785. "id": "091.M200-SC512G",
  786. "title": "M200-SC512G",
  787. "name": "M200-SC512G",
  788. "usage": [
  789. "System Boot Drive",
  790. "Gaming Storage",
  791. "Office/Learning Storage"
  792. ],
  793. "category": 2,
  794. "image": "/images/products/2.5-inch SSD_M.2 SSD/M200-SC512G/m200-sc512g.webp",
  795. "description": "",
  796. "summary": "Achieves read speeds up to 550MB/s, reducing read times and accelerating data transfer",
  797. "series": [
  798. "M200 Series"
  799. ],
  800. "gallery": [],
  801. "capacities": [
  802. "512GB"
  803. ]
  804. },
  805. {
  806. "id": "100.SD-HC32GBU1",
  807. "title": "SD-HC32GBU1",
  808. "name": "SD-HC32GBU1",
  809. "usage": [
  810. "Photography Storage",
  811. "Content Creation/Video Editing"
  812. ],
  813. "category": "1",
  814. "image": "/images/products/SD/SD-HC32GBU1/sd-hc32gbu1.webp",
  815. "description": "",
  816. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  817. "series": [
  818. "SD"
  819. ],
  820. "gallery": [],
  821. "capacities": [
  822. "32GB"
  823. ]
  824. },
  825. {
  826. "id": "101.SD-XC64GBU3",
  827. "title": "SD-XC64GBU3",
  828. "name": "SD-XC64GBU3",
  829. "usage": [
  830. "Photography Storage",
  831. "Content Creation/Video Editing"
  832. ],
  833. "category": 1,
  834. "image": "/images/products/SD/SD-XC64GBU3/sd-xc64gbu3.webp",
  835. "description": "",
  836. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  837. "series": [
  838. "SD"
  839. ],
  840. "gallery": [],
  841. "capacities": [
  842. "64GB"
  843. ]
  844. },
  845. {
  846. "id": "102.SD-XC128GBU3",
  847. "title": "SD-XC128GBU3",
  848. "name": "SD-XC128GBU3",
  849. "usage": [
  850. "Photography Storage",
  851. "Content Creation/Video Editing"
  852. ],
  853. "category": 1,
  854. "image": "/images/products/SD/SD-XC128GBU3/sd-xc128gbu3.webp",
  855. "description": "",
  856. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  857. "series": [
  858. "SD"
  859. ],
  860. "gallery": [],
  861. "capacities": [
  862. "128GB"
  863. ]
  864. },
  865. {
  866. "id": "103.SD-XC128GBV6",
  867. "title": "SD-XC128GBV6",
  868. "name": "SD-XC128GBV6",
  869. "usage": [
  870. "Photography Storage",
  871. "Content Creation/Video Editing"
  872. ],
  873. "category": 1,
  874. "image": "/images/products/SD/SD-XC128GBV6/SD-XC128GBV6.webp",
  875. "description": "",
  876. "summary": "Suitable for digital cameras, camcorders, read speed up to 280MB/s.",
  877. "series": [
  878. "SD"
  879. ],
  880. "gallery": [],
  881. "capacities": [
  882. "128GB"
  883. ]
  884. },
  885. {
  886. "id": "104.SD-XC256GBV6",
  887. "title": "SD-XC256GBV6",
  888. "name": "SD-XC256GBV6",
  889. "usage": [
  890. "Photography Storage",
  891. "Content Creation/Video Editing"
  892. ],
  893. "category": 1,
  894. "image": "/images/products/SD/SD-XC256GBV6/SD-XC256GBV6.webp",
  895. "description": "",
  896. "summary": "Suitable for digital cameras, camcorders, read speed up to 280MB/s.",
  897. "series": [
  898. "SD"
  899. ],
  900. "gallery": [],
  901. "capacities": [
  902. "256GB"
  903. ]
  904. },
  905. {
  906. "id": "105.SD-XC512GBV6",
  907. "title": "SD-XC512GBV6",
  908. "name": "SD-XC512GBV6",
  909. "usage": [
  910. "Photography Storage",
  911. "Content Creation/Video Editing"
  912. ],
  913. "category": 1,
  914. "image": "/images/products/SD/SD-XC512GBV6/SD-XC512GBV6.webp",
  915. "description": "",
  916. "summary": "Suitable for digital cameras, camcorders, read speed up to 280MB/s.",
  917. "series": [
  918. "SD"
  919. ],
  920. "gallery": [],
  921. "capacities": [
  922. "512GB"
  923. ]
  924. },
  925. {
  926. "id": "106.SD-XC64GBV3",
  927. "title": "SD-XC64GBV3",
  928. "name": "SD-XC64GBV3",
  929. "usage": [
  930. "Photography Storage",
  931. "Content Creation/Video Editing"
  932. ],
  933. "category": 1,
  934. "image": "/images/products/SD/SD-XC64GBV3/SD-XC64GBV3.webp",
  935. "description": "",
  936. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  937. "series": [
  938. "SD"
  939. ],
  940. "gallery": [],
  941. "capacities": [
  942. "64GB"
  943. ]
  944. },
  945. {
  946. "id": "107.SD-XC128GBV3",
  947. "title": "SD-XC128GBV3",
  948. "name": "SD-XC128GBV3",
  949. "usage": [
  950. "Photography Storage",
  951. "Content Creation/Video Editing"
  952. ],
  953. "category": 1,
  954. "image": "/images/products/SD/SD-XC128GBV3/SD-XC128GBV3.webp",
  955. "description": "",
  956. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  957. "series": [
  958. "SD"
  959. ],
  960. "gallery": [],
  961. "capacities": [
  962. "128GB"
  963. ]
  964. },
  965. {
  966. "id": "108.SD-XC256GBV3",
  967. "title": "SD-XC256GBV3",
  968. "name": "SD-XC256GBV3",
  969. "usage": [
  970. "Photography Storage",
  971. "Content Creation/Video Editing"
  972. ],
  973. "category": 1,
  974. "image": "/images/products/SD/SD-XC256GBV3/SD-XC256GBV3.webp",
  975. "description": "",
  976. "summary": "Suitable for digital cameras, camcorders, read speed up to 100MB/s.",
  977. "series": [
  978. "SD"
  979. ],
  980. "gallery": [],
  981. "capacities": [
  982. "256GB"
  983. ]
  984. },
  985. {
  986. "id": "110.UD-032G01A1",
  987. "title": "UD-032G01A1",
  988. "name": "UD-032G01A1",
  989. "usage": [
  990. "Mobile Device Storage",
  991. "Media/Entertainment"
  992. ],
  993. "category": 1,
  994. "image": "/images/products/microSD/UD-032G01A1/ud-032g01a1.webp",
  995. "description": "",
  996. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  997. "series": [
  998. "microSD"
  999. ],
  1000. "gallery": [
  1001. "/images/products/microSD/UD-032G01A1/ud-032g01a1-1.webp",
  1002. "/images/products/microSD/UD-032G01A1/ud-032g01a1-2.webp",
  1003. "/images/products/microSD/UD-032G01A1/ud-032g01a1-3.webp",
  1004. "/images/products/microSD/UD-032G01A1/ud-032g01a1-4.webp",
  1005. "/images/products/microSD/UD-032G01A1/ud-032g01a1-5.webp",
  1006. "/images/products/microSD/UD-032G01A1/ud-032g01a1-6.webp",
  1007. "/images/products/microSD/UD-032G01A1/ud-032g01a1-7.webp",
  1008. "/images/products/microSD/UD-032G01A1/ud-032g01a1-8.webp",
  1009. "/images/products/microSD/UD-032G01A1/ud-032g01a1-9.webp"
  1010. ],
  1011. "capacities": [
  1012. "32GB"
  1013. ]
  1014. },
  1015. {
  1016. "id": "111.UD-064G01A1",
  1017. "title": "UD-064G01A1",
  1018. "name": "UD-064G01A1",
  1019. "usage": [
  1020. "Mobile Device Storage",
  1021. "Media/Entertainment"
  1022. ],
  1023. "category": 1,
  1024. "image": "/images/products/microSD/UD-064G01A1/ud-064g01a1.webp",
  1025. "description": "",
  1026. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1027. "series": [
  1028. "microSD"
  1029. ],
  1030. "gallery": [
  1031. "/images/products/microSD/UD-064G01A1/ud-064g01a1-1.webp",
  1032. "/images/products/microSD/UD-064G01A1/ud-064g01a1-2.webp",
  1033. "/images/products/microSD/UD-064G01A1/ud-064g01a1-3.webp",
  1034. "/images/products/microSD/UD-064G01A1/ud-064g01a1-4.webp",
  1035. "/images/products/microSD/UD-064G01A1/ud-064g01a1-5.webp",
  1036. "/images/products/microSD/UD-064G01A1/ud-064g01a1-6.webp",
  1037. "/images/products/microSD/UD-064G01A1/ud-064g01a1-7.webp",
  1038. "/images/products/microSD/UD-064G01A1/ud-064g01a1-8.webp",
  1039. "/images/products/microSD/UD-064G01A1/ud-064g01a1-9.webp",
  1040. "/images/products/microSD/UD-064G01A1/ud-064g01a1-10.webp",
  1041. "/images/products/microSD/UD-064G01A1/ud-064g01a1-11.webp",
  1042. "/images/products/microSD/UD-064G01A1/ud-064g01a1-12.webp",
  1043. "/images/products/microSD/UD-064G01A1/ud-064g01a1-13.webp",
  1044. "/images/products/microSD/UD-064G01A1/ud-064g01a1-14.webp",
  1045. "/images/products/microSD/UD-064G01A1/ud-064g01a1-15.webp",
  1046. "/images/products/microSD/UD-064G01A1/ud-064g01a1-16.webp"
  1047. ],
  1048. "capacities": [
  1049. "64GB"
  1050. ]
  1051. },
  1052. {
  1053. "id": "112.UD-128G01A1",
  1054. "title": "UD-128G01A1",
  1055. "name": "UD-128G01A1",
  1056. "usage": [
  1057. "Mobile Device Storage",
  1058. "Media/Entertainment"
  1059. ],
  1060. "category": 1,
  1061. "image": "/images/products/microSD/UD-128G01A1/ud-128g01a1.webp",
  1062. "description": "",
  1063. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1064. "series": [
  1065. "microSD"
  1066. ],
  1067. "gallery": [
  1068. "/images/products/microSD/UD-128G01A1/ud-128g01a1-1.webp",
  1069. "/images/products/microSD/UD-128G01A1/ud-128g01a1-2.webp",
  1070. "/images/products/microSD/UD-128G01A1/ud-128g01a1-3.webp",
  1071. "/images/products/microSD/UD-128G01A1/ud-128g01a1-4.webp",
  1072. "/images/products/microSD/UD-128G01A1/ud-128g01a1-5.webp",
  1073. "/images/products/microSD/UD-128G01A1/ud-128g01a1-6.webp",
  1074. "/images/products/microSD/UD-128G01A1/ud-128g01a1-7.webp",
  1075. "/images/products/microSD/UD-128G01A1/ud-128g01a1-8.webp",
  1076. "/images/products/microSD/UD-128G01A1/ud-128g01a1-9.webp",
  1077. "/images/products/microSD/UD-128G01A1/ud-128g01a1-10.webp",
  1078. "/images/products/microSD/UD-128G01A1/ud-128g01a1-11.webp",
  1079. "/images/products/microSD/UD-128G01A1/ud-128g01a1-12.webp",
  1080. "/images/products/microSD/UD-128G01A1/ud-128g01a1-13.webp",
  1081. "/images/products/microSD/UD-128G01A1/ud-128g01a1-14.webp",
  1082. "/images/products/microSD/UD-128G01A1/ud-128g01a1-15.webp",
  1083. "/images/products/microSD/UD-128G01A1/ud-128g01a1-16.webp",
  1084. "/images/products/microSD/UD-128G01A1/ud-128g01a1-17.webp",
  1085. "/images/products/microSD/UD-128G01A1/ud-128g01a1-18.webp"
  1086. ],
  1087. "capacities": [
  1088. "128GB"
  1089. ]
  1090. },
  1091. {
  1092. "id": "113.UD-256G01A1",
  1093. "title": "UD-256G01A1",
  1094. "name": "UD-256G01A1",
  1095. "usage": [
  1096. "Mobile Device Storage",
  1097. "Media/Entertainment"
  1098. ],
  1099. "category": 1,
  1100. "image": "/images/products/microSD/UD-256G01A1/ud-256g01a1.webp",
  1101. "description": "",
  1102. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1103. "series": [
  1104. "microSD"
  1105. ],
  1106. "gallery": [
  1107. "/images/products/microSD/UD-256G01A1/ud-256g01a1-1.webp",
  1108. "/images/products/microSD/UD-256G01A1/ud-256g01a1-2.webp",
  1109. "/images/products/microSD/UD-256G01A1/ud-256g01a1-3.webp",
  1110. "/images/products/microSD/UD-256G01A1/ud-256g01a1-4.webp",
  1111. "/images/products/microSD/UD-256G01A1/ud-256g01a1-5.webp",
  1112. "/images/products/microSD/UD-256G01A1/ud-256g01a1-6.webp",
  1113. "/images/products/microSD/UD-256G01A1/ud-256g01a1-7.webp",
  1114. "/images/products/microSD/UD-256G01A1/ud-256g01a1-8.webp",
  1115. "/images/products/microSD/UD-256G01A1/ud-256g01a1-9.webp",
  1116. "/images/products/microSD/UD-256G01A1/ud-256g01a1-10.webp",
  1117. "/images/products/microSD/UD-256G01A1/ud-256g01a1-11.webp",
  1118. "/images/products/microSD/UD-256G01A1/ud-256g01a1-12.webp",
  1119. "/images/products/microSD/UD-256G01A1/ud-256g01a1-13.webp",
  1120. "/images/products/microSD/UD-256G01A1/ud-256g01a1-14.webp",
  1121. "/images/products/microSD/UD-256G01A1/ud-256g01a1-15.webp",
  1122. "/images/products/microSD/UD-256G01A1/ud-256g01a1-16.webp",
  1123. "/images/products/microSD/UD-256G01A1/ud-256g01a1-17.webp",
  1124. "/images/products/microSD/UD-256G01A1/ud-256g01a1-18.webp"
  1125. ],
  1126. "capacities": [
  1127. "256GB"
  1128. ]
  1129. },
  1130. {
  1131. "id": "114.UD-512G01A1",
  1132. "title": "UD-512G01A1",
  1133. "name": "UD-512G01A1",
  1134. "usage": [
  1135. "Mobile Device Storage",
  1136. "Media/Entertainment"
  1137. ],
  1138. "category": 1,
  1139. "image": "/images/products/microSD/UD-512G01A1/ud-512g01a1.webp",
  1140. "description": "",
  1141. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1142. "series": [
  1143. "microSD"
  1144. ],
  1145. "gallery": [
  1146. "/images/products/microSD/UD-512G01A1/ud-512g01a1-1.webp",
  1147. "/images/products/microSD/UD-512G01A1/ud-512g01a1-2.webp",
  1148. "/images/products/microSD/UD-512G01A1/ud-512g01a1-3.webp",
  1149. "/images/products/microSD/UD-512G01A1/ud-512g01a1-4.webp",
  1150. "/images/products/microSD/UD-512G01A1/ud-512g01a1-5.webp",
  1151. "/images/products/microSD/UD-512G01A1/ud-512g01a1-6.webp",
  1152. "/images/products/microSD/UD-512G01A1/ud-512g01a1-7.webp",
  1153. "/images/products/microSD/UD-512G01A1/ud-512g01a1-8.webp",
  1154. "/images/products/microSD/UD-512G01A1/ud-512g01a1-9.webp",
  1155. "/images/products/microSD/UD-512G01A1/ud-512g01a1-10.webp",
  1156. "/images/products/microSD/UD-512G01A1/ud-512g01a1-11.webp",
  1157. "/images/products/microSD/UD-512G01A1/ud-512g01a1-12.webp",
  1158. "/images/products/microSD/UD-512G01A1/ud-512g01a1-13.webp",
  1159. "/images/products/microSD/UD-512G01A1/ud-512g01a1-14.webp",
  1160. "/images/products/microSD/UD-512G01A1/ud-512g01a1-15.webp",
  1161. "/images/products/microSD/UD-512G01A1/ud-512g01a1-16.webp",
  1162. "/images/products/microSD/UD-512G01A1/ud-512g01a1-17.webp"
  1163. ],
  1164. "capacities": [
  1165. "512GB"
  1166. ]
  1167. },
  1168. {
  1169. "id": "115.UD-064GBPAG",
  1170. "title": "UD-064GBPAG",
  1171. "name": "UD-064GBPAG",
  1172. "usage": [
  1173. "Mobile Device Storage",
  1174. "Media/Entertainment"
  1175. ],
  1176. "category": 1,
  1177. "image": "/images/products/microSD/UD-064GBPAG/UD-064GBPAG.webp",
  1178. "description": "",
  1179. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1180. "series": [
  1181. "microSD"
  1182. ],
  1183. "gallery": [],
  1184. "capacities": [
  1185. "64GB"
  1186. ]
  1187. },
  1188. {
  1189. "id": "116.UD-128GBPAG",
  1190. "title": "UD-128GBPAG",
  1191. "name": "UD-128GBPAG",
  1192. "usage": [
  1193. "Mobile Device Storage",
  1194. "Media/Entertainment"
  1195. ],
  1196. "category": 1,
  1197. "image": "/images/products/microSD/UD-128GBPAG/UD-128GBPAG.webp",
  1198. "description": "",
  1199. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1200. "series": [
  1201. "microSD"
  1202. ],
  1203. "gallery": [],
  1204. "capacities": [
  1205. "128GB"
  1206. ]
  1207. },
  1208. {
  1209. "id": "117.UD-256GBPAG",
  1210. "title": "UD-256GBPAG",
  1211. "name": "UD-256GBPAG",
  1212. "usage": [
  1213. "Mobile Device Storage",
  1214. "Media/Entertainment"
  1215. ],
  1216. "category": 1,
  1217. "image": "/images/products/microSD/UD-256GBPAG/UD-256GBPAG.webp",
  1218. "description": "",
  1219. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1220. "series": [
  1221. "microSD"
  1222. ],
  1223. "gallery": [],
  1224. "capacities": [
  1225. "256GB"
  1226. ]
  1227. },
  1228. {
  1229. "id": "118.UD-512GBPAG",
  1230. "title": "UD-512GBPAG",
  1231. "name": "UD-512GBPAG",
  1232. "usage": [
  1233. "Mobile Device Storage",
  1234. "Media/Entertainment"
  1235. ],
  1236. "category": 1,
  1237. "image": "/images/products/microSD/UD-512GBPAG/UD-512GBPAG.webp",
  1238. "description": "",
  1239. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1240. "series": [
  1241. "microSD"
  1242. ],
  1243. "gallery": [],
  1244. "capacities": [
  1245. "512GB"
  1246. ]
  1247. },
  1248. {
  1249. "id": "119.UD-001TBPAG",
  1250. "title": "UD-001TBPAG",
  1251. "name": "UD-001TBPAG",
  1252. "usage": [
  1253. "Mobile Device Storage",
  1254. "Media/Entertainment"
  1255. ],
  1256. "category": 1,
  1257. "image": "/images/products/microSD/UD-001TBPAG/UD-001TBPAG.webp",
  1258. "description": "",
  1259. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1260. "series": [
  1261. "microSD"
  1262. ],
  1263. "gallery": [],
  1264. "capacities": [
  1265. "1TB"
  1266. ]
  1267. },
  1268. {
  1269. "id": "120.UD-064GBUHD",
  1270. "title": "UD-064GBUHD",
  1271. "name": "UD-064GBUHD",
  1272. "usage": [
  1273. "Mobile Device Storage",
  1274. "Media/Entertainment"
  1275. ],
  1276. "category": 1,
  1277. "image": "/images/products/microSD/UD-064GBUHD/UD-064GBUHD.webp",
  1278. "description": "",
  1279. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1280. "series": [
  1281. "microSD"
  1282. ],
  1283. "gallery": [],
  1284. "capacities": [
  1285. "64GB"
  1286. ]
  1287. },
  1288. {
  1289. "id": "121.UD-128GBUHD",
  1290. "title": "UD-128GBUHD",
  1291. "name": "UD-128GBUHD",
  1292. "usage": [
  1293. "Mobile Device Storage",
  1294. "Media/Entertainment"
  1295. ],
  1296. "category": 1,
  1297. "image": "/images/products/microSD/UD-128GBUHD/UD-128GBUHD.webp",
  1298. "description": "",
  1299. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1300. "series": [
  1301. "microSD"
  1302. ],
  1303. "gallery": [],
  1304. "capacities": [
  1305. "128GB"
  1306. ]
  1307. },
  1308. {
  1309. "id": "122.UD-256GBUHD",
  1310. "title": "UD-256GBUHD",
  1311. "name": "UD-256GBUHD",
  1312. "usage": [
  1313. "Mobile Device Storage",
  1314. "Media/Entertainment"
  1315. ],
  1316. "category": 1,
  1317. "image": "/images/products/microSD/UD-256GBUHD/UD-256GBUHD.webp",
  1318. "description": "",
  1319. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1320. "series": [
  1321. "microSD"
  1322. ],
  1323. "gallery": [],
  1324. "capacities": [
  1325. "256GB"
  1326. ]
  1327. },
  1328. {
  1329. "id": "123.UD-512GBUHD",
  1330. "title": "UD-512GBUHD",
  1331. "name": "UD-512GBUHD",
  1332. "usage": [
  1333. "Mobile Device Storage",
  1334. "Media/Entertainment"
  1335. ],
  1336. "category": 1,
  1337. "image": "/images/products/microSD/UD-512GBUHD/UD-512GBUHD.webp",
  1338. "description": "",
  1339. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1340. "series": [
  1341. "microSD"
  1342. ],
  1343. "gallery": [],
  1344. "capacities": [
  1345. "512GB"
  1346. ]
  1347. },
  1348. {
  1349. "id": "124.UD-001TBUHD",
  1350. "title": "UD-001TBUHD",
  1351. "name": "UD-001TBUHD",
  1352. "usage": [
  1353. "Mobile Device Storage",
  1354. "Media/Entertainment"
  1355. ],
  1356. "category": 1,
  1357. "image": "/images/products/microSD/UD-001TBUHD/UD-001TBUHD.webp",
  1358. "description": "",
  1359. "summary": "Recommended microSD card for various devices such as Nintendo Switch, smartphones, dashcams, sports cameras, etc.",
  1360. "series": [
  1361. "microSD"
  1362. ],
  1363. "gallery": [],
  1364. "capacities": [
  1365. "1TB"
  1366. ]
  1367. },
  1368. {
  1369. "id": "150.CFX-256GB02HY",
  1370. "title": "CFX-256GB02HY",
  1371. "name": "CFX-256GB02HY",
  1372. "usage": [
  1373. "Professional Photography/Videography",
  1374. "High-Speed Data Transfer/RAW Burst Shooting"
  1375. ],
  1376. "category": 1,
  1377. "image": "/images/products/CFexpress/CFX-256GB02HY/CFX-256GB02HY.webp",
  1378. "description": "",
  1379. "summary": "Recommended CF cards for high-end DSLR cameras, professional camcorders, select mirrorless cameras, and other professional equipment requiring high-speed and stable storage.",
  1380. "series": [
  1381. "CFexpress"
  1382. ],
  1383. "gallery": [],
  1384. "capacities": [
  1385. "256GB"
  1386. ]
  1387. },
  1388. {
  1389. "id": "151.CFX-512GB02HY",
  1390. "title": "CFX-512GB02HY",
  1391. "name": "CFX-512GB02HY",
  1392. "usage": [
  1393. "Professional Photography/Videography",
  1394. "High-Speed Data Transfer/RAW Burst Shooting"
  1395. ],
  1396. "category": 1,
  1397. "image": "/images/products/CFexpress/CFX-512GB02HY/CFX-512GB02HY.webp",
  1398. "description": "",
  1399. "summary": "Recommended CF cards for high-end DSLR cameras, professional camcorders, select mirrorless cameras, and other professional equipment requiring high-speed and stable storage.",
  1400. "series": [
  1401. "CFexpress"
  1402. ],
  1403. "gallery": [],
  1404. "capacities": [
  1405. "512GB"
  1406. ]
  1407. },
  1408. {
  1409. "id": "152.CFX-001TB02HY",
  1410. "title": "CFX-001TB02HY",
  1411. "name": "CFX-001TB02HY",
  1412. "usage": [
  1413. "Professional Photography/Videography",
  1414. "High-Speed Data Transfer/RAW Burst Shooting"
  1415. ],
  1416. "category": 1,
  1417. "image": "/images/products/CFexpress/CFX-001TB02HY/CFX-001TB02HY.webp",
  1418. "description": "",
  1419. "summary": "Recommended CF cards for high-end DSLR cameras, professional camcorders, select mirrorless cameras, and other professional equipment requiring high-speed and stable storage.",
  1420. "series": [
  1421. "CFexpress"
  1422. ],
  1423. "gallery": [],
  1424. "capacities": [
  1425. "1TB"
  1426. ]
  1427. },
  1428. {
  1429. "id": "153.CFX-02TB02HY",
  1430. "title": "CFX-02TB02HY",
  1431. "name": "CFX-02TB02HY",
  1432. "usage": [
  1433. "Professional Photography/Videography",
  1434. "High-Speed Data Transfer/RAW Burst Shooting"
  1435. ],
  1436. "category": 1,
  1437. "image": "/images/products/CFexpress/CFX-02TB02HY/CFX-02TB02HY.webp",
  1438. "description": "",
  1439. "summary": "Recommended CF cards for high-end DSLR cameras, professional camcorders, select mirrorless cameras, and other professional equipment requiring high-speed and stable storage.",
  1440. "series": [
  1441. "CFexpress"
  1442. ],
  1443. "gallery": [],
  1444. "capacities": [
  1445. "2TB"
  1446. ]
  1447. },
  1448. {
  1449. "id": "200.UD5-08GB-5600-1R8",
  1450. "title": "UD5-08GB-5600-1R8",
  1451. "name": "UD5-08GB-5600-1R8",
  1452. "usage": [
  1453. "Memory Upgrade/Performance Enhancement"
  1454. ],
  1455. "category": 3,
  1456. "image": "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8.webp",
  1457. "description": "",
  1458. "summary": "High-performance DDR5 desktop memory, providing stable and reliable system performance enhancement.",
  1459. "series": [
  1460. "DDR5-DIMM"
  1461. ],
  1462. "gallery": [
  1463. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-1.webp",
  1464. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-2.webp",
  1465. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-3.webp",
  1466. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-4.webp",
  1467. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-5.webp"
  1468. ],
  1469. "capacities": [
  1470. "8GB"
  1471. ]
  1472. },
  1473. {
  1474. "id": "200.UD5-16GB-5600-1R8",
  1475. "title": "UD5-16GB-5600-1R8",
  1476. "name": "UD5-16GB-5600-1R8",
  1477. "usage": [
  1478. "Memory Upgrade/Performance Enhancement"
  1479. ],
  1480. "category": 3,
  1481. "image": "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8.webp",
  1482. "description": "",
  1483. "summary": "High-performance DDR5 desktop memory, providing stable and reliable system performance enhancement.",
  1484. "series": [
  1485. "DDR5-DIMM"
  1486. ],
  1487. "gallery": [
  1488. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-1.webp",
  1489. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-2.webp",
  1490. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-3.webp",
  1491. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-4.webp",
  1492. "/images/products/DDR/UD5-16GB-5600-1R8/ud5-16gb-5600-1r8-5.webp"
  1493. ],
  1494. "capacities": [
  1495. "16GB"
  1496. ]
  1497. },
  1498. {
  1499. "id": "202.SD5-08GB-5600-1R8",
  1500. "title": "SD5-08GB-5600-1R8",
  1501. "name": "SD5-08GB-5600-1R8",
  1502. "usage": [
  1503. "Memory Upgrade/Performance Enhancement"
  1504. ],
  1505. "category": 3,
  1506. "image": "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8.webp",
  1507. "description": "",
  1508. "summary": "Upgrading your PC's RAM with DDR5 memory can shorten application load times and improve responsiveness.",
  1509. "series": [
  1510. "DDR5-SODIMM"
  1511. ],
  1512. "gallery": [
  1513. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-1.webp",
  1514. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-2.webp",
  1515. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-3.webp",
  1516. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-4.webp",
  1517. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-5.webp"
  1518. ],
  1519. "capacities": [
  1520. "8GB"
  1521. ]
  1522. },
  1523. {
  1524. "id": "203.SD5-16GB-5600-1R8",
  1525. "title": "SD5-16GB-5600-1R8",
  1526. "name": "SD5-16GB-5600-1R8",
  1527. "usage": [
  1528. "Memory Upgrade/Performance Enhancement"
  1529. ],
  1530. "category": 3,
  1531. "image": "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8.webp",
  1532. "description": "",
  1533. "summary": "Upgrading your PC's RAM with DDR5 memory can shorten application load times and improve responsiveness.",
  1534. "series": [
  1535. "DDR5-SODIMM"
  1536. ],
  1537. "gallery": [
  1538. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-1.webp",
  1539. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-2.webp",
  1540. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-3.webp",
  1541. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-4.webp",
  1542. "/images/products/DDR/SD5-16GB-5600-1R8/sd5-16gb-5600-1r8-5.webp"
  1543. ],
  1544. "capacities": [
  1545. "16GB"
  1546. ]
  1547. },
  1548. {
  1549. "id": "210.UD4-08GB-2666-1R8",
  1550. "title": "UD4-08GB-2666-1R8",
  1551. "name": "UD4-08GB-2666-1R8",
  1552. "usage": [
  1553. "Memory Upgrade/Performance Enhancement"
  1554. ],
  1555. "category": 3,
  1556. "image": "/images/products/DDR/UD4-08GB-2666-1R8/ud4-08gb-2666-1r8.webp",
  1557. "description": "",
  1558. "summary": "High-performance DDR4 desktop memory, providing stable and reliable system performance enhancement.",
  1559. "series": [
  1560. "DDR4-UDIMM"
  1561. ],
  1562. "gallery": [],
  1563. "capacities": [
  1564. "8GB"
  1565. ]
  1566. },
  1567. {
  1568. "id": "211.UD4-08GB-3200-1R8",
  1569. "title": "UD4-08GB-3200-1R8",
  1570. "name": "UD4-08GB-3200-1R8",
  1571. "usage": [
  1572. "Memory Upgrade/Performance Enhancement"
  1573. ],
  1574. "category": 3,
  1575. "image": "/images/products/DDR/UD4-08GB-3200-1R8/ud4-08gb-3200-1r8.webp",
  1576. "description": "DDR4 3200MHz Desktop Memory Module, Single Rank",
  1577. "summary": "High-performance DDR4 desktop memory, providing stable and reliable system performance enhancement.",
  1578. "series": [
  1579. "DDR4-UDIMM"
  1580. ],
  1581. "gallery": [],
  1582. "capacities": [
  1583. "8GB"
  1584. ]
  1585. },
  1586. {
  1587. "id": "212.UD4-16GB-2666-2R8",
  1588. "title": "UD4-16GB-2666-2R8",
  1589. "name": "UD4-16GB-2666-2R8",
  1590. "usage": [
  1591. "Memory Upgrade/Performance Enhancement"
  1592. ],
  1593. "category": 3,
  1594. "image": "/images/products/DDR/UD4-16GB-2666-2R8/ud4-16gb-2666-2r8.webp",
  1595. "description": "DDR4 2666MHz Desktop Memory Module, Dual Rank",
  1596. "summary": "High-performance DDR4 desktop memory, providing stable and reliable system performance enhancement.",
  1597. "series": [
  1598. "DDR4-UDIMM"
  1599. ],
  1600. "gallery": [],
  1601. "capacities": [
  1602. "16GB"
  1603. ]
  1604. },
  1605. {
  1606. "id": "213.UD4-16GB-3200-2R8",
  1607. "title": "UD4-16GB-3200-2R8",
  1608. "name": "UD4-16GB-3200-2R8",
  1609. "usage": [
  1610. "Memory Upgrade/Performance Enhancement"
  1611. ],
  1612. "category": 3,
  1613. "image": "/images/products/DDR/UD4-16GB-3200-2R8/ud4-16gb-3200-2r8.webp",
  1614. "description": "DDR4 3200MHz Desktop Memory Module, Dual Rank",
  1615. "summary": "High-performance DDR4 desktop memory, providing stable and reliable system performance enhancement.",
  1616. "series": [
  1617. "DDR4-UDIMM"
  1618. ],
  1619. "gallery": [],
  1620. "capacities": [
  1621. "16GB"
  1622. ]
  1623. },
  1624. {
  1625. "id": "220.SD4-08GB-2666-1R8",
  1626. "title": "SD4-08GB-2666-1R8",
  1627. "name": "SD4-08GB-2666-1R8",
  1628. "usage": [
  1629. "Memory Upgrade/Performance Enhancement"
  1630. ],
  1631. "category": 3,
  1632. "image": "/images/products/DDR/SD4-08GB-2666-1R8/sd4-08gb-2666-1r8.webp",
  1633. "description": "",
  1634. "summary": "Upgrading your PC's RAM with DDR4 memory can shorten application load times and improve responsiveness.",
  1635. "series": [
  1636. "DDR4-SODIMM"
  1637. ],
  1638. "gallery": [],
  1639. "capacities": [
  1640. "8GB"
  1641. ]
  1642. },
  1643. {
  1644. "id": "221.SD4-08GB-3200-1R8",
  1645. "title": "SD4-08GB-3200-1R8",
  1646. "name": "SD4-08GB-3200-1R8",
  1647. "usage": [
  1648. "Memory Upgrade/Performance Enhancement"
  1649. ],
  1650. "category": 3,
  1651. "image": "/images/products/DDR/SD4-08GB-3200-1R8/sd4-08gb-3200-1r8.webp",
  1652. "description": "",
  1653. "summary": "Upgrading your PC's RAM with DDR4 memory can shorten application load times and improve responsiveness.",
  1654. "series": [
  1655. "DDR4-SODIMM"
  1656. ],
  1657. "gallery": [],
  1658. "capacities": [
  1659. "8GB"
  1660. ]
  1661. },
  1662. {
  1663. "id": "222.SD4-16GB-2666-2R8",
  1664. "title": "SD4-16GB-2666-2R8",
  1665. "name": "SD4-16GB-2666-2R8",
  1666. "usage": [
  1667. "Memory Upgrade/Performance Enhancement"
  1668. ],
  1669. "category": 3,
  1670. "image": "/images/products/DDR/SD4-16GB-2666-2R8/sd4-16gb-2666-2r8.webp",
  1671. "description": "",
  1672. "summary": "Upgrading your PC's RAM with DDR4 memory can shorten application load times and improve responsiveness.",
  1673. "series": [
  1674. "DDR4-SODIMM"
  1675. ],
  1676. "gallery": [],
  1677. "capacities": [
  1678. "16GB"
  1679. ]
  1680. },
  1681. {
  1682. "id": "223.SD4-16GB-3200-2R8",
  1683. "title": "SD4-16GB-3200-2R8",
  1684. "name": "SD4-16GB-3200-2R8",
  1685. "usage": [
  1686. "Memory Upgrade/Performance Enhancement"
  1687. ],
  1688. "category": 3,
  1689. "image": "/images/products/DDR/SD4-16GB-3200-2R8/sd4-16gb-3200-2r8.webp",
  1690. "description": "DDR4 3200MHz Laptop Memory Module, Dual Rank",
  1691. "summary": "Upgrading your PC's RAM with DDR4 memory can shorten application load times and improve responsiveness.",
  1692. "series": [
  1693. "DDR4-SODIMM"
  1694. ],
  1695. "gallery": [],
  1696. "capacities": [
  1697. "16GB"
  1698. ]
  1699. },
  1700. {
  1701. "id": "230.DDR3-UDIMM-8GB-1.5V",
  1702. "title": "DDR3-UDIMM-8GB-1.5V",
  1703. "name": "DDR3-UDIMM-8GB-1.5V",
  1704. "usage": [
  1705. "Memory Upgrade/Performance Enhancement"
  1706. ],
  1707. "category": 3,
  1708. "image": "/images/products/DDR/DDR3-UDIMM-8GB-1.5V/ddr3-udimm-8gb-1.5v.webp",
  1709. "description": "",
  1710. "summary": "Easy to install, no computer skills required",
  1711. "series": [
  1712. "DDR3-UDIMM"
  1713. ],
  1714. "gallery": [],
  1715. "capacities": [
  1716. "8GB"
  1717. ]
  1718. },
  1719. {
  1720. "id": "231.DDR3-SODIMM-8GB-1.35V",
  1721. "title": "DDR3-SODIMM-8GB-1.35V",
  1722. "name": "DDR3-SODIMM-8GB-1.35V",
  1723. "usage": [
  1724. "Memory Upgrade/Performance Enhancement"
  1725. ],
  1726. "category": 3,
  1727. "image": "/images/products/DDR/DDR3-SODIMM-8GB-1.35V/ddr3-sodimm-8gb-1.35v.webp",
  1728. "description": "",
  1729. "summary": "Easy to install, no computer skills required",
  1730. "series": [
  1731. "DDR3-SODIMM"
  1732. ],
  1733. "gallery": [],
  1734. "capacities": [
  1735. "8GB"
  1736. ]
  1737. },
  1738. {
  1739. "id": "CR-201BK",
  1740. "title": "CR-201BK",
  1741. "name": "CR-201BK",
  1742. "usage": [
  1743. "Mobile Data Transfer/Backup"
  1744. ],
  1745. "category": 4,
  1746. "image": "/images/products/Card Reader/CR-201BK/cr-201bk.webp",
  1747. "description": "",
  1748. "summary": "Suitable for PCs, tablets with OTG function, and Android smartphones",
  1749. "series": [
  1750. "Card Reader"
  1751. ],
  1752. "gallery": [],
  1753. "capacities": [
  1754. ""
  1755. ]
  1756. },
  1757. {
  1758. "id": "DDR3-SODIMM-8GB-1.5V",
  1759. "title": "DDR3-SODIMM-8GB-1.5V",
  1760. "name": "DDR3-SODIMM-8GB-1.5V",
  1761. "usage": [
  1762. "Memory Upgrade/Performance Enhancement"
  1763. ],
  1764. "category": 3,
  1765. "image": "/images/products/DDR/DDR3-SODIMM-8GB-1.5V/ddr3-sodimm-8gb-1.5v.webp",
  1766. "description": "",
  1767. "summary": "Easy to install, no computer skills required",
  1768. "series": [
  1769. "DDR3"
  1770. ],
  1771. "gallery": [],
  1772. "capacities": [
  1773. "8GB"
  1774. ]
  1775. },
  1776. {
  1777. "id": "HSE-M20GRC01",
  1778. "title": "HSE-M20GRC01",
  1779. "name": "HSE-M20GRC01",
  1780. "usage": [
  1781. "Mobile Data Transfer/Backup"
  1782. ],
  1783. "category": 4,
  1784. "image": "/images/products/M.2 SSD Enclosure/HSE-M20GRC01/hse-m20grc01.webp",
  1785. "description": "M.2 SSD External Enclosure, supporting SATA protocol",
  1786. "summary": "This is a portable enclosure that converts M.2 NVMe/SATA SSD into an external drive.",
  1787. "series": [
  1788. "M.2 SSD Enclosure"
  1789. ],
  1790. "gallery": [],
  1791. "capacities": []
  1792. },
  1793. {
  1794. "id": "HSE-M40GRC01",
  1795. "title": "HSE-M40GRC01",
  1796. "name": "HSE-M40GRC01",
  1797. "usage": [
  1798. "Mobile Data Transfer/Backup"
  1799. ],
  1800. "category": 4,
  1801. "image": "/images/products/M.2 SSD Enclosure/HSE-M40GRC01/hse-m40grc01.webp",
  1802. "description": "M.2 SSD External Enclosure, supporting NVMe protocol",
  1803. "summary": "Compatible with SSD sizes 2230/2242/2260/2280 and various operating systems.",
  1804. "series": [
  1805. "M.2 SSD Enclosure"
  1806. ],
  1807. "gallery": [],
  1808. "capacities": []
  1809. },
  1810. {
  1811. "id": "HSE-M4IN1GRC01",
  1812. "title": "HSE-M4IN1GRC01",
  1813. "name": "HSE-M4IN1GRC01",
  1814. "usage": [
  1815. "Mobile Data Transfer/Backup"
  1816. ],
  1817. "category": 4,
  1818. "image": "/images/products/M.2 SSD Enclosure/HSE-M4IN1GRC01/hse-m4in1grc01.webp",
  1819. "description": "",
  1820. "summary": "Connect portable HDD, USB drives, mouse, and keyboard to your PC with a single USB Type-C to Type-C cable through its \"1x USB-C port\" and \"2x USB-A ports\"!",
  1821. "series": [
  1822. "M.2 SSD Enclosure"
  1823. ],
  1824. "gallery": [],
  1825. "capacities": []
  1826. },
  1827. {
  1828. "id": "HSE-M6IN1GRC01",
  1829. "title": "HSE-M6IN1GRC01",
  1830. "name": "HSE-M6IN1GRC01",
  1831. "usage": [
  1832. "Mobile Data Transfer/Backup"
  1833. ],
  1834. "category": 4,
  1835. "image": "/images/products/M.2 SSD Enclosure/HSE-M6IN1GRC01/hse-m6in1grc01.webp",
  1836. "description": "M.2 SSD Enclosure, supporting NVMe/SATA protocols",
  1837. "summary": "Supports M.2 NVMe/SATA SSD, up to 4TB capacity. Equipped with [HDMI×1], [USB-A×2], [USB PD]×1, [RJ45]×1.",
  1838. "series": [
  1839. "M.2 SSD Enclosure"
  1840. ],
  1841. "gallery": [],
  1842. "capacities": []
  1843. },
  1844. {
  1845. "id": "LINE-HDC-STABK01",
  1846. "title": "LINE-HDC-STABK01",
  1847. "name": "LINE-HDC-STABK01",
  1848. "usage": [
  1849. "Externalizing & Accelerating 2.5-inch Drives",
  1850. "Up to 5Gbps High-Speed Transfer / UASP & TRIM Support / Smart Sleep"
  1851. ],
  1852. "category": 4,
  1853. "image": "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01.webp",
  1854. "description": "",
  1855. "summary": "Recommended for connecting 2.5-inch SATA SSD/HDD to a computer to maximize drive performance (supports TRIM command). Features S.M.A.R.T. monitoring and auto-sleep function, ideal for high-speed data transfer and portable storage.",
  1856. "series": [
  1857. "Adapter/Cable"
  1858. ],
  1859. "gallery": [
  1860. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-2.webp",
  1861. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-3.webp",
  1862. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-4.webp",
  1863. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-5.webp",
  1864. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-6.webp",
  1865. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-7.webp",
  1866. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-8.webp",
  1867. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-9.webp",
  1868. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-10.webp",
  1869. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-11.webp",
  1870. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-12.webp",
  1871. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-13.webp",
  1872. "/images/products/AdapterCable/LINE-HDC-STABK01/LINE-HDC-STABK01-14.webp"
  1873. ],
  1874. "capacities": [
  1875. ""
  1876. ]
  1877. },
  1878. {
  1879. "id": "LINE-USBTOSATA-002",
  1880. "title": "LINE-USBTOSATA-002",
  1881. "name": "LINE-USBTOSATA-002",
  1882. "usage": [
  1883. "SSD/HDD Upgrade & Data Migratio",
  1884. "USB 3.0 High-Speed Transfer / UASP Support / Plug & Play"
  1885. ],
  1886. "category": 4,
  1887. "image": "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002.webp",
  1888. "description": "",
  1889. "summary": "Recommended for connecting 2.5-inch SATA SSD/HDD to a computer via USB for system cloning, data backup, or use as external storage. Supports hot-swapping for convenient operation.",
  1890. "series": [
  1891. "Adapter/Cable"
  1892. ],
  1893. "gallery": [
  1894. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-1.webp",
  1895. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-2.webp",
  1896. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-3.webp",
  1897. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-4.webp",
  1898. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-5.webp",
  1899. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-6.webp",
  1900. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-7.webp",
  1901. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-8.webp",
  1902. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-9.webp",
  1903. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-10.webp",
  1904. "/images/products/AdapterCable/LINE-USBTOSATA-002/LINE-USBTOSATA-002-11.webp"
  1905. ],
  1906. "capacities": [
  1907. ""
  1908. ]
  1909. },
  1910. {
  1911. "id": "PE-CR003",
  1912. "title": "PE-CR003",
  1913. "name": "PE-CR003",
  1914. "usage": [
  1915. "Mobile Data Transfer/Backup"
  1916. ],
  1917. "category": 4,
  1918. "image": "/images/products/Card Reader/PE-CR003/pe-cr003.webp",
  1919. "description": "",
  1920. "summary": "Features USB-A and USB-C dual connectors, equipped with SD card, microSD card, and USB2.0 three ports, supporting multiple media.",
  1921. "series": [
  1922. "Card Reader"
  1923. ],
  1924. "gallery": [],
  1925. "capacities": []
  1926. },
  1927. {
  1928. "id": "PE-CR405",
  1929. "title": "PE-CR405",
  1930. "name": "PE-CR405",
  1931. "usage": [
  1932. "Mobile Data Transfer/Backup"
  1933. ],
  1934. "category": 4,
  1935. "image": "/images/products/Card Reader/PE-CR405/pe-cr405.webp",
  1936. "description": "",
  1937. "summary": "Can simultaneously read and write microSD, SD, and CFexpress Type A/Type B three types of memory cards, significantly improving work efficiency.",
  1938. "series": [
  1939. "Card Reader"
  1940. ],
  1941. "gallery": [],
  1942. "capacities": []
  1943. }
  1944. ]