# VAPI-GRAPHQL-DROPIN
This is a POC to create a reference implementation of the
Project/Product/Track creation flow logic in GraphQL and Python. The working 
use case is to replace the VAPI endpoint used by the `bulk-upload-feeder` 
project with an mostly equivalent graphql-based endpoint. 

# Thinking
The bulk-upload-feeder project uses the PHP-based VAPI endpoint to upload data 
to our backend. Due to various limitations, the current implementation of the 
VAPI endpoint hampers the Technaical Integrations team from being able to 
fulfill their needs. This project aims to provide a graphql-based endpoint that
can be used as a "drop-in" replacement for the VAPI endpoint. The idea is to create a
reference implementation of a graphql-based endpoint that can be used to accelerate
any initiatives to replace the VAPI endpoint with a more modern, scalable, and
maintainable solution.

# Limitations
This POC will not provide all the functionality of the VAPI endpoint, but 
rather will provide a starting point for future development.

This reference implementation will provide the basic functionality needed to
ingest projects, releases, and tracks into our backend, and provide errors
similar to VAPI. The scope of this implementation will be limited to the needs
of Technical Integrations team workflows. 

# Implementation
This project will accept payloads similar to the VAPI endpoint, and will return
responses similar to the VAPI endpoint. 
 
# Payloads
## Request
This is an example payload for the `/vapiql/` endpoint:

The POST request is made using an expansion of the `post_params` dictionary.

```
post_params = {
    "url": "https://vectorapi.qaorch.com/bulkupload/post",
    "data":
    {
        "data": json.dumps(label_chunk_request['data'], ensure_ascii=False),  # SEE DATA APPENDIX
        "data_format": "json"
    },
    "params":
    {
        "errorMode": "1",
        "access_token": "<TOKEN UUID>",
        "processMode": "mass_ingest",
        "vendorId": 781794,
        "isMechadmin": "True"  # Mandatory for VAPI
    }
}
```

In the code, the POST request is simply made like this:

```python
requests.post(**post_params)
```

The `data` and `params` are sliced off, with the `params` are eventually passed to `requests.post()` as the query data, and the `data` is passed as the request body data.


## Response
The endpoint should return a response like this:
```
{
    'envelope': {
        'request': '/bulkupload/post?processMode=mass_ingest&'
                'errorMode=1&'
                'access_token=50487ec72aff5a58af9ea3f6293f33ad&'
                'XDEBUG_SESSION_START=devorch',
        noqa
        'header': {
            'httpStatusCode': 200,
            'baseUrl': 'vapi.example.com',
            'apiVersion': '1.0'
        },
        'response': {
            'updated_releases': {
                '28699_____VJ04007-2': {
                    'project_id': '3977968',
                    'Artist Name': 'Elektro Ompaniet',
                    'release_id': 2381877,
                    'Release Name': 'Toskedalen',
                    'folder_name': '28699',
                    'Release Date': '2004-04-06'
                },
                '29074_____VJ04008': {
                    'project_id': '3977962',
                    'Artist Name': 'Svein Folkvord',
                    'release_id': 2381871,
                    'Release Name': 'Across',
                    'folder_name': '29074',
                    'Release Date': '2004-11-18'
                },
                '25321_____VJ18962': {
                    'project_id': '3977964',
                    'Artist Name': 'Fliflet',
                    'release_id': 2381873,
                    'Release Name': 'Hamre Energiforsyning / '
                                    'Moro Post Mortem - Live',
                    noqa
                    'folder_name': '25321',
                    'Release Date': '2000-08-30'
                },
                '30918_____VJ060102': {
                    'project_id': '3977969',
                    'Artist Name': 'Sonic Stories',
                    'release_id': 2381878,
                    'Release Name': 'Feels Like Night',
                    'folder_name': '30918',
                    'Release Date': '2006-04-18'
                },
                '30873_____VJ060112': {
                    'project_id': '3977966',
                    'Artist Name': 'Terje Isungset',
                    'release_id': 2381875,
                    'Release Name': 'Dider Petit',
                    'folder_name': '30873',
                    'Release Date': '2006-04-03'
                },
                '28496_____VJ03006-2': {
                    'project_id': '3977967',
                    'Artist Name': 'Tore Brunborg',
                    'release_id': 2381876,
                    'Release Name': 'Gravity',
                    'folder_name': '28496',
                    'Release Date': '2003-12-17'
                },
                '25320_____VJ980042': {
                    'project_id': '3977970',
                    'Artist Name': 'Opheim, Kjellemyr, Mjølsnes, '
                                'Jørgensen, Apeland',
                    'release_id': 2381879,
                    'Release Name': 'Fryd',
                    'folder_name': '25320',
                    'Release Date': '2000-08-30'
                },
                '31254_____VJ060122': {
                    'project_id': '3977963',
                    'Artist Name': 'Subtrio',
                    'release_id': 2381872,
                    'Release Name': 'Subtrio',
                    'folder_name': '31254',
                    'Release Date': '2006-08-02'
                },
                '30405_____VJO4007-3': {
                    'project_id': '3977965',
                    'Artist Name': 'Elektro Ompaniet',
                    'release_id': 2381874,
                    'Release Name': 'Electromecanibalism',
                    'folder_name': '30405',
                    'Release Date': '2005-11-21'
                }
            },
            'error': {
                '26847_____VJ980052': {
                    '1_11_82': {
                        'Duplicate Tracks': 'Duplicate Track: Track '
                                            'level fields are '
                                            'identical to Volume 1 - '
                                            'Track 10'
                        noqa
                    },
                    'data': {
                        'release_name': 'Tid Å Hausta Inn',
                        'line_numbers': [
                            74,
                            75,
                            76,
                            77,
                            78,
                            79,
                            80,
                            81,
                            82,
                            83,
                            84,
                            85,
                            86,
                            87,
                            88,
                            89,
                            90,
                            91,
                            92
                        ],
                        'artist_name':
                            'Kari Bremnes & Lars Klevestrand',
                        'vendor_catalog_number': 26847
                    }
                }
            }
        }
    }
}
```

