I need you to convert the following text document into a table:

```
$$TEXTLINES$$
```

The table contains the following columns:

$$COLUMNS$$

Not every columns might be relevant in this example. Some might be empty.
First of all, for each of the columns, write whether it's relevant in this example.

Second of all, give a list of relevant columns in the order their values appear in the lines. Each column can only appear once per line.
Finally, output the table in JSON using the following format:

```json
[
{
  "OriginalLineText" : "<original line>",
  "<first column name>" : {
	"Value" : "<value of the column, directly taken from the line>",
	"StartIndex": <index in this line where the column value starts>,
	"EndIndex": <index in this line where the column value ends>,
  },
  ...
},
...
]
```