```text
┌───────────────────────┐
│ Offered order options │
├───┬────────────┬──────┴╥──────────┬──────────┐
│ U │ Customer │ Order ║ Discount │ Priority │
╞═══╪════════════╪═══════╬══════════╪══════════╡
│ 1 │ "Business" │ <10 ║ 0.10 │ "Normal" │
├───┼────────────┼───────╫──────────┼──────────┤
│ 2 │ "Business" │ >=10 ║ 0.15 │ "High" │
├───┼────────────┼───────╫──────────┼──────────┤
│ 3 │ "Private" │ - ║ 0.05 │ "Low" │
└───┴────────────┴───────╨──────────┴──────────┘
```
> # Offered order options
| | `i` | `i` | `o` | `o` |
| 1 | "Business" | <10 | 0.10 | "Normal" |
| 2 | "Business" | >=10 | 0.15 | "High" |
| 3 | "Private" | - | 0.05 | "Low" |