# Data Appendix
The `data` key contains the VAPI payload; a string escaped JSON object that 
contains the data to be ingested. The JSON is dumped from the dictionary at `label_chunk_request['data']`. This dictionary 
represents one or more product. The data has been pivoted from incoming tabular data, such that each key at the top level of the dictionary is a unique key, representing each unique project/product pairing. These unique keys are derived from teh project id and product id, which are retrieved from the incoming data. 

The corresponding values at each of these unique keys in the dictionary at `label_chunk_request['data']` is a list of dictionaries, where each dictionary contains all the track information for each track on the product (one row from the input dataset). The keys in each of these track-level dictionaries represent fields on the ingestion document, and the values are the values of these fields for that row (track).

Since the payload is the supposed to be a string in a POST request, the data must be properly escaped.

Although multiple products can be ingested in a single request, we have limited our queuing system to only present one product at a time. This means that in practice the data key will only contain one product at a time.

Here is an example of a a sequence of the data, properly escaped.

```
"{\"7520114601_____102M024\": [{\"Release Name\": \"Poi E\", \"Release Meta Language\": \"English\", \"Orchard Artist\": \"Patea Maori Club\", ...}], [{\"Release Name\": \"Poi E\", \"Release Meta Language\": \"English\", \"Orchard Artist\": \"Patea Maori Club\", ...}]}"
```

N.B. The first key is the unique key composed of Project Code and Product Code.

`7520114601_____102M024`means: project code is `7520114601` and product code is `102M024`

## Full `data` body
The below is a full POST request that has successully been made to the 
`/vapiql/` endpoint. This is the full version of data that needs to be escaped and attached to the `data`
key in the post_params dictionary.

You'll notice that there is NO PRODUCT CODE in this example. That means the compound key is using only the project code. 

