@aleph-ai/tinyaleph 1.2.1 → 1.3.0
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.
- package/README.md +187 -2
- package/backends/bioinformatics/binding.js +503 -0
- package/backends/bioinformatics/dna-computing.js +664 -0
- package/backends/bioinformatics/encoding.js +339 -0
- package/backends/bioinformatics/folding.js +454 -0
- package/backends/bioinformatics/genetic-code.js +269 -0
- package/backends/bioinformatics/index.js +522 -0
- package/backends/bioinformatics/transcription.js +221 -0
- package/backends/bioinformatics/translation.js +264 -0
- package/backends/index.js +25 -1
- package/core/compound.js +532 -0
- package/core/hilbert.js +454 -1
- package/core/index.js +106 -12
- package/core/inference.js +605 -0
- package/core/resonance.js +245 -616
- package/core/symbols/archetypes.js +478 -0
- package/core/symbols/base.js +302 -0
- package/core/symbols/elements.js +487 -0
- package/core/symbols/hieroglyphs.js +303 -0
- package/core/symbols/iching.js +471 -0
- package/core/symbols/index.js +77 -0
- package/core/symbols/tarot.js +211 -0
- package/core/symbols.js +22 -0
- package/docs/design/BIOINFORMATICS_BACKEND_DESIGN.md +493 -0
- package/docs/guide/06-symbolic-ai.md +370 -0
- package/docs/guide/README.md +2 -1
- package/docs/reference/05-symbolic-ai.md +570 -0
- package/docs/reference/06-bioinformatics.md +546 -0
- package/docs/reference/README.md +32 -2
- package/docs/theory/11-prgraph-memory.md +559 -0
- package/docs/theory/12-resonant-attention.md +661 -0
- package/modular.js +33 -1
- package/package.json +1 -1
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* Elements, Places, Objects, and Abstract Concepts
|
|
4
|
+
*
|
|
5
|
+
* Fundamental symbols for natural elements, locations, tools,
|
|
6
|
+
* and abstract ideas that form the universal vocabulary of
|
|
7
|
+
* human symbolic expression.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const { SymbolCategory } = require('./base');
|
|
11
|
+
|
|
12
|
+
const elementSymbols = [
|
|
13
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
14
|
+
// NATURAL ELEMENTS
|
|
15
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
16
|
+
|
|
17
|
+
{
|
|
18
|
+
id: 'fire',
|
|
19
|
+
unicode: '🔥',
|
|
20
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
21
|
+
meaning: 'Fire - The transformative element that consumes and purifies. Fire represents passion, destruction, illumination, and the divine spark of consciousness. It rises upward, seeking heaven; it spreads without boundaries; it transforms everything it touches irreversibly. Fire is the first technology, the original magic that separated humans from beasts. Prometheus\'s gift and burden.',
|
|
22
|
+
culturalTags: ['universal', 'element', 'transformation', 'energy', 'passion', 'destruction']
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 'water',
|
|
26
|
+
unicode: '💧',
|
|
27
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
28
|
+
meaning: 'Water - The flowing element that takes the shape of its container while wearing away the hardest stone. Water represents emotion, the unconscious, purification, and the source of all life. It falls from heaven, pools in the depths, rises as mist. Water is the blood of the earth, the tears of the sky, the cleansing force that dissolves all boundaries.',
|
|
29
|
+
culturalTags: ['universal', 'element', 'emotion', 'life', 'purification', 'flow']
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: 'earth_element',
|
|
33
|
+
unicode: '🌍',
|
|
34
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
35
|
+
meaning: 'Earth - The solid element that provides foundation, stability, and material manifestation. Earth represents the body, practical matters, patience, and the slow cycles of growth and decay. Everything comes from earth and returns to it; we are made of dust and to dust return. Earth is the mother that births, sustains, and receives back all things.',
|
|
36
|
+
culturalTags: ['universal', 'element', 'stability', 'material', 'body', 'foundation']
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: 'air',
|
|
40
|
+
unicode: '💨',
|
|
41
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
42
|
+
meaning: 'Air - The invisible element of breath, thought, and communication. Air represents mind, intellect, the word that travels between persons, and the spirit that animates the body. We swim in air without noticing; yet without it, we perish in moments. Air carries sound, scent, seeds, and souls. The pneuma, the ruach, the breath of life.',
|
|
43
|
+
culturalTags: ['universal', 'element', 'thought', 'breath', 'communication', 'spirit']
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: 'ether',
|
|
47
|
+
unicode: '✨',
|
|
48
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
49
|
+
meaning: 'Ether/Aether/Akasha - The fifth element, the space in which the other four manifest. Ether represents spirit, the void pregnant with possibility, the record of all that has been. In Hindu thought, akasha; in Greek philosophy, aether; in modern metaphysics, the field of consciousness itself. The nothing that contains everything.',
|
|
50
|
+
culturalTags: ['universal', 'element', 'spirit', 'void', 'consciousness', 'quintessence']
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
id: 'sun',
|
|
54
|
+
unicode: '☀️',
|
|
55
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
56
|
+
meaning: 'Sun - The source of light, warmth, and life on Earth. Across all cultures, the sun represents consciousness, truth, divine power, and the masculine principle. The sun\'s daily death and resurrection taught humanity that endings lead to beginnings. Solar deities rule pantheons: Ra, Apollo, Surya, Tonatiuh. The sun discriminates, illuminates, and reveals.',
|
|
57
|
+
culturalTags: ['universal', 'celestial', 'light', 'consciousness', 'masculine', 'divine']
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
id: 'moon',
|
|
61
|
+
unicode: '🌙',
|
|
62
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
63
|
+
meaning: 'Moon - The gentle light of reflection, ruler of tides and cycles. The moon represents the feminine principle, intuition, dreams, and the unconscious depths. Its phases taught humanity to count time; its pull moves the waters of Earth and the waters within us. Luna, Selene, Chang\'e—the moon goddess welcomes the soul\'s night journey.',
|
|
64
|
+
culturalTags: ['universal', 'celestial', 'cycles', 'feminine', 'intuition', 'reflection']
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
id: 'stars',
|
|
68
|
+
unicode: '⭐',
|
|
69
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
70
|
+
meaning: 'Stars - The eternal fires that puncture the darkness, revealing infinity beyond our world. Stars represent guidance, destiny, the souls of the dead, and the vast mystery of existence. Sailors navigated by stars; astrologers read fate in their patterns; dreamers wished upon them. Each star a sun, each sun perhaps circled by lives we\'ll never know.',
|
|
71
|
+
culturalTags: ['universal', 'celestial', 'guidance', 'destiny', 'mystery', 'eternity']
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
id: 'thunder',
|
|
75
|
+
unicode: '⚡',
|
|
76
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
77
|
+
meaning: 'Thunder/Lightning - The sky\'s explosive speech, the fire that falls from heaven. Thunder represents divine power, sudden revelation, and the force that shatters complacency. Zeus hurled thunderbolts; Thor swung Mjölnir; the Buddha\'s first teaching was the thunderbolt that shatters illusion. When the sky speaks, everything listens.',
|
|
78
|
+
culturalTags: ['universal', 'celestial', 'power', 'revelation', 'divine', 'awakening']
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
id: 'rain',
|
|
82
|
+
unicode: '🌧️',
|
|
83
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
84
|
+
meaning: 'Rain - The sky\'s gift to earth, the water that falls to make life possible. Rain represents blessing, fertility, purification, and renewal. Without rain, the land dies; with too much, it drowns. Rain dances, rain prayers, rain gods—humanity\'s oldest negotiation with nature. Each drop completes the cycle: ocean, cloud, rain, river, ocean.',
|
|
85
|
+
culturalTags: ['universal', 'weather', 'blessing', 'fertility', 'renewal', 'cycle']
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
id: 'wind',
|
|
89
|
+
unicode: '🌬️',
|
|
90
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
91
|
+
meaning: 'Wind - The invisible force that moves visible things, the breath of the world. Wind represents change, spirit, the transmission of influence across distances. The wind blows where it will; no one knows where it comes from or where it goes. It carries seeds, scatters leaves, and reminds us that the invisible shapes the visible.',
|
|
92
|
+
culturalTags: ['universal', 'weather', 'change', 'spirit', 'invisible', 'movement']
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
id: 'storm',
|
|
96
|
+
unicode: '🌪️',
|
|
97
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
98
|
+
meaning: 'Storm - The convergence of forces into chaos, the weather that humbles humanity. Storms represent crisis, transformation, the breaking down of normal order to enable new creation. The still center of the cyclone; the clarity after the tempest; the fear that sharpens attention—storms teach that destruction and creation are inseparable.',
|
|
99
|
+
culturalTags: ['universal', 'weather', 'chaos', 'crisis', 'transformation', 'power']
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
id: 'rainbow',
|
|
103
|
+
unicode: '🌈',
|
|
104
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
105
|
+
meaning: 'Rainbow - The arc of color that bridges sky and earth after the storm. The rainbow represents hope, promise, divine covenant, and the beauty born from opposition of sun and rain. In many cultures, the rainbow bridge connects worlds; in Genesis, it seals God\'s promise. The rainbow shows all colors unified—division resolved into spectrum.',
|
|
106
|
+
culturalTags: ['universal', 'weather', 'hope', 'promise', 'bridge', 'unity']
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
id: 'tree',
|
|
110
|
+
unicode: '🌳',
|
|
111
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
112
|
+
meaning: 'Tree - The axis mundi connecting underground, surface, and sky. The tree represents life, growth, connection between worlds, and the family across generations. Roots in darkness, trunk in air, branches reaching for light—the tree models the full range of existence. Yggdrasil, the Bodhi Tree, the Tree of Life, the World Tree—all embody this cosmic connector.',
|
|
113
|
+
culturalTags: ['universal', 'flora', 'growth', 'connection', 'life', 'axis_mundi']
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
id: 'flower',
|
|
117
|
+
unicode: '🌺',
|
|
118
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
119
|
+
meaning: 'Flower - The gift of transient beauty, the plant\'s reproductive offering to the world. Flowers represent beauty, impermanence, the bloom of youth, and nature\'s extravagant generosity. The lotus rises from mud; the rose has thorns; cherry blossoms fall too soon. Every flower is a teaching on the marriage of beauty and mortality.',
|
|
120
|
+
culturalTags: ['universal', 'flora', 'beauty', 'impermanence', 'offering', 'growth']
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
id: 'stone',
|
|
124
|
+
unicode: '🪨',
|
|
125
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
126
|
+
meaning: 'Stone - The mineral that endures while organic life comes and goes. Stone represents permanence, foundation, and the condensed wisdom of deep time. Standing stones mark sacred places; philosophers\' stones transform base metal to gold; stones of remembrance outlast the dead. The stone is patient; it was here before us and will remain after.',
|
|
127
|
+
culturalTags: ['universal', 'mineral', 'permanence', 'foundation', 'endurance', 'sacred']
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
id: 'gold',
|
|
131
|
+
unicode: '🏅',
|
|
132
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
133
|
+
meaning: 'Gold - The incorruptible metal that doesn\'t tarnish, the sun made solid. Gold represents purity, value, spiritual attainment, and the goal of alchemical transformation. Gold is the final product of the Great Work, the enlightened state, the treasure hard to obtain. Its beauty is eternal; its worth is agreed upon; its rarity makes it precious.',
|
|
134
|
+
culturalTags: ['universal', 'mineral', 'value', 'purity', 'alchemy', 'solar']
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
id: 'silver',
|
|
138
|
+
unicode: '🥈',
|
|
139
|
+
category: SymbolCategory.NATURAL_ELEMENTS,
|
|
140
|
+
meaning: 'Silver - The moon\'s metal, the reflective surface that mirrors and receives. Silver represents intuition, the feminine principle, the receptive mode of consciousness. Silver mirrors show true reflection; silver bullets kill werewolves; silver linings edge dark clouds. Where gold radiates, silver reflects—lunar wisdom complementing solar truth.',
|
|
141
|
+
culturalTags: ['universal', 'mineral', 'reflection', 'lunar', 'feminine', 'intuition']
|
|
142
|
+
}
|
|
143
|
+
];
|
|
144
|
+
|
|
145
|
+
const placeSymbols = [
|
|
146
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
147
|
+
// PLACES & LOCATIONS
|
|
148
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
149
|
+
|
|
150
|
+
{
|
|
151
|
+
id: 'mountain',
|
|
152
|
+
unicode: '⛰️',
|
|
153
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
154
|
+
meaning: 'Mountain - The peak that approaches heaven, where earth aspires to touch sky. Mountains represent spiritual aspiration, challenge, transcendence, and the encounter with the divine. Moses received commandments on Sinai; the Buddha achieved enlightenment on peaks; Olympus housed the gods. The mountain is the goal that demands everything to reach.',
|
|
155
|
+
culturalTags: ['universal', 'landscape', 'aspiration', 'transcendence', 'sacred', 'challenge']
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
id: 'ocean',
|
|
159
|
+
unicode: '🌊',
|
|
160
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
161
|
+
meaning: 'Ocean - The vast waters from which life emerged and to which it returns. The ocean represents the unconscious, the collective memory, infinite possibility, and the primal source. Homer\'s wine-dark sea; Jung\'s oceanic unconscious; the waters of chaos before creation. We emerged from the sea and carry it within—salt in blood and tears.',
|
|
162
|
+
culturalTags: ['universal', 'landscape', 'unconscious', 'source', 'infinity', 'primal']
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
id: 'forest',
|
|
166
|
+
unicode: '🌲',
|
|
167
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
168
|
+
meaning: 'Forest - The wild place where civilization ends and mystery begins. The forest represents the unconscious, danger, transformation, and the testing ground of the hero. Red Riding Hood\'s woods; Dante\'s dark forest; the grove where initiates die to old selves. The forest is where you get lost in order to find yourself.',
|
|
169
|
+
culturalTags: ['universal', 'landscape', 'wilderness', 'unconscious', 'mystery', 'initiation']
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: 'desert',
|
|
173
|
+
unicode: '🏜️',
|
|
174
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
175
|
+
meaning: 'Desert - The empty place where nothing hides and survival requires everything. The desert represents testing, purification, simplicity, and the stripping away of illusion. Jesus\' forty days; the Israelites\' forty years; the hermit\'s retreat. In the desert, there is only you and the absolute—no distractions, no excuses, no escape.',
|
|
176
|
+
culturalTags: ['universal', 'landscape', 'testing', 'purification', 'emptiness', 'revelation']
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
id: 'cave',
|
|
180
|
+
unicode: '🕳️',
|
|
181
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
182
|
+
meaning: 'Cave - The womb of the earth, the entrance to the underworld, the place of origin and return. The cave represents the unconscious depths, initiation, rebirth, and hidden treasure. Plato\'s cave shadows; the hero\'s descent for treasure; the shaman\'s journey underground. The cave is where you go when you must die to be reborn.',
|
|
183
|
+
culturalTags: ['universal', 'landscape', 'depth', 'unconscious', 'rebirth', 'initiation']
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
id: 'river',
|
|
187
|
+
unicode: '〰️',
|
|
188
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
189
|
+
meaning: 'River - The flowing boundary between territories, the path of least resistance. The river represents time, transition, purification, and the journey of life. Heraclitus\'s river you can\'t step into twice; the Ganges that washes away karma; the Styx between life and death. Rivers flow one direction—toward the sea, toward the end, toward unity.',
|
|
190
|
+
culturalTags: ['universal', 'landscape', 'time', 'transition', 'flow', 'boundary']
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
id: 'temple',
|
|
194
|
+
unicode: '⛩️',
|
|
195
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
196
|
+
meaning: 'Temple - The house of the divine, the sacred space set apart from profane life. The temple represents the meeting of human and divine, formal worship, and the architecture of belief. Every temple is a model of the cosmos; to enter is to step out of ordinary time into eternal presence. The temple is where heaven and earth touch.',
|
|
197
|
+
culturalTags: ['universal', 'sacred', 'divine', 'worship', 'cosmos', 'threshold']
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
id: 'palace',
|
|
201
|
+
unicode: '🏰',
|
|
202
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
203
|
+
meaning: 'Palace - The house of earthly power, where rulers dwell and fates are decided. The palace represents authority, wealth, civilization\'s pinnacle, and the responsibilities of power. Within palace walls, histories turn; from palace gates, decrees emerge. The palace is the center from which order radiates—or from which tyranny spreads.',
|
|
204
|
+
culturalTags: ['universal', 'architecture', 'power', 'authority', 'wealth', 'rule']
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
id: 'tower',
|
|
208
|
+
unicode: '🗼',
|
|
209
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
210
|
+
meaning: 'Tower - The structure that reaches upward, asserting human ambition against the sky. The tower represents aspiration, isolation, imprisonment, and the hubris of overreach. Babel\'s tower confounded languages; Rapunzel\'s tower imprisoned beauty; the ivory tower separates thinker from world. Towers rise high and fall hard.',
|
|
211
|
+
culturalTags: ['universal', 'architecture', 'aspiration', 'isolation', 'hubris', 'vision']
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
id: 'bridge',
|
|
215
|
+
unicode: '🌉',
|
|
216
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
217
|
+
meaning: 'Bridge - The structure that connects what was separate, spanning the abyss. The bridge represents transition, connection, mediation, and the overcoming of obstacles. The rainbow bridge to Valhalla; the bridge over troubled water; the bridge between cultures or ideas. Building bridges is humanity\'s response to division.',
|
|
218
|
+
culturalTags: ['universal', 'architecture', 'connection', 'transition', 'mediation', 'crossing']
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: 'crossroads',
|
|
222
|
+
unicode: '✖️',
|
|
223
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
224
|
+
meaning: 'Crossroads - The point where paths intersect, where decisions must be made. The crossroads represents choice, transition, liminality, and the presence of fate. Hecate haunts the crossroads; Robert Johnson sold his soul there; travelers pause to choose their way. At the crossroads, the future branches into possibility.',
|
|
225
|
+
culturalTags: ['universal', 'landscape', 'choice', 'fate', 'transition', 'liminal']
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
id: 'labyrinth',
|
|
229
|
+
unicode: '🌀',
|
|
230
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
231
|
+
meaning: 'Labyrinth - The complex path that leads inward to the center and the mystery. The labyrinth represents the journey of initiation, the complexity of the soul, and the transformative passage through confusion to clarity. Unlike a maze, the labyrinth has one path—trust the process. Theseus entered; Ariadne\'s thread led out. The goal is the center.',
|
|
232
|
+
culturalTags: ['universal', 'sacred', 'journey', 'initiation', 'complexity', 'transformation']
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
id: 'underworld',
|
|
236
|
+
unicode: '☠️',
|
|
237
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
238
|
+
meaning: 'Underworld - The realm beneath, where the dead dwell and hidden treasures lie. The underworld represents the unconscious, death, transformation, and the source of renewal. Orpheus descended for Eurydice; Persephone rules half the year; the shaman journeys to retrieve lost souls. What goes down must come up, transformed.',
|
|
239
|
+
culturalTags: ['universal', 'mythic', 'death', 'unconscious', 'transformation', 'descent']
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
id: 'heaven',
|
|
243
|
+
unicode: '☁️',
|
|
244
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
245
|
+
meaning: 'Heaven - The realm above, where gods dwell and blessed souls aspire to reach. Heaven represents transcendence, perfection, divine presence, and the goal of spiritual striving. Many heavens, many paths there: ascension, redemption, enlightenment, grace. Heaven is the promise that suffering ends, that good is rewarded, that love endures.',
|
|
246
|
+
culturalTags: ['universal', 'mythic', 'divine', 'transcendence', 'afterlife', 'aspiration']
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
id: 'path',
|
|
250
|
+
unicode: '🛤️',
|
|
251
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
252
|
+
meaning: 'Path - The way that leads somewhere, the track worn by previous travelers. The path represents journey, direction, tradition, and the route laid down by those who came before. The Tao is literally "the Way"; Buddhist teachings offer paths to liberation; life itself is often called a path. To find your path is to find your purpose; to walk it is to live authentically.',
|
|
253
|
+
culturalTags: ['universal', 'landscape', 'journey', 'direction', 'tradition', 'purpose']
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
id: 'garden',
|
|
257
|
+
unicode: '🌷',
|
|
258
|
+
category: SymbolCategory.PLACES_LOCATIONS,
|
|
259
|
+
meaning: 'Garden - The cultivated space where nature and human intention meet. The garden represents paradise, cultivation, the integration of wild nature with conscious design. Eden was a garden; Persian gardens modeled heaven; Zen gardens embody enlightened mind. The garden shows what grows when we tend carefully—beauty from effort, order from chaos, abundance from patience.',
|
|
260
|
+
culturalTags: ['universal', 'landscape', 'cultivation', 'paradise', 'beauty', 'harmony']
|
|
261
|
+
}
|
|
262
|
+
];
|
|
263
|
+
|
|
264
|
+
const objectSymbols = [
|
|
265
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
266
|
+
// OBJECTS & TOOLS
|
|
267
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
268
|
+
|
|
269
|
+
{
|
|
270
|
+
id: 'sword',
|
|
271
|
+
unicode: '🗡️',
|
|
272
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
273
|
+
meaning: 'Sword - The weapon that discriminates, that separates with precision. The sword represents truth that cuts through illusion, justice that decides, and the power that defends. Excalibur chose kings; the sword of Damocles warned; the Buddha\'s sword of wisdom cuts ignorance. The sword is language sharpened to edge—it creates division that clarifies.',
|
|
274
|
+
culturalTags: ['universal', 'weapon', 'truth', 'justice', 'discrimination', 'power']
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
id: 'shield',
|
|
278
|
+
unicode: '🛡️',
|
|
279
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
280
|
+
meaning: 'Shield - The defense that protects, that receives blows meant for the vital center. The shield represents protection, boundaries, the preservation of what is precious. Where the sword attacks, the shield defends. The shield bears identity—coats of arms, insignia, symbols. To lower the shield is to become vulnerable; to raise it, to declare readiness.',
|
|
281
|
+
culturalTags: ['universal', 'weapon', 'protection', 'defense', 'identity', 'boundary']
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
id: 'key',
|
|
285
|
+
unicode: '🔑',
|
|
286
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
287
|
+
meaning: 'Key - The instrument that opens what was closed, that grants access to hidden spaces. The key represents knowledge, initiation, solution, and the power to unlock secrets. Peter holds the keys to heaven; keys unlock treasure chests; master keys open all doors. Finding the key is finding the answer; turning it is transformation.',
|
|
288
|
+
culturalTags: ['universal', 'tool', 'access', 'knowledge', 'secret', 'solution']
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
id: 'mirror',
|
|
292
|
+
unicode: '🪞',
|
|
293
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
294
|
+
meaning: 'Mirror - The surface that reflects truth, that shows what is really there. The mirror represents self-knowledge, truth, vanity, and the difficult task of seeing oneself clearly. The magic mirror reveals; the lake mirror drowns Narcissus; the mirror of the mind reflects thoughts. To face the mirror honestly is the first step of transformation.',
|
|
295
|
+
culturalTags: ['universal', 'tool', 'truth', 'reflection', 'self-knowledge', 'vision']
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
id: 'book',
|
|
299
|
+
unicode: '📕',
|
|
300
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
301
|
+
meaning: 'Book - The repository of knowledge, the voice that speaks across time. The book represents wisdom, tradition, authority, and the preservation of thought beyond death. The Book of Life records souls; the Book of the Dead guides them; sacred books carry divine word. To open a book is to enter another mind; to write one, to offer yours.',
|
|
302
|
+
culturalTags: ['universal', 'tool', 'knowledge', 'wisdom', 'tradition', 'preservation']
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
id: 'scroll',
|
|
306
|
+
unicode: '📜',
|
|
307
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
308
|
+
meaning: 'Scroll - The rolled manuscript, ancient form of recorded knowledge. The scroll represents ancient wisdom, sacred teaching, hidden knowledge, and the authority of the written word. Scrolls were unrolled to reveal their secrets; the Dead Sea Scrolls preserved truths; Torah scrolls are venerated. The scroll connects us to what was written long ago.',
|
|
309
|
+
culturalTags: ['universal', 'tool', 'wisdom', 'ancient', 'sacred', 'written']
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
id: 'candle',
|
|
313
|
+
unicode: '🕯️',
|
|
314
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
315
|
+
meaning: 'Candle - The small light that defies darkness, that consumes itself to illuminate. The candle represents hope, knowledge, spirit, and the precious fragility of consciousness. A single candle illuminates a room; a candle in the wind threatens to go out; birthday candles carry wishes. The candle reminds us that light costs—something must burn.',
|
|
316
|
+
culturalTags: ['universal', 'tool', 'light', 'hope', 'spirit', 'sacrifice']
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
id: 'chalice',
|
|
320
|
+
unicode: '🍷',
|
|
321
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
322
|
+
meaning: 'Chalice - The sacred cup that holds the drink of transformation. The chalice represents communion, the divine feminine, the container of grace. The Holy Grail held Christ\'s blood; the chalice receives wine that becomes sacred; the cup of Jamshid showed all the world. The chalice is the vessel that makes ordinary drink extraordinary.',
|
|
323
|
+
culturalTags: ['universal', 'tool', 'sacred', 'communion', 'feminine', 'transformation']
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
id: 'ring',
|
|
327
|
+
unicode: '💍',
|
|
328
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
329
|
+
meaning: 'Ring - The endless circle worn on the body, symbol of unbroken connection. The ring represents bond, covenant, power, and the cycles of eternity. Wedding rings bind lovers; the One Ring corrupts; Solomon\'s ring commanded spirits. The ring has no beginning and no end—wearing it is participating in infinity.',
|
|
330
|
+
culturalTags: ['universal', 'tool', 'bond', 'covenant', 'power', 'eternity']
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
id: 'crown',
|
|
334
|
+
unicode: '👑',
|
|
335
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
336
|
+
meaning: 'Crown - The circlet that marks the ruler, the weight of sovereignty made visible. The crown represents authority, divine right, achievement, and the burden of leadership. Crowns are bestowed by gods or peoples; they are won through blood or birth; they are worn with pride and pain. The crown elevates the head that must now see further.',
|
|
337
|
+
culturalTags: ['universal', 'tool', 'authority', 'sovereignty', 'divine_right', 'leadership']
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
id: 'hourglass',
|
|
341
|
+
unicode: '⏳',
|
|
342
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
343
|
+
meaning: 'Hourglass - The glass that measures time\'s passage, grain by grain. The hourglass represents mortality, the preciousness of time, and the inevitability of ending. Each grain is a moment falling irreversibly into the past; when the glass empties, time is up. The hourglass reminds us that what we have is limited and slipping away.',
|
|
344
|
+
culturalTags: ['universal', 'tool', 'time', 'mortality', 'measurement', 'impermanence']
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
id: 'scale',
|
|
348
|
+
unicode: '⚖️',
|
|
349
|
+
category: SymbolCategory.OBJECTS_TOOLS,
|
|
350
|
+
meaning: 'Scale - The balance that measures equality, that weighs worth against worth. The scale represents justice, judgment, fairness, and the careful weighing of options. Libra holds the scales; Ma\'at weighs hearts; Lady Justice is blindfolded. The scale doesn\'t lie—it shows the true relative weight of things.',
|
|
351
|
+
culturalTags: ['universal', 'tool', 'justice', 'balance', 'judgment', 'fairness']
|
|
352
|
+
}
|
|
353
|
+
];
|
|
354
|
+
|
|
355
|
+
const abstractSymbols = [
|
|
356
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
357
|
+
// ABSTRACT CONCEPTS
|
|
358
|
+
// ═══════════════════════════════════════════════════════════════════
|
|
359
|
+
|
|
360
|
+
{
|
|
361
|
+
id: 'love',
|
|
362
|
+
unicode: '❤️',
|
|
363
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
364
|
+
meaning: 'Love - The force that binds, that sees the other as precious, that transcends self-interest. Love represents connection, devotion, the foundation of meaning, and the fire that warms without burning. Eros, philia, agape, storge—love takes many forms. Without love, existence is possible but life is not. Love is the yes to another\'s being.',
|
|
365
|
+
culturalTags: ['universal', 'emotion', 'connection', 'devotion', 'meaning', 'relationship']
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
id: 'death',
|
|
369
|
+
unicode: '💀',
|
|
370
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
371
|
+
meaning: 'Death - The end that gives life its shape, the limit that creates meaning. Death represents transformation, the unknown, release, and the ultimate teacher. Memento mori—remember you must die. Death is not the opposite of life but part of it; to accept death is to embrace life fully. Every ending enables a beginning.',
|
|
372
|
+
culturalTags: ['universal', 'process', 'transformation', 'ending', 'mystery', 'teacher']
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
id: 'transformation',
|
|
376
|
+
unicode: '🦋',
|
|
377
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
378
|
+
meaning: 'Transformation - The radical change from one form to another, the death that leads to rebirth. The butterfly represents transformation: caterpillar dissolves to goo, then emerges as winged beauty. Transformation requires the courage to surrender the known form for unknown possibility. What you become is unrecognizable from what you were.',
|
|
379
|
+
culturalTags: ['universal', 'process', 'change', 'metamorphosis', 'rebirth', 'courage']
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
id: 'unity',
|
|
383
|
+
unicode: '☯️',
|
|
384
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
385
|
+
meaning: 'Unity/Yin-Yang - The harmony of opposites that creates wholeness. The yin-yang symbol shows dark containing light and light containing dark—neither exists without the other. Unity represents integration, balance, the transcendence of duality, and the truth that apparent opposites are aspects of one reality. Opposition is relationship.',
|
|
386
|
+
culturalTags: ['universal', 'taoist', 'chinese', 'balance', 'harmony', 'wholeness', 'duality']
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
id: 'infinity',
|
|
390
|
+
unicode: '∞',
|
|
391
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
392
|
+
meaning: 'Infinity - The unbounded, the endless, the inconceivable that mathematics nonetheless works with. Infinity represents eternity, unlimited possibility, the beyond that defies imagination. The lemniscate (figure-8) suggests endless cycling; mathematical infinity breaks ordinary intuition. We are finite beings contemplating the infinite—and somehow, we can.',
|
|
393
|
+
culturalTags: ['universal', 'mathematical', 'eternity', 'boundless', 'possibility', 'cosmic']
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
id: 'time',
|
|
397
|
+
unicode: '⏰',
|
|
398
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
399
|
+
meaning: 'Time - The stream in which we swim, the dimension we cannot escape. Time represents change, mortality, opportunity, and the arrow pointing from birth to death. Chronos devours his children; Kairos offers the fleeting moment. We never have time—time has us. To spend it wisely is the fundamental human challenge.',
|
|
400
|
+
culturalTags: ['universal', 'fundamental', 'change', 'mortality', 'opportunity', 'dimension']
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
id: 'wisdom',
|
|
404
|
+
unicode: '🦉',
|
|
405
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
406
|
+
meaning: 'Wisdom - The understanding that comes from integrating knowledge with experience. The owl represents wisdom: it sees in darkness and turns its head to look behind. Wisdom differs from cleverness—it knows what matters, what lasts, what heals. Wisdom cannot be taught directly; it must be earned through living.',
|
|
407
|
+
culturalTags: ['universal', 'virtue', 'knowledge', 'understanding', 'experience', 'discernment']
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
id: 'truth',
|
|
411
|
+
unicode: '✓',
|
|
412
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
413
|
+
meaning: 'Truth - What corresponds to reality, what can be relied upon, what doesn\'t change to suit convenience. Truth represents integrity, reality, the foundation of trust. "The truth shall set you free"—but first it might hurt. Truth is both discovered and revealed; seeking it requires courage because it doesn\'t flatter.',
|
|
414
|
+
culturalTags: ['universal', 'virtue', 'reality', 'integrity', 'foundation', 'revelation']
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
id: 'freedom',
|
|
418
|
+
unicode: '🕊️',
|
|
419
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
420
|
+
meaning: 'Freedom - The capacity to choose, to determine one\'s own path, to be unbound by unjust constraint. Freedom represents autonomy, possibility, the human birthright of self-determination. The dove flies where it will; the prisoner dreams of sky. Freedom carries responsibility—what you do with it defines who you are.',
|
|
421
|
+
culturalTags: ['universal', 'value', 'autonomy', 'choice', 'liberation', 'responsibility']
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
id: 'courage',
|
|
425
|
+
unicode: '🦁',
|
|
426
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
427
|
+
meaning: 'Courage - The virtue that enables action despite fear, that steps forward when every instinct says retreat. The lion represents courage: heart in the face of danger. Courage is not the absence of fear but the judgment that something else is more important. Every hero\'s journey begins with the courage to leave home.',
|
|
428
|
+
culturalTags: ['universal', 'virtue', 'bravery', 'action', 'fear', 'strength']
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
id: 'justice',
|
|
432
|
+
unicode: '⚖️',
|
|
433
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
434
|
+
meaning: 'Justice - The virtue that gives each their due, that restores balance when it has been disturbed. Justice represents fairness, rectification, and the moral order that makes community possible. The scales weigh; the sword decides; the blindfold ensures impartiality. Without justice, society is merely organized force.',
|
|
435
|
+
culturalTags: ['universal', 'virtue', 'fairness', 'balance', 'law', 'morality']
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
id: 'chaos',
|
|
439
|
+
unicode: '🌀',
|
|
440
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
441
|
+
meaning: 'Chaos - The primordial state before order, the potential from which all form emerges. Chaos represents disorder, creativity, the breakdown of stagnant structure, and the raw material of new creation. From chaos came cosmos; into chaos, order eventually dissolves. Chaos is not evil—it is the soil in which order grows.',
|
|
442
|
+
culturalTags: ['universal', 'primordial', 'disorder', 'potential', 'creation', 'transformation']
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
id: 'order',
|
|
446
|
+
unicode: '📐',
|
|
447
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
448
|
+
meaning: 'Order - The arrangement that makes sense, the pattern that enables function. Order represents structure, predictability, law, and the cosmos (literally "ordered universe"). Order enables cooperation; too much becomes tyranny; too little becomes chaos. The dynamic balance of order and chaos is the dance of existence.',
|
|
449
|
+
culturalTags: ['universal', 'structure', 'pattern', 'law', 'cosmos', 'stability']
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
id: 'creation',
|
|
453
|
+
unicode: '✨',
|
|
454
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
455
|
+
meaning: 'Creation - The bringing into being of what did not exist before. Creation represents origination, imagination made manifest, the divine act repeated at every scale. Gods create worlds; artists create works; parents create children; each moment creates the next. To create is to participate in the fundamental nature of reality.',
|
|
456
|
+
culturalTags: ['universal', 'process', 'origination', 'divine', 'imagination', 'birth']
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
id: 'destruction',
|
|
460
|
+
unicode: '💥',
|
|
461
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
462
|
+
meaning: 'Destruction - The unmaking of what was, the clearing that precedes new growth. Destruction represents ending, release, transformation through breaking down. Shiva destroys so Brahma can create; forest fires enable new growth; old cells die so new ones can live. Destruction is creation\'s inseparable partner.',
|
|
463
|
+
culturalTags: ['universal', 'process', 'ending', 'clearing', 'transformation', 'release']
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
id: 'balance',
|
|
467
|
+
unicode: '⚖️',
|
|
468
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
469
|
+
meaning: 'Balance - The equilibrium between opposing forces, the middle way between extremes. Balance represents harmony, moderation, and the wisdom to avoid excess. The tightrope walker, the ecosystem, the body\'s homeostasis—all demonstrate balance as dynamic stability. Balance is not stillness but constant, subtle adjustment.',
|
|
470
|
+
culturalTags: ['universal', 'state', 'equilibrium', 'harmony', 'moderation', 'wisdom']
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
id: 'journey',
|
|
474
|
+
unicode: '🚶',
|
|
475
|
+
category: SymbolCategory.ABSTRACT_CONCEPTS,
|
|
476
|
+
meaning: 'Journey - The movement from one state to another, the process of transformation through space and time. The journey represents growth, adventure, pilgrimage, and the narrative arc of life itself. Every story is a journey; every life is a journey; the soul journeys through existence. The destination matters less than who you become along the way.',
|
|
477
|
+
culturalTags: ['universal', 'process', 'growth', 'transformation', 'adventure', 'narrative']
|
|
478
|
+
}
|
|
479
|
+
];
|
|
480
|
+
|
|
481
|
+
module.exports = {
|
|
482
|
+
elementSymbols,
|
|
483
|
+
placeSymbols,
|
|
484
|
+
objectSymbols,
|
|
485
|
+
abstractSymbols,
|
|
486
|
+
allElementSymbols: [...elementSymbols, ...placeSymbols, ...objectSymbols, ...abstractSymbols]
|
|
487
|
+
};
|