shortcuts-playground 1.2.1

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 (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,107 @@
1
+ [
2
+ {
3
+ "name": "Red",
4
+ "hex": "#F36F74",
5
+ "value": 4282601983,
6
+ "aliases": [4282601983, -12365313],
7
+ "synonyms": ["red", "urgent", "alert", "danger", "error", "critical", "stop"]
8
+ },
9
+ {
10
+ "name": "Orange",
11
+ "hex": "#FF8E73",
12
+ "value": 4251333119,
13
+ "aliases": [4251333119, -43634177],
14
+ "synonyms": ["orange", "warning", "caution", "attention"]
15
+ },
16
+ {
17
+ "name": "Yellow",
18
+ "hex": "#F8AE5F",
19
+ "value": 4271458815,
20
+ "aliases": [4271458815, -23508481],
21
+ "synonyms": ["yellow", "bright", "sunny"]
22
+ },
23
+ {
24
+ "name": "Gold",
25
+ "hex": "#E8CA45",
26
+ "value": 4274264319,
27
+ "aliases": [4274264319, -20702977],
28
+ "synonyms": ["gold", "amber", "money", "finance", "budget", "premium"]
29
+ },
30
+ {
31
+ "name": "Green",
32
+ "hex": "#53CD6B",
33
+ "value": 4292093695,
34
+ "aliases": [4292093695, -2873601],
35
+ "synonyms": ["green", "success", "healthy", "health", "nature", "eco"]
36
+ },
37
+ {
38
+ "name": "Teal",
39
+ "hex": "#57CFB4",
40
+ "value": 431817727,
41
+ "aliases": [431817727, -3863149569],
42
+ "synonyms": ["teal", "turquoise", "mint", "aqua"]
43
+ },
44
+ {
45
+ "name": "Cyan",
46
+ "hex": "#5ACCDE",
47
+ "value": 1440408063,
48
+ "aliases": [1440408063, -2854559233],
49
+ "synonyms": ["cyan", "sky", "light blue"]
50
+ },
51
+ {
52
+ "name": "Blue",
53
+ "hex": "#24BAF7",
54
+ "value": 463140863,
55
+ "aliases": [463140863, -3831826433],
56
+ "synonyms": ["blue", "ocean", "travel", "info"]
57
+ },
58
+ {
59
+ "name": "Navy",
60
+ "hex": "#5874CA",
61
+ "value": 946986751,
62
+ "aliases": [946986751, -3347980545],
63
+ "synonyms": ["navy", "indigo", "deep blue", "professional"]
64
+ },
65
+ {
66
+ "name": "Purple",
67
+ "hex": "#9164C7",
68
+ "value": 2071128575,
69
+ "aliases": [2071128575, -2223838721],
70
+ "synonyms": ["purple", "violet", "creative", "magic", "ai"]
71
+ },
72
+ {
73
+ "name": "Lavender",
74
+ "hex": "#C085E6",
75
+ "value": 3679049983,
76
+ "aliases": [3679049983, -615917313],
77
+ "synonyms": ["lavender", "lilac", "pastel purple", "soft purple"]
78
+ },
79
+ {
80
+ "name": "Pink",
81
+ "hex": "#F694D8",
82
+ "value": 3980825855,
83
+ "aliases": [3980825855, -314141441],
84
+ "synonyms": ["pink", "rose", "magenta", "social", "love"]
85
+ },
86
+ {
87
+ "name": "Gray",
88
+ "hex": "#9099A3",
89
+ "value": 255,
90
+ "aliases": [255, -4294967041],
91
+ "synonyms": ["gray", "grey", "neutral", "system", "utility"]
92
+ },
93
+ {
94
+ "name": "Sage",
95
+ "hex": "#9DA79D",
96
+ "value": 3031607807,
97
+ "aliases": [3031607807, -1263359489],
98
+ "synonyms": ["sage", "muted green", "soft green"]
99
+ },
100
+ {
101
+ "name": "Tan",
102
+ "hex": "#A49995",
103
+ "value": 2846468607,
104
+ "aliases": [2846468607, -1448498689],
105
+ "synonyms": ["tan", "beige", "brown"]
106
+ }
107
+ ]
@@ -0,0 +1,509 @@
1
+ {
2
+ "59718": "Connected",
3
+ "59819": "QRCode",
4
+ "61522": "QRViewFinder",
5
+ "59849": "Target",
6
+ "61468": "addMessage",
7
+ "61476": "airPods",
8
+ "61477": "airPodsPro",
9
+ "61501": "airdrop",
10
+ "59648": "airplane",
11
+ "61499": "airplayAudio",
12
+ "61500": "airplayVideo",
13
+ "59649": "alarmClock",
14
+ "59650": "alertTriangle",
15
+ "59651": "alien",
16
+ "59652": "ambulance",
17
+ "61461": "aperture",
18
+ "61525": "appearance",
19
+ "59740": "apple",
20
+ "61482": "appleTV",
21
+ "61484": "appleWatchWaves",
22
+ "59653": "archive",
23
+ "59654": "arrowCurvedLeft",
24
+ "59655": "arrowCurvedRight",
25
+ "61497": "arrowDiamond",
26
+ "59656": "asterisk",
27
+ "59657": "atom",
28
+ "59659": "babyBoy",
29
+ "59658": "babyGirl",
30
+ "59660": "bandage",
31
+ "59662": "barGraph",
32
+ "59661": "barcode",
33
+ "61454": "barometer",
34
+ "59663": "baseball",
35
+ "59664": "basketball",
36
+ "59665": "bathtub",
37
+ "59489": "battery",
38
+ "61554": "bear",
39
+ "59666": "bed",
40
+ "59667": "bell",
41
+ "59668": "bike",
42
+ "59669": "binoculars",
43
+ "59515": "bitcoin",
44
+ "999999": "blank",
45
+ "59670": "bookmark",
46
+ "59671": "bookshelf",
47
+ "59673": "boxFilled",
48
+ "59674": "boxOutline",
49
+ "59675": "braille",
50
+ "61533": "brain",
51
+ "61532": "brainHead",
52
+ "59676": "briefcase",
53
+ "59677": "buildings",
54
+ "59433": "bumps",
55
+ "59678": "bus",
56
+ "61448": "busDouble",
57
+ "59679": "cake",
58
+ "59680": "calculator",
59
+ "59681": "calendar",
60
+ "61511": "calendarExclamation",
61
+ "61510": "calendarPlus",
62
+ "59682": "camera",
63
+ "61523": "cameraViewFinder",
64
+ "59452": "car",
65
+ "61446": "carMultiple",
66
+ "59683": "carrot",
67
+ "61577": "cartoonHeart",
68
+ "59684": "cat",
69
+ "59685": "chainlink",
70
+ "59414": "chatBubble",
71
+ "61587": "checklist",
72
+ "59686": "chemical",
73
+ "61560": "chicken",
74
+ "59687": "child",
75
+ "59688": "church",
76
+ "59696": "circleLeftArrow",
77
+ "59705": "circleRightArrow",
78
+ "59520": "circledA",
79
+ "59690": "circledCheckmark",
80
+ "59692": "circledDownArrow",
81
+ "59695": "circledFastForward",
82
+ "59542": "circledHeart",
83
+ "59697": "circledI",
84
+ "59698": "circledPi",
85
+ "59699": "circledPlay",
86
+ "59700": "circledPlus",
87
+ "59702": "circledPower",
88
+ "59703": "circledQuestionMark",
89
+ "59704": "circledRewind",
90
+ "59706": "circledStop",
91
+ "59707": "circledUpArrow",
92
+ "59709": "circledX",
93
+ "59711": "clipboard",
94
+ "59712": "clock",
95
+ "61442": "closedBook",
96
+ "61550": "closedFist",
97
+ "59713": "clothesHanger",
98
+ "59714": "cloud",
99
+ "59459": "cloudService",
100
+ "61529": "command",
101
+ "61530": "commandCircle",
102
+ "61531": "commandSquare",
103
+ "59717": "compass",
104
+ "61514": "compose",
105
+ "61563": "cow",
106
+ "59719": "creditCard",
107
+ "59720": "crop",
108
+ "59721": "cube",
109
+ "59519": "database",
110
+ "61474": "desktopSpeaker",
111
+ "61521": "dialMax",
112
+ "61520": "dialMin",
113
+ "59723": "dice",
114
+ "61498": "directionsRight",
115
+ "59725": "document",
116
+ "59726": "documentFilled",
117
+ "59727": "documentOutline",
118
+ "59496": "documentOutlineAlt",
119
+ "59728": "dog",
120
+ "59395": "dollarSign",
121
+ "59729": "doubleQuote",
122
+ "61583": "doubleQuoteOutline",
123
+ "59693": "downloadArrow",
124
+ "61564": "dragon",
125
+ "59730": "dramaMask",
126
+ "61515": "duplicate",
127
+ "61481": "ear",
128
+ "61475": "earPods",
129
+ "61447": "electricCar",
130
+ "59392": "ellipsis",
131
+ "59773": "envelope",
132
+ "59774": "envelopeOpen",
133
+ "59448": "euroSign",
134
+ "59716": "eyedropper",
135
+ "61540": "faceGrimacing",
136
+ "61534": "faceGrinning",
137
+ "61536": "faceGrinningSquint",
138
+ "61543": "faceHearts",
139
+ "61542": "faceKiss",
140
+ "61541": "faceLove",
141
+ "61538": "faceRolling",
142
+ "61535": "faceSmiling",
143
+ "61545": "faceStarry",
144
+ "61544": "faceSunglasses",
145
+ "61537": "faceTears",
146
+ "61539": "faceWink",
147
+ "59583": "facetime",
148
+ "59497": "feed",
149
+ "59732": "feedRight",
150
+ "59733": "filmstrip",
151
+ "59734": "fire",
152
+ "59735": "fish",
153
+ "59736": "flag",
154
+ "59468": "flower",
155
+ "59737": "folder",
156
+ "61571": "folderGear",
157
+ "61570": "folderOutline",
158
+ "59456": "football",
159
+ "59738": "footprints",
160
+ "59739": "fourSquares",
161
+ "59741": "fuelstation",
162
+ "59742": "gameController",
163
+ "61452": "gauge",
164
+ "59743": "gear",
165
+ "61567": "ghost",
166
+ "59744": "gift",
167
+ "59745": "glasses",
168
+ "59412": "globe",
169
+ "59746": "graduate",
170
+ "59747": "groceryStore",
171
+ "59748": "hammer",
172
+ "59473": "hammerAlt",
173
+ "59751": "hand",
174
+ "61584": "handSlash",
175
+ "61585": "handSlashOutline",
176
+ "59750": "handbag",
177
+ "59752": "hardDrive",
178
+ "59753": "headphones",
179
+ "61479": "headphonesCircle",
180
+ "59754": "heart",
181
+ "61478": "hifiSpeaker",
182
+ "61483": "homePod",
183
+ "59756": "horse",
184
+ "59757": "hourglass",
185
+ "59755": "house",
186
+ "61489": "iPad",
187
+ "61490": "iPadAlt",
188
+ "61486": "iPhone",
189
+ "61488": "iPhoneApps",
190
+ "61487": "iPhoneWave",
191
+ "61491": "iPod",
192
+ "59758": "infinity",
193
+ "59759": "inhaler",
194
+ "59760": "key",
195
+ "59446": "keyboard",
196
+ "59494": "keyboardOld",
197
+ "59436": "laptop",
198
+ "59761": "laundryMachine",
199
+ "59762": "lifePreserver",
200
+ "59763": "lightbulb",
201
+ "59764": "lightningBolt",
202
+ "59445": "list",
203
+ "61507": "livePhoto",
204
+ "61506": "livePlay",
205
+ "59767": "loadingIndicator",
206
+ "59516": "loadingIndicatorAlt",
207
+ "59768": "locationArrow",
208
+ "59769": "locationPin",
209
+ "59770": "lock",
210
+ "61549": "loveGesture",
211
+ "59511": "magicWand",
212
+ "59771": "magicWandAlt",
213
+ "59772": "magnifyingGlass",
214
+ "59775": "man",
215
+ "61444": "map",
216
+ "59776": "martini",
217
+ "59777": "mask",
218
+ "59815": "medicine",
219
+ "59778": "medicineBottle",
220
+ "61546": "memoji",
221
+ "59403": "messageBubbles",
222
+ "59780": "microphone",
223
+ "59781": "microscope",
224
+ "61556": "monkey",
225
+ "59782": "moon",
226
+ "61517": "moonCircle",
227
+ "59783": "motorcycle",
228
+ "59785": "mountain",
229
+ "61562": "mouse",
230
+ "59786": "moveArrow",
231
+ "59402": "movieCamera",
232
+ "59789": "mug",
233
+ "59790": "musicNote",
234
+ "61503": "musicNoteAlt",
235
+ "61502": "musicNoteList",
236
+ "61504": "musicSquareStack",
237
+ "61505": "musicWaveForm",
238
+ "61472": "mute",
239
+ "61455": "network",
240
+ "59826": "networkStorage",
241
+ "59791": "newsArticle",
242
+ "61518": "nightShift",
243
+ "61528": "noSign",
244
+ "61464": "note",
245
+ "61465": "noteText",
246
+ "61466": "noteTextPlus",
247
+ "61552": "oneProngPuzzlePiece",
248
+ "59465": "openBook",
249
+ "59792": "oven",
250
+ "59793": "paintbrush",
251
+ "59836": "paperAirplane",
252
+ "61462": "paperAirplaneCircle",
253
+ "59794": "paperclip",
254
+ "59795": "parking",
255
+ "59796": "pawPrint",
256
+ "61548": "peace",
257
+ "59797": "peaceSign",
258
+ "59798": "pencil",
259
+ "59800": "people2",
260
+ "59799": "people3",
261
+ "59801": "person",
262
+ "59437": "person2",
263
+ "59802": "personAlter",
264
+ "61495": "personClose",
265
+ "59803": "personDancer",
266
+ "59805": "personHiking",
267
+ "59807": "personLifting",
268
+ "61496": "personOpen",
269
+ "59808": "personRunning",
270
+ "61493": "personRunningCircle",
271
+ "59809": "personSkiing",
272
+ "59810": "personSnowboarding",
273
+ "59804": "personSpeech",
274
+ "61494": "personSprinting",
275
+ "59811": "personSwimming",
276
+ "59812": "personWalking",
277
+ "59813": "personWalkingCane",
278
+ "59814": "phone",
279
+ "61459": "photoStack",
280
+ "61460": "photoStackAlt",
281
+ "59784": "picture",
282
+ "61561": "pig",
283
+ "59461": "pill",
284
+ "59731": "pineTree",
285
+ "59508": "play",
286
+ "59816": "podcasts",
287
+ "61568": "poop",
288
+ "59512": "poundSign",
289
+ "59817": "printer",
290
+ "59818": "puzzlePiece",
291
+ "61558": "rabbit",
292
+ "61480": "radio",
293
+ "59715": "raincloud",
294
+ "61557": "ram",
295
+ "61574": "rectangleSplit",
296
+ "61575": "rectangleSplitThree",
297
+ "61576": "rectangleSplitThreeOutline",
298
+ "61456": "rectangleStack",
299
+ "59820": "recycle",
300
+ "59821": "repostArrows",
301
+ "61565": "retroAlien",
302
+ "61566": "robot",
303
+ "59822": "rocket",
304
+ "59823": "sailboat",
305
+ "59672": "sashBook",
306
+ "59824": "scissors",
307
+ "59825": "screwdriver",
308
+ "61467": "sendMessage",
309
+ "61582": "sendMessageOutline",
310
+ "59722": "server",
311
+ "59827": "shirt",
312
+ "59828": "shoppingCart",
313
+ "61440": "shortcuts",
314
+ "59829": "shower",
315
+ "59830": "shrinkArrow",
316
+ "59832": "shuffleArrows",
317
+ "59724": "signs",
318
+ "61569": "skull",
319
+ "59833": "sliders",
320
+ "61508": "sloMo",
321
+ "59834": "smileyFace",
322
+ "61559": "snake",
323
+ "59835": "snowflake",
324
+ "59837": "soccerBall",
325
+ "61581": "sparkles",
326
+ "59838": "sparklingBell",
327
+ "61473": "speaker",
328
+ "61453": "speedometer",
329
+ "61457": "squareStack",
330
+ "59840": "stairs",
331
+ "59841": "star",
332
+ "61579": "starHalf",
333
+ "59842": "steamingBowl",
334
+ "59843": "stethoscope",
335
+ "59844": "stopwatch",
336
+ "59455": "stripe",
337
+ "59845": "sun",
338
+ "61551": "surgicalMask",
339
+ "59846": "syncArrows",
340
+ "59847": "syringe",
341
+ "59848": "tag",
342
+ "61553": "takeout",
343
+ "59454": "targetAlt",
344
+ "59850": "telescope",
345
+ "59852": "tennisBall",
346
+ "61588": "textBox",
347
+ "59779": "textBubble",
348
+ "59853": "textSymbol",
349
+ "59854": "thermometer",
350
+ "59856": "threeCircles",
351
+ "61458": "threeDSquareStack",
352
+ "59857": "thumbsUp",
353
+ "61547": "thumbsUpEmoji",
354
+ "59788": "ticket",
355
+ "61555": "tiger",
356
+ "61509": "timeLapse",
357
+ "61512": "timer",
358
+ "61513": "timerSquare",
359
+ "59749": "tools",
360
+ "61449": "tram",
361
+ "61450": "tramTunnel",
362
+ "59859": "trashcan",
363
+ "59860": "trophy",
364
+ "61519": "trueTone",
365
+ "59851": "tv",
366
+ "59405": "twelveSquares",
367
+ "61578": "twoCartoonHearts",
368
+ "61572": "twoxTwoRectangles",
369
+ "61573": "twoxTwoRectanglesOutline",
370
+ "59861": "umbrella",
371
+ "59862": "unlockButton",
372
+ "59708": "uploadArrow",
373
+ "59863": "utensils",
374
+ "59864": "videoIcon",
375
+ "61471": "volumeHigh",
376
+ "59839": "volumeLow",
377
+ "61470": "volumeMid",
378
+ "61524": "walletPass",
379
+ "59865": "watch",
380
+ "59866": "waterDrop",
381
+ "61586": "waveform",
382
+ "59806": "wheelchair",
383
+ "59867": "wifi",
384
+ "59868": "wineBottle",
385
+ "59869": "woman",
386
+ "59870": "wrench",
387
+ "61589": "xSquare",
388
+ "59514": "yenSign",
389
+ "62212": "keyRadiowaves",
390
+ "62213": "appleIntelligence",
391
+ "62214": "handPointUpLeft",
392
+ "62215": "handTap",
393
+ "62216": "handDraw",
394
+ "62217": "shippingBox",
395
+ "62224": "engineCombustion",
396
+ "62225": "pc",
397
+ "62226": "bellBadge",
398
+ "62227": "bellAnnounce",
399
+ "62228": "bellSlash",
400
+ "62229": "bellAndWaves",
401
+ "62230": "swatchPalette",
402
+ "62231": "mugAlt",
403
+ "62232": "oilCan",
404
+ "62233": "newspaper",
405
+ "62240": "a11y",
406
+ "62241": "megaphone",
407
+ "62242": "shieldSwap",
408
+ "62243": "basket",
409
+ "62244": "level",
410
+ "62245": "fileVault",
411
+ "62246": "fireplace",
412
+ "62247": "cabinet",
413
+ "62248": "dryer",
414
+ "62249": "sink",
415
+ "62256": "pin",
416
+ "62257": "shoe",
417
+ "62258": "buildingBlock",
418
+ "62259": "dPad",
419
+ "62260": "waterBottle",
420
+ "62261": "sdCard",
421
+ "62262": "sdCard2",
422
+ "62263": "chip",
423
+ "62264": "weight",
424
+ "62265": "dollar",
425
+ "62272": "yoyo",
426
+ "62273": "americanFootball",
427
+ "62274": "americanFootballStriped",
428
+ "62275": "beachUmbrella",
429
+ "62276": "spade",
430
+ "62278": "club",
431
+ "62279": "showerHandheld",
432
+ "62280": "signpostRight",
433
+ "62281": "macProGen3",
434
+ "62288": "macProGen2",
435
+ "62289": "macProGen1",
436
+ "62290": "homepodMini",
437
+ "62291": "homepod2",
438
+ "62292": "carSideSUV",
439
+ "62293": "carSideSedan",
440
+ "62294": "carSideConvertable",
441
+ "62295": "hornBlast",
442
+ "62296": "vaccinationCard",
443
+ "62297": "ivFluidBag",
444
+ "62304": "hatWideBrim",
445
+ "62305": "globeDesk",
446
+ "62306": "mugHot",
447
+ "62307": "networkConnected",
448
+ "62308": "appConnection",
449
+ "62310": "mustache",
450
+ "62311": "flipPhone",
451
+ "62312": "siri",
452
+ "62313": "appStore",
453
+ "62320": "carPlay",
454
+ "62321": "textAppend",
455
+ "62322": "appleCash",
456
+ "62323": "appleMathNotes",
457
+ "62324": "appleMindfulness",
458
+ "62325": "appleBreathe",
459
+ "62326": "appleReflect",
460
+ "62327": "appleMeditate",
461
+ "62328": "appleStateOfMind",
462
+ "62329": "appleCycleTracking",
463
+ "62336": "appleNews",
464
+ "62337": "appleHealthTrends",
465
+ "62338": "applePages",
466
+ "62339": "appleKeynote",
467
+ "62340": "appleNumbers",
468
+ "62341": "bezierCurve",
469
+ "62342": "roadCurvedLeft",
470
+ "62343": "roadCurvedRight",
471
+ "62344": "pointsConnection",
472
+ "62345": "pointsCurvedSPath",
473
+ "62352": "sparkle",
474
+ "62353": "arrowUpRight",
475
+ "62354": "arrowUpLeft",
476
+ "62355": "textInsert",
477
+ "62356": "textQuote",
478
+ "62357": "textAlignLeft",
479
+ "62358": "textAlignCenter",
480
+ "62359": "textAlignRight",
481
+ "62360": "textJustify",
482
+ "62464": "suitcases",
483
+ "62465": "petCarrier",
484
+ "62466": "airplaneLanded",
485
+ "62467": "airplaneCloud",
486
+ "62468": "airplaneTicket",
487
+ "62469": "airplaneSeat",
488
+ "62470": "personWalkingSuitcase",
489
+ "62471": "appleClassicalPages",
490
+ "62472": "textSquareFilled",
491
+ "62473": "characterTextJustify",
492
+ "62480": "graph2D",
493
+ "62481": "mathOperators",
494
+ "62482": "circle",
495
+ "62483": "capsulePortrait",
496
+ "62484": "rectangle",
497
+ "62485": "rectanglePortrait",
498
+ "62486": "oval",
499
+ "62487": "ovalPortrait",
500
+ "62488": "triangle",
501
+ "62489": "diamond",
502
+ "62496": "octagon",
503
+ "62497": "hexagon",
504
+ "62498": "pentagon",
505
+ "62499": "seal",
506
+ "62500": "rhombus",
507
+ "62501": "shield",
508
+ "61796": "shazam"
509
+ }