```json
{
    "url": "https://vectorapi.qaorch.com/bulkupload/post",
    "data":
    {
        "data": 
        {
    "7520114601_____":
            [
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654404.wav",
                    "Volume": 1,
                    "Track No.": 1,
                    "Track Name": "E Pa To Hau",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700001",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 2
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654395.wav",
                    "Volume": 1,
                    "Track No.": 2,
                    "Track Name": "KO Aotea",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700002",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 3
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654399.wav",
                    "Volume": 1,
                    "Track No.": 3,
                    "Track Name": "Taranaki Patere-Kahuri",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700003",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 4
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654412.wav",
                    "Volume": 1,
                    "Track No.": 4,
                    "Track Name": "Parihaka-Tewhiti-Tohu-Tawhiao",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700004",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 5
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654406.wav",
                    "Volume": 1,
                    "Track No.": 5,
                    "Track Name": "Nga Ohaki",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700005",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 6
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654482.wav",
                    "Volume": 1,
                    "Track No.": 6,
                    "Track Name": "Ngakau Maru",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700006",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 7
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654486.wav",
                    "Volume": 1,
                    "Track No.": 7,
                    "Track Name": "Hei Konei Ra",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700007",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Michael Bauer|Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 8
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654495.wav",
                    "Volume": 1,
                    "Track No.": 8,
                    "Track Name": "Ngoi Ngoi",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700008",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 9
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654487.wav",
                    "Volume": 1,
                    "Track No.": 9,
                    "Track Name": "He Tangata Tini Hanga",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700009",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 10
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654481.wav",
                    "Volume": 1,
                    "Track No.": 10,
                    "Track Name": "E Papa Waiari",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700010",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 11
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654483.wav",
                    "Volume": 1,
                    "Track No.": 11,
                    "Track Name": "Aku Raukura",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700011",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 12
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532252761.wav",
                    "Volume": 1,
                    "Track No.": 12,
                    "Track Name": "Poi E",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700012",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 13
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654489.wav",
                    "Volume": 1,
                    "Track No.": 13,
                    "Track Name": "Haeremai",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700013",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 14
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654497.wav",
                    "Volume": 1,
                    "Track No.": 14,
                    "Track Name": "Kua Makona",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700014",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 15
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654501.wav",
                    "Volume": 1,
                    "Track No.": 15,
                    "Track Name": "Paikea",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700015",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 16
                },
                {
                    "Release Name": "Poi E",
                    "Release Meta Language": "English",
                    "Orchard Artist": "Patea Maori Club",
                    "Artist Country": "New Zealand",
                    "Subaccount Name": "DALVANIUS PRIME ESTATE",
                    "Artist URL": "",
                    "Release Artist(s)-Primary Artist(s)": "Patea Maori Club",
                    "Release Artist(s)-Featuring(s)": "",
                    "Release Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": "",
                    "Release Artist(s)-Composer(s)": "",
                    "Release Artist(s)-Orchestra(s)": "",
                    "Release Artist(s)-Ensemble(s)": "",
                    "Release Artist(s)-Conductor(s)": "",
                    "Release Date": "2000-05-02",
                    "Sale Start Date": "2023-05-16",
                    "iTunes Pre-Order": "",
                    "iTunes Pre-Order Date": "",
                    "Preorder Preview": "",
                    "Album Pricing": "Front One",
                    "Format: Full Length / EP / Single": "Full Length",
                    "Imprint": "DALVANIUS PRIME ESTATE",
                    "Genre": "World Music",
                    "Sub-genre": "World Music",
                    "[C] Information": "2000 Dalvanius Prime Estate",
                    "P-Line": "2000 Dalvanius Prime Estate",
                    "Digital UPC": "",
                    "Manufacturer's UPC": "0006301702827",
                    "Folder Name / Project Code": "7520114601",
                    "Product Code": "",
                    "Release Version": "",
                    "File Name": "7532654593.wav",
                    "Volume": 1,
                    "Track No.": 16,
                    "Track Name": "Anei Ra Overture and Aria",
                    "Track Audio Language": "Maori",
                    "Version": "",
                    "Track Artist": "Patea Maori Club",
                    "Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    "Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    "Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": "Mid",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": "NZJR00700016",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] Information": "2000 Dalvanius Prime Estate",
                    "Ownership For This Sound Recording": "I am the original master copyright owner",
                    "Country of Recording": "New Zealand",
                    "Nationality of Original Copyright Owner": "New Zealand",
                    "Track Lyrics": "",
                    "Songwriter(s)": "Michael Bauer|Benedict Paki",
                    "Publisher(s)": "",
                    "Performer 1 Type": "Primary Performer",
                    "Performer 1 Legal Name": "Patea Maori Club",
                    "Performer 1 Main Role": "Other - Unlisted Performer Role",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    "Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    "Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    "Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    "Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    "Only Include/Only Exclude?": "Only Include",
                    "Territories (ISO Codes)": "DZ|AO|BJ|BW|BF|BI|CM|CV|CF|TD|KM|CG|CD|CI|DJ|EG|GQ|ER|ET|GA|GM|GH|GN|GW|KE|LS|LR|LY|MG|MW|ML|MU|MR|MA|MZ|NA|NE|NG|RW|ST|SN|SL|SC|SO|ZA|SZ|SD|TZ|TG|TN|UG|ZM|EH|ZW|AQ|BV|TF|HM|GS|AF|AZ|BH|BD|BT|IO|BN|KH|CN|CX|CC|HK|CC|IN|ID|IR|IQ|JP|JO|KW|LA|LB|MO|MY|MV|MN|MM|NP|KP|OM|PK|PS|PH|QA|SA|SG|KR|LK|SY|TW|TH|TL|AE|VN|YE|AX|AL|AD|AM|AT|BY|BE|BA|BG|HR|CY|CZ|DK|EE|FO|FI|FR|GE|DE|GL|GI|GR|GG|VA|HU|IS|IE|IM|IL|IT|JE|KZ|KG|LV|LI|LT|LU|MK|MT|YT|MD|MC|NL|NO|PL|PT|RE|RO|RU|SH|SM|CS|SK|SI|ES|SJ|SE|CH|TJ|TR|TM|UA|GB|UZ|AI|AG|AW|BS|BZ|BB|BM|CA|KY|CR|CU|DM|DO|SV|GD|GP|HT|GT|HN|JM|MQ|MX|UM|MS|NI|AN|PA|PR|KN|LC|PM|VC|TT|TC|US|VG|VI|AS|AU|CK|FJ|PF|GU|KI|MH|FM|NR|NC|NZ|NU|NF|MP|PW|PG|PN|WS|SB|TK|TO|VU|TV|WF|AR|BO|BR|CL|CO|EC|FK|GF|GY|PY|PE|SR|UY|VE|",
                    "ORCHLABELID": 781794,
                    "excel_line_number": 17
                }
            ]
        },
    "data_format": "json"
    },
    "params":
    {
        "errorMode": "1",
        "access_token": "<TOKEN UUID>",
        "processMode": "mass_ingest",
        "vendorId": 781794,
        "isMechadmin": "True"  # Mandatory for VAPI
    }
}
```

