@bonginkan/maria 2.1.7 → 2.1.9
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/COMMANDS.md +177 -0
- package/GETTING_STARTED.md +183 -0
- package/LICENSE +25 -1
- package/README.md +140 -432
- package/SETUP.md +236 -0
- package/bin/maria.d.ts +5 -0
- package/bin/maria.js +27446 -3307
- package/bin/maria.js.map +5 -1
- package/dist/cli.d.ts +2 -5
- package/dist/cli.js +42 -31139
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +5 -1401
- package/dist/index.js +39 -124991
- package/dist/index.js.map +1 -1
- package/npm-shrinkwrap.json +8210 -0
- package/package.json +49 -29
- package/dist/bin/maria.d.ts +0 -2
- package/dist/bin/maria.js +0 -31797
- package/dist/bin/maria.js.map +0 -1
- package/dist/metafile-cjs.json +0 -1
package/COMMANDS.md
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
# 📋 MARIA Platform Command Reference
|
|
2
|
+
|
|
3
|
+
Complete reference for all 36+ interactive slash commands in MARIA Platform v1.6.4
|
|
4
|
+
|
|
5
|
+
## 🚀 How to Use Commands
|
|
6
|
+
|
|
7
|
+
All commands in MARIA are **slash commands** used within interactive mode:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Start MARIA interactive mode
|
|
11
|
+
maria
|
|
12
|
+
|
|
13
|
+
# Use slash commands within MARIA
|
|
14
|
+
> /command_name [options]
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 🎓 Algorithm Education Commands
|
|
18
|
+
|
|
19
|
+
### Sorting Algorithms
|
|
20
|
+
| Command | Description | Options | Example |
|
|
21
|
+
|---------|-------------|---------|---------|
|
|
22
|
+
| `/sort quicksort` | Interactive quicksort tutorial | `--visualize`, `--benchmark` | `/sort quicksort --visualize` |
|
|
23
|
+
| `/sort mergesort` | Interactive merge sort tutorial | `--visualize`, `--benchmark` | `/sort mergesort --benchmark` |
|
|
24
|
+
| `/sort heapsort` | Interactive heap sort tutorial | `--visualize`, `--benchmark` | `/sort heapsort` |
|
|
25
|
+
| `/sort bubblesort` | Interactive bubble sort tutorial | `--visualize` | `/sort bubblesort --visualize` |
|
|
26
|
+
| `/sort insertionsort` | Interactive insertion sort tutorial | `--visualize` | `/sort insertionsort` |
|
|
27
|
+
|
|
28
|
+
### Learning & Analysis
|
|
29
|
+
| Command | Description | Options | Example |
|
|
30
|
+
|---------|-------------|---------|---------|
|
|
31
|
+
| `/learn algorithms` | Complete CS curriculum | `--topic [name]` | `/learn algorithms --topic sorting` |
|
|
32
|
+
| `/algorithm complexity` | Big O notation tutorials | `--algorithm [name]` | `/algorithm complexity --algorithm quicksort` |
|
|
33
|
+
| `/benchmark sorting` | Performance analysis | `--size [n]`, `--iterations [n]` | `/benchmark sorting --size 10000` |
|
|
34
|
+
| `/analyze performance` | Memory and time analysis | `--algorithm [name]` | `/analyze performance --algorithm mergesort` |
|
|
35
|
+
|
|
36
|
+
## 🤖 AI Development Commands
|
|
37
|
+
|
|
38
|
+
### Code Generation
|
|
39
|
+
| Command | Description | Options | Example |
|
|
40
|
+
|---------|-------------|---------|---------|
|
|
41
|
+
| `/code "description"` | AI code generation | `--language [lang]`, `--style [style]` | `/code "REST API" --language python` |
|
|
42
|
+
| `/generate function` | Generate specific functions | `--type [type]`, `--complexity [level]` | `/generate function --type sorting` |
|
|
43
|
+
| `/implement algorithm` | Implement algorithms | `--language [lang]`, `--optimize` | `/implement algorithm --language typescript` |
|
|
44
|
+
| `/refactor code` | Refactor existing code | `--style [style]`, `--optimize` | `/refactor code --optimize` |
|
|
45
|
+
|
|
46
|
+
### Code Quality & Analysis
|
|
47
|
+
| Command | Description | Options | Example |
|
|
48
|
+
|---------|-------------|---------|---------|
|
|
49
|
+
| `/bug analyze` | Bug detection and fixes | `--file [path]`, `--severity [level]` | `/bug analyze --file src/app.js` |
|
|
50
|
+
| `/lint check` | Code quality analysis | `--fix`, `--rules [ruleset]` | `/lint check --fix` |
|
|
51
|
+
| `/security review` | Security vulnerability scan | `--level [level]` | `/security review --level strict` |
|
|
52
|
+
| `/performance profile` | Performance profiling | `--type [type]` | `/performance profile --type memory` |
|
|
53
|
+
|
|
54
|
+
## 🧠 AI Model & Mode Commands
|
|
55
|
+
|
|
56
|
+
### Model Management
|
|
57
|
+
| Command | Description | Options | Example |
|
|
58
|
+
|---------|-------------|---------|---------|
|
|
59
|
+
| `/model` | AI model selection | `--provider [name]`, `--list` | `/model --provider openai` |
|
|
60
|
+
| `/model list` | Show available models | `--provider [name]` | `/model list --provider anthropic` |
|
|
61
|
+
| `/model switch` | Switch AI model | `--to [model_name]` | `/model switch --to gpt-4` |
|
|
62
|
+
| `/model config` | Configure model settings | `--temperature [n]`, `--max-tokens [n]` | `/model config --temperature 0.7` |
|
|
63
|
+
|
|
64
|
+
### Cognitive Modes
|
|
65
|
+
| Command | Description | Options | Example |
|
|
66
|
+
|---------|-------------|---------|---------|
|
|
67
|
+
| `/mode internal` | Access 50 cognitive AI modes | `--list`, `--mode [name]` | `/mode internal --mode debugging` |
|
|
68
|
+
| `/mode list` | List all cognitive modes | `--category [type]` | `/mode list --category creative` |
|
|
69
|
+
| `/mode switch` | Switch cognitive mode | `--to [mode_name]` | `/mode switch --to optimizing` |
|
|
70
|
+
| `/thinking mode` | Enter thinking mode | `--depth [level]` | `/thinking mode --depth deep` |
|
|
71
|
+
|
|
72
|
+
## 🔧 System & Utility Commands
|
|
73
|
+
|
|
74
|
+
### System Management
|
|
75
|
+
| Command | Description | Options | Example |
|
|
76
|
+
|---------|-------------|---------|---------|
|
|
77
|
+
| `/status` | System status and health | `--detailed`, `--services` | `/status --detailed` |
|
|
78
|
+
| `/config` | Configuration management | `--set [key=value]`, `--get [key]` | `/config --set theme=dark` |
|
|
79
|
+
| `/update` | Check for updates | `--install`, `--check` | `/update --check` |
|
|
80
|
+
| `/reset` | Reset MARIA settings | `--confirm`, `--keep-models` | `/reset --keep-models` |
|
|
81
|
+
|
|
82
|
+
### Help & Information
|
|
83
|
+
| Command | Description | Options | Example |
|
|
84
|
+
|---------|-------------|---------|---------|
|
|
85
|
+
| `/help` | Show all commands | `--category [name]`, `--search [term]` | `/help --category algorithm` |
|
|
86
|
+
| `/docs` | Access documentation | `--topic [name]`, `--search [term]` | `/docs --topic quicksort` |
|
|
87
|
+
| `/examples` | Show command examples | `--command [name]` | `/examples --command sort` |
|
|
88
|
+
| `/tutorial` | Interactive tutorials | `--topic [name]`, `--level [level]` | `/tutorial --topic algorithms` |
|
|
89
|
+
|
|
90
|
+
### Session Management
|
|
91
|
+
| Command | Description | Options | Example |
|
|
92
|
+
|---------|-------------|---------|---------|
|
|
93
|
+
| `/history` | Command history | `--search [term]`, `--clear` | `/history --search sort` |
|
|
94
|
+
| `/save session` | Save current session | `--name [name]` | `/save session --name my_work` |
|
|
95
|
+
| `/load session` | Load saved session | `--name [name]`, `--list` | `/load session --name my_work` |
|
|
96
|
+
| `/clear` | Clear screen | `--history`, `--all` | `/clear --history` |
|
|
97
|
+
| `/exit` | Exit MARIA | `--save`, `--force` | `/exit --save` |
|
|
98
|
+
|
|
99
|
+
## 🚀 Advanced Features
|
|
100
|
+
|
|
101
|
+
### Multi-Agent Commands
|
|
102
|
+
| Command | Description | Options | Example |
|
|
103
|
+
|---------|-------------|---------|---------|
|
|
104
|
+
| `/agent create` | Create autonomous agent | `--task [description]` | `/agent create --task "build API"` |
|
|
105
|
+
| `/agent list` | List active agents | `--status [status]` | `/agent list --status active` |
|
|
106
|
+
| `/agent stop` | Stop agent execution | `--id [agent_id]` | `/agent stop --id agent_123` |
|
|
107
|
+
| `/orchestrate` | Multi-agent coordination | `--agents [list]` | `/orchestrate --agents "dev,test,deploy"` |
|
|
108
|
+
|
|
109
|
+
### Integration Commands
|
|
110
|
+
| Command | Description | Options | Example |
|
|
111
|
+
|---------|-------------|---------|---------|
|
|
112
|
+
| `/git integrate` | Git integration | `--status`, `--commit [message]` | `/git integrate --status` |
|
|
113
|
+
| `/project analyze` | Project analysis | `--deep`, `--report` | `/project analyze --deep` |
|
|
114
|
+
| `/export results` | Export session results | `--format [type]`, `--file [path]` | `/export results --format json` |
|
|
115
|
+
|
|
116
|
+
## 💡 Usage Tips
|
|
117
|
+
|
|
118
|
+
### Command Shortcuts
|
|
119
|
+
- Use **Tab completion** for command names and options
|
|
120
|
+
- **Up/Down arrows** to navigate command history
|
|
121
|
+
- **Ctrl+C** to cancel current operation
|
|
122
|
+
- **Ctrl+L** to clear screen (same as `/clear`)
|
|
123
|
+
|
|
124
|
+
### Option Patterns
|
|
125
|
+
- `--help` works with any command for detailed help
|
|
126
|
+
- `--verbose` or `-v` for detailed output
|
|
127
|
+
- `--quiet` or `-q` for minimal output
|
|
128
|
+
- `--dry-run` to preview actions without executing
|
|
129
|
+
|
|
130
|
+
### Combining Commands
|
|
131
|
+
```bash
|
|
132
|
+
# Chain operations
|
|
133
|
+
> /sort quicksort --visualize && /benchmark sorting
|
|
134
|
+
|
|
135
|
+
# Use command output
|
|
136
|
+
> /model list --provider openai | /config --set preferred-model
|
|
137
|
+
|
|
138
|
+
# Save and reuse
|
|
139
|
+
> /save session --name algo_learning
|
|
140
|
+
> /tutorial --topic sorting && /save session --name algo_complete
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
## 🔍 Command Categories
|
|
144
|
+
|
|
145
|
+
### 🎓 Education (8 commands)
|
|
146
|
+
`/sort`, `/learn`, `/algorithm`, `/benchmark`, `/analyze`, `/tutorial`, `/examples`, `/docs`
|
|
147
|
+
|
|
148
|
+
### 🤖 AI Development (10 commands)
|
|
149
|
+
`/code`, `/generate`, `/implement`, `/refactor`, `/model`, `/mode`, `/thinking`, `/bug`, `/lint`, `/security`
|
|
150
|
+
|
|
151
|
+
### 🔧 System (8 commands)
|
|
152
|
+
`/status`, `/config`, `/update`, `/reset`, `/help`, `/history`, `/clear`, `/exit`
|
|
153
|
+
|
|
154
|
+
### 🚀 Advanced (6 commands)
|
|
155
|
+
`/agent`, `/orchestrate`, `/git`, `/project`, `/export`, `/performance`
|
|
156
|
+
|
|
157
|
+
### 💾 Session (4 commands)
|
|
158
|
+
`/save`, `/load`, `/history`, `/clear`
|
|
159
|
+
|
|
160
|
+
## 🆘 Getting Help
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# General help
|
|
164
|
+
> /help
|
|
165
|
+
|
|
166
|
+
# Help for specific command
|
|
167
|
+
> /sort --help
|
|
168
|
+
> /model --help
|
|
169
|
+
|
|
170
|
+
# Search help
|
|
171
|
+
> /help --search "algorithm"
|
|
172
|
+
|
|
173
|
+
# Show examples
|
|
174
|
+
> /examples --command code
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Total Commands: 36+ interactive slash commands for complete AI-powered development and algorithm education experience!**
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
# 🎯 Getting Started with MARIA Platform
|
|
2
|
+
|
|
3
|
+
Welcome to MARIA Platform v1.6.4 "Algorithm Education Revolution"! This guide will help you get up and running in minutes.
|
|
4
|
+
|
|
5
|
+
## 🚀 Quick Start (2 Minutes)
|
|
6
|
+
|
|
7
|
+
### Step 1: Install MARIA
|
|
8
|
+
```bash
|
|
9
|
+
npm install -g @bonginkan/maria
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### Step 2: Verify Installation
|
|
13
|
+
```bash
|
|
14
|
+
maria --version
|
|
15
|
+
# Should output: MARIA Platform v1.6.4 "Algorithm Education Revolution"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Step 3: Start Interactive Mode
|
|
19
|
+
```bash
|
|
20
|
+
maria
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
You should see the welcome screen with MARIA's beautiful ASCII logo and interactive prompt.
|
|
24
|
+
|
|
25
|
+
### Step 4: Try Your First Commands
|
|
26
|
+
```bash
|
|
27
|
+
# Within MARIA interactive mode:
|
|
28
|
+
> /help # See all available commands
|
|
29
|
+
> /sort quicksort --visualize # Try algorithm education
|
|
30
|
+
> /code "hello world function" # Generate code with AI
|
|
31
|
+
> /status # Check system status
|
|
32
|
+
> /exit # Exit when done
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**Congratulations! 🎉 You're now ready to explore MARIA's full potential.**
|
|
36
|
+
|
|
37
|
+
## 🎓 Learning Paths
|
|
38
|
+
|
|
39
|
+
### For Computer Science Students
|
|
40
|
+
|
|
41
|
+
**Goal**: Learn algorithms and data structures interactively
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
maria
|
|
45
|
+
> /help # Overview of all commands
|
|
46
|
+
> /sort quicksort # Learn quicksort algorithm
|
|
47
|
+
> /sort mergesort # Learn merge sort
|
|
48
|
+
> /learn algorithms # Complete CS curriculum
|
|
49
|
+
> /benchmark sorting # Compare algorithm performance
|
|
50
|
+
> /algorithm complexity # Big O notation tutorials
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**Daily Practice** (15 minutes):
|
|
54
|
+
1. Start with one algorithm: `/sort [algorithm_name]`
|
|
55
|
+
2. Study the implementation details
|
|
56
|
+
3. Try performance analysis: `/benchmark [algorithm_name]`
|
|
57
|
+
4. Practice with code generation: `/code "implement [algorithm]"`
|
|
58
|
+
|
|
59
|
+
### For Software Developers
|
|
60
|
+
|
|
61
|
+
**Goal**: AI-powered development assistance and code quality
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
maria
|
|
65
|
+
> /model # Configure preferred AI model
|
|
66
|
+
> /code "function description" # Generate code with AI
|
|
67
|
+
> /bug analyze # Bug detection and fixes
|
|
68
|
+
> /lint check # Code quality analysis
|
|
69
|
+
> /mode internal # Experience 50 cognitive AI modes
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
**Development Workflow**:
|
|
73
|
+
1. Start MARIA: `maria`
|
|
74
|
+
2. Set preferred AI model: `/model`
|
|
75
|
+
3. Use for coding tasks: `/code`, `/bug`, `/lint`
|
|
76
|
+
4. Leverage AI modes for different tasks
|
|
77
|
+
5. Learn algorithms for better coding: `/sort`, `/learn`
|
|
78
|
+
|
|
79
|
+
### For Educators
|
|
80
|
+
|
|
81
|
+
**Goal**: Teach computer science with interactive tools
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
maria
|
|
85
|
+
> /learn algorithms # Access full CS curriculum
|
|
86
|
+
> /sort quicksort --visualize # Interactive algorithm demos
|
|
87
|
+
> /algorithm complexity # Teach Big O notation
|
|
88
|
+
> /benchmark sorting # Show performance differences
|
|
89
|
+
> /help # Command reference for lessons
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**Classroom Integration**:
|
|
93
|
+
1. Install MARIA on classroom computers
|
|
94
|
+
2. Create lesson plans using algorithm commands
|
|
95
|
+
3. Use visualization features for demonstrations
|
|
96
|
+
4. Assign interactive algorithm practice
|
|
97
|
+
5. Show real-world performance comparisons
|
|
98
|
+
|
|
99
|
+
## 🔧 Essential Commands Reference
|
|
100
|
+
|
|
101
|
+
### Algorithm Education
|
|
102
|
+
| Command | Description | Example |
|
|
103
|
+
|---------|-------------|---------|
|
|
104
|
+
| `/sort [algorithm]` | Interactive algorithm tutorial | `/sort quicksort` |
|
|
105
|
+
| `/learn algorithms` | Complete CS curriculum | `/learn algorithms` |
|
|
106
|
+
| `/benchmark [type]` | Performance analysis | `/benchmark sorting` |
|
|
107
|
+
| `/algorithm complexity` | Big O notation guide | `/algorithm complexity` |
|
|
108
|
+
|
|
109
|
+
### AI Development
|
|
110
|
+
| Command | Description | Example |
|
|
111
|
+
|---------|-------------|---------|
|
|
112
|
+
| `/code "description"` | AI code generation | `/code "REST API"` |
|
|
113
|
+
| `/bug analyze` | Bug detection | `/bug analyze` |
|
|
114
|
+
| `/lint check` | Code quality | `/lint check` |
|
|
115
|
+
| `/model` | AI model selection | `/model` |
|
|
116
|
+
|
|
117
|
+
### System & Help
|
|
118
|
+
| Command | Description | Example |
|
|
119
|
+
|---------|-------------|---------|
|
|
120
|
+
| `/help` | Show all commands | `/help` |
|
|
121
|
+
| `/status` | System status | `/status` |
|
|
122
|
+
| `/mode internal` | Cognitive AI modes | `/mode internal` |
|
|
123
|
+
| `/exit` | Exit MARIA | `/exit` |
|
|
124
|
+
|
|
125
|
+
## 🎯 First Week Challenge
|
|
126
|
+
|
|
127
|
+
### Day 1-2: Setup & Exploration
|
|
128
|
+
- Install MARIA
|
|
129
|
+
- Try all basic commands with `/help`
|
|
130
|
+
- Explore algorithm education with `/sort quicksort`
|
|
131
|
+
|
|
132
|
+
### Day 3-4: Algorithm Learning
|
|
133
|
+
- Learn 3 sorting algorithms: quicksort, mergesort, heapsort
|
|
134
|
+
- Compare their performance with `/benchmark`
|
|
135
|
+
- Understand complexity with `/algorithm complexity`
|
|
136
|
+
|
|
137
|
+
### Day 5-6: AI Development
|
|
138
|
+
- Configure AI model with `/model`
|
|
139
|
+
- Generate code with `/code` commands
|
|
140
|
+
- Try bug analysis and code quality tools
|
|
141
|
+
|
|
142
|
+
### Day 7: Advanced Features
|
|
143
|
+
- Explore 50 cognitive AI modes with `/mode internal`
|
|
144
|
+
- Try complex code generation tasks
|
|
145
|
+
- Share your experience with the community
|
|
146
|
+
|
|
147
|
+
## 💡 Pro Tips
|
|
148
|
+
|
|
149
|
+
1. **Command Memory**: Use `/help` frequently until you memorize commands
|
|
150
|
+
2. **Tab Completion**: Most terminals support tab completion for faster typing
|
|
151
|
+
3. **Copy & Paste**: Copy generated code directly from MARIA output
|
|
152
|
+
4. **Multiple Sessions**: You can run multiple MARIA instances simultaneously
|
|
153
|
+
5. **Learning Notes**: Keep a notebook of algorithms you've learned
|
|
154
|
+
|
|
155
|
+
## 🌟 What's Next?
|
|
156
|
+
|
|
157
|
+
After mastering the basics:
|
|
158
|
+
|
|
159
|
+
1. **Deep Algorithm Study**: Complete the full CS curriculum with `/learn`
|
|
160
|
+
2. **AI Model Experimentation**: Try different AI models for various tasks
|
|
161
|
+
3. **Performance Optimization**: Use benchmarking tools for your own code
|
|
162
|
+
4. **Community Engagement**: Share your learning journey
|
|
163
|
+
5. **Advanced Features**: Explore autonomous coding capabilities
|
|
164
|
+
|
|
165
|
+
## 🆘 Need Help?
|
|
166
|
+
|
|
167
|
+
- **Built-in Help**: `/help` command within MARIA
|
|
168
|
+
- **System Check**: `/status` for diagnostics
|
|
169
|
+
- **GitHub Issues**: [Report problems](https://github.com/bonginkan/maria/issues)
|
|
170
|
+
- **NPM Package**: [View documentation](https://www.npmjs.com/package/@bonginkan/maria)
|
|
171
|
+
|
|
172
|
+
## 🎉 Welcome to the Future
|
|
173
|
+
|
|
174
|
+
You're now part of the Algorithm Education Revolution! MARIA Platform combines:
|
|
175
|
+
|
|
176
|
+
- ✅ Interactive algorithm learning
|
|
177
|
+
- ✅ AI-powered development assistance
|
|
178
|
+
- ✅ 50 cognitive AI modes
|
|
179
|
+
- ✅ 36+ interactive commands
|
|
180
|
+
- ✅ Real-time performance analysis
|
|
181
|
+
- ✅ Complete CS curriculum
|
|
182
|
+
|
|
183
|
+
**Start exploring and happy learning! 🚀📚✨**
|
package/LICENSE
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<<<<<<< HEAD
|
|
1
2
|
MARIA Platform Dual-License Agreement
|
|
2
3
|
|
|
3
4
|
Copyright (c) 2025 Bonginkan Inc. All rights reserved.
|
|
@@ -103,4 +104,27 @@ CONTACT INFORMATION:
|
|
|
103
104
|
By using MARIA Platform, you acknowledge that you have read, understood, and
|
|
104
105
|
agree to be bound by the terms of this dual-license agreement.
|
|
105
106
|
|
|
106
|
-
For the most current license terms, visit: https://docs.maria-platform.ai/license
|
|
107
|
+
For the most current license terms, visit: https://docs.maria-platform.ai/license
|
|
108
|
+
=======
|
|
109
|
+
MIT License
|
|
110
|
+
|
|
111
|
+
Copyright (c) 2025 Bonginkan Inc.
|
|
112
|
+
|
|
113
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
114
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
115
|
+
in the Software without restriction, including without limitation the rights
|
|
116
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
117
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
118
|
+
furnished to do so, subject to the following conditions:
|
|
119
|
+
|
|
120
|
+
The above copyright notice and this permission notice shall be included in all
|
|
121
|
+
copies or substantial portions of the Software.
|
|
122
|
+
|
|
123
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
124
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
125
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
126
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
127
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
128
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
129
|
+
SOFTWARE.
|
|
130
|
+
>>>>>>> 73f1a492c8b30ad4210f6a8d16116a915db9e914
|