# Improvements
Currently in the payload, each row of the list of track dictionaries contains all the information for both individual track and the whole release. This leads to increased payload size and duplication of data. We can improve this by separating the release information from the track information in the payload. 

There are fields that VAPI does not accept, but which are accepted by the frontend/workstation. These fields can be mutated via GraphQL. We can extend this POC to include fields that are not accepted by VAPI.

# WIP

Actual `post_params`

```json
{
    'data': {
        'data': {
            "190296079146_____1005331003": [
                {
                    "Release Name": "Queen Of ''Light",
                    "Release Meta Language": "English",
                    "Orchard ''Artist": "Induction",
                    "Artist Country": "Germany",
                    ''"Subaccount Name": "Reigning Phoenix Music America, LLC",
                    ''"Artist URL": "https://www.inductionofficial.com",
                    "Release ''Artist(s)-Primary Artist(s)": "Induction",
                    "Release ''Artist(s)-Featuring(s)": "",
                    "Release ''Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": ''"",
                    "Release Artist(s)-Composer(s)": "",
                    "Release ''Artist(s)-Orchestra(s)": "",
                    "Release ''Artist(s)-Ensemble(s)": "",
                    "Release ''Artist(s)-Conductor(s)": "",
                    "Release Date": "2022-08-26",
                    ''"Sale Start Date": "2024-11-01",
                    "iTunes Pre-Order": "No ''Pre-order",
                    "iTunes Pre-Order Date": "",
                    "Preorder ''Preview": "",
                    "Album Pricing": "Mini EP -7 track max",
                    ''"Format: Full Length / EP / Single": "Single",
                    "Imprint": ''"Reigning Phoenix Music",
                    "Genre": "Metal",
                    "Sub-genre": ''"Heavy",
                    "[C] Information": "2022 Reigning Phoenix Music",
                    ''"P-Line": "2022 Reigning Phoenix Music",
                    "Digital UPC": ''"190296079146",
                    "Manufacturer\'s UPC": "",
                    "Folder Name / ''Project Code": "190296079146",
                    "Product Code": ''"1005331003",
                    "Release Version": "",
                    "File Name": ''"190296079146_01_0001.wav",
                    "Volume": 1,
                    "Track No.": 1,
                    ''"Track Name": "Queen Of Light",
                    "Track Audio Language": ''"English",
                    "Version": "",
                    "Track Artist": "Induction",
                    ''"Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - ''Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    ''"Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - ''Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    ''"Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": ''"Front",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": ''"DE1AH2205307",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] ''Information": "2022 Reigning Phoenix Music",
                    "Ownership For ''This Sound Recording": "I am the exclusive licensee (not ''the owner)",
                    "Country of Recording": "Denmark",
                    ''"Nationality of Original Copyright Owner": "Germany",
                    ''"Track Lyrics": "",
                    "Songwriter(s)": "Tim Kanoa ''Hansen|Emrah Acar",
                    "Publisher(s)": "",
                    "Performer 1 Type": ''"Primary Performer",
                    "Performer 1 Legal Name": "Tim Kanoa ''Hansen",
                    "Performer 1 Main Role": "Guitar - Electric ''Guitar",
                    "Performer 2 Type": "",
                    "Performer 2 Legal Name": ''"",
                    "Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    ''"Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    ''"Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    ''"Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    ''"Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    ''"Only Include/Only Exclude?": "Only Exclude",
                    "Territories ''(ISO Codes)": "DE|AT|CH",
                    "ORCHLABELID": 82287,
                    ''"excel_line_number": 2
                },
                {
                    "Release Name": "Queen Of Light",
                    ''"Release Meta Language": "English",
                    "Orchard Artist": ''"Induction",
                    "Artist Country": "Germany",
                    "Subaccount ''Name": "Reigning Phoenix Music America, LLC",
                    "Artist URL": ''"https://www.inductionofficial.com",
                    "Release ''Artist(s)-Primary Artist(s)": "Induction",
                    "Release ''Artist(s)-Featuring(s)": "",
                    "Release ''Artist(s)-Remixer(s)": "",
                    "Release Artist(s)-Producer(s)": ''"",
                    "Release Artist(s)-Composer(s)": "",
                    "Release ''Artist(s)-Orchestra(s)": "",
                    "Release ''Artist(s)-Ensemble(s)": "",
                    "Release ''Artist(s)-Conductor(s)": "",
                    "Release Date": "2022-08-26",
                    ''"Sale Start Date": "2024-11-01",
                    "iTunes Pre-Order": "No ''Pre-order",
                    "iTunes Pre-Order Date": "",
                    "Preorder ''Preview": "",
                    "Album Pricing": "Mini EP -7 track max",
                    ''"Format: Full Length / EP / Single": "Single",
                    "Imprint": ''"Reigning Phoenix Music",
                    "Genre": "Metal",
                    "Sub-genre": ''"Heavy",
                    "[C] Information": "2022 Reigning Phoenix Music",
                    ''"P-Line": "2022 Reigning Phoenix Music",
                    "Digital UPC": ''"190296079146",
                    "Manufacturer\'s UPC": "",
                    "Folder Name / ''Project Code": "190296079146",
                    "Product Code": ''"1005331003",
                    "Release Version": "",
                    "File Name": ''"190296079146_01_0002.wav",
                    "Volume": 1,
                    "Track No.": 2,
                    ''"Track Name": "Sacrifice",
                    "Track Audio Language": ''"English",
                    "Version": "",
                    "Track Artist": "Induction",
                    ''"Track Artist(s) - Featuring(s)": "",
                    "Track Artist(s) - ''Remixer(s)": "",
                    "Track Artist(s) - Producer(s)": "",
                    ''"Track Artist(s) - Composer(s)": "",
                    "Track Artist(s) - ''Orchestra(s)": "",
                    "Track Artist(s) - Ensemble(s)": "",
                    ''"Track Artist(s) - Conductor(s)": "",
                    "Track Pricing": ''"Front",
                    "Explicit (No/Yes/Clean)": "No",
                    "ISRC": ''"QMEU32116831",
                    "3rd Party Publisher? (Yes/No)": "No",
                    "[P] ''Information": "2022 Reigning Phoenix Music",
                    "Ownership For ''This Sound Recording": "I am the exclusive licensee (not ''the owner)",
                    "Country of Recording": "Germany",
                    ''"Nationality of Original Copyright Owner": "Germany",
                    ''"Track Lyrics": "",
                    "Songwriter(s)": "Tim Kanoa ''Hansen|Martin Beck|Pierre Feal|Craig Cairns",
                    ''"Publisher(s)": "",
                    "Performer 1 Type": "Primary ''Performer",
                    "Performer 1 Legal Name": "Tim Kanoa Hansen",
                    ''"Performer 1 Main Role": "Guitar - Electric Guitar",
                    ''"Performer 2 Type": "",
                    "Performer 2 Legal Name": "",
                    ''"Performer 2 Main Role": "",
                    "Performer 3 Type": "",
                    ''"Performer 3 Legal Name": "",
                    "Performer 3 Main Role": "",
                    ''"Performer 4 Type": "",
                    "Performer 4 Legal Name": "",
                    ''"Performer 4 Main Role": "",
                    "Performer 5 Type": "",
                    ''"Performer 5 Legal Name": "",
                    "Performer 5 Main Role": "",
                    ''"Only Include/Only Exclude?": "Only Exclude",
                    "Territories ''(ISO Codes)": "DE|AT|CH",
                    "ORCHLABELID": 82287,
                    ''"excel_line_number": 3
                }
            ]
        },
        'data_format': 'json'
    },
    'params': {
        'access_token': '6e7b1e32ee085cdc6ea942ba889c999c',
        'errorMode': '1',
        'isMechadmin': 'True',
        'processMode': 'mass_ingest',
        'vendorId': 82287
    },
    'url': 'http://localhost/bulkupload/post'
}

```