diff --git a/package.json b/package.json index 2f64d54..671d1aa 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "rxjs": "7.8", "tone": "14", "tslib": "2.3", + "xml-js": "^1.6.11", "zone.js": "0.14" }, "devDependencies": { diff --git a/src/app/als/README.md b/src/app/als/README.md new file mode 100644 index 0000000..960e40d --- /dev/null +++ b/src/app/als/README.md @@ -0,0 +1,38 @@ +# als + +## Piste audio original + +XPath relatif +à `/Ableton/LiveSet/Tracks/AudioTrack[1]/DeviceChain/MainSequencer/Sample/ArrangerAutomation/Events/AudioClip`. + +| XPath | Description | Exemple | +|-----------------------------------------|--------------------------------------------------------|---------------------------------------------------------| +| `CurrentStart/@Value` | Début du clip dans l'arrangeur (en BeatTime) | 0 | +| `CurrentEnd/@Value` | Fin du clip dans l'arrangeur (en BeatTime) | 378.36283820346318 | +| `Loop/HiddenLoopStart/@Value` | Début du sample dans le clip (en BeatTime) | -1.1762159715284715 | +| `Loop/HiddenLoopEnd/@Value` | Fin du sample dans le clip (en BeatTime) | 378.36283820346318 | +| `Name/@Value` | Nom du clip (par défaut, nom du sample sans extension) | DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01 | +| `ColorIndex/@Value` | Couleur du clip | 20 | +| `SampleRef/FileRef/RelativePath` | Sous dossiers du sample relatifs au projet | Samples + lalicornerouge[...] + DIDAFTA - ALBUM | +| `SampleRef/FileRef/SearchHint/PathHint` | Plus complet que `RelativePath` | Musique + Groupes + Didaf'ta + Samples + [...] | +| `SampleRef/FileRef/Name` | Nom du sample avec extension | DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01.wav | +| `SampleRef/DefaultDuration/@Value` | Durée en échantillons du sample | 9984000 | +| `SampleRef/DefaultSampleRate/@Value` | Fréquence d'échantillonnage du sample | 48000 | + +On peut déduire la durée du sample en secondes = DefaultDuration / DefaultSampleRate + +## Piste structure + +XPath relatif +à `/Ableton/LiveSet/Tracks/MidiTrack[1]/DeviceChain/MainSequencer/ClipTimeable/ArrangerAutomation/Events/MidiClip`. + +| XPath | Description | Exemple | +|-----------------------|--------------------------------------------------------|-----------------| +| `CurrentStart/@Value` | Début du clip dans l'arrangeur (en BeatTime) | 0 | +| `CurrentEnd/@Value` | Fin du clip dans l'arrangeur (en BeatTime) | 48 | +| `Name/@Value` | Nom du clip (par défaut, nom du sample sans extension) | Partie bombarde | +| `ColorIndex/@Value` | Couleur du clip | 22 | + +# Voir aussi + +- https://github.com/Bludwarf/als-player diff --git a/src/app/als/als-extractor.spec.ts b/src/app/als/als-extractor.spec.ts new file mode 100644 index 0000000..ec1c034 --- /dev/null +++ b/src/app/als/als-extractor.spec.ts @@ -0,0 +1,31 @@ +import {AlsImporter} from "./als-importer"; +import {getKarmaFile} from "../test/test-utils"; +import {StructureExtractorFromAls} from "./structure-extractor-from-als"; +import {Time} from "../time"; + +describe('AlsExtractor', () => { + + const createExtractorFor = async (filePath: string): Promise => { + const alsImporter = new AlsImporter(); + const blob = await getKarmaFile(filePath) + const alsProject = await alsImporter.loadUnzipped(blob) + return new StructureExtractorFromAls(alsProject) + } + + it('should get sample duration from Petit papillon', async () => { + const alsImporter = new AlsImporter(); + const filePath = 'src/assets/als/Petit papillon.als.xml'; + const extractor = await createExtractorFor(filePath) + expect(extractor.sampleDuration.toSeconds()).toBe(Time.fromValue(208).toSeconds()) + }); + + it('should get JSON structure from Petit papillon', async () => { + const alsImporter = new AlsImporter(); + const filePath = 'src/assets/als/Petit papillon.als.xml'; + const extractor = await createExtractorFor(filePath) + const jsonStructure = extractor.structureObject + console.log(JSON.stringify(jsonStructure)) + expect(jsonStructure).toBeTruthy() + }); + +}); diff --git a/src/app/als/als-importer.spec.ts b/src/app/als/als-importer.spec.ts new file mode 100644 index 0000000..62eed7b --- /dev/null +++ b/src/app/als/als-importer.spec.ts @@ -0,0 +1,35 @@ +import {AlsImporter} from "./als-importer"; +import {getKarmaFile} from "../test/test-utils"; + +describe('AlsImporter', () => { + + // it('should load Petit papillon.als', (done) => { + // const alsImporter = new AlsImporter(); + // + // + // // Source : https://stackoverflow.com/a/57331494/1655155 + // const filePath = 'src/assets/als/Petit papillon.als'; + // const request: XMLHttpRequest = createRequest(filePath ); + // + // request.onload = async r => { + // let blob = new Blob([request.response]); + // const url = URL.createObjectURL(blob); + // await alsImporter.load(blob) + // // expect(data).toBe('expected data'); + // done(); + // }; + // + // // trigger + // request.send(null); + // }); + + it('should load Petit papillon.als.xml', async (done) => { + const alsImporter = new AlsImporter(); + const filePath = 'src/assets/als/Petit papillon.als.xml'; + const blob = await getKarmaFile(filePath) + const alsProject = await alsImporter.loadUnzipped(blob) + expect(alsProject).toBeTruthy(); + done(); + }); + +}); diff --git a/src/app/als/als-importer.ts b/src/app/als/als-importer.ts new file mode 100644 index 0000000..3ff8638 --- /dev/null +++ b/src/app/als/als-importer.ts @@ -0,0 +1,71 @@ +// import * as zip from "@zip.js/zip.js"; +// import {ZipReaderConstructorOptions} from "@zip.js/zip.js"; +// const abletonParser = require('ableton-parser'); + +// const unzip = require('unzip-js') + +import {AlsProject} from "./v10/als-project"; + +declare function require(name:string): any; // source : https://stackoverflow.com/a/12742371/1655155 + +var convert = require('xml-js') + +// TODO trouver un utilitaire pour dézipper côté client + +export class AlsImporter { + + // async load(file: Blob): Promise { + // console.log(file.size) + // const options: ZipReaderConstructorOptions = {} as ZipReaderConstructorOptions + // + // // Source : https://github.com/gildas-lormeau/zip.js/blob/gh-pages/demos/demo-read-file.js + // + // const blobReader = new zip.BlobReader(file); + // console.log('blobReader', blobReader) + // + // const zipReader = new zip.ZipReader(blobReader); + // console.log('zipReader', zipReader) + // + // const entries = await zipReader.getEntries(options) + // console.log(entries) + // } + + // load(file: Blob) { + // unzip(file, function (err: any, zipFile: any) { + // if (err) { + // return console.error(err) + // } + // + // zipFile.readEntries(function (err: any, entries: any) { + // if (err) { + // return console.error(err) + // } + // + // entries.forEach(function (entry: any) { + // zipFile.readEntryData(entry, false, function (err: any, readStream: any) { + // if (err) { + // return console.error(err) + // } + // + // readStream.on('data', function (chunk: any) { + // }) + // readStream.on('error', function (err: any) { + // }) + // readStream.on('end', function () { + // }) + // }) + // }) + // }) + // }) + // } + + async loadUnzipped(xmlFile: Blob) { + // TODO utiliser plutôt des stream + const xmlContent = await xmlFile.text() + const parsedXml = convert.xml2json(xmlContent, { + compact: true, + }) + return new AlsProject(JSON.parse(parsedXml)) + } + +} diff --git a/src/app/als/structure-extractor-from-als.ts b/src/app/als/structure-extractor-from-als.ts new file mode 100644 index 0000000..db0b6d9 --- /dev/null +++ b/src/app/als/structure-extractor-from-als.ts @@ -0,0 +1,30 @@ +import {AlsProject} from "./v10/als-project"; +import {AudioTrack} from "./v10/audio-track"; +import {Time} from "../time"; + +export class StructureExtractorFromAls { + constructor(private readonly alsProject: AlsProject) { + + } + + get originalAudioTrack(): AudioTrack { + return this.alsProject.audioTracks[0] + } + + get sampleDuration(): Time { + const duration = this.originalAudioTrack.audioClips[0].duration + const sampleRate = this.originalAudioTrack.audioClips[0].sampleRate + return Time.fromValue(duration / sampleRate) + } + + get structureObject(): StructureObject { + return { + sampleDuration: this.sampleDuration.toSeconds(), + } + } + +} + +export interface StructureObject { + sampleDuration: number +} diff --git a/src/app/als/v10/als-project.ts b/src/app/als/v10/als-project.ts new file mode 100644 index 0000000..b71f2c9 --- /dev/null +++ b/src/app/als/v10/als-project.ts @@ -0,0 +1,11 @@ +import {AudioTrack} from "./audio-track"; + +export class AlsProject { + constructor(private readonly parsedXml: any) { + + } + get audioTracks(): AudioTrack[] { + return this.parsedXml.Ableton.LiveSet.Tracks.AudioTrack.map((audioTrack: any) => new AudioTrack(audioTrack)) + } + +} diff --git a/src/app/als/v10/audio-clip.ts b/src/app/als/v10/audio-clip.ts new file mode 100644 index 0000000..6eb2591 --- /dev/null +++ b/src/app/als/v10/audio-clip.ts @@ -0,0 +1,15 @@ +export class AudioClip { + + constructor(private readonly xmlAudioClip: any) { + + } + + get duration(): number { + return +this.xmlAudioClip.SampleRef.DefaultDuration._attributes.Value + } + + get sampleRate(): number { + return +this.xmlAudioClip.SampleRef.DefaultSampleRate._attributes.Value + } + +} diff --git a/src/app/als/v10/audio-track.ts b/src/app/als/v10/audio-track.ts new file mode 100644 index 0000000..caab96a --- /dev/null +++ b/src/app/als/v10/audio-track.ts @@ -0,0 +1,12 @@ +import {AudioClip} from "./audio-clip"; + +export class AudioTrack { + constructor(private readonly xmlObject: any) { + } + + get audioClips(): AudioClip[] { + const xmlAudioClip = this.xmlObject.DeviceChain.MainSequencer.Sample.ArrangerAutomation.Events.AudioClip as any; + return [new AudioClip(xmlAudioClip)] + } + +} diff --git a/src/app/app.module.ts b/src/app/app.module.ts index ce52b43..614da27 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -4,9 +4,9 @@ import { RouterModule } from '@angular/router'; import { ReactiveFormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; -import { SandboxComponent } from './sandbox/sandbox.component'; import { CommonModule } from '@angular/common'; import { RythmSandboxComponent } from './rythm-sandbox/rythm-sandbox.component'; +import {ConvertComponent} from "./convert/convert.component"; @NgModule({ imports: [ @@ -15,6 +15,7 @@ import { RythmSandboxComponent } from './rythm-sandbox/rythm-sandbox.component'; ReactiveFormsModule, RouterModule.forRoot([ { path: '', component: RythmSandboxComponent }, + { path: 'convert', component: ConvertComponent }, ]) ], declarations: [ @@ -31,4 +32,4 @@ export class AppModule { } Copyright Google LLC. All Rights Reserved. Use of this source code is governed by an MIT-style license that can be found in the LICENSE file at https://angular.io/license -*/ \ No newline at end of file +*/ diff --git a/src/app/convert/convert.component.html b/src/app/convert/convert.component.html new file mode 100644 index 0000000..a8000d5 --- /dev/null +++ b/src/app/convert/convert.component.html @@ -0,0 +1,2 @@ + + diff --git a/src/app/convert/convert.component.scss b/src/app/convert/convert.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/convert/convert.component.spec.ts b/src/app/convert/convert.component.spec.ts new file mode 100644 index 0000000..4b47438 --- /dev/null +++ b/src/app/convert/convert.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ConvertComponent } from './convert.component'; + +describe('ConvertComponent', () => { + let component: ConvertComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ConvertComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(ConvertComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/convert/convert.component.ts b/src/app/convert/convert.component.ts new file mode 100644 index 0000000..302fe86 --- /dev/null +++ b/src/app/convert/convert.component.ts @@ -0,0 +1,36 @@ +import {Component, ElementRef, ViewChild} from '@angular/core'; +import convert from "xml-js"; + +@Component({ + selector: 'app-convert', + standalone: true, + imports: [], + templateUrl: './convert.component.html', + styleUrl: './convert.component.scss' +}) +export class ConvertComponent { + + @ViewChild('textarea') + textArea?: ElementRef + + async uploadFile(event: Event): Promise { + + if (!this.textArea) { + throw new Error('No textArea') + } + + const element = event.currentTarget as HTMLInputElement; + let fileList: FileList | null = element.files; + if (!fileList?.length) { + return; + } + + const xmlFile = fileList[0] + const xmlContent = await xmlFile.text() + const xmlObject = convert.xml2json(xmlContent, { + compact: true, + }) + + this.textArea.nativeElement.value = xmlObject + } +} diff --git a/src/app/rythm-sandbox/rythm-sandbox.component.ts b/src/app/rythm-sandbox/rythm-sandbox.component.ts index 0fea544..d905b72 100644 --- a/src/app/rythm-sandbox/rythm-sandbox.component.ts +++ b/src/app/rythm-sandbox/rythm-sandbox.component.ts @@ -1,24 +1,24 @@ -import { ChangeDetectorRef, Component, EventEmitter, Output } from '@angular/core'; -import { RythmBarComponent } from '../rythm-bar/rythm-bar.component'; -import { IRythmBarEvent, RythmBarEvent } from '../rythm-bar/event'; -import { CommonModule, JsonPipe } from '@angular/common'; +import {ChangeDetectorRef, Component} from '@angular/core'; +import {RythmBarComponent} from '../rythm-bar/rythm-bar.component'; +import {RythmBarEvent} from '../rythm-bar/event'; +import {CommonModule, JsonPipe} from '@angular/common'; import events from '../../assets/events/Petit Papillon/events.json'; -import { StructureComponent } from '../structure/structure.component'; +import stuctureObject from '../../assets/structures/Petit Papillon.json'; +import {StructureComponent} from '../structure/structure.component'; import * as Tone from 'tone' -import { FormsModule } from '@angular/forms'; -import { Transport } from 'tone/build/esm/core/clock/Transport'; -import { Structure } from '../structure/structure'; -import { Pattern } from '../structure/pattern/pattern'; -import { Time } from '../time'; -import { WrapMarker } from '../wrap-marker'; -import { PatternInStructure } from '../structure/pattern/pattern-in-structure'; -import { FretboardComponent } from '../fretboard/fretboard.component'; -import { Chord, Key, Note } from '../notes'; -import { sequence } from '../utils'; +import {FormsModule} from '@angular/forms'; +import {Transport} from 'tone/build/esm/core/clock/Transport'; +import {Structure} from '../structure/structure'; +import {Pattern} from '../structure/pattern/pattern'; +import {Time} from '../time'; +import {WrapMarker} from '../wrap-marker'; +import {PatternInStructure} from '../structure/pattern/pattern-in-structure'; +import {FretboardComponent} from '../fretboard/fretboard.component'; +import {Chord, Key, Note} from '../notes'; +import {sequence} from '../utils'; // TODO comment avoir la durée en secondes du sample ? // On utilise pour l'instant le fichier DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01.wav -const sampleDuration = new Time(Tone.Time(3 * 60 + 28, 's')) const wrapMarkers = [ new WrapMarker(0, -1.1762159715284715), @@ -233,13 +233,14 @@ export class RythmSandboxComponent { const coupletPassage = [couplet, coupletBb] const refrainPassage = [refrain, refrain] - const structure = new Structure( - [ + const structure = Structure.builder() + .stuctureObject(stuctureObject) + .patterns([ ...intro, ...coupletPassage, ...bombardePassage, ...coupletPassage, ...refrainPassage, ...bombardePassageApresRefrain, ...coupletPassage, ...bombardePassage, ...coupletPassage, ...refrainPassage, ...bombardePassageApresRefrain, - ], - (pattern: Pattern) => { + ]) + .getEventsStartTime((pattern: Pattern) => { if (pattern === bombarde) return Time.fromValue("0:0") if (pattern === bombardeM3et4) return Time.fromValue("0:0") if (pattern === bombardeSeuleM2) return Time.fromValue("1:0") @@ -247,8 +248,8 @@ export class RythmSandboxComponent { if (pattern === coupletBb) return Time.fromValue("2:0") if (pattern === refrain) return Time.fromValue("4:0") return undefined - }, - (pattern: Pattern) => { + }) + .getEventsDurationInBars((pattern: Pattern) => { if (pattern === bombarde) return 2 if (pattern === bombardeM3et4) return 2 if (pattern === bombardeSeuleM2) return 1 @@ -256,19 +257,19 @@ export class RythmSandboxComponent { if (pattern === coupletBb) return 2 if (pattern === refrain) return 4 return undefined - }, - ) + }) + .build() // console.log(couplet.duration.toAbletonLiveBarsBeatsSixteenths()) // console.log(new Structure(coupletBlock).duration.toAbletonLiveBarsBeatsSixteenths()) // console.log(structure.duration.toBarsBeatsSixteenths()) - this.validateWrapMarker(); + this.validateWrapMarker(structure); // cf. https://github.com/Tonejs/Tone.js/blob/dev/examples/daw.html Tone.Transport.bpm.value = 120; Tone.Transport.loop = true; Tone.Transport.loopStart = 0; - Tone.Transport.loopEnd = sampleDuration.toSeconds() // structure.duration.toBarsBeatsSixteenths(); + Tone.Transport.loopEnd = structure.duration.toSeconds() // structure.duration.toBarsBeatsSixteenths(); player.sync().start(0) @@ -408,7 +409,7 @@ export class RythmSandboxComponent { const wrappedTime = this.getWrappedTime(patternInStructure.startTime); if (wrappedTime) { // const progress = wrappedTime.toSeconds() / sampleDuration.toSeconds() - const progress = wrappedTime.toSeconds() / sampleDuration.toSeconds(); + const progress = wrappedTime.toSeconds() / patternInStructure.structure.duration.toSeconds(); this.setProgressPercent(progress * 100) // this.changeDetectorRef.detectChanges(); } @@ -508,9 +509,9 @@ export class RythmSandboxComponent { return Tone.Transport.state === 'started' } - private validateWrapMarker() { + private validateWrapMarker(structure: Structure) { const lastWrapMarker = wrapMarkers[wrapMarkers.length - 1]; - const sampleDurationInSeconds = sampleDuration.toSeconds(); + const sampleDurationInSeconds = structure.duration.toSeconds(); if (lastWrapMarker.secTime !== sampleDurationInSeconds) { const sampleCode = `new WrapMarker(${sampleDurationInSeconds}, "beatTime relevé dans Ableton Live à la fin du sample"),` error(`Pour le moment, on doit ajouter la main un dernier WrapMarker précisément à la fin du sample : ${sampleCode}`) diff --git a/src/app/structure/structure.ts b/src/app/structure/structure.ts index 1c3aeb0..19aa2e5 100644 --- a/src/app/structure/structure.ts +++ b/src/app/structure/structure.ts @@ -44,7 +44,7 @@ class StructureBuilder { throw new Error('Missing getEventsDurationInBars') } return new Structure( - new Time(Tone.Time(this._stuctureObject.sampleDuration, 's')), + Time.fromValue(this._stuctureObject.sampleDuration), this._patterns, this._getEventsStartTime, this._getEventsDurationInBars @@ -72,7 +72,9 @@ export class Structure { currentTime = currentTime.add(pattern.duration) } - this.duration = currentTime + if (currentTime.toSeconds() !== duration.toSeconds()) { + console.warn('currentTime != duration', currentTime.toSeconds(), duration.toSeconds()) + } } getPatternInStructureAt(time: Time): PatternInStructure | undefined { diff --git a/src/assets/als/Petit papillon.als b/src/assets/als/Petit papillon.als new file mode 100644 index 0000000..4b1a5e8 Binary files /dev/null and b/src/assets/als/Petit papillon.als differ diff --git a/src/assets/als/Petit papillon.als.xml b/src/assets/als/Petit papillon.als.xml new file mode 100644 index 0000000..ea7e7c0 --- /dev/null +++ b/src/assets/als/Petit papillon.als.xml @@ -0,0 +1,67162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C006C0061006C006900 + 63006F0072006E00650072006F007500670065005F00320030003200340030003100300036003000 + 370031003700320036005C00440049004400410046005400410020002D00200041004C0042005500 + 4D005C00440049004400410046005400410020005000450054004900540020005000410050004900 + 4C004C004F004E0020004D0061007300740065007200200057006500620020003200340062006900 + 74002000340038004B0068007A005F00300032002D00300031002E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00 + 6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500 + 6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00 + 6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500 + 6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00 + 6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500 + 6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074005C0049006E0073007400720075006D0065006E00 + 74005C0045006C006500630074007200690063002000470069007400200045005100200031002E00 + 6100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C004F00760065007200640072006900760065000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C005500740069006C006900740079000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C004C0069006D0069007400650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0053007000650063007400720075006D000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0043006F006D00700072006500730073006F0072005C0043006C0061007300730069006300 + 61006C00200043006F006D007000720065007300730069006F006E002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0062006C007500640077005C0041007000700044006100 + 740061005C0052006F0061006D0069006E0067005C00410062006C00650074006F006E005C004C00 + 6900760065002000310030002E0031005C0050007200650066006500720065006E00630065007300 + 0000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300 + 650073007300650064005C00430072006F0070005C00500061007200740069006500200062006F00 + 6D006200610072006400650020005B0032003000320034002D00300031002D003300310020003200 + 330033003900320031005D002E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900 + 640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000 + 650074006900740050006100700069006C006C006F006E005F007000610072007400690065002000 + 62006F006D00620061007200640065002E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300 + 650073007300650064005C00430072006F0070005C00500065007400690074005000610070006900 + 6C006C006F006E005F0063006F00750070006C006500740020005B0032003000320034002D003000 + 31002D003200300020003100320032003600330033005D002E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900 + 640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000 + 650074006900740050006100700069006C006C006F006E005F0063006F00750070006C0065007400 + 2E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300 + 650073007300650064005C00430072006F0070005C005200650066007200610069006E0020005B00 + 32003000320034002D00300031002D003300310020003200330033003900320036005D002E007700 + 610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900 + 640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000 + 650074006900740050006100700069006C006C006F006E005F007200650066007200610069006E00 + 2E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00 + 690063006B002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00 + 690063006B002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00 + 53006E006100720065002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00 + 690063006B002D003600300036002D004D006F0064002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00 + 690063006B002D003600300036002D004D006F0064002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D0043006C006F007300650064002E00610069006600 + 0000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D0043006C006F007300650064002E00610069006600 + 0000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D004C006F0077002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D004C006F0077002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D0043006F006D0062006F002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D0043006F006D0062006F002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D004C006F0077002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D004C006F0077002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D004F00700065006E002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00 + 480069006800610074002D003600300036002D004F00700065006E002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D00480069002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D00480069002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D00480069002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00 + 6D002D003600300036002D00480069002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00 + 5C00430079006D00620061006C002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00 + 5C00430079006D00620061006C002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00 + 530061006D0070006C00650072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00 + 5C00430079006D00620061006C002D003600300036002E006100690066000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C00450051002000450069006700680074000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500 + 73006B0074006F0070000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400 + 69006400610066002700740061005C00530061006D0070006C00650073005C005200650063006F00 + 72006400650064005C006500780070006F00720074002000620061007400740020006D0069006400 + 69002000300030003000320020005B0032003000320034002D00300031002D003200300020003100 + 330032003000310038005D002E007700610076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D002000460069006C00650073005C00560053005400 + 50006C007500670069006E0073000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2D696E2D02000000234E4923435323446F63756D656E7423234E4923536F756E645368656C6C2353 + 6F756E64230000000000000000000000450100006174616402000000646E737362696C7A16000000 + 1000000078DA63626060D0F5F4D33575CFF40332190011A5022761746164020000006F666E696269 + 6C7A270100000F03000078DA9D52CB4E8430145DCB57DC748FC5644C8C299D68D4890BCD0475655C + 14E63236424BDA32FA71EEFC3179832CC8C45DCFB9E7715B60EBAF3C83031A2BB50AC9D969400055 + A27752ED43F2F27CE75F10B04EA89DC8B4C290284D60CD3D6675A92A51AA47F32A0808F73C005618 + 5DA071122DAF60452891237FBDB9F7AF85B56F8C36B81D89D2BD6BC39F3016D649A1E0E1E73BCBD0 + 30DA4DEA403A4DAC8958A88F3EBC3EF34D299D3010C93DAC186DA8C6D809EB73A2F3A2BA8372BD71 + 2066EE915FD2C1D6E8997602BB4EE19C9171E9869718881657CC416425F2FA61E02A2F2CA32DD18F + 4B8BC6B7E878B4BDA474221B066D309D252F3735BB1F557432EAFFDB789BA698B83F7DC79B1FF113 + A4824D74BEBCF054B7B8E804D61F89D1E157E6DE2FA8BAF31061746164020000007473727062696C + 7A7F10000048B5000078DAED5DD972DAC81A9E739BA75071EB2268979872328531D88E8D8D6DBC64 + 2A378D6840415BB4E0E5BDCEFB9D1608A95B0283B04D77723C55A9B15AE2EF4FFFF275FFBD893BEB + DCFFE7AFBFFEDAFF2FFAF7CFA36D7153E807A6EB7CA9089FF90A071DC31D98CEE84BE5A6D7AEEA15 + 2E0881330096EBC02F15C7AD70FF7CFDB43FF2ABA613847E644327AC1AE3C89970FDC8B4065527B2 + FBD0FF52413F345CDB43BF420F78C09854CD01AAA1AEF1725DD575B1C20D7D60C307D79FDF4135DB + E0A7EB5753340A2A310DDFCD4AC4B8C4C19F41259E0F03B8A28AD0B411E8DE38E23AC0E70499E3F9 + BF25E56F5EE3445E942B5F3F7DE2B8FDC08D9C41750042D00701E44696DB0756D586A1EF3AAE3D43 + 3636512555DB1DC039507360A297068E032D54A15AA9CD2521ADF80806A650540587FEDB1F9A8FD5 + 541D0187945435436807E811397926FF1417BF8C5EE77954A103E2F7B83A4D1F450FC70F5A308459 + 5152B8FAD75C14C5C57DF94E734279A4F3EAE0513E506BFEFD45EFF2CB970A2E0A17561D4526790F + DD9D9AF00133317A1BCF0221ACF68133F952A92CBB3507127B94EBC3413596902855AE70F9ABC0EC + 5BE8EF21B002182B98A8BCF602360C378806A6CB61DE52780B0FC45E18A22790E3035423FA4DE8DA + 209CFD20561E3255F6506CD2382042D3201E140A9271D93363988D85254E9C38A40CD83042730AD1 + BB022B9A3956510692123B258680F3A1ED225DDAE07106667169CEE0D696C0A8A53F2EBC7D762B58 + ADE09912092FCB6E62FE582B3AE47E1A9B7E9822DBAF116EFE82F3ABB8F79A23EED475504C5A2583 + 60959424189E27A796A5CB809FEC89C36321742E7F3D9F3F500D0681080681E160E05704438D456F + 92963B02279675A8D582129FBA3DF2AE1CD0BAB527D0D7BFC907C1C9D13777F441B01F04CB5648E8 + AB3C592ADBD1582D28098948897EFD6A1F0C3B13F0746CF4ADCE15989A1F21F111128C8584883972 + 6366C913A764302C159184414DDBEBB52E1E34EBE6947FF8D97EB8BA6F8D60E3A3B7F1C7F536048C + 0F514A58D285F2BF4EBCC7391DDE2AAD561DDEEC7D9BB6BB570DA17D187E246E4BBC47287A8FB62D + 89621CEA452177044C27E3CFCFCACE19B400F06801F008D98ABB706A17C3618A50A08FAF47E0EB8D + 51608D5D6B80299101909DDB05CA0E08E2C25BD78A6CACA5FCACAB8AA4EAF4919E2D809E99B61917 + E62CCE3300B1996284C3906BCE87CA58F2C9AB26D65D1D17217E748CF2E9333E96D8031E3C84C684 + 13CAE6CE2BA4240DDCF5DD483ABB777C97B783BDEEC3081E9D5F34FEA0062E446F3C406F2C80A880 + 7A712F76B182E794691AB7691CEB4B1BC715414046929586BAEB7A6BE2E70D22684D9817E0853075 + 37646C37E3209E1D887E0AD1074EE0B90164508F510A327218C4E74D17F88A0DB7ACAA022B38FD14 + E715345C7F90EF673003D4EC626307D00FB9AE1B98312FB0677B2BC03988BB0E5113C7204A48A06C + 3903EA465FDDE758D3EB886FAF68CC769661CB02D697B8361194314ACDB859965636DF7E51D662DA + B4CEF77B6763ED27FFB4F7F4EC01F7B0D9F84E77A688273A273CC3D9B7C06FDCC3C885CD2DBF92D8 + 19C8BD5BC2025DEB119539C05A380D3BB9CE9998658C28B57558CA143B529A764721642A8795F11C + 96A9DC5521725796A0B5D505B4B669A142816BA268676B70A2AD9118C53C4616F4A89318990A8C7A + D68F41C9FBC1DDFFC9A009212058F411AA664CF7D515CFBDAE357B95E6566AEDF52DD84E709568B5 + 768267E3966A37DAD9B475DA099ACD5BA49DC0D9A215DA0DAEF22DCF6E706DDEDAECC6B94BB430EF + 0168BFB611BDA35F178B374F60657C283C7290DACB25ADC5DF2789AA7463C853EF58EADCDCB5AD67 + F1AC7F3738EFD31D451789445564385155B7CD53DB6E1A44AE3F61A9C3D64B47F27A486D5CD70C8D + 718A4FADD3071884BEE184E9F04BE8BB7D586BC62BE55952E3C02B3B4CBF5378FE301B581E421F3A + 46064F9619001874B201362B26B10E2283DF2F7788A7EA62B6E516836E352AA39FF82AB34EB25705 + 961DF65C2E2469463ACFD7F072EAF5021E8A9D2BEDDF132F8AE0E8CF59ABB6D8E10322CEB0E2DD43 + 433396D4FCFB47D77747C83338D41B82C18FA66BDBAE935C9C8378FD2477926E7E0A7E1C4566087C + 2E5EF6AAA0871D94AB843F526DFEB0DC07247E0A3F3F80297A5DCB4435F5CDD006C164F60AF392F7 + A97B6C6255DB91159A9E3557DC5CC7720DA511411C8D06CC4055E3F9786710EFE242B723CF9BFFB5 + EB396965FB39E9EE433AA5BAD172280AB341D74ECA864F8EC11EBE9EEDAD9A38AFB382B1132D4DC9 + 99D1E1AD5572EA82F119BF8C31DF76306D21174FB3125E9C3333A2A66A4A98048F61E4953C218B75 + B9AE6A625DD980C55EE3F4EF93792ED3C59BA59C2ABE19AE617B0D07584F41E9CC73A598A4E73014 + 8781DFB56BA309F87EFECBAAABD0150E1B1FEB94FFB855EE8A82394277266AB19EA59C47BD2028F1 + 29FFB67FA4FDDB1AEF4D54DD7954DBFCBFED27F3F263F6FD8DBB52F98ED4EDCA164C9644FA39E561 + 8AEFD07FDA6C29D54EF1DDA5F8EE308F66075FE73EED41998F2C01EBDE636CC0C59B603884D07446 + FF8F938D339155B7C43463C9B8DDC9A87EC958DDCDA4DE86FEBF1330DBF8FC4E809564B1F7E918AF + 098257F68C357ED9C684B24703AC9292F4617E9E9C5F0DC1D3CFCBD6DEF331B818B435EF60FC076E + 6F1059DBDEA06E3F94F4BBAC2B677C1B86798D0F77713D979B6FB3FB584CFEC72C26FF6DB63ABCC9 + AA7791CEAAF73ABE812ED9A9DABE2FD94CAD1092B45287AD275F748FDCCBD6C550BEE81D98CDD3EF + C6C7E8CD86EBDCB7DD655E76CA82CD99D1ECAEE13A2130E37952633E2D559DD9CCB4CCF0291DF7CA + 8EC45BD61344D68EAC9906077DCE7490ACECE03F792100151BF123412A1429DD4771E3BB0FF332CC + BEF91AC66E10628642D514EC29BCFBFC6EAE30D1F8BEE33AD565378AB3B812BE79A58DC2996BBAF1 + 40F63C9CF58BD371BBEF5E7D6B0158BB1F4CFF958FBE37C96D2BAB43794D181FC50BFF5646F2C9F9 + 496F7D34E3B3B8A11F11C1BC3290370DE2F71A2A7B45F0EE24633BE189432BF0892741E5653AA02E + 84ACCD99C0C8A3BFF6B991AE316E84E1ECA015BA66BB56F03D68CD3171D4C88EF2EC65D4BF92F697 + D0617E641F5FA678008280EBFAEE829BC657DAF773DB78762762E8346B525D6AFF14466FC64D5C3B + 1ED459C94F87275C0C68FD7A45C6284A94FF088E6A36AEAFB1457FD0872EED81AED5A3A68AC0AB1A + 1D50D8F13EC4C943425DA184E8301BC87DF930B99DA039C0D905D38FA64B5A9DD2B07236AA3CA0DF + CAD96D0C0ED7F6E1AF083AC6133E27A04B3A1D6CBD6C4D2DEC5B0C6C878AD2E3956EACD007DC1975 + 52EAA7BC7DE0B3B0BB263A2635746CD2D6D0A89552A40FBCB16970AD4BDA5A92D34E8FCC73C7CF38 + 2F89525DA503AA9E82AAE740518A36414F11A13F99802465DD55F427094942C99344079692C152F2 + B04445E4691930351F3761C17A694227B28127DDA629E7F008AA56A7D47D13B298E3495474F0C0CB + 74A2A075C9B1B22FFA484E7B714757F2BACD2ABF452E2E08F8C07F3339A3FBCA756D3C293FBB1B1D + 1D3BFA61F706886DF99B09EF7FF9B959EA1D0F18AEDE3DC840365EFF33460CB3534521F0A96FB67F + 61D25D17244ABC3912F04C3C3EB592AEC946228147A4CF99238940243180482610C90C205208440A + 0388540291CA00228D40A43180482710E9F41179291B75014E46F40089382006D8C89370400C9091 + 27E38018E0224FC1013140459E8A036280893C0D07C40011793A0E88011EB2057C13264E4494F088 + 041E913A1EE2DC289C8628E191093C32753C0A8147A18E4725F0A8D4F168041E8D3A1E9DC0A3D3C6 + 13A4FC73ED5A2E7DFE0944020F75FE0924020F75FE0964020F75FE0914020F75FE0954020F75FE09 + 34020F75FE0974020F75FEF1CC2C111BA3FA4E9C297D12F24CB1004AA40F4A2A8092E883920BA064 + FAA0940228853E28B5004AA50F4A2B80D2E883D20BA0E8F3D498E42906486A4C9214030C3526198A + 017A1A93F4C400378D496E628098C6243131C04A63929518A0A4314949F4F9C84FE96836014D9D8D + 7C91C0439D8B7C89C0439D897C99C0439D877C85C0439D857C95C0439D837C8DC0439D817C9DC043 + 9F7F6C9280D818BDF66DB1888A3E17D95211157D46B2E5222AFABC642B4554F4D9C9568BA8E87394 + AD1551D1672A5B2FA2A23FCECDD85E29906E9D34A97F30A2BF620B902C6A12A5CDAEE1EA8D2DAAAC + 50DA6DD304FDB4D1437F9B0E0CE937791DD3C8A6904D8301405D372010A16BFAA890BDC4BCED44EA + E7A79986886B4A64C17662DE762203B693F2B69318B09D846B4A62C17652DE761203B693F3B69319 + B09D8C6B4A66C17672DE763203B653F2B65318B09D826B4A61C1764ADE760A03B653F3B65319B09D + 8A6B4A65C1766ADE762A03B6D3F2B6D318B09D866B4A63C1765ADE761A03B6D3F3B6D319B09D8E6B + 4A67C1767ADE76FA6FB64170BFB6FC90B1FDDAC8AFFAC0987CFD145FF91058A1694363BE6170D0CF + 36CF2DDC613FB967417F0042307B57543434478B63DA92BBF17165156C7BE2A29CB35C63323FC26D + 3EF072CA75E10058D87EBBD9DD180B9CC6AF36DBEDABCBF1817B963BBF44F7437734B2C8CF72BD5C + CBA9694C0EDD07674D45BC266115095945C2A6155D3FC4DFDDE384972B1278B98E55246E5F91B8A6 + 228957B08AA4ED2B92D654A4A8B88DE4ED2B92D754A40B1A5691B2614542B12285A848283803AE38 + 15AF063FFE2FA58B2C1A89CF5BA0FF4D2BC91ED3F9776DC0633565590E1141352593E45B7348D333 + B1E94999C91983916FC5572118C56763A3789E5FF92398C5C5FC6AF1C3C56564F7E398ACE21AAA65 + 2A2AA535758DD674DC0DB46DD5760E1FC3926A1319545BF2C1D69714A648B83BEBA5159654514A55 + 3CA92AE2438D1B6A6D7EDE1BA1B8F8CB8F39D5BD85C3E92FEB4FABE3945D2FAD3FEC8388AFD1610F + 781BEB2EF92023A1BC9EF77AE5E1649A7EE57DD6BEAE6B8F4449C4DB23619B263657E39A86495474 + 9C5F05A16C8DE7F0814BCE3678D941F02F8565F589E5036D71D0BFF03A4FE95AE069635751EB4557 + F1AC72AE8297E4BA6DC90300224CE89537E8C4CD2B2E74DF62C5623DB3EC5B494B4EE55D252AEBA3 + CDA509A434A19CB4AC23369726BE853471214D7A0B69D2429AFC16D2E48534E52DA4290B69EA4BD2 + 88933766E2669E4EC447D2A7293AE8BCE60DF1A80B3CDA9BE011B7C39334B67324FA5BE8595F48AB + BF4A5A91EE93187A5D4816393D112B6C2F9620EE44DC26C1B95F4B682AB97CB773C3F7E749FA923C + 58AE148FDCA9CE5B1ACB0C42E8C4197F5C49AE2CF67FD2351358D5988F33F9E48927FB89DAB2AAB2 + 8E57C6D255BCEFB861BB54A2DB96C4078EF7ADDE24E9062D7B95FA76AFF27227EA1D5F2569A697BD + 4AECDBDBBCCBCBADFC0BEF820F0CE5FC307D247080178CDD101F4F4ACB661E9C5EAD0EEE5A4ECA7E + 2D173849F146C7EFA7529307676732659DB1ECE7A936F8B547DFD7CA0B15B5B5E7636D25555D88BD + BE1B4967F78EEFF276B0D77D18C1A3F38BC6966295B5076C6F8355D7D77E1A7E0BB1129FAAA05FE7 + FBBDB3B1F6937FDA7B7AF6807BD86C7CDFD65E71F6B7E6B35BDB8855D3AF794937863CF58EA5CECD + 5DDB7A16CFFA7783F3FE9662255D5AFBF9956DD02AA9D73AA7C35BA5D5AAC39BBD6FD376F7AA21B4 + 0FC36D95A0A86B3FCB9AB6CD85209F8F30170695E763CDA84E1073566D7E89EA48F2126EE8FAB60D + 1C308A11A49F7D891F0288EAA6B03A4B954038E692EB249172FD01EAA9642336644A9588C09F359D + 11EA1F20AE9E3168EDEB6C34DC7482D08FECD9974DC69133F9FAE97FA5FADBE06174616402000000 + 444E535362696C7A160000001000000078DA63626060D0F5F4D33575CFF40332190011A50227 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00 + 6300650020004D0065006400690075006D002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00 + 6300650020004D0065006400690075006D002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400 + 6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300 + 6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00 + 44006500760069006300650073005C0041007500640069006F002000450066006600650063007400 + 73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00 + 6300650020004D0065006400690075006D002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00 + 6900760065002000310030002000530075006900740065005C005200650073006F00750072006300 + 650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900 + 6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900 + 6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900 + 670068007400680020004E006F00740065002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00 + 6900760065002000310030002000530075006900740065005C005200650073006F00750072006300 + 650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900 + 6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900 + 6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900 + 670068007400680020004E006F00740065002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00 + 6900760065002000310030002000530075006900740065005C005200650073006F00750072006300 + 650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900 + 6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900 + 6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900 + 670068007400680020004E006F00740065002E006100640076000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/als/Petit papillon.als.xml.json b/src/assets/als/Petit papillon.als.xml.json new file mode 100644 index 0000000..6588f02 --- /dev/null +++ b/src/assets/als/Petit papillon.als.xml.json @@ -0,0 +1 @@ +{"_declaration":{"_attributes":{"version":"1.0","encoding":"UTF-8"}},"Ableton":{"_attributes":{"MajorVersion":"5","MinorVersion":"10.0_377","SchemaChangeCount":"2","Creator":"Ableton Live 10.1","Revision":"820f098a4a1eff42a9be3d90e07536cb8104c459"},"LiveSet":{"NextPointeeId":{"_attributes":{"Value":"44138"}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"LomId":{"_attributes":{"Value":"1"}},"LomIdView":{"_attributes":{"Value":"19"}},"Tracks":{"AudioTrack":[{"_attributes":{"Id":"8"},"LomId":{"_attributes":{"Value":"2"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"true"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Original"}},"UserName":{"_attributes":{"Value":"Original"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":"DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01"}}},"ColorIndex":{"_attributes":{"Value":"160"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"true"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"9"}},"SelectedEnvelope":{"_attributes":{"Value":"2"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"68"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"true"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/M0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"8630"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"2"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"2"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"8631"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"8632"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"8633"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"8634"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"8635"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"8636"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"8637"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16160"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16161"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16162"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"8638"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"8639"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"8640"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"8641"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"2"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{"AudioClip":{"_attributes":{"Id":"3","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"378.36283820346318"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"378.36283820346318"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"false"}},"OutMarker":{"_attributes":{"Value":"378.36283820346318"}},"HiddenLoopStart":{"_attributes":{"Value":"-1.1762159715284715"}},"HiddenLoopEnd":{"_attributes":{"Value":"378.36283820346318"}}},"Name":{"_attributes":{"Value":"DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"20"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"-1.1762159715284715"}},"RightTime":{"_attributes":{"Value":"20.115643666477283"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"4"}},"OtherTime":{"_attributes":{"Value":"4"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"lalicornerouge_20240106071726"}},{"_attributes":{"Id":"5","Dir":"DIDAFTA - ALBUM"}}]},"Name":{"_attributes":{"Value":"DIDAFTA PETIT PAPILLON Master Web 24bit 48Khz_02-01.wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C006C0061006C006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t63006F0072006E00650072006F007500670065005F00320030003200340030003100300036003000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t370031003700320036005C00440049004400410046005400410020002D00200041004C0042005500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t4D005C00440049004400410046005400410020005000450054004900540020005000410050004900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t4C004C004F004E0020004D0061007300740065007200200057006500620020003200340062006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t74002000340038004B0068007A005F00300032002D00300031002E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"0","Dir":"Musique"}},{"_attributes":{"Id":"1","Dir":"Groupes"}},{"_attributes":{"Id":"2","Dir":"Didaf'ta"}},{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"lalicornerouge_20240106071726"}},{"_attributes":{"Id":"5","Dir":"DIDAFTA - ALBUM"}}]},"FileSize":{"_attributes":{"Value":"60222810"}},"Crc":{"_attributes":{"Value":"37371"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"LastModDate":{"_attributes":{"Value":"1704521868"}},"SourceContext":{},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"9984000"}},"DefaultSampleRate":{"_attributes":{"Value":"48000"}}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"WarpMode":{"_attributes":{"Value":"4"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"Sync":{"_attributes":{"Value":"true"}},"HiQ":{"_attributes":{"Value":"true"}},"Fade":{"_attributes":{"Value":"true"}},"Fades":{"FadeInLength":{"_attributes":{"Value":"0"}},"FadeOutLength":{"_attributes":{"Value":"0"}},"ClipFadesAreInitialized":{"_attributes":{"Value":"true"}},"CrossfadeInState":{"_attributes":{"Value":"0"}},"FadeInCurveSkew":{"_attributes":{"Value":"0"}},"FadeInCurveSlope":{"_attributes":{"Value":"0"}},"FadeOutCurveSkew":{"_attributes":{"Value":"0"}},"FadeOutCurveSlope":{"_attributes":{"Value":"0"}},"IsDefaultFadeIn":{"_attributes":{"Value":"true"}},"IsDefaultFadeOut":{"_attributes":{"Value":"true"}}},"PitchCoarse":{"_attributes":{"Value":"0"}},"PitchFine":{"_attributes":{"Value":"0"}},"SampleVolume":{"_attributes":{"Value":"1"}},"MarkerDensity":{"_attributes":{"Value":"2"}},"AutoWarpTolerance":{"_attributes":{"Value":"4"}},"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"4","SecTime":"0","BeatTime":"-1.1762159715284715"}},{"_attributes":{"Id":"7","SecTime":"0.647458333333333358","BeatTime":"0"}},{"_attributes":{"Id":"147","SecTime":"2.5494791666666665","BeatTime":"4"}},{"_attributes":{"Id":"148","SecTime":"4.5332291666666666","BeatTime":"8"}},{"_attributes":{"Id":"149","SecTime":"6.4147291666666666","BeatTime":"12"}},{"_attributes":{"Id":"78","SecTime":"8.4474583333333335","BeatTime":"16"}},{"_attributes":{"Id":"79","SecTime":"8.6234166666666656","BeatTime":"16.323610764235763"}},{"_attributes":{"Id":"80","SecTime":"10.798354166666666","BeatTime":"20.323610764235763"}},{"_attributes":{"Id":"81","SecTime":"12.963208333333332","BeatTime":"24.323610764235763"}},{"_attributes":{"Id":"82","SecTime":"15.102354166666666","BeatTime":"28.323610764235763"}},{"_attributes":{"Id":"83","SecTime":"19.361729166666667","BeatTime":"36.323610764235767"}},{"_attributes":{"Id":"84","SecTime":"21.501687499999999","BeatTime":"40.323610764235767"}},{"_attributes":{"Id":"85","SecTime":"23.657645833333333","BeatTime":"44.323610764235767"}},{"_attributes":{"Id":"86","SecTime":"25.795999999999999","BeatTime":"48.323610764235767"}},{"_attributes":{"Id":"87","SecTime":"30.123145833333332","BeatTime":"56.323610764235767"}},{"_attributes":{"Id":"88","SecTime":"32.308437499999997","BeatTime":"60.323610764235767"}},{"_attributes":{"Id":"89","SecTime":"36.767270833333335","BeatTime":"68.323610764235767"}},{"_attributes":{"Id":"90","SecTime":"38.932333333333332","BeatTime":"72.323610764235767"}},{"_attributes":{"Id":"91","SecTime":"41.07664583333333","BeatTime":"76.323610764235767"}},{"_attributes":{"Id":"92","SecTime":"45.413229166666667","BeatTime":"84.323610764235767"}},{"_attributes":{"Id":"93","SecTime":"47.565520833333331","BeatTime":"88.323610764235767"}},{"_attributes":{"Id":"94","SecTime":"49.753708333333329","BeatTime":"92.323610764235767"}},{"_attributes":{"Id":"95","SecTime":"54.171624999999999","BeatTime":"100.32361076423577"}},{"_attributes":{"Id":"96","SecTime":"56.368416666666661","BeatTime":"104.32361076423577"}},{"_attributes":{"Id":"97","SecTime":"58.552124999999997","BeatTime":"108.32361076423577"}},{"_attributes":{"Id":"98","SecTime":"60.758874999999996","BeatTime":"112.32361076423577"}},{"_attributes":{"Id":"99","SecTime":"62.942520833333333","BeatTime":"116.32361076423577"}},{"_attributes":{"Id":"100","SecTime":"65.113833333333332","BeatTime":"120.32361076423577"}},{"_attributes":{"Id":"101","SecTime":"69.380499999999998","BeatTime":"128.32361076423575"}},{"_attributes":{"Id":"102","SecTime":"71.577979166666665","BeatTime":"132.32361076423575"}},{"_attributes":{"Id":"103","SecTime":"73.796791666666664","BeatTime":"136.32361076423575"}},{"_attributes":{"Id":"104","SecTime":"76.005020833333333","BeatTime":"140.32361076423575"}},{"_attributes":{"Id":"105","SecTime":"78.200583333333327","BeatTime":"144.32361076423575"}},{"_attributes":{"Id":"106","SecTime":"80.448145833333328","BeatTime":"148.32361076423575"}},{"_attributes":{"Id":"107","SecTime":"82.717229166666669","BeatTime":"152.32361076423575"}},{"_attributes":{"Id":"108","SecTime":"84.971625000000003","BeatTime":"156.32361076423575"}},{"_attributes":{"Id":"109","SecTime":"89.405520833333327","BeatTime":"164.32361076423575"}},{"_attributes":{"Id":"110","SecTime":"91.63077083333333","BeatTime":"168.32361076423575"}},{"_attributes":{"Id":"111","SecTime":"96.124416666666662","BeatTime":"176.32361076423575"}},{"_attributes":{"Id":"112","SecTime":"98.34041666666667","BeatTime":"180.32361076423575"}},{"_attributes":{"Id":"113","SecTime":"100.53739583333333","BeatTime":"184.32361076423575"}},{"_attributes":{"Id":"114","SecTime":"102.71122916666667","BeatTime":"188.32361076423575"}},{"_attributes":{"Id":"115","SecTime":"104.86987499999999","BeatTime":"192.32361076423575"}},{"_attributes":{"Id":"116","SecTime":"107.0630625","BeatTime":"196.32361076423575"}},{"_attributes":{"Id":"117","SecTime":"111.51870833333334","BeatTime":"204.32361076423575"}},{"_attributes":{"Id":"118","SecTime":"115.91847916666666","BeatTime":"212.32361076423575"}},{"_attributes":{"Id":"119","SecTime":"118.13981249999999","BeatTime":"216.32361076423575"}},{"_attributes":{"Id":"120","SecTime":"120.3725625","BeatTime":"220.32361076423575"}},{"_attributes":{"Id":"121","SecTime":"122.5775625","BeatTime":"224.32361076423575"}},{"_attributes":{"Id":"122","SecTime":"124.79789583333333","BeatTime":"228.32361076423575"}},{"_attributes":{"Id":"123","SecTime":"129.27608333333333","BeatTime":"236.32361076423575"}},{"_attributes":{"Id":"124","SecTime":"135.8514375","BeatTime":"248.32361076423575"}},{"_attributes":{"Id":"125","SecTime":"138.0909375","BeatTime":"252.32361076423575"}},{"_attributes":{"Id":"126","SecTime":"140.30443750000001","BeatTime":"256.32361076423575"}},{"_attributes":{"Id":"127","SecTime":"144.69927083333332","BeatTime":"264.32361076423575"}},{"_attributes":{"Id":"128","SecTime":"146.91591666666667","BeatTime":"268.32361076423575"}},{"_attributes":{"Id":"129","SecTime":"149.09029166666667","BeatTime":"272.32361076423575"}},{"_attributes":{"Id":"130","SecTime":"151.29185416666667","BeatTime":"276.32361076423575"}},{"_attributes":{"Id":"131","SecTime":"155.75666666666666","BeatTime":"284.32361076423575"}},{"_attributes":{"Id":"132","SecTime":"164.63647916666667","BeatTime":"300.32361076423575"}},{"_attributes":{"Id":"133","SecTime":"169.04481250000001","BeatTime":"308.32361076423575"}},{"_attributes":{"Id":"134","SecTime":"171.278875","BeatTime":"312.32361076423575"}},{"_attributes":{"Id":"135","SecTime":"173.54152083333332","BeatTime":"316.32361076423575"}},{"_attributes":{"Id":"136","SecTime":"175.77772916666666","BeatTime":"320.32361076423575"}},{"_attributes":{"Id":"137","SecTime":"177.99827083333332","BeatTime":"324.32361076423575"}},{"_attributes":{"Id":"138","SecTime":"182.51258333333334","BeatTime":"332.32361076423575"}},{"_attributes":{"Id":"139","SecTime":"184.74072916666665","BeatTime":"336.32361076423575"}},{"_attributes":{"Id":"140","SecTime":"186.95395833333333","BeatTime":"340.32361076423575"}},{"_attributes":{"Id":"141","SecTime":"189.15308333333331","BeatTime":"344.32361076423575"}},{"_attributes":{"Id":"142","SecTime":"191.31456249999999","BeatTime":"348.32361076423575"}},{"_attributes":{"Id":"143","SecTime":"193.45008333333334","BeatTime":"352.32361076423575"}},{"_attributes":{"Id":"144","SecTime":"195.61702083333333","BeatTime":"356.32361076423575"}},{"_attributes":{"Id":"145","SecTime":"197.82550000000001","BeatTime":"360.32361076423575"}},{"_attributes":{"Id":"146","SecTime":"197.84312565104167","BeatTime":"360.35486076423575"}}]},"SavedWarpMarkersForStretched":{},"MarkersGenerated":{"_attributes":{"Value":"false"}},"IsSongTempoMaster":{"_attributes":{"Value":"false"}}}},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"8642"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"8643"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"8644"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"8645"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"8646"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"8647"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"8648"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"8649"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"8650"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"8651"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"8652"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{"AudioEffectGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"12"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19265"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"1"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"50","Dir":"Audio Effect Racks"}},{"_attributes":{"Id":"51","Dir":"Mixing & Mastering"}}]},"Name":{"_attributes":{"Value":"Full Chain Master.adg"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"0"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"50","Dir":"Audio Effect Racks"}},{"_attributes":{"Id":"51","Dir":"Mixing & Mastering"}}]},"Name":{"_attributes":{"Value":"Full Chain Master.adg"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":"query:AudioFx#Audio%20Effect%20Rack:Mixing%20&%20Mastering:FileId_10095"}},"PresetRef":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"50","Dir":"Audio Effect Racks"}},{"_attributes":{"Id":"51","Dir":"Mixing & Mastering"}}]},"Name":{"_attributes":{"Value":"Full Chain Master.adg"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t41007500640069006F00200045006600660065006300740020005200610063006B0073005C004D00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6900780069006E0067002000260020004D006100730074006500720069006E0067005C0046007500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6C006C00200043006800610069006E0020004D00610073007400650072002E006100640067000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}},"BranchDeviceId":{"_attributes":{"Value":"device:ableton:audiofx:AudioEffectGroupDevice?n=Audio%20Effect%20Rack"}}}}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"AudioEffectBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Wet"}},"UserName":{"_attributes":{"Value":"Wet"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"AudioToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"Eq8":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19290"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"160","Dir":"Devices"}},{"_attributes":{"Id":"161","Dir":"Audio Effects"}},{"_attributes":{"Id":"162","Dir":"EQ Eight"}},{"_attributes":{"Id":"163","Dir":"Instrument"}}]},"Name":{"_attributes":{"Value":"Electric Git EQ 1.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074005C0049006E0073007400720075006D0065006E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t74005C0045006C006500630074007200690063002000470069007400200045005100200031002E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"5"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"19291"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19292"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-2"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"19293"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19294"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19295"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"19296"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"35"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19297"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19298"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19299"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19300"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.8549305201"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19301"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19302"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19303"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"19304"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19305"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19306"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19307"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19308"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19309"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19310"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19311"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"19312"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19313"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19314"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19315"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19316"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19317"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19318"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19319"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"19320"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19321"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19322"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19323"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19324"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19325"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19326"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19327"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19328"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19329"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19330"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19331"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19332"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19333"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19334"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19335"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19336"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19337"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19338"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19339"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19340"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19341"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19342"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19343"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19344"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"69.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19345"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19346"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19347"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19348"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3304232955"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19349"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19350"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19351"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19352"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19353"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19354"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19355"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19356"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19357"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19358"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19359"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19360"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1000.00031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19361"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19362"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19363"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19364"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3304232955"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19365"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19366"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19367"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19368"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19369"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19370"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19371"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19372"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19373"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19374"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19375"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19376"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8000.00244"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19377"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19378"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-10.5947313"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19379"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19380"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3304232955"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19381"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19382"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19383"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"19384"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19385"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19386"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19387"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19388"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19389"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19390"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19391"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"19392"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19393"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19394"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19395"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19396"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19397"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19398"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19399"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"19400"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19401"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19402"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19403"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19404"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19405"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19406"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19407"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"19408"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"19812.6074"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19409"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19410"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19411"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19412"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2099818736"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19413"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19414"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19415"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"19416"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"19417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19418"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19419"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19420"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"19421"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19422"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19423"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19424"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19425"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"19426"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19427"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"19428"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19429"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"10"}}},"AutomationTarget":{"_attributes":{"Id":"19430"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19431"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"19432"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19433"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"19434"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19435"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"19436"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19437"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19438"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19439"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19440"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19441"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"19442"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19443"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19444"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19445"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19446"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"19447"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"19448"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19449"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"19450"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19451"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"19452"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19453"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Overdrive":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19454"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Overdrive"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C004F00760065007200640072006900760065000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Overdrive"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"MidFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"556.898071"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"50"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"19455"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19456"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"BandWidth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"7.9375"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.5"}},"Max":{"_attributes":{"Value":"9"}}},"AutomationTarget":{"_attributes":{"Id":"19457"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19458"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Drive":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"40"}}},"AutomationTarget":{"_attributes":{"Id":"19459"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19460"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"20.3125"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"19461"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19462"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Tone":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"60.3149605"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"19463"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19464"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PreserveDynamics":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.200000003"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19465"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19466"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"StereoGain":{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19467"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Utility"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C005500740069006C006900740079000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"StereoGain"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"PhaseInvertL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19468"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"PhaseInvertR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19469"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ChannelMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"19470"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"StereoWidth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"4"}}},"AutomationTarget":{"_attributes":{"Id":"19471"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19472"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MidSideBalance":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"1.39999998"}}},"AutomationTarget":{"_attributes":{"Id":"19473"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19474"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MidSideBalanceOn":{"_attributes":{"Value":"false"}},"Mono":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19475"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"BassMono":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19476"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"BassMonoAudition":{"_attributes":{"Value":"false"}},"BassMonoFrequency":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"120"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"50"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"19477"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19478"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Balance":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19479"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19480"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"1.58489323"}}},"AutomationTarget":{"_attributes":{"Id":"19481"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19482"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LegacyGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-35"}},"Max":{"_attributes":{"Value":"35"}}},"AutomationTarget":{"_attributes":{"Id":"19483"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19484"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Mute":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"DcFilter":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"19486"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LegacyMode":{"_attributes":{"Value":"false"}}},"Limiter":{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19487"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Limiter"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C004C0069006D0069007400650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Limiter"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-6"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"19488"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19489"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ceiling":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3000000119"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"0"}}},"AutomationTarget":{"_attributes":{"Id":"19490"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19491"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"300.000061"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.009999999776"}},"Max":{"_attributes":{"Value":"3000"}}},"AutomationTarget":{"_attributes":{"Id":"19492"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19493"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AutoRelease":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19494"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LinkChannels":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19495"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Lookahead":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"19496"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SpectrumAnalyzer":{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19497"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Spectrum"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0053007000650063007400720075006D000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"SpectrumAnalyzer"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"72"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"false"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"1"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"40"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"127"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:AudioFx#Compressor:FileId_39649"}},"PresetRef":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"120","Dir":"Devices"}},{"_attributes":{"Id":"121","Dir":"Audio Effects"}},{"_attributes":{"Id":"122","Dir":"Compressor"}}]},"Name":{"_attributes":{"Value":"Classical Compression.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0043006F006D00700072006500730073006F0072005C0043006C0061007300730069006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t61006C00200043006F006D007000720065007300730069006F006E002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"160"}},"AutoColored":{"_attributes":{"Value":"true"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19284"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0062006C007500640077005C0041007000700044006100\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t740061005C0052006F0061006D0069006E0067005C00410062006C00650074006F006E005C004C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6900760065002000310030002E0031005C0050007200650066006500720065006E00630065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t0000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19285"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"19286"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19287"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19288"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19289"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"false"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"73"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19266"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19267"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19268"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19269"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"71.9000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19270"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19271"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19272"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19273"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19274"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19275"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"51"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19276"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19277"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19278"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19279"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19280"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19281"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Bass Gain"}},"MacroDisplayNames.1":{"_attributes":{"Value":"Mid Gain"}},"MacroDisplayNames.2":{"_attributes":{"Value":"High Gain"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Ovrdrive Drive"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Stereo Enhance"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Comp Amount"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Comp Dry/Wet"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Limiter Gain"}},"MacroDefaults.0":{"_attributes":{"Value":"71.9666672"}},"MacroDefaults.1":{"_attributes":{"Value":"63.5"}},"MacroDefaults.2":{"_attributes":{"Value":"57.5325813"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"51"}},"MacroDefaults.6":{"_attributes":{"Value":"127"}},"MacroDefaults.7":{"_attributes":{"Value":"63.5"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"19282"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19283"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"5"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"167"}},"MacroColorIndex.1":{"_attributes":{"Value":"167"}},"MacroColorIndex.2":{"_attributes":{"Value":"167"}},"MacroColorIndex.3":{"_attributes":{"Value":"181"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"195"}},"MacroColorIndex.6":{"_attributes":{"Value":"195"}},"MacroColorIndex.7":{"_attributes":{"Value":"287"}},"LockId":{"_attributes":{"Value":"1001"}},"LockSeal":{"_attributes":{"Value":"-1162621832"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}}}}}}},{"_attributes":{"Id":"23"},"LomId":{"_attributes":{"Value":"5"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Batterie"}},"UserName":{"_attributes":{"Value":"Batterie"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":"Couplet"}}},"ColorIndex":{"_attributes":{"Value":"156"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"true"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"136"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26564"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26565"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26566"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26567"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26568"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26569"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26570"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26571"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26572"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26573"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26574"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26575"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"26576"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26577"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"26578"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26579"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"AudioClip":{"_attributes":{"Id":"2","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"32"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"16"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"32.000000000000007"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"13","Dir":"Samples"}},{"_attributes":{"Id":"14","Dir":"Processed"}},{"_attributes":{"Id":"15","Dir":"Crop"}}]},"Name":{"_attributes":{"Value":"Partie bombarde [2024-01-31 233921].wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t650073007300650064005C00430072006F0070005C00500061007200740069006500200062006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D006200610072006400650020005B0032003000320034002D00300031002D003300310020003200\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t330033003900320031005D002E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"0","Dir":"Musique"}},{"_attributes":{"Id":"1","Dir":"Groupes"}},{"_attributes":{"Id":"2","Dir":"Didaf'ta"}},{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"Processed"}},{"_attributes":{"Id":"5","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"2974852"}},"Crc":{"_attributes":{"Value":"56709"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"LastModDate":{"_attributes":{"Value":"1706740762"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"6"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"16","Dir":"Samples"}},{"_attributes":{"Id":"17","Dir":"Résidence janvier 2024"}}]},"Name":{"_attributes":{"Value":"PetitPapillon_partie bombarde.wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t650074006900740050006100700069006C006C006F006E005F007000610072007400690065002000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t62006F006D00620061007200640065002E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"0","Dir":"Musique"}},{"_attributes":{"Id":"1","Dir":"Groupes"}},{"_attributes":{"Id":"2","Dir":"Didaf'ta"}},{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"Processed"}},{"_attributes":{"Id":"5","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"2974852"}},"Crc":{"_attributes":{"Value":"56709"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}}},"BrowserContentPath":{"_attributes":{"Value":"query:CurrentProject#Samples:R%C3%A9sidence%20janvier%202024:PetitPapillon_partie%20bombarde.wav"}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"743702"}},"DefaultSampleRate":{"_attributes":{"Value":"44100"}}},"Onsets":{"UserOnsets":{"OnsetEvent":[{"_attributes":{"Time":"0","Energy":"Invalid","IsVolatile":"false"}},{"_attributes":{"Time":"0.279002267573696172","Energy":"0.158435583114624023","IsVolatile":"false"}},{"_attributes":{"Time":"0.539863945578231363","Energy":"0.706412792205810547","IsVolatile":"false"}},{"_attributes":{"Time":"0.781927437641723455","Energy":"0.15494111180305481","IsVolatile":"false"}},{"_attributes":{"Time":"0.899365079365079367","Energy":"0.416456103324890137","IsVolatile":"false"}},{"_attributes":{"Time":"1.0626077097505668","Energy":"0.218678280711174011","IsVolatile":"false"}},{"_attributes":{"Time":"1.1373922902494331","Energy":"0.115805931389331818","IsVolatile":"false"}},{"_attributes":{"Time":"1.2784807256235826","Energy":"0.412308186292648315","IsVolatile":"false"}},{"_attributes":{"Time":"1.5546485260770975","Energy":"0.841372966766357422","IsVolatile":"false"}},{"_attributes":{"Time":"1.8249206349206348","Energy":"0.122075647115707397","IsVolatile":"false"}},{"_attributes":{"Time":"1.9512698412698413","Energy":"0.0828214436769485474","IsVolatile":"false"}},{"_attributes":{"Time":"2.1131972789115645","Energy":"0.473465949296951294","IsVolatile":"false"}},{"_attributes":{"Time":"2.3506802721088436","Energy":"0.601482987403869629","IsVolatile":"false"}},{"_attributes":{"Time":"2.6294784580498867","Energy":"0.821277141571044922","IsVolatile":"false"}},{"_attributes":{"Time":"2.8788435374149661","Energy":"0.186960905790328979","IsVolatile":"false"}},{"_attributes":{"Time":"2.9892743764172334","Energy":"0.394283920526504517","IsVolatile":"false"}},{"_attributes":{"Time":"3.1653968253968254","Energy":"0.203684985637664795","IsVolatile":"false"}},{"_attributes":{"Time":"3.2423582766439911","Energy":"0.114114940166473389","IsVolatile":"false"}},{"_attributes":{"Time":"3.3890249433106576","Energy":"0.462637543678283691","IsVolatile":"false"}},{"_attributes":{"Time":"3.6621315192743764","Energy":"0.884831368923187256","IsVolatile":"false"}},{"_attributes":{"Time":"3.8252834467120183","Energy":"0.0344293080270290375","IsVolatile":"false"}},{"_attributes":{"Time":"3.937709750566893","Energy":"0.164439171552658081","IsVolatile":"false"}},{"_attributes":{"Time":"4.1826984126984126","Energy":"0.711519837379455566","IsVolatile":"false"}},{"_attributes":{"Time":"4.4752380952380957","Energy":"0.10246305912733078","IsVolatile":"false"}},{"_attributes":{"Time":"4.7170748299319731","Energy":"0.925207376480102539","IsVolatile":"false"}},{"_attributes":{"Time":"4.9765532879818597","Energy":"0.0940826758742332458","IsVolatile":"false"}},{"_attributes":{"Time":"5.0989342403628122","Energy":"0.384010970592498779","IsVolatile":"false"}},{"_attributes":{"Time":"5.254557823129252","Energy":"0.2484578937292099","IsVolatile":"false"}},{"_attributes":{"Time":"5.3376417233560094","Energy":"0.106553025543689728","IsVolatile":"false"}},{"_attributes":{"Time":"5.4956235827664397","Energy":"0.515589773654937744","IsVolatile":"false"}},{"_attributes":{"Time":"5.7668707482993193","Energy":"0.880233168601989746","IsVolatile":"false"}},{"_attributes":{"Time":"6.0408843537414967","Energy":"0.105076059699058533","IsVolatile":"false"}},{"_attributes":{"Time":"6.1526530612244894","Energy":"0.112330570816993713","IsVolatile":"false"}},{"_attributes":{"Time":"6.2970521541950113","Energy":"0.477002978324890137","IsVolatile":"false"}},{"_attributes":{"Time":"6.5621995464852612","Energy":"0.580742776393890381","IsVolatile":"false"}},{"_attributes":{"Time":"6.8281405895691609","Energy":"0.839626014232635498","IsVolatile":"false"}},{"_attributes":{"Time":"7.0942176870748304","Energy":"0.0802433565258979797","IsVolatile":"false"}},{"_attributes":{"Time":"7.205374149659864","Energy":"0.351777821779251099","IsVolatile":"false"}},{"_attributes":{"Time":"7.3600680272108843","Energy":"0.243002504110336304","IsVolatile":"false"}},{"_attributes":{"Time":"7.450136054421769","Energy":"0.144651070237159729","IsVolatile":"false"}},{"_attributes":{"Time":"7.6060997732426303","Energy":"0.464087575674057007","IsVolatile":"false"}},{"_attributes":{"Time":"7.8688662131519278","Energy":"0.752541303634643555","IsVolatile":"false"}},{"_attributes":{"Time":"8.0573696145124725","Energy":"0.0349746234714984894","IsVolatile":"false"}},{"_attributes":{"Time":"8.1606802721088449","Energy":"0.185460969805717468","IsVolatile":"false"}},{"_attributes":{"Time":"8.2894784580498868","Energy":"0.0366287678480148315","IsVolatile":"false"}},{"_attributes":{"Time":"8.4024489795918385","Energy":"0.780709385871887207","IsVolatile":"false"}},{"_attributes":{"Time":"8.6893650793650803","Energy":"0.0925536081194877625","IsVolatile":"false"}},{"_attributes":{"Time":"8.9534240362811808","Energy":"1","IsVolatile":"false"}},{"_attributes":{"Time":"9.215736961451249","Energy":"0.178497135639190674","IsVolatile":"false"}},{"_attributes":{"Time":"9.355510204081634","Energy":"0.324937194585800171","IsVolatile":"false"}},{"_attributes":{"Time":"9.4833106575963733","Energy":"0.23296394944190979","IsVolatile":"false"}},{"_attributes":{"Time":"9.5821315192743768","Energy":"0.0817138180136680603","IsVolatile":"false"}},{"_attributes":{"Time":"9.7418140589569173","Energy":"0.476897656917572021","IsVolatile":"false"}},{"_attributes":{"Time":"10.019478458049887","Energy":"0.868338882923126221","IsVolatile":"false"}},{"_attributes":{"Time":"10.302607709750568","Energy":"0.0873993635177612305","IsVolatile":"false"}},{"_attributes":{"Time":"10.407981859410432","Energy":"0.0734765753149986267","IsVolatile":"false"}},{"_attributes":{"Time":"10.58934240362812","Energy":"0.478342294692993164","IsVolatile":"false"}},{"_attributes":{"Time":"10.824761904761905","Energy":"0.512019574642181396","IsVolatile":"false"}},{"_attributes":{"Time":"11.084126984126986","Energy":"0.858264803886413574","IsVolatile":"false"}},{"_attributes":{"Time":"11.345374149659865","Energy":"0.0900664404034614563","IsVolatile":"false"}},{"_attributes":{"Time":"11.475419501133787","Energy":"0.323220998048782349","IsVolatile":"false"}},{"_attributes":{"Time":"11.625170068027211","Energy":"0.289692312479019165","IsVolatile":"false"}},{"_attributes":{"Time":"11.720702947845806","Energy":"0.113997280597686768","IsVolatile":"false"}},{"_attributes":{"Time":"11.857188208616781","Energy":"0.420687407255172729","IsVolatile":"false"}},{"_attributes":{"Time":"12.116757369614513","Energy":"0.702556788921356201","IsVolatile":"false"}},{"_attributes":{"Time":"12.311473922902495","Energy":"0.0265360791236162186","IsVolatile":"false"}},{"_attributes":{"Time":"12.411950113378685","Energy":"0.154003769159317017","IsVolatile":"false"}},{"_attributes":{"Time":"12.548503401360545","Energy":"0.0596270151436328888","IsVolatile":"false"}},{"_attributes":{"Time":"12.659387755102042","Energy":"0.766586184501647949","IsVolatile":"false"}},{"_attributes":{"Time":"12.948752834467122","Energy":"0.0790670886635780334","IsVolatile":"false"}},{"_attributes":{"Time":"13.198548752834467","Energy":"0.879117488861083984","IsVolatile":"false"}},{"_attributes":{"Time":"13.473469387755102","Energy":"0.0812906250357627869","IsVolatile":"false"}},{"_attributes":{"Time":"13.621746031746033","Energy":"0.415004819631576538","IsVolatile":"false"}},{"_attributes":{"Time":"13.731995464852609","Energy":"0.151503667235374451","IsVolatile":"false"}},{"_attributes":{"Time":"13.841859410430841","Energy":"0.131090089678764343","IsVolatile":"false"}},{"_attributes":{"Time":"13.993673469387756","Energy":"0.407049834728240967","IsVolatile":"false"}},{"_attributes":{"Time":"14.255578231292517","Energy":"0.878256857395172119","IsVolatile":"false"}},{"_attributes":{"Time":"14.52310657596372","Energy":"0.140384629368782043","IsVolatile":"false"}},{"_attributes":{"Time":"14.629070294784581","Energy":"0.117727048695087433","IsVolatile":"false"}},{"_attributes":{"Time":"14.771043083900228","Energy":"0.412955433130264282","IsVolatile":"false"}},{"_attributes":{"Time":"15.041950113378686","Energy":"0.541392922401428223","IsVolatile":"false"}},{"_attributes":{"Time":"15.303469387755102","Energy":"0.871275126934051514","IsVolatile":"false"}},{"_attributes":{"Time":"15.560158730158731","Energy":"0.10079636424779892","IsVolatile":"false"}},{"_attributes":{"Time":"15.692925170068028","Energy":"0.377018004655838013","IsVolatile":"false"}},{"_attributes":{"Time":"15.833764172335602","Energy":"0.242275610566139221","IsVolatile":"false"}},{"_attributes":{"Time":"15.912471655328799","Energy":"0.116373471915721893","IsVolatile":"false"}},{"_attributes":{"Time":"16.06471655328798","Energy":"0.425170987844467163","IsVolatile":"false"}},{"_attributes":{"Time":"16.315782312925169","Energy":"0.656879127025604248","IsVolatile":"false"}},{"_attributes":{"Time":"16.476712018140589","Energy":"0.0623792707920074463","IsVolatile":"false"}},{"_attributes":{"Time":"16.608004535147391","Energy":"0.382984250783920288","IsVolatile":"false"}},{"_attributes":{"Time":"16.730249433106575","Energy":"0.31650853157043457","IsVolatile":"false"}}]},"HasUserOnsets":{"_attributes":{"Value":"true"}}},"WarpMode":{"_attributes":{"Value":"4"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"Sync":{"_attributes":{"Value":"true"}},"HiQ":{"_attributes":{"Value":"true"}},"Fade":{"_attributes":{"Value":"true"}},"Fades":{"FadeInLength":{"_attributes":{"Value":"0"}},"FadeOutLength":{"_attributes":{"Value":"0"}},"ClipFadesAreInitialized":{"_attributes":{"Value":"true"}},"CrossfadeInState":{"_attributes":{"Value":"0"}},"FadeInCurveSkew":{"_attributes":{"Value":"0"}},"FadeInCurveSlope":{"_attributes":{"Value":"0"}},"FadeOutCurveSkew":{"_attributes":{"Value":"0"}},"FadeOutCurveSlope":{"_attributes":{"Value":"0"}},"IsDefaultFadeIn":{"_attributes":{"Value":"true"}},"IsDefaultFadeOut":{"_attributes":{"Value":"true"}}},"PitchCoarse":{"_attributes":{"Value":"0"}},"PitchFine":{"_attributes":{"Value":"0"}},"SampleVolume":{"_attributes":{"Value":"1"}},"MarkerDensity":{"_attributes":{"Value":"2"}},"AutoWarpTolerance":{"_attributes":{"Value":"4"}},"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"8","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"10","SecTime":"16.863990929705214","BeatTime":"32"}},{"_attributes":{"Id":"13","SecTime":"16.880552948917952","BeatTime":"32.03125"}}]},"SavedWarpMarkersForStretched":{"WarpMarker":[{"_attributes":{"Id":"8","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"10","SecTime":"16.863990929705214","BeatTime":"32"}},{"_attributes":{"Id":"13","SecTime":"16.880552948917952","BeatTime":"32.03125"}}]},"MarkersGenerated":{"_attributes":{"Value":"false"}},"IsSongTempoMaster":{"_attributes":{"Value":"false"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"AudioClip":{"_attributes":{"Id":"2","Time":"0"},"LomId":{"_attributes":{"Value":"26"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"32.000005983599735"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"16"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"-0.000000132688384176303178"}},"RightTime":{"_attributes":{"Value":"32.420443322480622"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"0"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"24","Dir":"Samples"}},{"_attributes":{"Id":"25","Dir":"Processed"}},{"_attributes":{"Id":"26","Dir":"Crop"}}]},"Name":{"_attributes":{"Value":"PetitPapillon_couplet [2024-01-20 122633].wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t650073007300650064005C00430072006F0070005C00500065007400690074005000610070006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6C006C006F006E005F0063006F00750070006C006500740020005B0032003000320034002D003000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t31002D003200300020003100320032003600330033005D002E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"0","Dir":"Musique"}},{"_attributes":{"Id":"1","Dir":"Groupes"}},{"_attributes":{"Id":"2","Dir":"Didaf'ta"}},{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"Processed"}},{"_attributes":{"Id":"5","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"2969552"}},"Crc":{"_attributes":{"Value":"11053"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"LastModDate":{"_attributes":{"Value":"1705749993"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"8"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"27","Dir":"Samples"}},{"_attributes":{"Id":"28","Dir":"Résidence janvier 2024"}}]},"Name":{"_attributes":{"Value":"PetitPapillon_couplet.wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t650074006900740050006100700069006C006C006F006E005F0063006F00750070006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t2E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"0","Dir":"Musique"}},{"_attributes":{"Id":"1","Dir":"Groupes"}},{"_attributes":{"Id":"2","Dir":"Didaf'ta"}},{"_attributes":{"Id":"3","Dir":"Samples"}},{"_attributes":{"Id":"4","Dir":"Processed"}},{"_attributes":{"Id":"5","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"2969552"}},"Crc":{"_attributes":{"Value":"11053"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}}},"BrowserContentPath":{"_attributes":{"Value":"query:CurrentProject#Samples:R%C3%A9sidence%20janvier%202024:PetitPapillon_couplet.wav"}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"742377"}},"DefaultSampleRate":{"_attributes":{"Value":"44100"}}},"Onsets":{"UserOnsets":{"OnsetEvent":[{"_attributes":{"Time":"0","Energy":"Invalid","IsVolatile":"false"}},{"_attributes":{"Time":"0.272108843537414935","Energy":"0.146099120378494263","IsVolatile":"false"}},{"_attributes":{"Time":"0.533854875283446662","Energy":"0.781927943229675293","IsVolatile":"false"}},{"_attributes":{"Time":"0.777256235827664343","Energy":"0.143773183226585388","IsVolatile":"false"}},{"_attributes":{"Time":"0.906417233560090629","Energy":"0.321129649877548218","IsVolatile":"false"}},{"_attributes":{"Time":"1.0480725623582767","Energy":"0.247473940253257751","IsVolatile":"false"}},{"_attributes":{"Time":"1.166031746031746","Energy":"0.0497190319001674652","IsVolatile":"false"}},{"_attributes":{"Time":"1.2907936507936508","Energy":"0.447683751583099365","IsVolatile":"false"}},{"_attributes":{"Time":"1.5709977324263038","Energy":"0.820929348468780518","IsVolatile":"false"}},{"_attributes":{"Time":"1.8337868480725623","Energy":"0.191173940896987915","IsVolatile":"false"}},{"_attributes":{"Time":"1.9433786848072563","Energy":"0.0434616878628730774","IsVolatile":"false"}},{"_attributes":{"Time":"2.0951473922902495","Energy":"0.722986817359924316","IsVolatile":"false"}},{"_attributes":{"Time":"2.3616780045351473","Energy":"0.617161154747009277","IsVolatile":"false"}},{"_attributes":{"Time":"2.6129705215419503","Energy":"0.78453141450881958","IsVolatile":"false"}},{"_attributes":{"Time":"2.8880498866213151","Energy":"0.0871091783046722412","IsVolatile":"false"}},{"_attributes":{"Time":"3.0146485260770977","Energy":"0.444881081581115723","IsVolatile":"false"}},{"_attributes":{"Time":"3.1499773242630384","Energy":"0.134370476007461548","IsVolatile":"false"}},{"_attributes":{"Time":"3.2645804988662133","Energy":"0.0334878601133823395","IsVolatile":"false"}},{"_attributes":{"Time":"3.3962585034013606","Energy":"0.643062233924865723","IsVolatile":"false"}},{"_attributes":{"Time":"3.6607936507936509","Energy":"0.888003706932067871","IsVolatile":"false"}},{"_attributes":{"Time":"3.9480498866213156","Energy":"0.0807717889547348022","IsVolatile":"false"}},{"_attributes":{"Time":"4.0353287981859411","Energy":"0.0369331128895282745","IsVolatile":"false"}},{"_attributes":{"Time":"4.1835374149659872","Energy":"0.922353744506835938","IsVolatile":"false"}},{"_attributes":{"Time":"4.4758503401360548","Energy":"0.0618256181478500366","IsVolatile":"false"}},{"_attributes":{"Time":"4.725714285714286","Energy":"0.81558382511138916","IsVolatile":"false"}},{"_attributes":{"Time":"4.9944897959183683","Energy":"0.0788568481802940369","IsVolatile":"false"}},{"_attributes":{"Time":"5.1175056689342409","Energy":"0.38010096549987793","IsVolatile":"false"}},{"_attributes":{"Time":"5.2619274376417238","Energy":"0.278274059295654297","IsVolatile":"false"}},{"_attributes":{"Time":"5.4886394557823133","Energy":"0.521564126014709473","IsVolatile":"false"}},{"_attributes":{"Time":"5.7838775510204083","Energy":"0.910227596759796143","IsVolatile":"false"}},{"_attributes":{"Time":"6.0546258503401367","Energy":"0.181407511234283447","IsVolatile":"false"}},{"_attributes":{"Time":"6.1551700680272114","Energy":"0.0537800192832946777","IsVolatile":"false"}},{"_attributes":{"Time":"6.2929705215419505","Energy":"0.748405873775482178","IsVolatile":"false"}},{"_attributes":{"Time":"6.5591609977324268","Energy":"0.592064201831817627","IsVolatile":"false"}},{"_attributes":{"Time":"6.8150793650793657","Energy":"0.874240219593048096","IsVolatile":"false"}},{"_attributes":{"Time":"7.0763492063492066","Energy":"0.100599721074104309","IsVolatile":"false"}},{"_attributes":{"Time":"7.2116326530612254","Energy":"0.419693052768707275","IsVolatile":"false"}},{"_attributes":{"Time":"7.3386621315192748","Energy":"0.145830705761909485","IsVolatile":"false"}},{"_attributes":{"Time":"7.4497505668934245","Energy":"0.0835926532745361328","IsVolatile":"false"}},{"_attributes":{"Time":"7.568798185941044","Energy":"0.530176639556884766","IsVolatile":"false"}},{"_attributes":{"Time":"7.8128798185941051","Energy":"0.766920149326324463","IsVolatile":"false"}},{"_attributes":{"Time":"7.9739455782312927","Energy":"0.0384225361049175262","IsVolatile":"false"}},{"_attributes":{"Time":"8.1049886621315199","Energy":"0.351856708526611328","IsVolatile":"false"}},{"_attributes":{"Time":"8.2149206349206363","Energy":"0.151933357119560242","IsVolatile":"false"}},{"_attributes":{"Time":"8.3381179138321997","Energy":"0.681362509727478027","IsVolatile":"false"}},{"_attributes":{"Time":"8.6491609977324266","Energy":"0.0750094577670097351","IsVolatile":"false"}},{"_attributes":{"Time":"8.8999773242630393","Energy":"0.935747027397155762","IsVolatile":"false"}},{"_attributes":{"Time":"9.1552834467120192","Energy":"0.0778209567070007324","IsVolatile":"false"}},{"_attributes":{"Time":"9.3277777777777775","Energy":"0.377835512161254883","IsVolatile":"false"}},{"_attributes":{"Time":"9.438299319727891","Energy":"0.235036209225654602","IsVolatile":"false"}},{"_attributes":{"Time":"9.5615646258503411","Energy":"0.0312448740005493164","IsVolatile":"false"}},{"_attributes":{"Time":"9.6921995464852611","Energy":"0.558686792850494385","IsVolatile":"false"}},{"_attributes":{"Time":"9.9560544217687088","Energy":"0.995055496692657471","IsVolatile":"false"}},{"_attributes":{"Time":"10.238458049886622","Energy":"0.116099998354911804","IsVolatile":"false"}},{"_attributes":{"Time":"10.308707482993198","Energy":"0.0418396629393100739","IsVolatile":"false"}},{"_attributes":{"Time":"10.466530612244899","Energy":"0.757333576679229736","IsVolatile":"false"}},{"_attributes":{"Time":"10.741972789115646","Energy":"0.648786544799804688","IsVolatile":"false"}},{"_attributes":{"Time":"11.00403628117914","Energy":"0.954073846340179443","IsVolatile":"false"}},{"_attributes":{"Time":"11.276643990929706","Energy":"0.0804706364870071411","IsVolatile":"false"}},{"_attributes":{"Time":"11.432426303854877","Energy":"0.443723380565643311","IsVolatile":"false"}},{"_attributes":{"Time":"11.521247165532881","Energy":"0.129909530282020569","IsVolatile":"false"}},{"_attributes":{"Time":"11.658480725623583","Energy":"0.0527517721056938171","IsVolatile":"false"}},{"_attributes":{"Time":"11.788730158730159","Energy":"0.608405232429504395","IsVolatile":"false"}},{"_attributes":{"Time":"12.066598639455783","Energy":"0.960845649242401123","IsVolatile":"false"}},{"_attributes":{"Time":"12.347369614512472","Energy":"0.108435869216918945","IsVolatile":"false"}},{"_attributes":{"Time":"12.46077097505669","Energy":"0.0316161327064037323","IsVolatile":"false"}},{"_attributes":{"Time":"12.595555555555556","Energy":"0.999999940395355225","IsVolatile":"false"}},{"_attributes":{"Time":"12.869387755102041","Energy":"0.0959671735763549805","IsVolatile":"false"}},{"_attributes":{"Time":"13.129501133786849","Energy":"0.914737343788146973","IsVolatile":"false"}},{"_attributes":{"Time":"13.404965986394558","Energy":"0.0875396057963371277","IsVolatile":"false"}},{"_attributes":{"Time":"13.57421768707483","Energy":"0.403275400400161743","IsVolatile":"false"}},{"_attributes":{"Time":"13.684421768707484","Energy":"0.142569169402122498","IsVolatile":"false"}},{"_attributes":{"Time":"13.816848072562358","Energy":"0.0480275489389896393","IsVolatile":"false"}},{"_attributes":{"Time":"13.930544217687075","Energy":"0.504582405090332031","IsVolatile":"false"}},{"_attributes":{"Time":"14.210861678004536","Energy":"0.929828763008117676","IsVolatile":"false"}},{"_attributes":{"Time":"14.479160997732427","Energy":"0.0998866409063339233","IsVolatile":"false"}},{"_attributes":{"Time":"14.59342403628118","Energy":"0.0603435486555099487","IsVolatile":"false"}},{"_attributes":{"Time":"14.727687074829932","Energy":"0.649197280406951904","IsVolatile":"false"}},{"_attributes":{"Time":"14.988185941043085","Energy":"0.623079299926757813","IsVolatile":"false"}},{"_attributes":{"Time":"15.260702947845806","Energy":"0.834644556045532227","IsVolatile":"false"}},{"_attributes":{"Time":"15.53734693877551","Energy":"0.105548597872257233","IsVolatile":"false"}},{"_attributes":{"Time":"15.682653061224491","Energy":"0.404447078704833984","IsVolatile":"false"}},{"_attributes":{"Time":"15.796122448979592","Energy":"0.119098402559757233","IsVolatile":"false"}},{"_attributes":{"Time":"15.908276643990929","Energy":"0.0515603944659233093","IsVolatile":"false"}},{"_attributes":{"Time":"16.041791383219955","Energy":"0.72703021764755249","IsVolatile":"false"}},{"_attributes":{"Time":"16.199886621315191","Energy":"0.0437258221209049225","IsVolatile":"false"}},{"_attributes":{"Time":"16.317528344671199","Energy":"0.43026617169380188","IsVolatile":"false"}},{"_attributes":{"Time":"16.430181405895691","Energy":"0.383674085140228271","IsVolatile":"false"}},{"_attributes":{"Time":"16.550997732426303","Energy":"0.565703272819519043","IsVolatile":"false"}},{"_attributes":{"Time":"16.687233560090704","Energy":"0.833606839179992676","IsVolatile":"false"}}]},"HasUserOnsets":{"_attributes":{"Value":"true"}}},"WarpMode":{"_attributes":{"Value":"3"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"Sync":{"_attributes":{"Value":"true"}},"HiQ":{"_attributes":{"Value":"true"}},"Fade":{"_attributes":{"Value":"true"}},"Fades":{"FadeInLength":{"_attributes":{"Value":"0"}},"FadeOutLength":{"_attributes":{"Value":"0"}},"ClipFadesAreInitialized":{"_attributes":{"Value":"true"}},"CrossfadeInState":{"_attributes":{"Value":"0"}},"FadeInCurveSkew":{"_attributes":{"Value":"0"}},"FadeInCurveSlope":{"_attributes":{"Value":"0"}},"FadeOutCurveSkew":{"_attributes":{"Value":"0"}},"FadeOutCurveSlope":{"_attributes":{"Value":"0"}},"IsDefaultFadeIn":{"_attributes":{"Value":"true"}},"IsDefaultFadeOut":{"_attributes":{"Value":"true"}}},"PitchCoarse":{"_attributes":{"Value":"0"}},"PitchFine":{"_attributes":{"Value":"0"}},"SampleVolume":{"_attributes":{"Value":"1"}},"MarkerDensity":{"_attributes":{"Value":"2"}},"AutoWarpTolerance":{"_attributes":{"Value":"4"}},"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"5","SecTime":"0.0000000695004282180722299","BeatTime":"0"}},{"_attributes":{"Id":"12","SecTime":"2.0951473922902495","BeatTime":"4"}},{"_attributes":{"Id":"13","SecTime":"4.1835374149659872","BeatTime":"8"}},{"_attributes":{"Id":"7","SecTime":"5.7838775510204083","BeatTime":"10.984188727938728"}},{"_attributes":{"Id":"8","SecTime":"6.2929705215419505","BeatTime":"12"}},{"_attributes":{"Id":"10","SecTime":"6.8150793650793657","BeatTime":"13"}},{"_attributes":{"Id":"14","SecTime":"7.8128798185941051","BeatTime":"15"}},{"_attributes":{"Id":"17","SecTime":"8.1049886621315199","BeatTime":"15.5"}},{"_attributes":{"Id":"9","SecTime":"8.3381179138321997","BeatTime":"16"}},{"_attributes":{"Id":"15","SecTime":"8.8999773242630393","BeatTime":"17"}},{"_attributes":{"Id":"11","SecTime":"12.595555555555556","BeatTime":"24"}},{"_attributes":{"Id":"16","SecTime":"14.727687074829932","BeatTime":"28"}},{"_attributes":{"Id":"18","SecTime":"14.744142195069262","BeatTime":"28.03125"}}]},"SavedWarpMarkersForStretched":{"WarpMarker":[{"_attributes":{"Id":"5","SecTime":"0.0000000695004282180722299","BeatTime":"0"}},{"_attributes":{"Id":"12","SecTime":"2.0951473922902495","BeatTime":"4"}},{"_attributes":{"Id":"13","SecTime":"4.1835374149659872","BeatTime":"8"}},{"_attributes":{"Id":"7","SecTime":"5.7838775510204083","BeatTime":"10.984188727938728"}},{"_attributes":{"Id":"8","SecTime":"6.2929705215419505","BeatTime":"12"}},{"_attributes":{"Id":"10","SecTime":"6.8150793650793657","BeatTime":"13"}},{"_attributes":{"Id":"14","SecTime":"7.8128798185941051","BeatTime":"15"}},{"_attributes":{"Id":"17","SecTime":"8.1049886621315199","BeatTime":"15.5"}},{"_attributes":{"Id":"9","SecTime":"8.3381179138321997","BeatTime":"16"}},{"_attributes":{"Id":"15","SecTime":"8.8999773242630393","BeatTime":"17"}},{"_attributes":{"Id":"11","SecTime":"12.595555555555556","BeatTime":"24"}},{"_attributes":{"Id":"16","SecTime":"14.727687074829932","BeatTime":"28"}},{"_attributes":{"Id":"18","SecTime":"14.744142195069262","BeatTime":"28.03125"}}]},"MarkersGenerated":{"_attributes":{"Value":"false"}},"IsSongTempoMaster":{"_attributes":{"Value":"false"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"AudioClip":{"_attributes":{"Id":"2","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32.000042925824175"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"32"}}},"Name":{"_attributes":{"Value":"Refrain"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"16"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"32.000042850001435"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"14","Dir":"Samples"}},{"_attributes":{"Id":"15","Dir":"Processed"}},{"_attributes":{"Id":"16","Dir":"Crop"}}]},"Name":{"_attributes":{"Value":"Refrain [2024-01-31 233926].wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C00500072006F006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t650073007300650064005C00430072006F0070005C005200650066007200610069006E0020005B00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t32003000320034002D00300031002D003300310020003200330033003900320036005D002E007700\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"11","Dir":"Musique"}},{"_attributes":{"Id":"12","Dir":"Groupes"}},{"_attributes":{"Id":"13","Dir":"Didaf'ta"}},{"_attributes":{"Id":"14","Dir":"Samples"}},{"_attributes":{"Id":"15","Dir":"Processed"}},{"_attributes":{"Id":"16","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"3001716"}},"Crc":{"_attributes":{"Value":"18252"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"LastModDate":{"_attributes":{"Value":"1706740766"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"5"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"17","Dir":"Samples"}},{"_attributes":{"Id":"18","Dir":"Résidence janvier 2024"}}]},"Name":{"_attributes":{"Value":"PetitPapillon_refrain.wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C005200E90073006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t640065006E006300650020006A0061006E007600690065007200200032003000320034005C005000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t650074006900740050006100700069006C006C006F006E005F007200650066007200610069006E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t2E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"11","Dir":"Musique"}},{"_attributes":{"Id":"12","Dir":"Groupes"}},{"_attributes":{"Id":"13","Dir":"Didaf'ta"}},{"_attributes":{"Id":"14","Dir":"Samples"}},{"_attributes":{"Id":"15","Dir":"Processed"}},{"_attributes":{"Id":"16","Dir":"Crop"}}]},"FileSize":{"_attributes":{"Value":"3001716"}},"Crc":{"_attributes":{"Value":"18252"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}}},"BrowserContentPath":{"_attributes":{"Value":"query:CurrentProject#Samples:R%C3%A9sidence%20janvier%202024:PetitPapillon_refrain.wav"}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"750418"}},"DefaultSampleRate":{"_attributes":{"Value":"44100"}}},"Onsets":{"UserOnsets":{"OnsetEvent":[{"_attributes":{"Time":"0","Energy":"Invalid","IsVolatile":"false"}},{"_attributes":{"Time":"0.242766439909297055","Energy":"0.0894684568047523499","IsVolatile":"false"}},{"_attributes":{"Time":"0.519818594104308418","Energy":"0.945643365383148193","IsVolatile":"false"}},{"_attributes":{"Time":"0.793514739229024935","Energy":"0.0836983472108840942","IsVolatile":"false"}},{"_attributes":{"Time":"0.915714285714285703","Energy":"0.0231569446623325348","IsVolatile":"false"}},{"_attributes":{"Time":"1.0556916099773244","Energy":"0.170933544635772705","IsVolatile":"false"}},{"_attributes":{"Time":"1.1835374149659865","Energy":"0.0278272256255149841","IsVolatile":"false"}},{"_attributes":{"Time":"1.3295238095238096","Energy":"0.619744718074798584","IsVolatile":"false"}},{"_attributes":{"Time":"1.5881179138321997","Energy":"0.916562438011169434","IsVolatile":"false"}},{"_attributes":{"Time":"1.8575963718820863","Energy":"0.208707809448242188","IsVolatile":"false"}},{"_attributes":{"Time":"1.9733106575963721","Energy":"0.0138411363586783409","IsVolatile":"false"}},{"_attributes":{"Time":"2.1073469387755104","Energy":"0.698172628879547119","IsVolatile":"false"}},{"_attributes":{"Time":"2.3767120181405899","Energy":"0.535602688789367676","IsVolatile":"false"}},{"_attributes":{"Time":"2.649954648526077","Energy":"0.851772546768188477","IsVolatile":"false"}},{"_attributes":{"Time":"2.9288208616780045","Energy":"0.087788708508014679","IsVolatile":"false"}},{"_attributes":{"Time":"3.0527891156462585","Energy":"0.0292024184018373489","IsVolatile":"false"}},{"_attributes":{"Time":"3.1986848072562357","Energy":"0.191593453288078308","IsVolatile":"false"}},{"_attributes":{"Time":"3.3380725623582768","Energy":"0.0370597653090953827","IsVolatile":"false"}},{"_attributes":{"Time":"3.4554421768707484","Energy":"0.612891316413879395","IsVolatile":"false"}},{"_attributes":{"Time":"3.7268480725623583","Energy":"0.865733027458190918","IsVolatile":"false"}},{"_attributes":{"Time":"3.9843990929705213","Energy":"0.132808148860931396","IsVolatile":"false"}},{"_attributes":{"Time":"4.1150566893424037","Energy":"0.0908216163516044617","IsVolatile":"false"}},{"_attributes":{"Time":"4.2481405895691609","Energy":"0.54004514217376709","IsVolatile":"false"}},{"_attributes":{"Time":"4.5386394557823122","Energy":"0.0813640803098678589","IsVolatile":"false"}},{"_attributes":{"Time":"4.8107482993197275","Energy":"0.832722902297973633","IsVolatile":"false"}},{"_attributes":{"Time":"5.101791383219954","Energy":"0.0728882849216461182","IsVolatile":"false"}},{"_attributes":{"Time":"5.3354648526077098","Energy":"0.292891591787338257","IsVolatile":"false"}},{"_attributes":{"Time":"5.4736281179138322","Energy":"0.0438704788684844971","IsVolatile":"false"}},{"_attributes":{"Time":"5.6243990929705214","Energy":"0.550159275531768799","IsVolatile":"false"}},{"_attributes":{"Time":"5.8874603174603175","Energy":"0.974724233150482178","IsVolatile":"false"}},{"_attributes":{"Time":"6.152947845804988","Energy":"0.119655966758728027","IsVolatile":"false"}},{"_attributes":{"Time":"6.2814285714285711","Energy":"0.024955185130238533","IsVolatile":"false"}},{"_attributes":{"Time":"6.4103174603174597","Energy":"0.564380049705505371","IsVolatile":"false"}},{"_attributes":{"Time":"6.6852380952380948","Energy":"0.490700185298919678","IsVolatile":"false"}},{"_attributes":{"Time":"6.9403854875283448","Energy":"0.891788899898529053","IsVolatile":"false"}},{"_attributes":{"Time":"7.2275283446712013","Energy":"0.0649118423461914063","IsVolatile":"false"}},{"_attributes":{"Time":"7.3460317460317457","Energy":"0.0394786149263381958","IsVolatile":"false"}},{"_attributes":{"Time":"7.4760090702947846","Energy":"0.182112023234367371","IsVolatile":"false"}},{"_attributes":{"Time":"7.6014058956916095","Energy":"0.114160619676113129","IsVolatile":"false"}},{"_attributes":{"Time":"7.7170975056689342","Energy":"0.602906763553619385","IsVolatile":"false"}},{"_attributes":{"Time":"7.9696598639455782","Energy":"0.486771821975708008","IsVolatile":"false"}},{"_attributes":{"Time":"8.0911337868480722","Energy":"0.145885705947875977","IsVolatile":"false"}},{"_attributes":{"Time":"8.2074376417233559","Energy":"0.514631569385528564","IsVolatile":"false"}},{"_attributes":{"Time":"8.3363718820861674","Energy":"0.560062170028686523","IsVolatile":"false"}},{"_attributes":{"Time":"8.4665532879818599","Energy":"0.510046839714050293","IsVolatile":"false"}},{"_attributes":{"Time":"8.7897052154195006","Energy":"0.0968167632818222046","IsVolatile":"false"}},{"_attributes":{"Time":"9.0616099773242631","Energy":"0.846881687641143799","IsVolatile":"false"}},{"_attributes":{"Time":"9.3374829931972787","Energy":"0.093599364161491394","IsVolatile":"false"}},{"_attributes":{"Time":"9.4611791383219952","Energy":"0.0244368854910135269","IsVolatile":"false"}},{"_attributes":{"Time":"9.6034467120181404","Energy":"0.257442891597747803","IsVolatile":"false"}},{"_attributes":{"Time":"9.7213832199546477","Energy":"0.0396615676581859589","IsVolatile":"false"}},{"_attributes":{"Time":"9.8732653061224482","Energy":"0.60412895679473877","IsVolatile":"false"}},{"_attributes":{"Time":"10.122471655328798","Energy":"0.774253249168395996","IsVolatile":"false"}},{"_attributes":{"Time":"10.390453514739228","Energy":"0.184474259614944458","IsVolatile":"false"}},{"_attributes":{"Time":"10.515147392290249","Energy":"0.0559256039559841156","IsVolatile":"false"}},{"_attributes":{"Time":"10.650158730158729","Energy":"0.555317580699920654","IsVolatile":"false"}},{"_attributes":{"Time":"10.925283446712019","Energy":"0.536900699138641357","IsVolatile":"false"}},{"_attributes":{"Time":"11.187505668934239","Energy":"0.896483421325683594","IsVolatile":"false"}},{"_attributes":{"Time":"11.464897959183673","Energy":"0.126732334494590759","IsVolatile":"false"}},{"_attributes":{"Time":"11.586439909297052","Energy":"0.0348772406578063965","IsVolatile":"false"}},{"_attributes":{"Time":"11.733106575963719","Energy":"0.245418831706047058","IsVolatile":"false"}},{"_attributes":{"Time":"11.836145124716554","Energy":"0.0286655444651842117","IsVolatile":"false"}},{"_attributes":{"Time":"11.984421768707483","Energy":"0.58064347505569458","IsVolatile":"false"}},{"_attributes":{"Time":"12.251859410430839","Energy":"1","IsVolatile":"false"}},{"_attributes":{"Time":"12.520861678004534","Energy":"0.166022524237632751","IsVolatile":"false"}},{"_attributes":{"Time":"12.650884353741496","Energy":"0.0313778892159461975","IsVolatile":"false"}},{"_attributes":{"Time":"12.770113378684806","Energy":"0.574362218379974365","IsVolatile":"false"}},{"_attributes":{"Time":"13.041836734693877","Energy":"0.48656800389289856","IsVolatile":"false"}},{"_attributes":{"Time":"13.305668934240362","Energy":"0.853617250919342041","IsVolatile":"false"}},{"_attributes":{"Time":"13.586666666666666","Energy":"0.0927539393305778503","IsVolatile":"false"}},{"_attributes":{"Time":"13.70297052154195","Energy":"0.0240433644503355026","IsVolatile":"false"}},{"_attributes":{"Time":"13.845374149659865","Energy":"0.247419387102127075","IsVolatile":"false"}},{"_attributes":{"Time":"13.965555555555556","Energy":"0.0531700104475021362","IsVolatile":"false"}},{"_attributes":{"Time":"14.100975056689343","Energy":"0.543098926544189453","IsVolatile":"false"}},{"_attributes":{"Time":"14.364784580498865","Energy":"0.922781467437744141","IsVolatile":"false"}},{"_attributes":{"Time":"14.629569160997733","Energy":"0.120444275438785553","IsVolatile":"false"}},{"_attributes":{"Time":"14.755668934240363","Energy":"0.0566694550216197968","IsVolatile":"false"}},{"_attributes":{"Time":"14.887142857142857","Energy":"0.584522843360900879","IsVolatile":"false"}},{"_attributes":{"Time":"15.15045351473923","Energy":"0.507928550243377686","IsVolatile":"false"}},{"_attributes":{"Time":"15.414081632653062","Energy":"0.898223042488098145","IsVolatile":"false"}},{"_attributes":{"Time":"15.695147392290249","Energy":"0.223439812660217285","IsVolatile":"false"}},{"_attributes":{"Time":"15.825215419501134","Energy":"0.0298657752573490143","IsVolatile":"false"}},{"_attributes":{"Time":"15.957755102040815","Energy":"0.261558622121810913","IsVolatile":"false"}},{"_attributes":{"Time":"16.078027210884354","Energy":"0.03943682461977005","IsVolatile":"false"}},{"_attributes":{"Time":"16.217210884353744","Energy":"0.316750973463058472","IsVolatile":"false"}},{"_attributes":{"Time":"16.34231292517007","Energy":"0.082356676459312439","IsVolatile":"false"}},{"_attributes":{"Time":"16.485011337868482","Energy":"0.382418066263198853","IsVolatile":"false"}},{"_attributes":{"Time":"16.599433106575965","Energy":"0.312305867671966553","IsVolatile":"false"}},{"_attributes":{"Time":"16.725011337868484","Energy":"0.465848058462142944","IsVolatile":"false"}},{"_attributes":{"Time":"16.84875283446712","Energy":"0.571076869964599609","IsVolatile":"false"}},{"_attributes":{"Time":"16.971564625850341","Energy":"0.302107483148574829","IsVolatile":"false"}}]},"HasUserOnsets":{"_attributes":{"Value":"true"}}},"WarpMode":{"_attributes":{"Value":"4"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"Sync":{"_attributes":{"Value":"true"}},"HiQ":{"_attributes":{"Value":"true"}},"Fade":{"_attributes":{"Value":"true"}},"Fades":{"FadeInLength":{"_attributes":{"Value":"0"}},"FadeOutLength":{"_attributes":{"Value":"0"}},"ClipFadesAreInitialized":{"_attributes":{"Value":"true"}},"CrossfadeInState":{"_attributes":{"Value":"0"}},"FadeInCurveSkew":{"_attributes":{"Value":"0"}},"FadeInCurveSlope":{"_attributes":{"Value":"0"}},"FadeOutCurveSkew":{"_attributes":{"Value":"0"}},"FadeOutCurveSlope":{"_attributes":{"Value":"0"}},"IsDefaultFadeIn":{"_attributes":{"Value":"true"}},"IsDefaultFadeOut":{"_attributes":{"Value":"true"}}},"PitchCoarse":{"_attributes":{"Value":"0"}},"PitchFine":{"_attributes":{"Value":"0"}},"SampleVolume":{"_attributes":{"Value":"1"}},"MarkerDensity":{"_attributes":{"Value":"2"}},"AutoWarpTolerance":{"_attributes":{"Value":"4"}},"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"6","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"8","SecTime":"4.2481405895691609","BeatTime":"7.9155115717615718"}},{"_attributes":{"Id":"10","SecTime":"8.4665532879818599","BeatTime":"15.915511571761572"}},{"_attributes":{"Id":"9","SecTime":"10.650158730158729","BeatTime":"19.91551157176157"}},{"_attributes":{"Id":"11","SecTime":"12.770113378684806","BeatTime":"23.91551157176157"}},{"_attributes":{"Id":"12","SecTime":"14.887142857142857","BeatTime":"27.91551157176157"}},{"_attributes":{"Id":"13","SecTime":"16.971564625850341","BeatTime":"31.91551157176157"}},{"_attributes":{"Id":"15","SecTime":"16.988095693631951","BeatTime":"31.94676157176157"}}]},"SavedWarpMarkersForStretched":{"WarpMarker":[{"_attributes":{"Id":"6","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"8","SecTime":"4.2481405895691609","BeatTime":"7.9155115717615718"}},{"_attributes":{"Id":"10","SecTime":"8.4665532879818599","BeatTime":"15.915511571761572"}},{"_attributes":{"Id":"9","SecTime":"10.650158730158729","BeatTime":"19.91551157176157"}},{"_attributes":{"Id":"11","SecTime":"12.770113378684806","BeatTime":"23.91551157176157"}},{"_attributes":{"Id":"12","SecTime":"14.887142857142857","BeatTime":"27.91551157176157"}},{"_attributes":{"Id":"13","SecTime":"16.971564625850341","BeatTime":"31.91551157176157"}},{"_attributes":{"Id":"15","SecTime":"16.988095693631951","BeatTime":"31.94676157176157"}}]},"MarkersGenerated":{"_attributes":{"Value":"false"}},"IsSongTempoMaster":{"_attributes":{"Value":"false"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"2"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"26580"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"26581"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"26582"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"26583"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"26584"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26585"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"26586"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"26587"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"26588"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"26589"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"26590"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{}}}},{"_attributes":{"Id":"26"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"export batt midi"}},"UserName":{"_attributes":{"Value":"export batt midi"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":"export batt midi 2"}}},"ColorIndex":{"_attributes":{"Value":"164"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"true"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"153"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/Track.-1/TrackOut"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":"Post Mixer"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31655"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31656"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31657"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31658"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31659"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31660"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31661"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31662"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31663"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31664"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31665"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31666"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"31667"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31668"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31669"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31670"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"AudioClip":{"_attributes":{"Id":"0","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"16"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"16"}}},"Name":{"_attributes":{"Value":"export batt midi 2"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"24"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"16.000013605442174"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"3"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"14","Dir":"Samples"}},{"_attributes":{"Id":"15","Dir":"Recorded"}}]},"Name":{"_attributes":{"Value":"export batt midi 0002 [2024-01-20 132018].wav"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t44003A005C004D007500730069007100750065005C00470072006F0075007000650073005C004400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t69006400610066002700740061005C00530061006D0070006C00650073005C005200650063006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t72006400650064005C006500780070006F00720074002000620061007400740020006D0069006400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t69002000300030003000320020005B0032003000320034002D00300031002D003200300020003100\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t330032003000310038005D002E007700610076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"5","Dir":"Musique"}},{"_attributes":{"Id":"6","Dir":"Groupes"}},{"_attributes":{"Id":"7","Dir":"Didaf'ta"}},{"_attributes":{"Id":"8","Dir":"Samples"}},{"_attributes":{"Id":"9","Dir":"Recorded"}}]},"FileSize":{"_attributes":{"Value":"2330468"}},"Crc":{"_attributes":{"Value":"49001"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"LastModDate":{"_attributes":{"Value":"1705753219"}},"SourceContext":{},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"388404"}},"DefaultSampleRate":{"_attributes":{"Value":"44100"}}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"WarpMode":{"_attributes":{"Value":"4"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"Sync":{"_attributes":{"Value":"true"}},"HiQ":{"_attributes":{"Value":"true"}},"Fade":{"_attributes":{"Value":"true"}},"Fades":{"FadeInLength":{"_attributes":{"Value":"0"}},"FadeOutLength":{"_attributes":{"Value":"0"}},"ClipFadesAreInitialized":{"_attributes":{"Value":"true"}},"CrossfadeInState":{"_attributes":{"Value":"0"}},"FadeInCurveSkew":{"_attributes":{"Value":"0"}},"FadeInCurveSlope":{"_attributes":{"Value":"0"}},"FadeOutCurveSkew":{"_attributes":{"Value":"0"}},"FadeOutCurveSlope":{"_attributes":{"Value":"0"}},"IsDefaultFadeIn":{"_attributes":{"Value":"true"}},"IsDefaultFadeOut":{"_attributes":{"Value":"true"}}},"PitchCoarse":{"_attributes":{"Value":"0"}},"PitchFine":{"_attributes":{"Value":"0"}},"SampleVolume":{"_attributes":{"Value":"1"}},"MarkerDensity":{"_attributes":{"Value":"2"}},"AutoWarpTolerance":{"_attributes":{"Value":"4"}},"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0172018348623853221","BeatTime":"0.03125"}}]},"SavedWarpMarkersForStretched":{},"MarkersGenerated":{"_attributes":{"Value":"false"}},"IsSongTempoMaster":{"_attributes":{"Value":"false"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"2"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"31671"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"31672"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"31673"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"31674"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"31675"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"3"}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31676"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"31677"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"31678"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"31679"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"31680"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"31681"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{}}}},{"_attributes":{"Id":"22"},"LomId":{"_attributes":{"Value":"6"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Basse"}},"UserName":{"_attributes":{"Value":"Basse"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"141"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"true"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"68"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/M0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"24820"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24821"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24822"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24823"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24824"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"24825"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24826"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24827"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24828"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24829"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24830"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24831"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"24832"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24833"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"24834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"24835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"24836"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"24837"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"24838"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"24839"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"24840"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"3"}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"24841"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"24842"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"24843"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"24844"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"24845"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"24846"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{"PluginDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"13"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"24847"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Plugins#VST:Custom:Guitar%20Rig%205"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":"device:vst:audiofx:1315522357?n=Guitar%20Rig%205"}}}}},"PluginDesc":{"VstPluginInfo":{"_attributes":{"Id":"0"},"WinPosX":{"_attributes":{"Value":"760"}},"WinPosY":{"_attributes":{"Value":"65"}},"Dir":{"Type":{"_attributes":{"Value":"2"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D002000460069006C00650073005C00560053005400\r\n\t\t\t\t\t\t\t\t\t\t\t\t50006C007500670069006E0073000000\r\n\t\t\t\t\t\t\t\t\t\t\t"}},"FileName":{"_attributes":{"Value":"Guitar Rig 5.dll"}},"PlugName":{"_attributes":{"Value":"Guitar Rig 5"}},"UniqueId":{"_attributes":{"Value":"1315522357"}},"Inputs":{"_attributes":{"Value":"0"}},"Outputs":{"_attributes":{"Value":"0"}},"NumberOfParameters":{"_attributes":{"Value":"512"}},"NumberOfPrograms":{"_attributes":{"Value":"128"}},"Flags":{"_attributes":{"Value":"67110662"}},"Preset":{"VstPreset":{"_attributes":{"Id":"27"},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ParameterSettings":{},"IsOn":{"_attributes":{"Value":"true"}},"PowerMacroControlIndex":{"_attributes":{"Value":"-1"}},"PowerMacroMappingRange":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}},"IsFolded":{"_attributes":{"Value":"false"}},"StoredAllParameters":{"_attributes":{"Value":"true"}},"DeviceLomId":{"_attributes":{"Value":"0"}},"DeviceViewLomId":{"_attributes":{"Value":"0"}},"IsOnLomId":{"_attributes":{"Value":"0"}},"ParametersListWrapperLomId":{"_attributes":{"Value":"0"}},"Type":{"_attributes":{"Value":"1178747752"}},"ProgramCount":{"_attributes":{"Value":"128"}},"ParameterCount":{"_attributes":{"Value":"512"}},"ProgramNumber":{"_attributes":{"Value":"-1"}},"Buffer":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2D696E2D02000000234E4923435323446F63756D656E7423234E4923536F756E645368656C6C2353\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F756E64230000000000000000000000450100006174616402000000646E737362696C7A16000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t1000000078DA63626060D0F5F4D33575CFF40332190011A5022761746164020000006F666E696269\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6C7A270100000F03000078DA9D52CB4E8430145DCB57DC748FC5644C8C299D68D4890BCD0475655C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t14E63236424BDA32FA71EEFC3179832CC8C45DCFB9E7715B60EBAF3C83031A2BB50AC9D969400055\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tA27752ED43F2F27CE75F10B04EA89DC8B4C290284D60CD3D6675A92A51AA47F32A0808F73C005618\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t5DA071122DAF60452891237FBDB9F7AF85B56F8C36B81D89D2BD6BC39F3016D649A1E0E1E73BCBD0\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t30DA4DEA403A4DAC8958A88F3EBC3EF34D299D3010C93DAC186DA8C6D809EB73A2F3A2BA8372BD71\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2066EE915FD2C1D6E8997602BB4EE19C9171E9869718881657CC416425F2FA61E02A2F2CA32DD18F\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t4B8BC6B7E878B4BDA474221B066D309D252F3735BB1F557432EAFFDB789BA698B83F7DC79B1FF113\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tA4824D74BEBCF054B7B8E804D61F89D1E157E6DE2FA8BAF31061746164020000007473727062696C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t7A7F10000048B5000078DAED5DD972DAC81A9E739BA75071EB2268979872328531D88E8D8D6DBC64\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2A378D6840415BB4E0E5BDCEFB9D1608A95B0283B04D77723C55A9B15AE2EF4FFFF275FFBD893BEB\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tDCFFE7AFBFFEDAFF2FFAF7CFA36D7153E807A6EB7CA9089FF90A071DC31D98CEE84BE5A6D7AEEA15\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2E0881330096EBC02F15C7AD70FF7CFDB43FF2ABA613847E644327AC1AE3C89970FDC8B4065527B2\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFBD0FF52413F345CDB43BF420F78C09854CD01AAA1AEF1725DD575B1C20D7D60C307D79FDF4135DB\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tE0A7EB5753340A2A310DDFCD4AC4B8C4C19F41259E0F03B8A28AD0B411E8DE38E23AC0E70499E3F9\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tBF25E56F5EE3445E942B5F3F7DE2B8FDC08D9C41750042D00701E44696DB0756D586A1EF3AAE3D43\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t3636512555DB1DC039507360A297068E032D54A15AA9CD2521ADF80806A650540587FEDB1F9A8FD5\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t541D0187945435436807E811397926FF1417BF8C5EE77954A103E2F7B83A4D1F450FC70F5A308459\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t5152B8FAD75C14C5C57DF94E734279A4F3EAE0513E506BFEFD45EFF2CB970A2E0A17561D4526790F\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tDD9D9AF00133317A1BCF0221ACF68133F952A92CBB3507127B94EBC3413596902855AE70F9ABC0EC\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t5BE8EF21B002182B98A8BCF602360C378806A6CB61DE52780B0FC45E18A22790E3035423FA4DE8DA\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t209CFD20561E3255F6506CD2382042D3201E140A9271D93363988D85254E9C38A40CD83042730AD1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tBB022B9A3956510692123B258680F3A1ED225DDAE07106667169CEE0D696C0A8A53F2EBC7D762B58\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tADE09912092FCB6E62FE582B3AE47E1A9B7E9822DBAF116EFE82F3ABB8F79A23EED475504C5A2583\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t60959424189E27A796A5CB809FEC89C36321742E7F3D9F3F500D0681080681E160E05704438D456F\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t92963B02279675A8D582129FBA3DF2AE1CD0BAB527D0D7BFC907C1C9D13777F441B01F04CB5648E8\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAB3C592ADBD1582D28098948897EFD6A1F0C3B13F0746CF4ADCE15989A1F21F111128C8584883972\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6366C913A764302C159184414DDBEBB52E1E34EBE6947FF8D97EB8BA6F8D60E3A3B7F1C7F536048C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t0F514A58D285F2BF4EBCC7391DDE2AAD561DDEEC7D9BB6BB570DA17D187E246E4BBC47287A8FB62D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t89621CEA452177044C27E3CFCFCACE19B400F06801F008D98ABB706A17C3618A50A08FAF47E0EB8D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t51608D5D6B80299101909DDB05CA0E08E2C25BD78A6CACA5FCACAB8AA4EAF4919E2D809E99B61917\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tE62CCE3300B1996284C3906BCE87CA58F2C9AB26D65D1D17217E748CF2E9333E96D8031E3C84C684\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t13CAE6CE2BA4240DDCF5DD483ABB777C97B783BDEEC3081E9D5F34FEA0062E446F3C406F2C80A880\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t7A712F76B182E794691AB7691CEB4B1BC715414046929586BAEB7A6BE2E70D22684D9817E0853075\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t37646C37E3209E1D887E0AD1074EE0B90164508F510A327218C4E74D17F88A0DB7ACAA022B38FD14\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tE715345C7F90EF673003D4EC626307D00FB9AE1B98312FB0677B2BC03988BB0E5113C7204A48A06C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t3903EA465FDDE758D3EB886FAF68CC769661CB02D697B8361194314ACDB859965636DF7E51D662DA\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tB4CEF77B6763ED27FFB4F7F4EC01F7B0D9F84E77A688273A273CC3D9B7C06FDCC3C885CD2DBF92D8\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t19C8BD5BC2025DEB119539C05A380D3BB9CE9998658C28B57558CA143B529A764721642A8795F11C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t96A9DC5521725796A0B5D505B4B669A142816BA268676B70A2AD9118C53C4616F4A89318990A8C7A\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tD68F41C9FBC1DDFFC9A009212058F411AA664CF7D515CFBDAE357B95E6566AEDF52DD84E709568B5\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t768267E3966A37DAD9B475DA099ACD5BA49DC0D9A215DA0DAEF22DCF6E706DDEDAECC6B94BB430EF\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t0168BFB611BDA35F178B374F60657C283C7290DACB25ADC5DF2789AA7463C853EF58EADCDCB5AD67\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tF1AC7F3738EFD31D451789445564385155B7CD53DB6E1A44AE3F61A9C3D64B47F27A486D5CD70C8D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t718A4FADD3071884BEE184E9F04BE8BB7D586BC62BE55952E3C02B3B4CBF5378FE301B581E421F3A\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t46064F9619001874B201362B26B10E2283DF2F7788A7EA62B6E516836E352AA39FF82AB34EB25705\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t961DF65C2E2469463ACFD7F072EAF5021E8A9D2BEDDF132F8AE0E8CF59ABB6D8E10322CEB0E2DD43\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t433396D4FCFB47D77747C83338D41B82C18FA66BDBAE935C9C8378FD2477926E7E0A7E1C4566087C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2E5EF6AAA0871D94AB843F526DFEB0DC07247E0A3F3F80297A5DCB4435F5CDD006C164F60AF392F7\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tA97B6C6255DB91159A9E3557DC5CC7720DA511411C8D06CC4055E3F9786710EFE242B723CF9BFFB5\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tEB396965FB39E9EE433AA5BAD172280AB341D74ECA864F8EC11EBE9EEDAD9A38AFB382B1132D4DC9\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t99D1E1AD5572EA82F119BF8C31DF76306D21174FB3125E9C3333A2A66A4A98048F61E4953C218B75\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tB9AE6A625DD980C55EE3F4EF93792ED3C59BA59C2ABE19AE617B0D07584F41E9CC73A598A4E73014\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t8781DFB56BA309F87EFECBAAABD0150E1B1FEB94FFB855EE8A82394277266AB19EA59C47BD2028F1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t29FFB67FA4FDDB1AEF4D54DD7954DBFCBFED27F3F263F6FD8DBB52F98ED4EDCA164C9644FA39E561\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t8AEFD07FDA6C29D54EF1DDA5F8EE308F66075FE73EED41998F2C01EBDE636CC0C59B603884D07446\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFF8F938D339155B7C43463C9B8DDC9A87EC958DDCDA4DE86FEBF1330DBF8FC4E809564B1F7E918AF\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t098257F68C357ED9C684B24703AC9292F4617E9E9C5F0DC1D3CFCBD6DEF331B818B435EF60FC076E\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F1059DBDEA06E3F94F4BBAC2B677C1B86798D0F77713D979B6FB3FB584CFEC72C26FF6DB63ABCC9\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAA7791CEAAF73ABE812ED9A9DABE2FD94CAD1092B45287AD275F748FDCCBD6C550BEE81D98CDD3EF\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tC6C7E8CD86EBDCB7DD655E76CA82CD99D1ECAEE13A2130E37952633E2D559DD9CCB4CCF0291DF7CA\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t8EC45BD61344D68EAC9906077DCE7490ACECE03F792100151BF123412A1429DD4771E3BB0FF332CC\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tBEF91AC66E10628642D514EC29BCFBFC6EAE30D1F8BEE33AD565378AB3B812BE79A58DC2996BBAF1\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t40F63C9CF58BD371BBEF5E7D6B0158BB1F4CFF958FBE37C96D2BAB43794D181FC50BFF5646F2C9F9\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t496F7D34E3B3B8A11F11C1BC3290370DE2F71A2A7B45F0EE24633BE189432BF0892741E5653AA02E\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t84ACCD99C0C8A3BFF6B991AE316E84E1ECA015BA66BB56F03D68CD3171D4C88EF2EC65D4BF92F697\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tD0617E641F5FA678008280EBFAEE829BC657DAF773DB78762762E8346B525D6AFF14466FC64D5C3B\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t1ED459C94F87275C0C68FD7A45C6284A94FF088E6A36AEAFB1457FD0872EED81AED5A3A68AC0AB1A\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t1D50D8F13EC4C943425DA184E8301BC87DF930B99DA039C0D905D38FA64B5A9DD2B07236AA3CA0DF\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tCAD96D0C0ED7F6E1AF083AC6133E27A04B3A1D6CBD6C4D2DEC5B0C6C878AD2E3956EACD007DC1975\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t52EAA7BC7DE0B3B0BB263A2635746CD2D6D0A89552A40FBCB16970AD4BDA5A92D34E8FCC73C7CF38\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2F89525DA503AA9E82AAE740518A36414F11A13F99802465DD55F427094942C99344079692C152F2\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tB04445E4691930351F3761C17A694227B28127DDA629E7F008AA56A7D47D13B298E3495474F0C0CB\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t74A2A075C9B1B22FFA484E7B714757F2BACD2ABF452E2E08F8C07F3339A3FBCA756D3C293FBB1B1D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t1D3BFA61F706886DF99B09EF7FF9B959EA1D0F18AEDE3DC840365EFF33460CB3534521F0A96FB67F\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t61D25D17244ABC3912F04C3C3EB592AEC946228147A4CF99238940243180482610C90C205208440A\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t0388540291CA00228D40A43180482710E9F41179291B75014E46F40089382006D8C89370400C9091\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t27E38018E0224FC1013140459E8A036280893C0D07C40011793A0E88011EB2057C13264E4494F088\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t041E913A1EE2DC289C8628E191093C32753C0A8147A18E4725F0A8D4F168041E8D3A1E9DC0A3D3C6\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t13A4FC73ED5A2E7DFE0944020F75FE0924020F75FE0964020F75FE0914020F75FE0954020F75FE09\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t34020F75FE0974020F75FEF1CC2C111BA3FA4E9C297D12F24CB1004AA40F4A2A8092E883920BA064\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFAA0940228853E28B5004AA50F4A2B80D2E883D20BA0E8F3D498E42906486A4C9214030C3526198A\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t017A1A93F4C400378D496E628098C6243131C04A63929518A0A4314949F4F9C84FE96836014D9D8D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t7C91C0439D8B7C89C0439D897C99C0439D877C85C0439D857C95C0439D837C8DC0439D817C9DC043\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t9F7F6C9280D818BDF66DB1888A3E17D95211157D46B2E5222AFABC642B4554F4D9C9568BA8E87394\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAD1551D1672A5B2FA2A23FCECDD85E29906E9D34A97F30A2BF620B902C6A12A5CDAEE1EA8D2DAAAC\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t50DA6DD304FDB4D1437F9B0E0CE937791DD3C8A6904D8301405D372010A16BFAA890BDC4BCED44EA\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tE7A79986886B4A64C17662DE762203B693F2B69318B09D846B4A62C17652DE761203B693F3B69319\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tB09D8C6B4A66C17672DE763203B653F2B65318B09D826B4A61C1764ADE760A03B653F3B65319B09D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t8A6B4A65C1766ADE762A03B6D3F2B6D318B09D866B4A63C1765ADE761A03B6D3F3B6D319B09D8E6B\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t4A67C1767ADE76FA6FB64170BFB6FC90B1FDDAC8AFFAC0987CFD145FF91058A1694363BE6170D0CF\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t36CF2DDC613FB967417F0042307B57543434478B63DA92BBF17165156C7BE2A29CB35C63323FC26D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t3EF072CA75E10058D87EBBD9DD180B9CC6AF36DBEDABCBF1817B963BBF44F7437734B2C8CF72BD5C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tCBA9694C0EDD07674D45BC266115095945C2A6155D3FC4DFDDE384972B1278B98E55246E5F91B8A6\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t228957B08AA4ED2B92D654A4A8B88DE4ED2B92D754A40B1A5691B2614542B12285A848283803AE38\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t15AF063FFE2FA58B2C1A89CF5BA0FF4D2BC91ED3F9776DC0633565590E1141352593E45B7348D333\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tB1E94999C91983916FC5572118C56763A3789E5FF92398C5C5FC6AF1C3C56564F7E398ACE21AAA65\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2A2AA535758DD674DC0DB46DD5760E1FC3926A1319545BF2C1D69714A648B83BEBA5159654514A55\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t3CA92AE2438D1B6A6D7EDE1BA1B8F8CB8F39D5BD85C3E92FEB4FABE3945D2FAD3FEC8388AFD1610F\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t781BEB2EF92023A1BC9EF77AE5E1649A7EE57DD6BEAE6B8F4449C4DB23619B263657E39A86495474\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t9C5F05A16C8DE7F0814BCE3678D941F02F8565F589E5036D71D0BFF03A4FE95AE069635751EB4557\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tF1AC72AE8297E4BA6DC90300224CE89537E8C4CD2B2E74DF62C5623DB3EC5B494B4EE55D252AEBA3\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tCDA509A434A19CB4AC23369726BE853471214D7A0B69D2429AFC16D2E48534E52DA4290B69EA4BD2\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t88933766E2669E4EC447D2A7293AE8BCE60DF1A80B3CDA9BE011B7C39334B67324FA5BE8595F48AB\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tBF4A5A91EE93187A5D4816393D112B6C2F9620EE44DC26C1B95F4B682AB97CB773C3F7E749FA923C\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t58AE148FDCA9CE5B1ACB0C42E8C4197F5C49AE2CF67FD2351358D5988F33F9E48927FB89DAB2AAB2\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t8E57C6D255BCEFB861BB54A2DB96C4078EF7ADDE24E9062D7B95FA76AFF27227EA1D5F2569A697BD\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t4AECDBDBBCCBCBADFC0BEF820F0CE5FC307D247080178CDD101F4F4ACB661E9C5EAD0EEE5A4ECA7E\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t2D173849F146C7EFA7529307676732659DB1ECE7A936F8B547DFD7CA0B15B5B5E7636D25555D88BD\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tBE1B4967F78EEFF276B0D77D18C1A3F38BC6966295B5076C6F8355D7D77E1A7E0BB1129FAAA05FE7\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFBBDB3B1F6937FDA7B7AF6807BD86C7CDFD65E71F6B7E6B35BDB8855D3AF794937863CF58EA5CECD\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t5DDB7A16CFFA7783F3FE9662255D5AFBF9956DD02AA9D73AA7C35BA5D5AAC39BBD6FD376F7AA21B4\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t0FC36D95A0A86B3FCB9AB6CD85209F8F30170695E763CDA84E1073566D7E89EA48F2126EE8FAB60D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t1C308A11A49F7D891F0288EAA6B03A4B954038E692EB249172FD01EAA9642336644A9588C09F359D\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t11EA1F20AE9E3168EDEB6C34DC7482D08FECD9974DC69133F9FAE97FA5FADBE06174616402000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t444E535362696C7A160000001000000078DA63626060D0F5F4D33575CFF40332190011A50227\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"Name":{"_attributes":{"Value":""}},"PluginVersion":{"_attributes":{"Value":"1"}},"UniqueId":{"_attributes":{"Value":"1315522357"}},"ByteOrder":{"_attributes":{"Value":"2"}},"PresetRef":{}}},"Version":{"_attributes":{"Value":"1"}},"VstVersion":{"_attributes":{"Value":"2400"}},"IsShellClient":{"_attributes":{"Value":"false"}},"Category":{"_attributes":{"Value":"1"}},"PresetDirectory":{"Type":{"_attributes":{"Value":"0"}},"Data":{}}}},"MpeEnabled":{"_attributes":{"Value":"false"}},"ParameterList":{"PluginFloatParameter":[{"_attributes":{"Id":"0"},"ParameterName":{"_attributes":{"Value":"P099"}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24848"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24849"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"1"},"ParameterName":{"_attributes":{"Value":"Tun.Silent Mode"}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24850"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24851"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"2"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24852"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24853"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"3"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24854"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24855"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"4"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24856"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24857"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"5"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24858"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24859"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"6"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24860"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24861"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"7"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24862"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24863"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"8"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24864"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24865"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"9"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24866"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24867"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"10"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24868"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24869"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"11"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24870"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24871"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"12"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24872"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24873"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"13"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24874"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24875"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"14"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24876"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24877"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"15"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24878"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24879"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"16"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24880"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24881"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"17"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24882"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24883"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"18"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24884"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24885"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"19"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24886"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24887"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"20"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24888"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24889"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"21"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24890"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24891"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"22"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24892"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24893"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"23"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24894"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24895"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"24"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24896"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24897"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"25"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24898"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24899"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"26"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24900"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24901"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"27"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24902"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24903"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"28"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24904"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24905"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"29"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24906"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24907"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"30"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24908"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24909"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"31"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24910"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24911"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"32"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24913"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"33"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24914"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24915"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"34"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24916"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24917"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"35"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24918"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24919"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"36"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24920"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24921"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"37"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24923"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"38"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24924"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24925"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"39"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24926"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24927"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"40"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24928"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24929"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"41"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24930"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24931"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"42"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24932"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24933"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"43"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24934"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24935"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"44"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24936"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24937"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"45"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24938"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24939"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"46"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24940"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24941"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"47"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24942"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24943"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"48"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24944"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24945"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"49"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24946"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24947"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"50"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24948"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24949"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"51"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24950"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24951"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"52"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24952"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24953"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"53"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24954"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24955"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"54"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24956"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24957"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"55"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24958"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24959"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"56"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24960"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24961"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"57"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24962"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24963"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"58"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24964"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24965"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"59"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24966"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24967"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"60"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24968"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24969"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"61"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24970"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24971"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"62"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24972"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24973"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"63"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24974"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24975"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"64"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24976"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24977"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"65"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24978"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24979"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"66"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24980"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24981"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"67"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24982"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24983"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"68"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24984"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24985"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"69"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24986"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24987"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"70"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24988"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24989"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"71"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24991"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"72"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24992"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24993"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"73"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24994"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24995"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"74"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24996"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24997"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"75"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"24998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24999"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"76"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25001"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"77"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25002"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25003"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"78"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25004"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25005"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"79"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25007"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"80"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25008"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25009"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"81"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25011"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"82"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25013"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"83"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25015"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"84"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25017"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"85"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25019"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"86"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25020"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25021"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"87"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25022"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25023"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"88"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25024"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25025"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"89"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25026"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25027"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"90"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25028"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25029"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"91"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25030"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25031"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"92"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25032"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25033"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"93"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25034"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25035"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"94"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25036"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25037"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"95"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25038"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25039"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"96"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25040"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25041"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"97"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25042"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25043"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"98"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25044"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25045"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"99"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25046"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25047"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"100"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25048"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25049"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"101"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25050"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25051"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"102"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25052"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25053"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"103"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25054"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25055"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"104"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25056"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25057"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"105"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25058"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25059"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"106"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25060"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25061"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"107"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25063"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"108"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25064"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25065"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"109"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25066"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25067"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"110"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25069"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"111"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25070"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25071"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"112"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25072"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25073"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"113"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25074"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25075"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"114"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25076"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25077"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"115"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25078"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25079"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"116"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25081"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"117"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25082"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25083"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"118"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25084"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25085"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"119"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25086"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25087"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"120"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25088"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25089"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"121"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25090"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25091"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"122"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25093"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"123"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25095"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"124"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25097"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"125"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25099"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"126"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25100"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25101"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},{"_attributes":{"Id":"127"},"ParameterName":{"_attributes":{"Value":""}},"ParameterId":{"_attributes":{"Value":"-1"}},"VisualIndex":{"_attributes":{"Value":"1073741823"}},"ParameterValue":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1234567687"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25102"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25103"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}]},"AxisX":{"_attributes":{"Value":"0"}},"AxisY":{"_attributes":{"Value":"0"}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"25104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"25105"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25106"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"25107"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"25108"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}}}}}},{"_attributes":{"Id":"16"},"LomId":{"_attributes":{"Value":"7"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"CP73"}},"UserName":{"_attributes":{"Value":"CP73"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"150"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"68"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19498"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19499"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19500"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19501"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19502"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19503"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19505"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19507"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19508"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19509"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"19510"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19511"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"19512"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19513"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"19514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"19515"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"19516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"19517"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"19518"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19519"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"19520"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"19521"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"19522"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"19523"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"19524"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{}}}}],"MidiTrack":[{"_attributes":{"Id":"15"},"LomId":{"_attributes":{"Value":"3"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Structure"}},"UserName":{"_attributes":{"Value":"Structure"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"157"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"170"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19113"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19114"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19115"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19116"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19117"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19118"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19119"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19120"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19121"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"19122"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19123"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"19124"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"19125"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"19126"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19127"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"ClipTimeable":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{"MidiClip":[{"_attributes":{"Id":"8","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"48"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"22"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"16"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"6","Time":"48"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"48"}},"CurrentEnd":{"_attributes":{"Value":"80"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"19"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"7","Time":"80"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"80"}},"CurrentEnd":{"_attributes":{"Value":"112"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"22"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"9","Time":"112"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"112"}},"CurrentEnd":{"_attributes":{"Value":"144"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"19"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"10","Time":"144"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"144"}},"CurrentEnd":{"_attributes":{"Value":"176"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Refrain"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"1"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.00134372715186259614"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"11","Time":"176"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"176"}},"CurrentEnd":{"_attributes":{"Value":"208"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"22"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"16"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"12","Time":"208"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"208"}},"CurrentEnd":{"_attributes":{"Value":"240"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"19"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"16"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"13","Time":"240"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"240"}},"CurrentEnd":{"_attributes":{"Value":"272"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"22"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"14","Time":"272"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"272"}},"CurrentEnd":{"_attributes":{"Value":"304"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"19"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"16","Time":"304"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"304"}},"CurrentEnd":{"_attributes":{"Value":"336"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Refrain"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"1"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.00134372715186259614"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}},{"_attributes":{"Id":"15","Time":"336"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"336"}},"CurrentEnd":{"_attributes":{"Value":"368"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"16"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"16"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"22"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0.0013437271919087882"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"1"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"2146"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-922"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}}]},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"0"}}},"MidiControllers":{"ControllerTargets.0":{"_attributes":{"Id":"19128"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.1":{"_attributes":{"Id":"19129"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.2":{"_attributes":{"Id":"19130"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.3":{"_attributes":{"Id":"19131"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.4":{"_attributes":{"Id":"19132"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.5":{"_attributes":{"Id":"19133"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.6":{"_attributes":{"Id":"19134"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.7":{"_attributes":{"Id":"19135"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.8":{"_attributes":{"Id":"19136"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.9":{"_attributes":{"Id":"19137"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.10":{"_attributes":{"Id":"19138"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.11":{"_attributes":{"Id":"19139"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.12":{"_attributes":{"Id":"19140"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.13":{"_attributes":{"Id":"19141"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.14":{"_attributes":{"Id":"19142"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.15":{"_attributes":{"Id":"19143"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.16":{"_attributes":{"Id":"19144"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.17":{"_attributes":{"Id":"19145"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.18":{"_attributes":{"Id":"19146"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.19":{"_attributes":{"Id":"19147"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.20":{"_attributes":{"Id":"19148"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.21":{"_attributes":{"Id":"19149"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.22":{"_attributes":{"Id":"19150"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.23":{"_attributes":{"Id":"19151"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.24":{"_attributes":{"Id":"19152"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.25":{"_attributes":{"Id":"19153"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.26":{"_attributes":{"Id":"19154"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.27":{"_attributes":{"Id":"19155"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.28":{"_attributes":{"Id":"19156"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.29":{"_attributes":{"Id":"19157"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.30":{"_attributes":{"Id":"19158"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.31":{"_attributes":{"Id":"19159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.32":{"_attributes":{"Id":"19160"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.33":{"_attributes":{"Id":"19161"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.34":{"_attributes":{"Id":"19162"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.35":{"_attributes":{"Id":"19163"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.36":{"_attributes":{"Id":"19164"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.37":{"_attributes":{"Id":"19165"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.38":{"_attributes":{"Id":"19166"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.39":{"_attributes":{"Id":"19167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.40":{"_attributes":{"Id":"19168"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.41":{"_attributes":{"Id":"19169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.42":{"_attributes":{"Id":"19170"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.43":{"_attributes":{"Id":"19171"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.44":{"_attributes":{"Id":"19172"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.45":{"_attributes":{"Id":"19173"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.46":{"_attributes":{"Id":"19174"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.47":{"_attributes":{"Id":"19175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.48":{"_attributes":{"Id":"19176"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.49":{"_attributes":{"Id":"19177"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.50":{"_attributes":{"Id":"19178"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.51":{"_attributes":{"Id":"19179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.52":{"_attributes":{"Id":"19180"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.53":{"_attributes":{"Id":"19181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.54":{"_attributes":{"Id":"19182"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.55":{"_attributes":{"Id":"19183"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.56":{"_attributes":{"Id":"19184"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.57":{"_attributes":{"Id":"19185"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.58":{"_attributes":{"Id":"19186"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.59":{"_attributes":{"Id":"19187"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.60":{"_attributes":{"Id":"19188"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.61":{"_attributes":{"Id":"19189"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.62":{"_attributes":{"Id":"19190"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.63":{"_attributes":{"Id":"19191"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.64":{"_attributes":{"Id":"19192"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.65":{"_attributes":{"Id":"19193"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.66":{"_attributes":{"Id":"19194"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.67":{"_attributes":{"Id":"19195"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.68":{"_attributes":{"Id":"19196"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.69":{"_attributes":{"Id":"19197"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.70":{"_attributes":{"Id":"19198"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.71":{"_attributes":{"Id":"19199"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.72":{"_attributes":{"Id":"19200"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.73":{"_attributes":{"Id":"19201"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.74":{"_attributes":{"Id":"19202"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.75":{"_attributes":{"Id":"19203"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.76":{"_attributes":{"Id":"19204"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.77":{"_attributes":{"Id":"19205"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.78":{"_attributes":{"Id":"19206"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.79":{"_attributes":{"Id":"19207"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.80":{"_attributes":{"Id":"19208"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.81":{"_attributes":{"Id":"19209"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.82":{"_attributes":{"Id":"19210"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.83":{"_attributes":{"Id":"19211"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.84":{"_attributes":{"Id":"19212"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.85":{"_attributes":{"Id":"19213"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.86":{"_attributes":{"Id":"19214"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.87":{"_attributes":{"Id":"19215"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.88":{"_attributes":{"Id":"19216"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.89":{"_attributes":{"Id":"19217"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.90":{"_attributes":{"Id":"19218"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.91":{"_attributes":{"Id":"19219"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.92":{"_attributes":{"Id":"19220"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.93":{"_attributes":{"Id":"19221"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.94":{"_attributes":{"Id":"19222"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.95":{"_attributes":{"Id":"19223"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.96":{"_attributes":{"Id":"19224"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.97":{"_attributes":{"Id":"19225"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.98":{"_attributes":{"Id":"19226"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.99":{"_attributes":{"Id":"19227"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.100":{"_attributes":{"Id":"19228"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.101":{"_attributes":{"Id":"19229"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.102":{"_attributes":{"Id":"19230"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.103":{"_attributes":{"Id":"19231"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.104":{"_attributes":{"Id":"19232"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.105":{"_attributes":{"Id":"19233"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.106":{"_attributes":{"Id":"19234"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.107":{"_attributes":{"Id":"19235"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.108":{"_attributes":{"Id":"19236"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.109":{"_attributes":{"Id":"19237"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.110":{"_attributes":{"Id":"19238"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.111":{"_attributes":{"Id":"19239"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.112":{"_attributes":{"Id":"19240"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.113":{"_attributes":{"Id":"19241"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.114":{"_attributes":{"Id":"19242"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.115":{"_attributes":{"Id":"19243"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.116":{"_attributes":{"Id":"19244"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.117":{"_attributes":{"Id":"19245"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.118":{"_attributes":{"Id":"19246"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.119":{"_attributes":{"Id":"19247"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.120":{"_attributes":{"Id":"19248"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.121":{"_attributes":{"Id":"19249"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.122":{"_attributes":{"Id":"19250"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.123":{"_attributes":{"Id":"19251"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.124":{"_attributes":{"Id":"19252"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.125":{"_attributes":{"Id":"19253"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.126":{"_attributes":{"Id":"19254"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.127":{"_attributes":{"Id":"19255"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.128":{"_attributes":{"Id":"19256"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.129":{"_attributes":{"Id":"19257"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.130":{"_attributes":{"Id":"19258"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"19259"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"19260"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"19261"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"19262"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"19263"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"19264"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{}}},"ReWireSlaveMidiTargetId":{"_attributes":{"Value":"0"}}},{"_attributes":{"Id":"13"},"LomId":{"_attributes":{"Value":"4"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Accords"}},"UserName":{"_attributes":{"Value":"Accords"}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"146"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"68"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"15979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"15980"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"15981"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"15982"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"15983"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"15984"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"15985"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"15986"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16155"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16156"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16157"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16158"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"15987"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"15988"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"15989"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"15990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"ClipTimeable":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"0"}}},"MidiControllers":{"ControllerTargets.0":{"_attributes":{"Id":"15991"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.1":{"_attributes":{"Id":"15992"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.2":{"_attributes":{"Id":"15993"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.3":{"_attributes":{"Id":"15994"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.4":{"_attributes":{"Id":"15995"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.5":{"_attributes":{"Id":"15996"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.6":{"_attributes":{"Id":"15997"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.7":{"_attributes":{"Id":"15998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.8":{"_attributes":{"Id":"15999"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.9":{"_attributes":{"Id":"16000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.10":{"_attributes":{"Id":"16001"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.11":{"_attributes":{"Id":"16002"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.12":{"_attributes":{"Id":"16003"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.13":{"_attributes":{"Id":"16004"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.14":{"_attributes":{"Id":"16005"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.15":{"_attributes":{"Id":"16006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.16":{"_attributes":{"Id":"16007"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.17":{"_attributes":{"Id":"16008"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.18":{"_attributes":{"Id":"16009"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.19":{"_attributes":{"Id":"16010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.20":{"_attributes":{"Id":"16011"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.21":{"_attributes":{"Id":"16012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.22":{"_attributes":{"Id":"16013"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.23":{"_attributes":{"Id":"16014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.24":{"_attributes":{"Id":"16015"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.25":{"_attributes":{"Id":"16016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.26":{"_attributes":{"Id":"16017"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.27":{"_attributes":{"Id":"16018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.28":{"_attributes":{"Id":"16019"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.29":{"_attributes":{"Id":"16020"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.30":{"_attributes":{"Id":"16021"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.31":{"_attributes":{"Id":"16022"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.32":{"_attributes":{"Id":"16023"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.33":{"_attributes":{"Id":"16024"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.34":{"_attributes":{"Id":"16025"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.35":{"_attributes":{"Id":"16026"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.36":{"_attributes":{"Id":"16027"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.37":{"_attributes":{"Id":"16028"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.38":{"_attributes":{"Id":"16029"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.39":{"_attributes":{"Id":"16030"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.40":{"_attributes":{"Id":"16031"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.41":{"_attributes":{"Id":"16032"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.42":{"_attributes":{"Id":"16033"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.43":{"_attributes":{"Id":"16034"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.44":{"_attributes":{"Id":"16035"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.45":{"_attributes":{"Id":"16036"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.46":{"_attributes":{"Id":"16037"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.47":{"_attributes":{"Id":"16038"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.48":{"_attributes":{"Id":"16039"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.49":{"_attributes":{"Id":"16040"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.50":{"_attributes":{"Id":"16041"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.51":{"_attributes":{"Id":"16042"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.52":{"_attributes":{"Id":"16043"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.53":{"_attributes":{"Id":"16044"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.54":{"_attributes":{"Id":"16045"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.55":{"_attributes":{"Id":"16046"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.56":{"_attributes":{"Id":"16047"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.57":{"_attributes":{"Id":"16048"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.58":{"_attributes":{"Id":"16049"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.59":{"_attributes":{"Id":"16050"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.60":{"_attributes":{"Id":"16051"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.61":{"_attributes":{"Id":"16052"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.62":{"_attributes":{"Id":"16053"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.63":{"_attributes":{"Id":"16054"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.64":{"_attributes":{"Id":"16055"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.65":{"_attributes":{"Id":"16056"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.66":{"_attributes":{"Id":"16057"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.67":{"_attributes":{"Id":"16058"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.68":{"_attributes":{"Id":"16059"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.69":{"_attributes":{"Id":"16060"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.70":{"_attributes":{"Id":"16061"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.71":{"_attributes":{"Id":"16062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.72":{"_attributes":{"Id":"16063"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.73":{"_attributes":{"Id":"16064"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.74":{"_attributes":{"Id":"16065"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.75":{"_attributes":{"Id":"16066"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.76":{"_attributes":{"Id":"16067"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.77":{"_attributes":{"Id":"16068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.78":{"_attributes":{"Id":"16069"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.79":{"_attributes":{"Id":"16070"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.80":{"_attributes":{"Id":"16071"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.81":{"_attributes":{"Id":"16072"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.82":{"_attributes":{"Id":"16073"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.83":{"_attributes":{"Id":"16074"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.84":{"_attributes":{"Id":"16075"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.85":{"_attributes":{"Id":"16076"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.86":{"_attributes":{"Id":"16077"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.87":{"_attributes":{"Id":"16078"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.88":{"_attributes":{"Id":"16079"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.89":{"_attributes":{"Id":"16080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.90":{"_attributes":{"Id":"16081"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.91":{"_attributes":{"Id":"16082"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.92":{"_attributes":{"Id":"16083"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.93":{"_attributes":{"Id":"16084"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.94":{"_attributes":{"Id":"16085"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.95":{"_attributes":{"Id":"16086"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.96":{"_attributes":{"Id":"16087"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.97":{"_attributes":{"Id":"16088"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.98":{"_attributes":{"Id":"16089"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.99":{"_attributes":{"Id":"16090"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.100":{"_attributes":{"Id":"16091"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.101":{"_attributes":{"Id":"16092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.102":{"_attributes":{"Id":"16093"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.103":{"_attributes":{"Id":"16094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.104":{"_attributes":{"Id":"16095"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.105":{"_attributes":{"Id":"16096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.106":{"_attributes":{"Id":"16097"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.107":{"_attributes":{"Id":"16098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.108":{"_attributes":{"Id":"16099"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.109":{"_attributes":{"Id":"16100"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.110":{"_attributes":{"Id":"16101"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.111":{"_attributes":{"Id":"16102"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.112":{"_attributes":{"Id":"16103"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.113":{"_attributes":{"Id":"16104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.114":{"_attributes":{"Id":"16105"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.115":{"_attributes":{"Id":"16106"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.116":{"_attributes":{"Id":"16107"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.117":{"_attributes":{"Id":"16108"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.118":{"_attributes":{"Id":"16109"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.119":{"_attributes":{"Id":"16110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.120":{"_attributes":{"Id":"16111"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.121":{"_attributes":{"Id":"16112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.122":{"_attributes":{"Id":"16113"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.123":{"_attributes":{"Id":"16114"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.124":{"_attributes":{"Id":"16115"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.125":{"_attributes":{"Id":"16116"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.126":{"_attributes":{"Id":"16117"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.127":{"_attributes":{"Id":"16118"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.128":{"_attributes":{"Id":"16119"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.129":{"_attributes":{"Id":"16120"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.130":{"_attributes":{"Id":"16121"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"16122"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"16123"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"16124"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"16125"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"16126"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"16127"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{}}},"ReWireSlaveMidiTargetId":{"_attributes":{"Value":"1"}}},{"_attributes":{"Id":"25"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"5-Drums to MIDI"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"152"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"true"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"SavedPlayingSlot":{"_attributes":{"Value":"-1"}},"SavedPlayingOffset":{"_attributes":{"Value":"0"}},"Freeze":{"_attributes":{"Value":"false"}},"VelocityDetail":{"_attributes":{"Value":"0"}},"NeedArrangerRefreeze":{"_attributes":{"Value":"true"}},"PostProcessFreezeClips":{"_attributes":{"Value":"0"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"98"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"102"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"98"}},"SelectedEnvelope":{"_attributes":{"Value":"1"}},"PreferModulationVisible":{"_attributes":{"Value":"true"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26871"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"1"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26872"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26873"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26874"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26875"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"true"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"26876"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26877"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26878"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26879"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26880"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"26881"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26882"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"26883"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26884"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"26885"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"MainSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"26886"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"MidiClip":{"_attributes":{"Id":"0","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"32"}}},"Name":{"_attributes":{"Value":"MIDI PetitPapillon_couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"12"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"32"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"5"}},"OtherTime":{"_attributes":{"Value":"5"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"true"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":[{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"100.414902","OffVelocity":"64","IsEnabled":"true","NoteId":"156"}},{"_attributes":{"Time":"1.75","Duration":"0.5","Velocity":"100.414902","OffVelocity":"64","IsEnabled":"true","NoteId":"1"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"95.5541153","OffVelocity":"64","IsEnabled":"true","NoteId":"2"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"78.8886032","OffVelocity":"64","IsEnabled":"true","NoteId":"3"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"101.829155","OffVelocity":"64","IsEnabled":"true","NoteId":"4"}},{"_attributes":{"Time":"5.75","Duration":"0.5","Velocity":"112.64299","OffVelocity":"64","IsEnabled":"true","NoteId":"5"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"6"}},{"_attributes":{"Time":"8","Duration":"0.75","Velocity":"115.746162","OffVelocity":"64","IsEnabled":"true","NoteId":"7"}},{"_attributes":{"Time":"9.75","Duration":"0.5","Velocity":"92.573204","OffVelocity":"64","IsEnabled":"true","NoteId":"8"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"108.156754","OffVelocity":"64","IsEnabled":"true","NoteId":"9"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"77.8641052","OffVelocity":"64","IsEnabled":"true","NoteId":"10"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"92.8650589","OffVelocity":"64","IsEnabled":"true","NoteId":"11"}},{"_attributes":{"Time":"13.75","Duration":"0.5","Velocity":"111.74321","OffVelocity":"64","IsEnabled":"true","NoteId":"12"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"87.9697189","OffVelocity":"64","IsEnabled":"true","NoteId":"13"}},{"_attributes":{"Time":"16","Duration":"0.5","Velocity":"77.1860962","OffVelocity":"64","IsEnabled":"true","NoteId":"14"}},{"_attributes":{"Time":"17.75","Duration":"0.5","Velocity":"75.9906006","OffVelocity":"64","IsEnabled":"true","NoteId":"15"}},{"_attributes":{"Time":"18.5","Duration":"0.5","Velocity":"91.7315063","OffVelocity":"64","IsEnabled":"true","NoteId":"16"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"120.001419","OffVelocity":"64","IsEnabled":"true","NoteId":"17"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"85.7535248","OffVelocity":"64","IsEnabled":"true","NoteId":"18"}},{"_attributes":{"Time":"21.75","Duration":"0.75","Velocity":"85.3572311","OffVelocity":"64","IsEnabled":"true","NoteId":"19"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"76.9552078","OffVelocity":"64","IsEnabled":"true","NoteId":"20"}},{"_attributes":{"Time":"24","Duration":"0.5","Velocity":"84.0270996","OffVelocity":"64","IsEnabled":"true","NoteId":"21"}},{"_attributes":{"Time":"25.75","Duration":"0.5","Velocity":"82.0584793","OffVelocity":"64","IsEnabled":"true","NoteId":"22"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"71.4400711","OffVelocity":"64","IsEnabled":"true","NoteId":"23"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"106.808319","OffVelocity":"64","IsEnabled":"true","NoteId":"24"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"117.488899","OffVelocity":"64","IsEnabled":"true","NoteId":"25"}},{"_attributes":{"Time":"29.75","Duration":"0.5","Velocity":"72.3466797","OffVelocity":"64","IsEnabled":"true","NoteId":"26"}},{"_attributes":{"Time":"30.5","Duration":"0.5","Velocity":"93.3306122","OffVelocity":"64","IsEnabled":"true","NoteId":"27"}}]},"MidiKey":{"_attributes":{"Value":"36"}}},{"_attributes":{"Id":"1"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"1","Duration":"1","Velocity":"71.9396362","OffVelocity":"64","IsEnabled":"true","NoteId":"28"}},{"_attributes":{"Time":"2.25","Duration":"0.5","Velocity":"51.9095993","OffVelocity":"64","IsEnabled":"true","NoteId":"29"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"86.6317825","OffVelocity":"64","IsEnabled":"true","NoteId":"30"}},{"_attributes":{"Time":"5","Duration":"0.5","Velocity":"64.2411423","OffVelocity":"64","IsEnabled":"true","NoteId":"33"}},{"_attributes":{"Time":"6.25","Duration":"0.25","Velocity":"52.8465042","OffVelocity":"64","IsEnabled":"true","NoteId":"34"}},{"_attributes":{"Time":"7","Duration":"0.5","Velocity":"82.9492722","OffVelocity":"64","IsEnabled":"true","NoteId":"36"}},{"_attributes":{"Time":"9","Duration":"0.5","Velocity":"82.1330414","OffVelocity":"64","IsEnabled":"true","NoteId":"38"}},{"_attributes":{"Time":"10.25","Duration":"0.25","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"157"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"41"}},{"_attributes":{"Time":"13","Duration":"0.5","Velocity":"63.6515274","OffVelocity":"64","IsEnabled":"true","NoteId":"44"}},{"_attributes":{"Time":"14.25","Duration":"0.25","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"158"}},{"_attributes":{"Time":"15","Duration":"0.5","Velocity":"85.1688919","OffVelocity":"64","IsEnabled":"true","NoteId":"47"}},{"_attributes":{"Time":"17","Duration":"1","Velocity":"71.9396362","OffVelocity":"64","IsEnabled":"true","NoteId":"159"}},{"_attributes":{"Time":"18.25","Duration":"0.25","Velocity":"51.9095993","OffVelocity":"64","IsEnabled":"true","NoteId":"160"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"86.6317825","OffVelocity":"64","IsEnabled":"true","NoteId":"161"}},{"_attributes":{"Time":"19.75","Duration":"0.25","Velocity":"51.9095993","OffVelocity":"64","IsEnabled":"true","NoteId":"169"}},{"_attributes":{"Time":"21","Duration":"0.5","Velocity":"64.2411423","OffVelocity":"64","IsEnabled":"true","NoteId":"162"}},{"_attributes":{"Time":"22.25","Duration":"0.25","Velocity":"52.8465042","OffVelocity":"64","IsEnabled":"true","NoteId":"163"}},{"_attributes":{"Time":"23","Duration":"0.5","Velocity":"82.9492722","OffVelocity":"64","IsEnabled":"true","NoteId":"164"}},{"_attributes":{"Time":"23.75","Duration":"0.25","Velocity":"51.9095993","OffVelocity":"64","IsEnabled":"true","NoteId":"170"}},{"_attributes":{"Time":"25","Duration":"0.5","Velocity":"82.1330414","OffVelocity":"64","IsEnabled":"true","NoteId":"165"}},{"_attributes":{"Time":"26.25","Duration":"0.25","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"166"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"167"}},{"_attributes":{"Time":"27.75","Duration":"0.25","Velocity":"51.9095993","OffVelocity":"64","IsEnabled":"true","NoteId":"171"}},{"_attributes":{"Time":"29","Duration":"0.5","Velocity":"82.1330414","OffVelocity":"64","IsEnabled":"true","NoteId":"172"}},{"_attributes":{"Time":"30.25","Duration":"0.25","Velocity":"85.2387009","OffVelocity":"64","IsEnabled":"true","NoteId":"173"}},{"_attributes":{"Time":"31","Duration":"0.25","Velocity":"78.3518906","OffVelocity":"64","IsEnabled":"true","NoteId":"63"}},{"_attributes":{"Time":"31.25","Duration":"0.25","Velocity":"114.180702","OffVelocity":"64","IsEnabled":"true","NoteId":"64"}},{"_attributes":{"Time":"31.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"65"}},{"_attributes":{"Time":"31.75","Duration":"0.25","Velocity":"105.735115","OffVelocity":"64","IsEnabled":"true","NoteId":"66"}}]},"MidiKey":{"_attributes":{"Value":"38"}}},{"_attributes":{"Id":"2"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"62.9107971","OffVelocity":"64","IsEnabled":"true","NoteId":"67"}},{"_attributes":{"Time":"0.5","Duration":"0.5","Velocity":"62.9107971","OffVelocity":"64","IsEnabled":"true","NoteId":"174"}},{"_attributes":{"Time":"1","Duration":"0.5","Velocity":"87.8162003","OffVelocity":"64","IsEnabled":"true","NoteId":"68"}},{"_attributes":{"Time":"1.5","Duration":"0.25","Velocity":"49.6386108","OffVelocity":"64","IsEnabled":"true","NoteId":"69"}},{"_attributes":{"Time":"1.75","Duration":"0.25","Velocity":"5.72550154","OffVelocity":"64","IsEnabled":"true","NoteId":"70"}},{"_attributes":{"Time":"2","Duration":"0.25","Velocity":"73.1877823","OffVelocity":"64","IsEnabled":"true","NoteId":"71"}},{"_attributes":{"Time":"2.25","Duration":"0.25","Velocity":"18.0506401","OffVelocity":"64","IsEnabled":"true","NoteId":"72"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"34.7870216","OffVelocity":"64","IsEnabled":"true","NoteId":"73"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"91.5604477","OffVelocity":"64","IsEnabled":"true","NoteId":"74"}},{"_attributes":{"Time":"3.5","Duration":"0.25","Velocity":"54.8430481","OffVelocity":"64","IsEnabled":"true","NoteId":"75"}},{"_attributes":{"Time":"3.75","Duration":"0.25","Velocity":"11.7390604","OffVelocity":"64","IsEnabled":"true","NoteId":"76"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"71.1627502","OffVelocity":"64","IsEnabled":"true","NoteId":"77"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"28.5143738","OffVelocity":"64","IsEnabled":"true","NoteId":"78"}},{"_attributes":{"Time":"5","Duration":"0.5","Velocity":"103.611969","OffVelocity":"64","IsEnabled":"true","NoteId":"79"}},{"_attributes":{"Time":"5.5","Duration":"0.25","Velocity":"27.062355","OffVelocity":"64","IsEnabled":"true","NoteId":"80"}},{"_attributes":{"Time":"5.75","Duration":"0.25","Velocity":"3.21974468","OffVelocity":"64","IsEnabled":"true","NoteId":"81"}},{"_attributes":{"Time":"6","Duration":"0.25","Velocity":"40.2642517","OffVelocity":"64","IsEnabled":"true","NoteId":"82"}},{"_attributes":{"Time":"6.25","Duration":"0.25","Velocity":"7.94265079","OffVelocity":"64","IsEnabled":"true","NoteId":"83"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"17.3740654","OffVelocity":"64","IsEnabled":"true","NoteId":"84"}},{"_attributes":{"Time":"7","Duration":"0.5","Velocity":"125.826286","OffVelocity":"64","IsEnabled":"true","NoteId":"85"}},{"_attributes":{"Time":"7.5","Duration":"0.25","Velocity":"24.4024372","OffVelocity":"64","IsEnabled":"true","NoteId":"86"}},{"_attributes":{"Time":"7.75","Duration":"0.25","Velocity":"5.74567699","OffVelocity":"64","IsEnabled":"true","NoteId":"87"}},{"_attributes":{"Time":"8","Duration":"0.5","Velocity":"88.8971481","OffVelocity":"64","IsEnabled":"true","NoteId":"88"}},{"_attributes":{"Time":"8.5","Duration":"0.5","Velocity":"17.9569454","OffVelocity":"64","IsEnabled":"true","NoteId":"89"}},{"_attributes":{"Time":"9","Duration":"0.5","Velocity":"94.3617935","OffVelocity":"64","IsEnabled":"true","NoteId":"90"}},{"_attributes":{"Time":"9.5","Duration":"0.25","Velocity":"25.0392113","OffVelocity":"64","IsEnabled":"true","NoteId":"91"}},{"_attributes":{"Time":"9.75","Duration":"0.25","Velocity":"2.79585862","OffVelocity":"64","IsEnabled":"true","NoteId":"92"}},{"_attributes":{"Time":"10","Duration":"0.5","Velocity":"76.5598526","OffVelocity":"64","IsEnabled":"true","NoteId":"93"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"30.8721275","OffVelocity":"64","IsEnabled":"true","NoteId":"94"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"105.728432","OffVelocity":"64","IsEnabled":"true","NoteId":"95"}},{"_attributes":{"Time":"11.5","Duration":"0.25","Velocity":"53.5991173","OffVelocity":"64","IsEnabled":"true","NoteId":"96"}},{"_attributes":{"Time":"11.75","Duration":"0.25","Velocity":"14.8880796","OffVelocity":"64","IsEnabled":"true","NoteId":"97"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"73.999321","OffVelocity":"64","IsEnabled":"true","NoteId":"98"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"28.7104816","OffVelocity":"64","IsEnabled":"true","NoteId":"99"}},{"_attributes":{"Time":"13","Duration":"0.5","Velocity":"114.872543","OffVelocity":"64","IsEnabled":"true","NoteId":"100"}},{"_attributes":{"Time":"13.5","Duration":"0.25","Velocity":"31.4353485","OffVelocity":"64","IsEnabled":"true","NoteId":"101"}},{"_attributes":{"Time":"13.75","Duration":"0.25","Velocity":"3.3987937","OffVelocity":"64","IsEnabled":"true","NoteId":"102"}},{"_attributes":{"Time":"14","Duration":"0.25","Velocity":"44.969593","OffVelocity":"64","IsEnabled":"true","NoteId":"103"}},{"_attributes":{"Time":"14.25","Duration":"0.25","Velocity":"9.43140602","OffVelocity":"64","IsEnabled":"true","NoteId":"104"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"33.2694702","OffVelocity":"64","IsEnabled":"true","NoteId":"105"}},{"_attributes":{"Time":"15","Duration":"0.25","Velocity":"124.543884","OffVelocity":"64","IsEnabled":"true","NoteId":"106"}},{"_attributes":{"Time":"15.25","Duration":"0.25","Velocity":"66.8722229","OffVelocity":"64","IsEnabled":"true","NoteId":"107"}},{"_attributes":{"Time":"15.5","Duration":"0.25","Velocity":"98.9674988","OffVelocity":"64","IsEnabled":"true","NoteId":"108"}},{"_attributes":{"Time":"15.75","Duration":"0.25","Velocity":"31.7490101","OffVelocity":"64","IsEnabled":"true","NoteId":"109"}},{"_attributes":{"Time":"16","Duration":"0.5","Velocity":"13.9135695","OffVelocity":"64","IsEnabled":"true","NoteId":"110"}},{"_attributes":{"Time":"16.5","Duration":"0.5","Velocity":"49.0963974","OffVelocity":"64","IsEnabled":"true","NoteId":"111"}},{"_attributes":{"Time":"17","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"112"}},{"_attributes":{"Time":"17.5","Duration":"0.25","Velocity":"31.2041664","OffVelocity":"64","IsEnabled":"true","NoteId":"113"}},{"_attributes":{"Time":"17.75","Duration":"0.25","Velocity":"3.67441988","OffVelocity":"64","IsEnabled":"true","NoteId":"114"}},{"_attributes":{"Time":"18","Duration":"0.25","Velocity":"72.5637436","OffVelocity":"64","IsEnabled":"true","NoteId":"115"}},{"_attributes":{"Time":"18.25","Duration":"0.25","Velocity":"12.0210514","OffVelocity":"64","IsEnabled":"true","NoteId":"116"}},{"_attributes":{"Time":"18.5","Duration":"0.5","Velocity":"25.1506653","OffVelocity":"64","IsEnabled":"true","NoteId":"117"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"61.9214325","OffVelocity":"64","IsEnabled":"true","NoteId":"118"}},{"_attributes":{"Time":"19.5","Duration":"0.25","Velocity":"31.9783325","OffVelocity":"64","IsEnabled":"true","NoteId":"119"}},{"_attributes":{"Time":"19.75","Duration":"0.25","Velocity":"11.8996096","OffVelocity":"64","IsEnabled":"true","NoteId":"120"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"80.4032516","OffVelocity":"64","IsEnabled":"true","NoteId":"121"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"23.4961891","OffVelocity":"64","IsEnabled":"true","NoteId":"122"}},{"_attributes":{"Time":"21","Duration":"0.5","Velocity":"92.6915054","OffVelocity":"64","IsEnabled":"true","NoteId":"123"}},{"_attributes":{"Time":"21.5","Duration":"0.25","Velocity":"22.6948586","OffVelocity":"64","IsEnabled":"true","NoteId":"124"}},{"_attributes":{"Time":"21.75","Duration":"0.25","Velocity":"1.85287428","OffVelocity":"64","IsEnabled":"true","NoteId":"125"}},{"_attributes":{"Time":"22","Duration":"0.25","Velocity":"39.8099899","OffVelocity":"64","IsEnabled":"true","NoteId":"126"}},{"_attributes":{"Time":"22.25","Duration":"0.25","Velocity":"9.18634415","OffVelocity":"64","IsEnabled":"true","NoteId":"127"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"27.2351589","OffVelocity":"64","IsEnabled":"true","NoteId":"128"}},{"_attributes":{"Time":"23","Duration":"0.5","Velocity":"100.575211","OffVelocity":"64","IsEnabled":"true","NoteId":"129"}},{"_attributes":{"Time":"23.5","Duration":"0.25","Velocity":"29.5666656","OffVelocity":"64","IsEnabled":"true","NoteId":"130"}},{"_attributes":{"Time":"23.75","Duration":"0.25","Velocity":"4.7724905","OffVelocity":"64","IsEnabled":"true","NoteId":"131"}},{"_attributes":{"Time":"24","Duration":"0.5","Velocity":"95.6027145","OffVelocity":"64","IsEnabled":"true","NoteId":"132"}},{"_attributes":{"Time":"24.5","Duration":"0.5","Velocity":"24.387146","OffVelocity":"64","IsEnabled":"true","NoteId":"133"}},{"_attributes":{"Time":"25","Duration":"0.5","Velocity":"93.9274445","OffVelocity":"64","IsEnabled":"true","NoteId":"134"}},{"_attributes":{"Time":"25.5","Duration":"0.25","Velocity":"24.6284542","OffVelocity":"64","IsEnabled":"true","NoteId":"135"}},{"_attributes":{"Time":"25.75","Duration":"0.25","Velocity":"2.0856328","OffVelocity":"64","IsEnabled":"true","NoteId":"136"}},{"_attributes":{"Time":"26","Duration":"0.25","Velocity":"42.3447189","OffVelocity":"64","IsEnabled":"true","NoteId":"137"}},{"_attributes":{"Time":"26.25","Duration":"0.25","Velocity":"4.98778868","OffVelocity":"64","IsEnabled":"true","NoteId":"138"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"22.3013687","OffVelocity":"64","IsEnabled":"true","NoteId":"139"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"100.993988","OffVelocity":"64","IsEnabled":"true","NoteId":"140"}},{"_attributes":{"Time":"27.5","Duration":"0.25","Velocity":"26.7739468","OffVelocity":"64","IsEnabled":"true","NoteId":"141"}},{"_attributes":{"Time":"27.75","Duration":"0.25","Velocity":"4.54751635","OffVelocity":"64","IsEnabled":"true","NoteId":"142"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"65.9812622","OffVelocity":"64","IsEnabled":"true","NoteId":"143"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"36.8582458","OffVelocity":"64","IsEnabled":"true","NoteId":"144"}},{"_attributes":{"Time":"29","Duration":"0.5","Velocity":"100.495461","OffVelocity":"64","IsEnabled":"true","NoteId":"145"}},{"_attributes":{"Time":"29.5","Duration":"0.25","Velocity":"28.9470119","OffVelocity":"64","IsEnabled":"true","NoteId":"146"}},{"_attributes":{"Time":"29.75","Duration":"0.25","Velocity":"2.27892375","OffVelocity":"64","IsEnabled":"true","NoteId":"147"}},{"_attributes":{"Time":"30","Duration":"0.25","Velocity":"36.0554504","OffVelocity":"64","IsEnabled":"true","NoteId":"148"}},{"_attributes":{"Time":"30.25","Duration":"0.25","Velocity":"5.64585114","OffVelocity":"64","IsEnabled":"true","NoteId":"149"}},{"_attributes":{"Time":"30.5","Duration":"0.25","Velocity":"48.1014938","OffVelocity":"64","IsEnabled":"true","NoteId":"150"}},{"_attributes":{"Time":"30.75","Duration":"0.25","Velocity":"7.34415531","OffVelocity":"64","IsEnabled":"true","NoteId":"151"}},{"_attributes":{"Time":"31","Duration":"0.25","Velocity":"13.7822151","OffVelocity":"64","IsEnabled":"true","NoteId":"152"}},{"_attributes":{"Time":"31.25","Duration":"0.25","Velocity":"9.70840263","OffVelocity":"64","IsEnabled":"true","NoteId":"153"}},{"_attributes":{"Time":"31.5","Duration":"0.25","Velocity":"12.0066633","OffVelocity":"64","IsEnabled":"true","NoteId":"154"}},{"_attributes":{"Time":"31.75","Duration":"0.25","Velocity":"10.7383337","OffVelocity":"64","IsEnabled":"true","NoteId":"155"}}]},"MidiKey":{"_attributes":{"Value":"42"}}}]},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"175"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"218"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"0"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"218"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"0"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"MidiClip":{"_attributes":{"Id":"1","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"1"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"32"}},"HiddenLoopStart":{"_attributes":{"Value":"-0.147970779220779225"}},"HiddenLoopEnd":{"_attributes":{"Value":"39.639793799950048"}}},"Name":{"_attributes":{"Value":"MIDI Partie bombarde"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"16"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"32"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"31"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":[{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"1"}},{"_attributes":{"Time":"1.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"2"}},{"_attributes":{"Time":"2.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"4"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"5"}},{"_attributes":{"Time":"3.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"184"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"6"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"7"}},{"_attributes":{"Time":"5.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"8"}},{"_attributes":{"Time":"6.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"10"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"11"}},{"_attributes":{"Time":"8","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"12"}},{"_attributes":{"Time":"9.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"13"}},{"_attributes":{"Time":"10.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"14"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"15"}},{"_attributes":{"Time":"11.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"16"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"17"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"18"}},{"_attributes":{"Time":"13.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"19"}},{"_attributes":{"Time":"14.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"20"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"21"}},{"_attributes":{"Time":"16","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"22"}},{"_attributes":{"Time":"17.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"23"}},{"_attributes":{"Time":"18.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"186"}},{"_attributes":{"Time":"18.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"24"}},{"_attributes":{"Time":"19.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"185"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"25"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"26"}},{"_attributes":{"Time":"21.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"27"}},{"_attributes":{"Time":"22.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"28"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"29"}},{"_attributes":{"Time":"24","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"30"}},{"_attributes":{"Time":"25.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"31"}},{"_attributes":{"Time":"26.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"32"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"33"}},{"_attributes":{"Time":"27.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"34"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"35"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"36"}},{"_attributes":{"Time":"29.75","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"37"}},{"_attributes":{"Time":"30.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"38"}},{"_attributes":{"Time":"30.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"39"}}]},"MidiKey":{"_attributes":{"Value":"36"}}},{"_attributes":{"Id":"1"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"1","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"40"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"43"}},{"_attributes":{"Time":"5","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"170"}},{"_attributes":{"Time":"7","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"171"}},{"_attributes":{"Time":"9","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"172"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"173"}},{"_attributes":{"Time":"13","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"174"}},{"_attributes":{"Time":"15","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"175"}},{"_attributes":{"Time":"17","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"176"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"177"}},{"_attributes":{"Time":"21","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"178"}},{"_attributes":{"Time":"23","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"179"}},{"_attributes":{"Time":"25","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"180"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"181"}},{"_attributes":{"Time":"29","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"182"}},{"_attributes":{"Time":"31","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"183"}}]},"MidiKey":{"_attributes":{"Value":"38"}}},{"_attributes":{"Id":"2"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"100.557137","OffVelocity":"64","IsEnabled":"false","NoteId":"78"}},{"_attributes":{"Time":"0.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"79"}},{"_attributes":{"Time":"1","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"80"}},{"_attributes":{"Time":"1.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"81"}},{"_attributes":{"Time":"1.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"82"}},{"_attributes":{"Time":"2","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"83"}},{"_attributes":{"Time":"2.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"84"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"85"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"86"}},{"_attributes":{"Time":"3.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"87"}},{"_attributes":{"Time":"3.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"88"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"89"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"90"}},{"_attributes":{"Time":"5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"91"}},{"_attributes":{"Time":"5.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"92"}},{"_attributes":{"Time":"5.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"93"}},{"_attributes":{"Time":"6","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"94"}},{"_attributes":{"Time":"6.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"95"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"96"}},{"_attributes":{"Time":"7","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"97"}},{"_attributes":{"Time":"7.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"98"}},{"_attributes":{"Time":"7.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"99"}},{"_attributes":{"Time":"8","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"100"}},{"_attributes":{"Time":"8.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"101"}},{"_attributes":{"Time":"9","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"102"}},{"_attributes":{"Time":"9.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"103"}},{"_attributes":{"Time":"9.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"104"}},{"_attributes":{"Time":"10","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"105"}},{"_attributes":{"Time":"10.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"106"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"107"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"108"}},{"_attributes":{"Time":"11.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"109"}},{"_attributes":{"Time":"11.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"110"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"111"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"112"}},{"_attributes":{"Time":"13","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"113"}},{"_attributes":{"Time":"13.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"114"}},{"_attributes":{"Time":"13.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"115"}},{"_attributes":{"Time":"14","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"116"}},{"_attributes":{"Time":"14.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"117"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"118"}},{"_attributes":{"Time":"15","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"119"}},{"_attributes":{"Time":"15.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"120"}},{"_attributes":{"Time":"15.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"121"}},{"_attributes":{"Time":"15.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"122"}},{"_attributes":{"Time":"16","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"123"}},{"_attributes":{"Time":"16.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"124"}},{"_attributes":{"Time":"17","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"125"}},{"_attributes":{"Time":"17.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"126"}},{"_attributes":{"Time":"17.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"127"}},{"_attributes":{"Time":"18","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"128"}},{"_attributes":{"Time":"18.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"129"}},{"_attributes":{"Time":"18.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"130"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"132"}},{"_attributes":{"Time":"19.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"133"}},{"_attributes":{"Time":"19.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"134"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"135"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"136"}},{"_attributes":{"Time":"21","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"137"}},{"_attributes":{"Time":"21.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"138"}},{"_attributes":{"Time":"21.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"139"}},{"_attributes":{"Time":"22","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"140"}},{"_attributes":{"Time":"22.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"141"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"142"}},{"_attributes":{"Time":"23","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"143"}},{"_attributes":{"Time":"23.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"144"}},{"_attributes":{"Time":"23.5","Duration":"0","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"145"}},{"_attributes":{"Time":"23.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"146"}},{"_attributes":{"Time":"24","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"147"}},{"_attributes":{"Time":"24.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"148"}},{"_attributes":{"Time":"25","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"149"}},{"_attributes":{"Time":"25.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"150"}},{"_attributes":{"Time":"25.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"151"}},{"_attributes":{"Time":"26","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"152"}},{"_attributes":{"Time":"26.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"153"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"154"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"155"}},{"_attributes":{"Time":"27.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"156"}},{"_attributes":{"Time":"27.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"157"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"158"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"159"}},{"_attributes":{"Time":"29","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"160"}},{"_attributes":{"Time":"29.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"161"}},{"_attributes":{"Time":"29.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"162"}},{"_attributes":{"Time":"30","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"163"}},{"_attributes":{"Time":"30.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"164"}},{"_attributes":{"Time":"30.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"165"}},{"_attributes":{"Time":"31","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"166"}},{"_attributes":{"Time":"31.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"167"}},{"_attributes":{"Time":"31.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"168"}},{"_attributes":{"Time":"31.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"169"}}]},"MidiKey":{"_attributes":{"Value":"42"}}}]},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"187"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"218"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"0"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"384"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-166"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{"MidiClip":{"_attributes":{"Id":"1","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"32"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"34.445981622544124"}},"HiddenLoopStart":{"_attributes":{"Value":"-0.0844884282384282398"}},"HiddenLoopEnd":{"_attributes":{"Value":"31.91551157176157"}}},"Name":{"_attributes":{"Value":"MIDI Refrain"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"16"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"5.2540272614622054"}},"RightTime":{"_attributes":{"Value":"32"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"32"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":[{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"1"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"2"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"3"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"4"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"5"}},{"_attributes":{"Time":"8","Duration":"0.75","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"6"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"7"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"8"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"9"}},{"_attributes":{"Time":"16","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"10"}},{"_attributes":{"Time":"18.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"11"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"12"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"13"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"14"}},{"_attributes":{"Time":"24","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"15"}},{"_attributes":{"Time":"24.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"16"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"17"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"18"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"19"}}]},"MidiKey":{"_attributes":{"Value":"36"}}},{"_attributes":{"Id":"1"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"1","Duration":"1","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"20"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"21"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"22"}},{"_attributes":{"Time":"4.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"23"}},{"_attributes":{"Time":"5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"24"}},{"_attributes":{"Time":"6.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"25"}},{"_attributes":{"Time":"7","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"26"}},{"_attributes":{"Time":"8","Duration":"1","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"27"}},{"_attributes":{"Time":"9","Duration":"1","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"28"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"29"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"30"}},{"_attributes":{"Time":"12.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"31"}},{"_attributes":{"Time":"13","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"32"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"33"}},{"_attributes":{"Time":"15","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"34"}},{"_attributes":{"Time":"15.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"35"}},{"_attributes":{"Time":"15.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"36"}},{"_attributes":{"Time":"15.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"37"}},{"_attributes":{"Time":"17","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"39"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"41"}},{"_attributes":{"Time":"21","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"43"}},{"_attributes":{"Time":"23","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"45"}},{"_attributes":{"Time":"25","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"46"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"48"}},{"_attributes":{"Time":"29","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"49"}},{"_attributes":{"Time":"31","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"50"}},{"_attributes":{"Time":"31.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"51"}},{"_attributes":{"Time":"31.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"52"}},{"_attributes":{"Time":"31.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"false","NoteId":"53"}}]},"MidiKey":{"_attributes":{"Value":"38"}}},{"_attributes":{"Id":"2"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"0","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"54"}},{"_attributes":{"Time":"0.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"55"}},{"_attributes":{"Time":"1","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"56"}},{"_attributes":{"Time":"1.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"57"}},{"_attributes":{"Time":"1.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"58"}},{"_attributes":{"Time":"2","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"59"}},{"_attributes":{"Time":"2.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"60"}},{"_attributes":{"Time":"2.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"61"}},{"_attributes":{"Time":"3","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"62"}},{"_attributes":{"Time":"3.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"63"}},{"_attributes":{"Time":"3.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"64"}},{"_attributes":{"Time":"4","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"65"}},{"_attributes":{"Time":"4.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"66"}},{"_attributes":{"Time":"5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"67"}},{"_attributes":{"Time":"5.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"68"}},{"_attributes":{"Time":"5.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"69"}},{"_attributes":{"Time":"6","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"70"}},{"_attributes":{"Time":"6.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"71"}},{"_attributes":{"Time":"6.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"72"}},{"_attributes":{"Time":"7","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"73"}},{"_attributes":{"Time":"7.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"74"}},{"_attributes":{"Time":"7.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"75"}},{"_attributes":{"Time":"8","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"76"}},{"_attributes":{"Time":"8.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"77"}},{"_attributes":{"Time":"9","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"78"}},{"_attributes":{"Time":"9.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"79"}},{"_attributes":{"Time":"10","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"80"}},{"_attributes":{"Time":"10.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"81"}},{"_attributes":{"Time":"10.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"82"}},{"_attributes":{"Time":"11","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"83"}},{"_attributes":{"Time":"11.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"84"}},{"_attributes":{"Time":"11.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"85"}},{"_attributes":{"Time":"12","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"86"}},{"_attributes":{"Time":"12.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"87"}},{"_attributes":{"Time":"13","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"88"}},{"_attributes":{"Time":"13.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"89"}},{"_attributes":{"Time":"13.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"90"}},{"_attributes":{"Time":"14","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"91"}},{"_attributes":{"Time":"14.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"92"}},{"_attributes":{"Time":"14.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"93"}},{"_attributes":{"Time":"15","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"94"}},{"_attributes":{"Time":"15.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"95"}},{"_attributes":{"Time":"15.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"96"}},{"_attributes":{"Time":"15.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"97"}},{"_attributes":{"Time":"16","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"98"}},{"_attributes":{"Time":"16.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"99"}},{"_attributes":{"Time":"17","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"100"}},{"_attributes":{"Time":"17.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"101"}},{"_attributes":{"Time":"17.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"102"}},{"_attributes":{"Time":"18","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"103"}},{"_attributes":{"Time":"18.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"104"}},{"_attributes":{"Time":"18.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"105"}},{"_attributes":{"Time":"19","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"106"}},{"_attributes":{"Time":"19.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"107"}},{"_attributes":{"Time":"19.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"108"}},{"_attributes":{"Time":"20","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"109"}},{"_attributes":{"Time":"20.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"110"}},{"_attributes":{"Time":"21","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"111"}},{"_attributes":{"Time":"21.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"112"}},{"_attributes":{"Time":"21.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"113"}},{"_attributes":{"Time":"22","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"114"}},{"_attributes":{"Time":"22.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"115"}},{"_attributes":{"Time":"22.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"116"}},{"_attributes":{"Time":"23","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"117"}},{"_attributes":{"Time":"23.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"118"}},{"_attributes":{"Time":"23.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"119"}},{"_attributes":{"Time":"24","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"120"}},{"_attributes":{"Time":"24.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"121"}},{"_attributes":{"Time":"25","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"122"}},{"_attributes":{"Time":"25.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"123"}},{"_attributes":{"Time":"25.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"124"}},{"_attributes":{"Time":"26","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"125"}},{"_attributes":{"Time":"26.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"126"}},{"_attributes":{"Time":"26.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"127"}},{"_attributes":{"Time":"27","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"128"}},{"_attributes":{"Time":"27.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"129"}},{"_attributes":{"Time":"27.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"130"}},{"_attributes":{"Time":"28","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"131"}},{"_attributes":{"Time":"28.5","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"132"}},{"_attributes":{"Time":"29","Duration":"0.5","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"133"}},{"_attributes":{"Time":"29.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"134"}},{"_attributes":{"Time":"29.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"135"}},{"_attributes":{"Time":"30","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"136"}},{"_attributes":{"Time":"30.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"137"}},{"_attributes":{"Time":"30.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"138"}},{"_attributes":{"Time":"30.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"139"}},{"_attributes":{"Time":"31","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"140"}},{"_attributes":{"Time":"31.25","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"141"}},{"_attributes":{"Time":"31.5","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"142"}},{"_attributes":{"Time":"31.75","Duration":"0.25","Velocity":"127","OffVelocity":"64","IsEnabled":"true","NoteId":"143"}}]},"MidiKey":{"_attributes":{"Value":"42"}}}]},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"144"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"218"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"0"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"218"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"0"}}}}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"ClipTimeable":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"0"}}},"MidiControllers":{"ControllerTargets.0":{"_attributes":{"Id":"26887"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.1":{"_attributes":{"Id":"26888"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.2":{"_attributes":{"Id":"26889"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.3":{"_attributes":{"Id":"26890"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.4":{"_attributes":{"Id":"26891"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.5":{"_attributes":{"Id":"26892"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.6":{"_attributes":{"Id":"26893"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.7":{"_attributes":{"Id":"26894"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.8":{"_attributes":{"Id":"26895"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.9":{"_attributes":{"Id":"26896"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.10":{"_attributes":{"Id":"26897"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.11":{"_attributes":{"Id":"26898"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.12":{"_attributes":{"Id":"26899"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.13":{"_attributes":{"Id":"26900"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.14":{"_attributes":{"Id":"26901"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.15":{"_attributes":{"Id":"26902"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.16":{"_attributes":{"Id":"26903"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.17":{"_attributes":{"Id":"26904"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.18":{"_attributes":{"Id":"26905"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.19":{"_attributes":{"Id":"26906"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.20":{"_attributes":{"Id":"26907"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.21":{"_attributes":{"Id":"26908"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.22":{"_attributes":{"Id":"26909"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.23":{"_attributes":{"Id":"26910"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.24":{"_attributes":{"Id":"26911"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.25":{"_attributes":{"Id":"26912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.26":{"_attributes":{"Id":"26913"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.27":{"_attributes":{"Id":"26914"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.28":{"_attributes":{"Id":"26915"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.29":{"_attributes":{"Id":"26916"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.30":{"_attributes":{"Id":"26917"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.31":{"_attributes":{"Id":"26918"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.32":{"_attributes":{"Id":"26919"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.33":{"_attributes":{"Id":"26920"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.34":{"_attributes":{"Id":"26921"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.35":{"_attributes":{"Id":"26922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.36":{"_attributes":{"Id":"26923"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.37":{"_attributes":{"Id":"26924"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.38":{"_attributes":{"Id":"26925"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.39":{"_attributes":{"Id":"26926"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.40":{"_attributes":{"Id":"26927"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.41":{"_attributes":{"Id":"26928"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.42":{"_attributes":{"Id":"26929"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.43":{"_attributes":{"Id":"26930"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.44":{"_attributes":{"Id":"26931"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.45":{"_attributes":{"Id":"26932"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.46":{"_attributes":{"Id":"26933"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.47":{"_attributes":{"Id":"26934"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.48":{"_attributes":{"Id":"26935"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.49":{"_attributes":{"Id":"26936"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.50":{"_attributes":{"Id":"26937"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.51":{"_attributes":{"Id":"26938"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.52":{"_attributes":{"Id":"26939"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.53":{"_attributes":{"Id":"26940"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.54":{"_attributes":{"Id":"26941"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.55":{"_attributes":{"Id":"26942"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.56":{"_attributes":{"Id":"26943"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.57":{"_attributes":{"Id":"26944"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.58":{"_attributes":{"Id":"26945"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.59":{"_attributes":{"Id":"26946"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.60":{"_attributes":{"Id":"26947"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.61":{"_attributes":{"Id":"26948"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.62":{"_attributes":{"Id":"26949"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.63":{"_attributes":{"Id":"26950"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.64":{"_attributes":{"Id":"26951"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.65":{"_attributes":{"Id":"26952"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.66":{"_attributes":{"Id":"26953"},"LockEnvelope":{"_attributes":{"Value":"1"}}},"ControllerTargets.67":{"_attributes":{"Id":"26954"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.68":{"_attributes":{"Id":"26955"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.69":{"_attributes":{"Id":"26956"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.70":{"_attributes":{"Id":"26957"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.71":{"_attributes":{"Id":"26958"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.72":{"_attributes":{"Id":"26959"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.73":{"_attributes":{"Id":"26960"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.74":{"_attributes":{"Id":"26961"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.75":{"_attributes":{"Id":"26962"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.76":{"_attributes":{"Id":"26963"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.77":{"_attributes":{"Id":"26964"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.78":{"_attributes":{"Id":"26965"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.79":{"_attributes":{"Id":"26966"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.80":{"_attributes":{"Id":"26967"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.81":{"_attributes":{"Id":"26968"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.82":{"_attributes":{"Id":"26969"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.83":{"_attributes":{"Id":"26970"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.84":{"_attributes":{"Id":"26971"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.85":{"_attributes":{"Id":"26972"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.86":{"_attributes":{"Id":"26973"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.87":{"_attributes":{"Id":"26974"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.88":{"_attributes":{"Id":"26975"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.89":{"_attributes":{"Id":"26976"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.90":{"_attributes":{"Id":"26977"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.91":{"_attributes":{"Id":"26978"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.92":{"_attributes":{"Id":"26979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.93":{"_attributes":{"Id":"26980"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.94":{"_attributes":{"Id":"26981"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.95":{"_attributes":{"Id":"26982"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.96":{"_attributes":{"Id":"26983"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.97":{"_attributes":{"Id":"26984"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.98":{"_attributes":{"Id":"26985"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.99":{"_attributes":{"Id":"26986"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.100":{"_attributes":{"Id":"26987"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.101":{"_attributes":{"Id":"26988"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.102":{"_attributes":{"Id":"26989"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.103":{"_attributes":{"Id":"26990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.104":{"_attributes":{"Id":"26991"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.105":{"_attributes":{"Id":"26992"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.106":{"_attributes":{"Id":"26993"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.107":{"_attributes":{"Id":"26994"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.108":{"_attributes":{"Id":"26995"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.109":{"_attributes":{"Id":"26996"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.110":{"_attributes":{"Id":"26997"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.111":{"_attributes":{"Id":"26998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.112":{"_attributes":{"Id":"26999"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.113":{"_attributes":{"Id":"27000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.114":{"_attributes":{"Id":"27001"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.115":{"_attributes":{"Id":"27002"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.116":{"_attributes":{"Id":"27003"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.117":{"_attributes":{"Id":"27004"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.118":{"_attributes":{"Id":"27005"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.119":{"_attributes":{"Id":"27006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.120":{"_attributes":{"Id":"27007"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.121":{"_attributes":{"Id":"27008"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.122":{"_attributes":{"Id":"27009"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.123":{"_attributes":{"Id":"27010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.124":{"_attributes":{"Id":"27011"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.125":{"_attributes":{"Id":"27012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.126":{"_attributes":{"Id":"27013"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.127":{"_attributes":{"Id":"27014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.128":{"_attributes":{"Id":"27015"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.129":{"_attributes":{"Id":"27016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ControllerTargets.130":{"_attributes":{"Id":"27017"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{"ClipSlot":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"ClipSlot":{"Value":{}},"HasStop":{"_attributes":{"Value":"true"}},"NeedRefreeze":{"_attributes":{"Value":"true"}}}]},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"27019"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"27020"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"27021"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"27022"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"27023"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}},"DeviceChain":{"Devices":{"DrumGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27024"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Drums to MIDI"}},"Annotation":{"_attributes":{"Value":"Processed version of the 707 Drum Machine."}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"DrumBranch":[{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Kick 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27139"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Kick 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Kick 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27164"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Kick 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Kick-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"103618"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"103618"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"103618"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t690063006B002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Kick"}}]},"FileSize":{"_attributes":{"Value":"316216"}},"Crc":{"_attributes":{"Value":"22300"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t690063006B002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Kick"}}]},"FileSize":{"_attributes":{"Value":"316216"}},"Crc":{"_attributes":{"Value":"22300"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"103619"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156250006534600742","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27165"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27166"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27168"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27170"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27171"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27172"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27173"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27174"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27176"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27177"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27178"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"27179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27180"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"27181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27182"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27183"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27184"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27185"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27186"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27187"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"27188"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27189"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27190"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27191"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27192"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27193"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27194"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27195"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27196"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27197"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27198"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27199"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27200"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27201"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27202"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27203"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27204"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27205"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27206"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27207"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27208"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27209"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"27210"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27211"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27212"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27213"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.461538434"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27214"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27215"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27216"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27217"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"27218"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27219"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27220"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27221"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27222"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27223"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"27224"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"27225"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27226"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"27227"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27228"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27229"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27230"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27231"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27232"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27233"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27234"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27235"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27236"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27237"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27238"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27239"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"false"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27240"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27241"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"27242"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27243"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27244"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"27245"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27246"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27247"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27248"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27249"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27250"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27251"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27252"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"27253"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27254"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"27255"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27256"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27257"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27258"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27259"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27260"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"27261"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27262"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27263"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27264"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27265"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27266"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27267"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27268"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"27269"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27270"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27271"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27272"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27273"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27274"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"27275"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27276"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27277"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27278"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27279"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27280"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27281"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27282"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27283"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27284"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27285"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27286"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27287"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"27288"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27289"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27290"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27291"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27292"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27293"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27294"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27295"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27296"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27297"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27298"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27299"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27300"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27301"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27302"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27303"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27304"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27305"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27306"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27307"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27308"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27309"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27310"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27311"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27312"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27313"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27314"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27315"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27316"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27317"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27318"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27319"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27320"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27321"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27322"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27323"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27324"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27325"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27326"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27327"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27328"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27329"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27330"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27331"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27332"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27333"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27334"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27335"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.03511"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27336"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27337"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.52380943"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27338"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27339"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27340"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27341"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27342"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27343"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27344"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27345"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27346"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27347"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27348"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27349"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27350"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27351"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2854.58862"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27352"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27353"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.90163994"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27354"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27355"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27356"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27357"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27358"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27359"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27360"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27361"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27362"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27363"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27364"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27365"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27366"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27367"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27368"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27369"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27370"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27371"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27372"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27373"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27374"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27375"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27376"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27377"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27378"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27379"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27380"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27381"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27382"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27383"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27384"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27385"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27386"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27387"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27388"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27389"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27390"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27391"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27392"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27393"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27394"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27395"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27396"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27397"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27398"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27399"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"27400"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27401"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27402"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27403"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27404"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27405"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27406"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27407"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27408"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27409"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27410"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27411"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27412"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27413"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27414"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27415"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27158"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27160"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27161"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27162"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27163"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27140"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27141"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27142"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27143"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"41"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27144"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27145"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27146"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27147"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27148"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27149"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27150"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27151"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27152"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27153"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27154"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27155"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"41"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27156"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27157"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Kick"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27043"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27044"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27045"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27046"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27047"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27048"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"92"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27416"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27441"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Snare-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"22064"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"22065"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156249999594801885","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27442"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27443"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27444"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27445"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27446"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27447"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27448"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27449"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27450"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27451"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27452"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27453"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27454"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27455"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"27456"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27457"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"27458"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27459"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27460"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27461"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27462"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27463"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27464"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"27465"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27466"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27467"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27468"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27469"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27470"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27471"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27472"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27473"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27474"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27475"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27476"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27477"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27478"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27479"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27480"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27481"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27482"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27483"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27484"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27486"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"27487"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27488"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27489"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27490"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3846154213"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27491"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27492"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27493"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27494"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"27495"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27496"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27497"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27498"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27499"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27500"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"27501"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"27502"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27503"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"27504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27505"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27507"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27508"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27509"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27510"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27511"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27512"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27513"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27515"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27517"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27518"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"27519"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27520"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27521"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"27522"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27523"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27524"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27525"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27526"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27527"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27528"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27529"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"27530"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27531"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"27532"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27533"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27534"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27535"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27536"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27537"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"27538"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27539"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27540"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27541"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27542"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27543"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27544"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27545"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"27546"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27547"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27548"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27549"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27550"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27551"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"27552"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27553"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27554"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27555"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27556"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27557"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27558"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27559"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27560"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27561"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27562"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27563"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27564"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"27565"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27566"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27567"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27568"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27569"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27570"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27571"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27572"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27573"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27574"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27575"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27576"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27577"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27578"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27579"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27580"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27581"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27582"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27583"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27584"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27585"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27586"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27587"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27588"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27589"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27590"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27591"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27592"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27593"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27594"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27595"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27596"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27597"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27598"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27599"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27600"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27601"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27602"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27603"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27604"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27605"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27606"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27607"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27608"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27609"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27610"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27611"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27612"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"166.890182"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27613"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27614"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27615"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27616"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27617"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27618"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27619"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27620"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27621"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27622"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27623"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27624"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27625"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27626"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27627"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27628"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5574.10303"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27629"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27630"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.40983391"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27631"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27632"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3170820773"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27633"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27634"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27635"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27636"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27637"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27638"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27639"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27640"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27641"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27642"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27643"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27644"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27645"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27646"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27647"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27648"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27649"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27650"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27651"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27652"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27653"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27654"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27655"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27656"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27657"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27658"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27659"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27660"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27661"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27662"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27663"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27664"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27665"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27666"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27667"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27668"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27669"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27670"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27671"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27672"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27673"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27674"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27675"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27676"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"27677"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27678"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27679"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27680"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27681"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27682"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27683"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27684"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27685"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27686"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27687"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27688"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27689"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27690"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27691"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27692"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27435"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27436"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27437"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27438"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27439"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27440"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27418"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27419"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27420"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"41"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27421"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27422"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27423"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27424"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27425"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27426"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27427"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27428"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"95.25"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27429"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27430"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27431"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27432"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"100"}},"MacroDefaults.2":{"_attributes":{"Value":"41"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"8"}},"MacroDefaults.6":{"_attributes":{"Value":"95.25"}},"MacroDefaults.7":{"_attributes":{"Value":"127"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27433"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27434"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Snare"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27049"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27050"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27051"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27052"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27053"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27054"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"91"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27693"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Rim"}}]},"Name":{"_attributes":{"Value":"Rim 808.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27718"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Snare-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"22064"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"22065"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156249999594801885","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27719"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27720"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27721"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27722"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27723"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27724"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27725"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27726"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27727"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27728"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27729"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27730"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27731"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27732"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"27733"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27734"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"27735"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27736"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27737"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27738"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27739"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27740"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27741"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"27742"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27743"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27744"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27745"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27746"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27747"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27748"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27749"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27750"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27751"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27752"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27753"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27754"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27755"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27756"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27757"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27758"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27759"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27760"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27761"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27762"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27763"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"27764"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27765"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27766"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27767"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3846154213"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27768"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27769"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27770"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27771"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"27772"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27773"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27774"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27775"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27776"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27777"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"27778"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"27779"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27780"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"27781"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27782"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27783"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27784"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27785"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27786"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27787"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"27788"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27789"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27790"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27791"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27792"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27793"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27794"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27795"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"27796"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27797"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"27798"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"27799"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27800"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27801"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27802"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"27803"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27804"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27805"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27806"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"27807"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27808"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"27809"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27810"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27811"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27812"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27813"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27814"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"27815"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27816"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"27817"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27818"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27819"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27820"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27821"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27822"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"27823"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27824"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27825"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27826"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27827"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27828"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"27829"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27830"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27831"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27832"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27833"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"27836"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27837"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27838"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27839"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27840"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27841"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"27842"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27843"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27844"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27845"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27846"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27847"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27848"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27849"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27850"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27851"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27852"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27853"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27854"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27855"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27856"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27857"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27858"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27859"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27860"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27861"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27862"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27863"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27864"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"27865"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27866"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27867"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27868"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27869"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27870"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27871"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27872"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27873"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27874"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27875"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27876"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27877"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27878"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27879"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27880"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27881"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27882"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27883"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27884"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27885"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27886"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27887"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27888"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27889"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"166.890182"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27890"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27891"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27892"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27893"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27894"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27895"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27896"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27897"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27898"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27899"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27900"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27901"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27902"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27903"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27904"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27905"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5574.10303"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27906"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27907"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.40983391"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27908"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27909"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3170820773"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27910"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27911"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27913"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27914"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27915"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27916"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27917"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27918"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27919"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27920"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27921"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27923"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27924"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27925"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27926"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27927"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27928"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"27929"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27930"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27931"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27932"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27933"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27934"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27935"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27936"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27937"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27938"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27939"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27940"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27941"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27942"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27943"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27944"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"27945"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27946"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27947"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27948"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27949"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27950"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27951"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27952"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27953"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"27954"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27955"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27956"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27957"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27958"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27959"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27960"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"27961"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"27962"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27963"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"27964"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27965"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"27966"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27967"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27968"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"27969"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27712"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27713"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27714"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27715"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27716"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27717"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27694"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27695"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27696"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27697"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27698"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27699"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27700"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27701"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27702"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27703"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27704"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27705"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27706"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27707"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27708"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27709"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27710"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27711"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Snare"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27055"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27056"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27057"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27058"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27059"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27060"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"90"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27970"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Rim"}}]},"Name":{"_attributes":{"Value":"Rim 808.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27995"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Snare-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"22064"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"22065"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156249999594801885","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27996"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27997"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27999"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28001"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28002"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28003"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28004"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28005"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28007"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28008"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28009"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"28010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28011"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"28012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28013"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28015"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28017"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"28019"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28020"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28021"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28022"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28023"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28024"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28025"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28026"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28027"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28028"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28029"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28030"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28031"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28032"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28033"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28034"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28035"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28036"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28037"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28038"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28039"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28040"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28041"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28042"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28043"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28044"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3846154213"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28045"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28046"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28047"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28048"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"28049"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28050"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28051"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28052"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28053"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28054"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"28055"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28056"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28057"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"28058"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28059"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28060"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28061"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28063"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28064"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28065"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28066"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28067"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28069"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28070"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28071"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28072"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"28073"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28074"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28075"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"28076"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28077"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28078"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28079"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28081"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28082"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28083"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"28084"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28085"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"28086"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28087"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28088"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28089"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28090"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28091"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"28092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28093"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28095"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28097"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28099"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"28100"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28101"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28102"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28103"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28105"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"28106"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28107"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28108"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28109"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28111"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28113"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28114"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28115"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28116"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28117"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28118"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"28119"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28120"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28121"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28122"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28123"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28124"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28125"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28126"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28127"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28128"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28129"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28130"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28131"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28132"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28133"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28134"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28135"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28136"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28137"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28138"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28139"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28140"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28141"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28142"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28143"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28144"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28145"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28146"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28147"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28148"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28149"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28150"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28151"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28152"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28153"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28154"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28155"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28156"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28157"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28158"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28160"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28161"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28162"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28163"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28164"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28165"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28166"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"166.890182"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28168"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28170"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28171"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28172"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28173"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28174"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28176"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28177"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28178"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28180"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28182"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5574.10303"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28183"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28184"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.40983391"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28185"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28186"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3170820773"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28187"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28188"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28189"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28190"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28191"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28192"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28193"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28194"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28195"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28196"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28197"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28198"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28199"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28200"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28201"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28202"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28203"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28204"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28205"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28206"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28207"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28208"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28209"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28210"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28211"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28212"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28213"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28214"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28215"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28216"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28217"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28218"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28219"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28220"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28221"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28222"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28223"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28224"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28225"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28226"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28227"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28228"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28229"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28230"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"28231"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28232"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28233"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28234"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28235"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28236"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28237"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28238"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28239"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28240"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28241"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28242"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28243"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28244"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28245"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28246"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27989"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27991"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27992"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27993"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27994"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"46"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27971"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27972"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"80"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27973"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27974"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27975"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27976"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27977"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27978"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27980"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27981"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27982"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"95"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27983"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27984"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"120.650002"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27985"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27986"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"46"}},"MacroDefaults.1":{"_attributes":{"Value":"80"}},"MacroDefaults.2":{"_attributes":{"Value":"127"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"95"}},"MacroDefaults.7":{"_attributes":{"Value":"120.650002"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27987"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27988"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Snare"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27061"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27063"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27064"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27065"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27066"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"89"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"4"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28247"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare Mod 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Snare Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28272"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Snare Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Snare-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"22064"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"22064"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Snare"}}]},"Name":{"_attributes":{"Value":"Snare-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0053006E006100720065005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t53006E006100720065002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Snare"}}]},"FileSize":{"_attributes":{"Value":"67714"}},"Crc":{"_attributes":{"Value":"49238"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"22065"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156249999594801885","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28273"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28274"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28275"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28276"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28277"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28278"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28279"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28280"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28281"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28282"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28283"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28284"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28285"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28286"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{"SimplerSubOsc":{"_attributes":{"Id":"0"},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28360"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Type":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"20"}},"AutomationTarget":{"_attributes":{"Id":"28361"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.06733440608"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28362"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28363"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28364"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28365"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"IsFixedFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28366"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"TuneCoarse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-2"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"28367"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28368"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TuneFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"28369"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28370"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FreqFixed":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"28371"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28372"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FreqFixedMul":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"4"}}},"AutomationTarget":{"_attributes":{"Id":"28373"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28374"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28375"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28376"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28377"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28378"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28379"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28380"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"183.372772"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28381"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28382"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28383"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28384"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28385"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28386"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28387"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28388"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"30000.0059"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28389"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28390"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28391"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28392"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28393"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28394"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28395"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28396"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28397"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"28398"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28399"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28400"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28401"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"ScrollPosition":{"_attributes":{"Value":"0"}}}}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"28287"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28288"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"28289"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28290"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28291"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28292"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28293"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28294"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28295"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"28296"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28297"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28298"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28299"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28300"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28301"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28302"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28303"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28304"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28305"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28306"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28307"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28308"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28309"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28310"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28311"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28312"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28313"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28314"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28315"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28316"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28317"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28318"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28319"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28320"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28321"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3846154213"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28322"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28323"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28324"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28325"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"28326"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28327"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28328"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28329"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28330"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28331"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"28332"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28333"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28334"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"28335"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28336"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28337"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28338"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28339"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28340"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28341"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28342"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28343"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28344"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28345"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28346"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28347"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28348"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28349"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"28350"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28351"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28352"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"28353"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28354"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28355"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28356"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28357"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28358"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28359"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28402"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"28403"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28404"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"28405"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28406"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28407"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28408"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28409"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28410"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"28411"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28412"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28413"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28414"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28415"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28416"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28418"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"28419"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28420"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28421"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28422"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28423"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28424"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"28425"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28426"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28427"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28428"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28429"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28430"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28431"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28432"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28433"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28434"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28435"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28436"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28437"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"28438"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28439"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28440"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28441"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28442"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28443"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28444"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28445"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28446"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28447"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28448"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28449"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28450"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28451"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28452"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28453"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28454"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28455"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28456"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28457"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28458"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28459"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28460"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28461"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28462"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28463"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28464"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28465"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28466"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28467"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28468"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28469"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28470"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28471"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28472"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28473"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28474"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28475"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28476"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28477"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28478"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28479"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28480"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28481"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28482"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28483"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28484"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28485"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"166.890182"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28486"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28487"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28488"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28489"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28490"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28491"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28492"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28493"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28494"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28495"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28496"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28497"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28498"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28499"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28500"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28501"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5574.10303"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28502"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28503"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.40983391"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28505"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3170820773"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28507"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28508"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28509"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28510"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28511"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28512"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28513"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28515"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28517"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28518"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28519"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28520"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28521"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28522"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28523"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28524"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28525"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28526"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28527"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28528"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28529"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28530"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28531"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28532"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28533"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28534"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28535"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28536"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28537"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28538"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28539"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28540"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28541"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28542"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28543"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28544"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28545"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28546"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28547"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28548"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28549"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"28550"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28551"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28552"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28553"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28554"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28555"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28556"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28557"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28558"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28559"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28560"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28561"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28562"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28563"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28564"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28565"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28266"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28267"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"28268"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28269"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28270"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28271"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28248"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28249"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"105"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28250"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28251"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28252"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28253"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28254"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28255"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28256"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28257"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"84.6666794"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28258"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28259"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"64"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28260"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28261"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28262"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28263"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"105"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"84.6666794"}},"MacroDefaults.6":{"_attributes":{"Value":"64"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28264"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28265"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Snare"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27067"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27069"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27070"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27071"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27072"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"88"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"5"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Kick Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28566"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick Mod 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Kick Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Kick Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28591"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Kick Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Kick-606-Mod"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"262114"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"262114"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"262114"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick-606-Mod.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t690063006B002D003600300036002D004D006F0064002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Kick"}}]},"FileSize":{"_attributes":{"Value":"799132"}},"Crc":{"_attributes":{"Value":"14228"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Kick"}}]},"Name":{"_attributes":{"Value":"Kick-606-Mod.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C004B00690063006B005C004B00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t690063006B002D003600300036002D004D006F0064002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Kick"}}]},"FileSize":{"_attributes":{"Value":"799132"}},"Crc":{"_attributes":{"Value":"14228"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"262115"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"2.7303645833333334","BeatTime":"4"}},{"_attributes":{"Id":"2","SecTime":"2.7516955566406249","BeatTime":"4.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.00635416666666666682","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28592"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28593"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28594"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28595"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28596"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28597"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28598"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28599"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28600"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28601"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28602"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28603"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28604"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28605"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"28606"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28607"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"28608"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28609"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28610"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28611"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28612"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28613"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28614"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"28615"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28616"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28617"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28618"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28619"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28620"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28621"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28622"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28623"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28624"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28625"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28626"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28627"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28628"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28629"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28630"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28631"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28632"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28633"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28634"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28635"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28636"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28637"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28638"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28639"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28640"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28641"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28642"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28643"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28644"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"28645"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28646"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28647"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28648"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28649"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28650"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"28651"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28652"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28653"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"28654"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28655"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28656"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28657"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28658"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28659"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28660"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28661"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28662"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28663"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28664"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28665"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28666"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"false"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28667"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28668"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"28669"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28670"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28671"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"28672"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28673"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28674"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28675"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28676"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28677"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28678"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28679"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"28680"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28681"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"28682"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28683"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28684"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28685"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28686"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28687"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"28688"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28689"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28690"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28691"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28692"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28693"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28694"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28695"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"28696"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28697"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28698"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28699"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28700"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28701"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"28702"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28703"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28704"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28705"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28706"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28707"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28708"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28709"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28710"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28711"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28712"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28713"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28714"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"28715"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28716"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28717"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28718"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28719"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28720"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28721"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28722"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28723"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28724"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28725"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28726"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28727"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28728"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28729"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28730"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28731"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28732"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28733"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28734"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28735"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28736"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28737"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"28738"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28739"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28740"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28741"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28742"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28743"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28744"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28745"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28746"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28747"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28748"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28749"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28750"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28751"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28752"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28753"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28754"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28755"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28756"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28757"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28758"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28759"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28760"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28761"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28762"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.03511"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28763"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28764"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.52380943"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28765"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28766"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28767"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28768"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28769"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28770"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28771"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28772"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28773"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28774"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28775"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28776"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28777"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28778"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2854.58862"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28779"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28780"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.90163994"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28781"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28782"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28783"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28784"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28785"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28786"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28787"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28788"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28789"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28790"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28791"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28792"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28793"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28794"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28795"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28796"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28797"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28798"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28799"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28800"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28801"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"28802"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28803"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28804"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28805"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28806"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28807"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28808"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28809"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28810"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28811"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28812"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28813"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28814"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28815"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28816"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28817"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28818"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28819"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28820"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28821"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28822"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28823"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28824"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28825"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28826"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"28827"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28828"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28829"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28830"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28831"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28832"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28833"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"28834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"28835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28836"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28837"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28838"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28839"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28840"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28841"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28842"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28585"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28586"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"28587"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28588"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28589"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28590"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28567"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28568"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28569"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28570"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28571"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28572"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28573"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28574"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28575"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28576"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28577"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28578"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28579"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28580"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28581"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28582"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28583"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28584"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Kick"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27073"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27074"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27075"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27076"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27077"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27078"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"87"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"6"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Closed 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28843"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat Closed 808.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Closed 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Closed 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28868"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Closed 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Hihat-606-Closed"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"69292"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"69292"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"69292"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Closed.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D0043006C006F007300650064002E00610069006600\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t0000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"211630"}},"Crc":{"_attributes":{"Value":"20629"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Closed.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D0043006C006F007300650064002E00610069006600\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t0000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"211630"}},"Crc":{"_attributes":{"Value":"20629"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"69293"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156250005952464979","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.000187500000000000004","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28869"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28870"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28871"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28872"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28873"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28874"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28875"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28876"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28877"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28878"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28879"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28880"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28881"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28882"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"28883"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28884"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"28885"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28886"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28887"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28888"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28889"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28890"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28891"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-9"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"28892"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28893"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28894"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28895"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28896"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28897"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28898"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28899"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28900"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28901"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28902"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28903"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28904"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28905"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28906"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28907"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28908"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28909"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28910"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28911"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28913"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"28914"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28915"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28916"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28917"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28918"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28919"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28920"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28921"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"28922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28923"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28924"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28925"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28926"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28927"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"28928"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"28929"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28930"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"28931"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28932"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28933"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28934"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28935"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28936"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28937"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"28938"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28939"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28940"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28941"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28942"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28943"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28944"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28945"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"28946"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28947"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"28948"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"28949"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28950"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28951"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28952"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"28953"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28954"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28955"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28956"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"28957"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28958"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"28959"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28960"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28961"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28962"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28963"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28964"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"28965"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28966"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"28967"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28968"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28969"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28970"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28971"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28972"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"28973"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28974"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28975"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28976"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28977"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"28978"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"28979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28980"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28981"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28982"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28983"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28984"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28985"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"28986"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28987"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28988"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28989"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28991"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"28992"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28993"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"28994"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28995"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"28996"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28997"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"28998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"28999"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29001"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29002"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29003"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29004"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29005"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29007"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29008"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29009"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29011"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29013"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29015"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29017"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29019"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29020"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29021"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29022"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29023"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29024"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29025"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29026"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29027"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29028"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29029"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29030"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29031"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29032"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29033"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29034"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29035"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29036"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29037"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29038"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29039"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29040"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29041"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29042"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29043"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29044"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29045"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29046"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29047"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29048"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29049"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29050"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29051"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29052"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29053"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29054"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29055"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29056"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29057"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29058"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29059"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29060"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29061"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29063"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29064"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29065"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29066"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29067"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29069"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29070"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29071"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29072"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29073"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29074"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29075"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29076"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29077"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29078"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29079"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29081"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29082"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29083"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29084"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29085"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29086"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29087"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29088"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29089"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29090"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29091"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29093"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29095"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29097"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29099"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29100"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29101"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29102"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29103"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"29104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29105"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29106"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29107"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29108"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29109"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29111"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29113"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29114"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29115"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29116"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29117"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29118"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29119"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28862"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"28863"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"28864"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28865"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"28866"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28867"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28844"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28845"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28846"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28847"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28848"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28849"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28850"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28851"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28852"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28853"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28854"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28855"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28856"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28857"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28858"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28859"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"28860"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"28861"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Hihat"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27079"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27081"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27082"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.140625"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27083"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27084"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"86"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"1"}}}},{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Low 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29120"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom Low 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Low 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Low 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29145"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Low 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Tom-606-Low"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"97837"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"97837"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"97837"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Low.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D004C006F0077002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"298608"}},"Crc":{"_attributes":{"Value":"22271"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Low.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D004C006F0077002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"298608"}},"Crc":{"_attributes":{"Value":"22271"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"97838"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.015624999800176587","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":[{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}},{"_attributes":{"TimeInSeconds":"0.277437500000000004","Rank":"0","NormalizedEnergy":"0.00156658962680414023"}}]},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29146"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29147"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29148"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29149"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29150"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29151"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29152"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29153"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29154"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29155"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29156"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29157"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29158"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"29160"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29161"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"29162"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29163"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29164"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29165"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29166"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29168"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"29169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29170"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29171"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29172"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29173"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29174"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29176"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29177"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29178"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29180"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29182"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29183"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29184"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29185"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29186"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29187"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29188"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29189"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29190"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"29191"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29192"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29193"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29194"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.6923077106"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29195"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29196"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29197"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29198"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"29199"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29200"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29201"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29202"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29203"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29204"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"29205"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"29206"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29207"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"29208"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29209"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29210"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29211"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29212"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29213"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29214"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29215"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29216"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29217"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29218"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29219"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29220"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29221"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29222"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"29223"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29224"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29225"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"29226"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29227"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29228"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29229"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29230"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29231"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29232"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29233"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"29234"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29235"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"29236"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29237"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29238"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29239"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29240"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29241"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"29242"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29243"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29244"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29245"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29246"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29247"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29248"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29249"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"29250"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29251"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29252"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29253"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29254"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29255"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"29256"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29257"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29258"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29259"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29260"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29261"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29262"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29263"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29264"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29265"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29266"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29267"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29268"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"29269"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29270"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29271"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29272"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29273"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29274"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29275"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29276"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29277"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29278"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29279"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29280"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29281"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29282"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29283"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29284"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29285"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29286"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29287"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29288"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29289"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29290"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29291"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29292"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29293"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29294"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29295"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29296"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29297"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29298"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29299"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29300"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29301"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29302"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29303"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29304"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29305"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29306"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29307"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29308"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29309"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29310"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29311"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29312"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29313"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29314"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29315"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29316"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"123.007454"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29317"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29318"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.91803265"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29319"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29320"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29321"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29322"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29323"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29324"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29325"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29326"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29327"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29328"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29329"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29330"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29331"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29332"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3268.1416"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29333"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29334"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29335"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29336"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29337"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29338"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29339"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29340"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29341"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29342"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29343"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29344"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29345"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29346"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29347"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29348"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29349"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29350"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29351"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29352"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29353"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29354"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29355"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29356"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29357"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29358"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29359"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29360"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29361"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29362"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29363"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29364"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29365"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29366"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29367"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29368"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29369"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29370"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29371"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29372"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29373"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29374"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29375"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29376"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29377"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29378"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29379"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29380"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"29381"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29382"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29383"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29384"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29385"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29386"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29387"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29388"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29389"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29390"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29391"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29392"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29393"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29394"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29395"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29396"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29139"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29140"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"29141"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29142"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29143"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29144"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29121"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29122"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29123"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29124"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29125"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29126"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29127"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29128"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29129"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29130"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29131"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29132"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.2708359"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29133"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29134"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29135"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29136"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"50.2708359"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29137"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29138"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Tom"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27085"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27086"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27087"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27088"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.203125"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27089"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27090"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"85"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"8"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Combo 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29397"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat Combo 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Combo 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Combo 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29422"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Combo 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Hihat-606-Combo"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"85447"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"85447"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"85447"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Combo.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D0043006F006D0062006F002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"260850"}},"Crc":{"_attributes":{"Value":"267"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Combo.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D0043006F006D0062006F002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"260850"}},"Crc":{"_attributes":{"Value":"267"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"85448"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156250003571479605","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.000208333333333333347","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29423"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29424"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29425"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29426"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29427"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29428"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29429"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29430"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29431"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29432"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29433"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29434"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29435"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29436"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"29437"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29438"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"29439"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29440"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29441"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29442"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29443"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29444"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29445"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-9"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"29446"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29447"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29448"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29449"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29450"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29451"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29452"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29453"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29454"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29455"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29456"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29457"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29458"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29459"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29460"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29461"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29462"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29463"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29464"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29465"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29466"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29467"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"29468"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29469"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29470"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29471"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29472"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29473"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29474"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29475"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"29476"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29477"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29478"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29479"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29480"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29481"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"29482"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"29483"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29484"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"29485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29486"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29487"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29488"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29489"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29490"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29491"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29492"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29493"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29494"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29495"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29496"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29497"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29498"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29499"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"29500"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29501"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29502"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"29503"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29504"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29505"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29506"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29507"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29508"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29509"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29510"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"29511"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29512"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"29513"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29514"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29515"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29516"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29517"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29518"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"29519"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29520"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29521"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29522"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29523"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29524"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29525"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29526"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"29527"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29528"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29529"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29530"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29531"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29532"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"29533"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29534"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29535"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29536"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29537"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29538"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29539"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29540"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29541"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29542"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29543"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29544"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29545"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"29546"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29547"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29548"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29549"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29550"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29551"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29552"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29553"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29554"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29555"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29556"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29557"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29558"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29559"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29560"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29561"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29562"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29563"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29564"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29565"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29566"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29567"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29568"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29569"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29570"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29571"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29572"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29573"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29574"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29575"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29576"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29577"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29578"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29579"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29580"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29581"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29582"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29583"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29584"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29585"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29586"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29587"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29588"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29589"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29590"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29591"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29592"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29593"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29594"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29595"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29596"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29597"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29598"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29599"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29600"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29601"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29602"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29603"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29604"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29605"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29606"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29607"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29608"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29609"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29610"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29611"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29612"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29613"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29614"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29615"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29616"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29617"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29618"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29619"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29620"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29621"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29622"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29623"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29624"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29625"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29626"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29627"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29628"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29629"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29630"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29631"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29632"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29633"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29634"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29635"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29636"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29637"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29638"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29639"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29640"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29641"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29642"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29643"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29644"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29645"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29646"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29647"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29648"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29649"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29650"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29651"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29652"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29653"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29654"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29655"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29656"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29657"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"29658"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29659"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29660"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29661"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29662"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29663"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29664"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29665"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29666"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29667"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29668"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29669"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29670"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29671"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29672"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29673"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29416"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"29418"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29419"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29420"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29421"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29398"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29399"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29400"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29401"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29402"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29403"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29404"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29405"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29406"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29407"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29408"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29409"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29410"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29411"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29412"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29413"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29414"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29415"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Hihat"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27091"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27093"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27094"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.140625"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27095"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27096"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"84"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"1"}}}},{"_attributes":{"Id":"9"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Low 606-1"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29674"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom Low 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Low 606-1"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Low 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29699"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Low 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Tom-606-Low"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"97837"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"97837"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"97837"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Low.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D004C006F0077002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"298608"}},"Crc":{"_attributes":{"Value":"22271"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Low.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D004C006F0077002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"298608"}},"Crc":{"_attributes":{"Value":"22271"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"97838"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.015624999800176587","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":[{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}},{"_attributes":{"TimeInSeconds":"0.277437500000000004","Rank":"0","NormalizedEnergy":"0.00156658962680414023"}}]},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29700"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29701"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29702"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29703"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29704"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29705"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29706"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29707"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29708"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29709"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29710"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29711"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29712"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29713"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"29714"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29715"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"29716"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29717"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29718"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29719"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29720"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29721"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29722"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"29723"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29724"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29725"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29726"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29727"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29728"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29729"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29730"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29731"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29732"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29733"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29734"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29735"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29736"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29737"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29738"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29739"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29740"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29741"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29742"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29743"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29744"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"29745"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29746"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29747"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29748"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.6923077106"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29749"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29750"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29751"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29752"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"29753"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29754"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29755"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29756"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29757"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29758"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"29759"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"29760"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29761"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"29762"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29763"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29764"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29765"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29766"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29767"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29768"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"29769"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29770"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29771"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29772"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29773"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29774"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29775"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29776"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"29777"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29778"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"29779"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"29780"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29781"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29782"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29783"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"29784"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29785"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29786"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29787"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"29788"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29789"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"29790"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29791"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29792"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29793"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29794"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29795"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"29796"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29797"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"29798"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29799"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29800"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29801"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29802"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29803"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"29804"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29805"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29806"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29807"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29808"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29809"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"29810"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29811"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29812"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29813"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29814"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29815"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29816"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"29817"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29818"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29819"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29820"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29821"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29822"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"29823"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29824"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29825"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29826"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29827"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29828"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29829"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"29830"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29831"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29832"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29833"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29836"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29837"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29838"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29839"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29840"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29841"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29842"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29843"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29844"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29845"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"29846"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29847"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29848"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29849"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29850"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29851"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29852"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29853"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29854"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29855"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29856"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29857"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29858"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29859"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29860"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29861"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29862"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29863"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29864"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29865"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29866"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29867"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29868"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29869"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29870"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"123.007454"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29871"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29872"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.91803265"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29873"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29874"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29875"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29876"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29877"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29878"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29879"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29880"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29881"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29882"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29883"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29884"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29885"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29886"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3268.1416"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29887"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29888"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29889"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29890"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29891"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29892"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29893"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29894"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29895"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29896"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29897"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29898"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29899"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29900"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29901"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29902"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29903"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29904"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29905"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29906"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29907"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29908"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29909"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"29910"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29911"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29912"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29913"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29914"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29915"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29916"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29917"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29918"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29919"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29920"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29921"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29922"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29923"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29924"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29925"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"29926"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29927"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29928"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29929"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29930"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29931"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29932"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29933"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29934"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"29935"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29936"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29937"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29938"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29939"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29940"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29941"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"29942"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"29943"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29944"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"29945"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29946"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"29947"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29948"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29949"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29950"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29693"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29694"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"29695"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29696"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29697"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29698"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29675"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29676"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29677"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29678"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29679"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29680"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29681"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29682"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29683"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29684"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29685"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29686"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29687"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29688"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29689"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29690"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29691"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29692"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Tom"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27097"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27099"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27100"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.28125"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27101"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27102"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"83"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"10"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Open 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29951"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat Open 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Open 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Hihat Open 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29976"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Hihat Open 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Hihat-606-Open"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"115346"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"115346"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"115346"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Open.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D004F00700065006E002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"351956"}},"Crc":{"_attributes":{"Value":"27792"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Hihat"}}]},"Name":{"_attributes":{"Value":"Hihat-606-Open.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00480069006800610074005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t480069006800610074002D003600300036002D004F00700065006E002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Hihat"}}]},"FileSize":{"_attributes":{"Value":"351956"}},"Crc":{"_attributes":{"Value":"27792"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"115347"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.0156249994667222256","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29977"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29978"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29980"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29981"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29982"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29983"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29984"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29985"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29986"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29987"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29988"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29989"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29990"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"29991"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29992"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"29993"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29994"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29995"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29996"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29997"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29998"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"29999"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-9"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"30000"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30001"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30002"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30003"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30004"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30005"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30006"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30007"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30008"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30009"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30010"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30011"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30012"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30013"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30014"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30015"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30016"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30017"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30018"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30019"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30020"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30021"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"30022"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30023"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30024"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30025"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.3076922894"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30026"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30027"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30028"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30029"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"30030"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30031"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30032"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30033"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30034"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30035"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"30036"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"30037"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30038"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"30039"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30040"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30041"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30042"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30043"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30044"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30045"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30046"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30047"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30048"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30049"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30050"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30051"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"0"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30052"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30053"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"30054"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30055"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30056"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"30057"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30058"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30059"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30060"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30061"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30062"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30063"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30064"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"30065"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30066"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"30067"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30068"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30069"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30070"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30071"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30072"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"30073"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30074"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30075"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30076"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30077"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30078"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30079"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"30081"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30082"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30083"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30084"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30085"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30086"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"30087"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30088"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30089"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30090"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30091"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30092"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30093"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30095"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30097"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30099"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"30100"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30101"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30102"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30103"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30105"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30106"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30107"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30108"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30109"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30111"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30113"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30114"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30115"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30116"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30117"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30118"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30119"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30120"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30121"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30122"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30123"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30124"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30125"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30126"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30127"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30128"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30129"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30130"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30131"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30132"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30133"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30134"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30135"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30136"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30137"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30138"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30139"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30140"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30141"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30142"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30143"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30144"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30145"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30146"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30147"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30148"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30149"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30150"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30151"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30152"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30153"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30154"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30155"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30156"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30157"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30158"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30159"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30160"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30161"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30162"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30163"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30164"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30165"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30166"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30167"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30168"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30169"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30170"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30171"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30172"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30173"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30174"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30175"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30176"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30177"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30178"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30179"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30180"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30181"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30182"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30183"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30184"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30185"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30186"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30187"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30188"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30189"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30190"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30191"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30192"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30193"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30194"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30195"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30196"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30197"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30198"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30199"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30200"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30201"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30202"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30203"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30204"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30205"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30206"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30207"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30208"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30209"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30210"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30211"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"30212"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30213"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30214"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30215"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30216"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30217"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30218"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30219"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30220"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30221"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30222"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30223"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30224"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30225"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30226"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30227"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29970"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"29971"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"29972"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29973"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"29974"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29975"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29952"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29953"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29954"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29955"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29956"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29957"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29958"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29959"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29960"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29961"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29962"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29963"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29964"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29965"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29966"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29967"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"29968"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"29969"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Hihat"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27103"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27104"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27105"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27106"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.015625"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27107"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27108"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"82"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"1"}}}},{"_attributes":{"Id":"11"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Hi 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30228"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom Hi 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Hi 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Hi 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30253"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Hi 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Tom-606-Hi"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"81861"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"81861"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"81861"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Hi.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D00480069002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"249928"}},"Crc":{"_attributes":{"Value":"56121"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Hi.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D00480069002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"249928"}},"Crc":{"_attributes":{"Value":"56121"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"81862"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.015625000457253891","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30254"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30255"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30256"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30257"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30258"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30259"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30260"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30261"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30262"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30263"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30264"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30265"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30266"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30267"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"30268"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30269"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"30270"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30271"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30272"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30273"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30274"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30275"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30276"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"30277"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30278"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30279"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30280"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30281"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30282"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30283"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30284"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30285"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30286"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30287"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30288"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30289"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30290"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30291"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30292"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30293"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30294"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30295"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30296"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30297"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30298"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"30299"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30300"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30301"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30302"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.1538461447"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30303"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30304"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30305"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30306"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"30307"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30308"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30309"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30310"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30311"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30312"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"30313"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"30314"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30315"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"30316"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30317"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30318"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30319"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30320"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30321"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30322"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30323"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30324"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30325"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30326"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30327"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30328"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30329"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30330"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"30331"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30332"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30333"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"30334"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30335"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30336"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30337"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30338"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30339"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30340"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30341"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"30342"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30343"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"30344"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30345"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30346"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30347"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30348"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30349"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"30350"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30351"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30352"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30353"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30354"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30355"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30356"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30357"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"30358"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30359"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30360"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30361"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30362"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30363"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"30364"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30365"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30366"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30367"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30368"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30369"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30370"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30371"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30372"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30373"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30374"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30375"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30376"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"30377"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30378"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30379"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30380"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30381"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30382"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30383"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30384"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30385"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30386"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30387"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30388"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30389"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30390"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30391"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30392"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30393"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30394"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30395"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30396"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30397"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30398"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30399"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30400"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30401"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30402"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30403"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30404"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30405"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30406"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30407"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30408"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30409"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30410"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30411"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30412"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30413"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30414"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30415"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30416"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30418"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30419"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30420"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30421"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30422"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30423"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30424"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"183.584915"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30425"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30426"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.91803265"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30427"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30428"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30429"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30430"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30431"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30432"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30433"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30434"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30435"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30436"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30437"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30438"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30439"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30440"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4187.51807"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30441"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30442"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30443"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30444"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30445"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30446"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30447"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30448"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30449"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30450"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30451"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30452"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30453"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30454"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30455"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30456"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30457"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30458"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30459"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30460"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30461"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30462"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30463"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30464"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30465"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30466"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30467"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30468"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30469"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30470"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30471"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30472"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30473"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30474"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30475"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30476"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30477"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30478"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30479"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30480"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30481"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30482"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30483"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30484"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30486"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30487"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30488"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"30489"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30490"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30491"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30492"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30493"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30494"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30495"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30496"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30497"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30498"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30499"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30500"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30501"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30502"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30503"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30247"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30248"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"30249"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30250"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30251"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30252"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30229"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30230"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30231"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30232"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30233"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30234"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30235"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30236"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30237"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30238"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30239"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30240"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"55"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30241"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30242"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30243"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30244"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"55"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30245"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30246"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Tom"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27109"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27111"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27112"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.046875"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27113"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27114"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"81"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"12"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Hi 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30505"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom Hi 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Hi 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Tom Hi 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30530"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Tom Hi 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Tom-606-Hi"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"81861"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"81861"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"81861"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Hi.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D00480069002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"249928"}},"Crc":{"_attributes":{"Value":"56121"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{"SourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"24"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"75","Dir":"Samples"}},{"_attributes":{"Id":"76","Dir":"Drums"}},{"_attributes":{"Id":"77","Dir":"Tom"}}]},"Name":{"_attributes":{"Value":"Tom-606-Hi.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C0054006F006D005C0054006F00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D002D003600300036002D00480069002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Tom"}}]},"FileSize":{"_attributes":{"Value":"249928"}},"Crc":{"_attributes":{"Value":"56121"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}}}},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"81862"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"0.015625000457253891","BeatTime":"0.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.0000104166666666666663","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30531"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30532"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30533"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30534"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30535"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30536"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30537"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30538"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30539"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30540"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30541"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30542"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30543"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30544"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"1"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"30545"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30546"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"30547"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30548"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30549"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30550"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30551"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30552"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30553"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"30554"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30555"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30556"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30557"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30558"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30559"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30560"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30561"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30562"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30563"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30564"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30565"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30566"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30567"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30568"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30569"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30570"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30571"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30572"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30573"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30574"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30575"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"30576"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30577"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30578"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30579"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-0.1538461447"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30580"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30581"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30582"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30583"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"30584"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30585"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30586"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30587"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30588"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30589"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"30590"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"30591"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30592"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"30593"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30594"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30595"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30596"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30597"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30598"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30599"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30600"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30601"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30602"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30603"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30604"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30605"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30606"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30607"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"30608"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30609"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30610"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"30611"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30612"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30613"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30614"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30615"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30616"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30617"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30618"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"30619"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30620"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"30621"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30622"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30623"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30624"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30625"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30626"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"30627"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30628"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30629"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30630"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30631"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30632"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30633"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30634"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"30635"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30636"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30637"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30638"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30639"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30640"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"30641"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30642"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30643"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30644"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30645"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30646"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30647"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"4"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30648"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30649"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30650"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30651"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30652"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30653"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"30654"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30655"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30656"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30657"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30658"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30659"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30660"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30661"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30662"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30663"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30664"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30665"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30666"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30667"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30668"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30669"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30670"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30671"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30672"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30673"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30674"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30675"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30676"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30677"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30678"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30679"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30680"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30681"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30682"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30683"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30684"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30685"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30686"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30687"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30688"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30689"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30690"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30691"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30692"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30693"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30694"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30695"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30696"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30697"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30698"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30699"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30700"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30701"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"183.584915"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30702"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30703"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-4.91803265"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30704"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30705"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30706"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30707"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30708"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30709"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30710"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30711"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30712"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30713"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30714"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30715"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30716"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30717"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4187.51807"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30718"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30719"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30720"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30721"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.4788081944"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30722"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30723"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30724"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30725"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30726"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30727"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30728"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30729"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30730"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30731"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30732"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30733"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30734"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30735"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30736"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30737"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30738"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30739"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30740"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30741"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30742"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30743"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30744"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30745"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30746"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30747"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30748"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30749"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30750"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30751"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30752"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30753"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30754"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30755"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30756"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30757"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30758"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30759"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30760"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30761"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30762"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30763"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30764"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30765"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"500"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"30766"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30767"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30768"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30769"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30770"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30771"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30772"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"30773"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30774"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30775"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30776"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30777"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30778"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30779"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30780"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30781"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30524"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30525"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"30526"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30527"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30528"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30529"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30507"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30508"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30509"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30510"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30511"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30512"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30513"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30515"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30517"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30518"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30519"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30520"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30521"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30522"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30523"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Tom"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27115"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27116"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27117"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27118"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27119"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27120"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"80"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"13"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30782"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal Mod 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30807"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Cymbal-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"223167"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t5C00430079006D00620061006C002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Cymbal"}}]},"FileSize":{"_attributes":{"Value":"680466"}},"Crc":{"_attributes":{"Value":"59924"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"223168"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"2.3246666666666669","BeatTime":"4"}},{"_attributes":{"Id":"2","SecTime":"2.342828125","BeatTime":"4.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.000593749999999999985","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30808"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30809"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30810"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30811"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30812"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30813"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30814"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30815"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30816"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30817"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30818"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30819"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30820"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30821"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"30822"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30823"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"30824"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30825"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30826"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30827"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30828"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30829"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30830"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"30831"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30832"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30833"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30836"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30837"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30838"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30839"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30840"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30841"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30842"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30843"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30844"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30845"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30846"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30847"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30848"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30849"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30850"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30851"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30852"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"30853"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30854"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30855"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30856"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30857"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30858"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30859"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30860"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"30861"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30862"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30863"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30864"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30865"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30866"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"30867"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"30868"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30869"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"30870"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30871"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30872"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30873"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30874"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30875"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30876"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"30877"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30878"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30879"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30880"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30881"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30882"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30883"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30884"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"30885"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30886"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"30887"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"30888"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30889"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30890"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30891"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"30892"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30893"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30894"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30895"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"30896"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30897"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"30898"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30899"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30900"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30901"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30902"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30903"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"30904"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30905"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"30906"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30907"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30908"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30909"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30910"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30911"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"30912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30913"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30914"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30915"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30916"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"30917"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"30918"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30919"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30920"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30921"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30923"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30924"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"30925"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30926"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30927"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30928"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30929"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30930"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"30931"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30932"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30933"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30934"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30935"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30936"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30937"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"30938"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30939"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30940"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30941"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30942"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30943"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30944"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30945"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30946"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30947"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30948"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30949"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30950"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30951"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30952"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30953"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"30954"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30955"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30956"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30957"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30958"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30959"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30960"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"30961"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30962"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30963"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30964"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30965"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30966"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30967"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30968"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30969"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30970"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30971"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30972"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30973"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30974"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30975"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30976"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30977"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30978"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30979"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30980"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30981"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30982"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30983"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30984"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30985"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30986"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30987"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30988"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30989"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30990"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30991"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30992"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30993"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"30994"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"30995"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30996"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"30997"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30998"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"30999"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31000"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31001"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31002"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31003"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31004"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31005"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31006"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31007"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31008"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31009"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31010"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31011"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31012"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31013"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31014"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31015"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31016"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31017"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31018"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31019"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31020"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31021"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31022"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31023"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31024"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31025"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31026"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31027"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31028"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31029"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31030"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31031"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31032"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31033"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31034"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31035"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31036"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31037"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31038"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31039"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31040"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31041"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31042"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"31043"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31044"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31045"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31046"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31047"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31048"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31049"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31050"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31051"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31052"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31053"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31054"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31055"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31056"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31057"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31058"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30801"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"30802"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"30803"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30804"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"30805"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30806"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"96.1950531"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30783"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30784"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30785"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30786"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30787"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30788"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30789"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30790"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30791"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30792"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30793"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30794"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30795"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30796"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30797"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30798"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"96.1950531"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"63.5"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"30799"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"30800"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Cymbal"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27121"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27122"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27123"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27124"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27125"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27126"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"79"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"0"}}}},{"_attributes":{"Id":"14"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31059"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal Mod 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31084"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Cymbal-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"223167"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t5C00430079006D00620061006C002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Cymbal"}}]},"FileSize":{"_attributes":{"Value":"680466"}},"Crc":{"_attributes":{"Value":"59924"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"223168"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"2.3246666666666669","BeatTime":"4"}},{"_attributes":{"Id":"2","SecTime":"2.342828125","BeatTime":"4.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.000593749999999999985","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31085"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31086"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31087"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31088"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31089"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31090"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31091"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31092"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31093"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31094"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31095"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31096"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31097"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31098"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"31099"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31100"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"25"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"31101"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31102"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31103"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31104"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31105"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31106"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31107"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"31108"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31109"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31110"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31111"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31112"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31113"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31114"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31115"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31116"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31117"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31118"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31119"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31120"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31121"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31122"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31123"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31124"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31125"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31126"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31127"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31128"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31129"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"31130"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31131"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31132"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31133"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31134"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31135"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31136"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31137"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"31138"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31139"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31140"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31141"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31142"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31143"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"31144"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"31145"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31146"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"31147"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31148"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31149"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31150"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"31151"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31152"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31153"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"31154"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31155"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31156"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31157"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31158"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31159"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31160"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31161"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"31162"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31163"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31164"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"31165"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31166"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31168"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31170"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31171"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31172"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"31173"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31174"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"31175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31176"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31177"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31178"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"31179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31180"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"31181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31182"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"31183"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31184"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31185"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31186"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31187"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31188"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"31189"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31190"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31191"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31192"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31193"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31194"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"31195"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31196"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"31197"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31198"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31199"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31200"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31201"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"31202"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31203"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31204"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31205"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31206"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31207"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"31208"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31209"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31210"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31211"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31212"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31213"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31214"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31215"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31216"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31217"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31218"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31219"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31220"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31221"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31222"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"31223"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31224"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31225"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31226"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31227"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31228"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31229"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31230"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"31231"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31232"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31233"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31234"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31235"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31236"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31237"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31238"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31239"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31240"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31241"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31242"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31243"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31244"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31245"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31246"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31247"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31248"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31249"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31250"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31251"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31252"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31253"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31254"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31255"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31256"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31257"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31258"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31259"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31260"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31261"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31262"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31263"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31264"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31265"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31266"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31267"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31268"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31269"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31270"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31271"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31272"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31273"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31274"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31275"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31276"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31277"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31278"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31279"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31280"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31281"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31282"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31283"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31284"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31285"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31286"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31287"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31288"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31289"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31290"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31291"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31292"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31293"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31294"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31295"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31296"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31297"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31298"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31299"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31300"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31301"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31302"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31303"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31304"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31305"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31306"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31307"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31308"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31309"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31310"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31311"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31312"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31313"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31314"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31315"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31316"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31317"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31318"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31319"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"31320"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31321"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31322"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31323"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31324"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31325"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31326"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31327"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31328"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31329"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31330"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31331"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31332"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31333"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31334"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31335"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31078"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31079"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"31080"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31081"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31082"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31083"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"96.1950531"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31060"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31061"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31062"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31063"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31064"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31065"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31066"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31067"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31068"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31069"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"72"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31070"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31071"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"64"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31072"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31073"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31074"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31075"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"96.1950531"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"72"}},"MacroDefaults.6":{"_attributes":{"Value":"64"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31076"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31077"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Cymbal"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27127"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27128"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27129"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27130"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27131"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27132"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"78"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"2"}}}},{"_attributes":{"Id":"15"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"false"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"InstrumentGroupDevice":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31336"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"3","Dir":"Drums"}},{"_attributes":{"Id":"4","Dir":"Drum Hits"}},{"_attributes":{"Id":"5","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal Mod 606.adg"}},"Type":{"_attributes":{"Value":"0"}},"Data":{},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Branches":{"InstrumentBranch":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"EffectiveName":{"_attributes":{"Value":"Cymbal Mod 606"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"IsSelected":{"_attributes":{"Value":"true"}},"DeviceChain":{"MidiToAudioDeviceChain":{"_attributes":{"Id":"0"},"Devices":{"OriginalSimpler":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31361"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Instruments"}},{"_attributes":{"Id":"74","Dir":"Sampler"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0049006E0073007400720075006D0065006E00740073005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"MultiSampler"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Cymbal Mod 606"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Player":{"MultiSampleMap":{"SampleParts":{"MultiSamplePart":{"_attributes":{"Id":"0","HasImportedSlicePoints":"true","NeedsAnalysisData":"true"},"LomId":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Cymbal-606"}},"Selection":{"_attributes":{"Value":"true"}},"IsActive":{"_attributes":{"Value":"true"}},"Solo":{"_attributes":{"Value":"false"}},"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"SelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"RootKey":{"_attributes":{"Value":"60"}},"Detune":{"_attributes":{"Value":"0"}},"TuneScale":{"_attributes":{"Value":"100"}},"Panorama":{"_attributes":{"Value":"0"}},"Volume":{"_attributes":{"Value":"1"}},"Link":{"_attributes":{"Value":"false"}},"SampleStart":{"_attributes":{"Value":"0"}},"SampleEnd":{"_attributes":{"Value":"223167"}},"SustainLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"0"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"ReleaseLoop":{"Start":{"_attributes":{"Value":"0"}},"End":{"_attributes":{"Value":"223167"}},"Mode":{"_attributes":{"Value":"3"}},"Crossfade":{"_attributes":{"Value":"0"}},"Detune":{"_attributes":{"Value":"0"}}},"SampleRef":{"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Samples"}},{"_attributes":{"Id":"73","Dir":"Drums"}},{"_attributes":{"Id":"74","Dir":"Cymbal"}}]},"Name":{"_attributes":{"Value":"Cymbal-606.aif"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t530061006D0070006C00650073005C004400720075006D0073005C00430079006D00620061006C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t5C00430079006D00620061006C002D003600300036002E006100690066000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{"RelativePathElement":[{"_attributes":{"Id":"7","Dir":"ProgramData"}},{"_attributes":{"Id":"8","Dir":"Ableton"}},{"_attributes":{"Id":"9","Dir":"Live 10 Suite"}},{"_attributes":{"Id":"10","Dir":"Resources"}},{"_attributes":{"Id":"11","Dir":"Core Library"}},{"_attributes":{"Id":"12","Dir":"Samples"}},{"_attributes":{"Id":"13","Dir":"Drums"}},{"_attributes":{"Id":"14","Dir":"Cymbal"}}]},"FileSize":{"_attributes":{"Value":"680466"}},"Crc":{"_attributes":{"Value":"59924"}},"MaxCrcSize":{"_attributes":{"Value":"16384"}},"HasExtendedInfo":{"_attributes":{"Value":"true"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"LastModDate":{"_attributes":{"Value":"1559142000"}},"SourceContext":{},"SampleUsageHint":{"_attributes":{"Value":"0"}},"DefaultDuration":{"_attributes":{"Value":"223168"}},"DefaultSampleRate":{"_attributes":{"Value":"96000"}}},"SlicingThreshold":{"_attributes":{"Value":"100"}},"SlicingBeatGrid":{"_attributes":{"Value":"4"}},"SlicingRegions":{"_attributes":{"Value":"8"}},"SlicingStyle":{"_attributes":{"Value":"0"}},"SampleWarpProperties":{"WarpMarkers":{"WarpMarker":[{"_attributes":{"Id":"0","SecTime":"0","BeatTime":"0"}},{"_attributes":{"Id":"1","SecTime":"2.3246666666666669","BeatTime":"4"}},{"_attributes":{"Id":"2","SecTime":"2.342828125","BeatTime":"4.03125"}}]},"WarpMode":{"_attributes":{"Value":"0"}},"GranularityTones":{"_attributes":{"Value":"30"}},"GranularityTexture":{"_attributes":{"Value":"65"}},"FluctuationTexture":{"_attributes":{"Value":"25"}},"ComplexProFormants":{"_attributes":{"Value":"100"}},"ComplexProEnvelope":{"_attributes":{"Value":"128"}},"TransientResolution":{"_attributes":{"Value":"6"}},"TransientLoopMode":{"_attributes":{"Value":"2"}},"TransientEnvelope":{"_attributes":{"Value":"100"}},"IsWarped":{"_attributes":{"Value":"false"}},"Onsets":{"UserOnsets":{},"HasUserOnsets":{"_attributes":{"Value":"false"}}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"BeatGrid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}}},"SlicePoints":{"SlicePoint":{"_attributes":{"TimeInSeconds":"0.000593749999999999985","Rank":"0","NormalizedEnergy":"1"}}},"ManualSlicePoints":{},"BeatSlicePoints":{},"RegionSlicePoints":{},"UseDynamicBeatSlices":{"_attributes":{"Value":"true"}},"UseDynamicRegionSlices":{"_attributes":{"Value":"true"}}}},"LoadInRam":{"_attributes":{"Value":"false"}},"LayerCrossfade":{"_attributes":{"Value":"0"}},"SourceContext":{}},"LoopModulators":{"IsModulated":{"_attributes":{"Value":"true"}},"SampleStart":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31362"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31363"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SampleLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31364"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31365"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31366"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"LoopLength":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31367"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31368"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31369"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31370"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"Reverse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31371"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Snap":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31372"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SampleSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31373"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31374"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SubOsc":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31375"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{"SimplerSubOsc":{"_attributes":{"Id":"0"},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31449"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Type":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31450"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3162277937"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31451"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31452"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31453"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31454"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"IsFixedFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31455"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"TuneCoarse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"36"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-2"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"31456"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31457"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TuneFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"31458"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31459"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FreqFixed":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"1000"}}},"AutomationTarget":{"_attributes":{"Id":"31460"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31461"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FreqFixedMul":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"4"}}},"AutomationTarget":{"_attributes":{"Id":"31462"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31463"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"31464"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31465"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31466"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31467"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31468"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31469"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"30000.0059"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"31470"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31471"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31472"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31473"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31474"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31475"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31476"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31477"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"30000.0059"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"31478"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31479"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31480"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31481"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31482"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31483"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31484"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"31485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31486"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"31487"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31488"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31489"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31490"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"ScrollPosition":{"_attributes":{"Value":"0"}}}}}},"InterpolationMode":{"_attributes":{"Value":"3"}},"UseConstPowCrossfade":{"_attributes":{"Value":"true"}}},"Pitch":{"TransposeKey":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"6"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-24"}},"Max":{"_attributes":{"Value":"24"}}},"AutomationTarget":{"_attributes":{"Id":"31376"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31377"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TransposeFine":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-50"}},"Max":{"_attributes":{"Value":"50"}}},"AutomationTarget":{"_attributes":{"Id":"31378"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31379"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31380"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31381"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31382"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"ScrollPosition":{"_attributes":{"Value":"-1073741824"}}},"Filter":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31383"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Shaper":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31384"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"VolumeAndPan":{"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.03937149"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-36"}},"Max":{"_attributes":{"Value":"36"}}},"AutomationTarget":{"_attributes":{"Id":"31385"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31386"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2204724401"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31387"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31388"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31389"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31390"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"VolumeLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31391"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31392"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31393"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31394"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31395"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31396"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaRnd":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31397"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31398"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PanoramaLfoAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31399"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31400"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Envelope":{"AttackTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"4"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0.1000000015"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31401"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31402"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31403"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31404"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AttackSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31405"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31406"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"31407"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31408"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31409"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31410"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecaySlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31411"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31412"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31413"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31414"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseTime":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"5"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"9999.99707"}}},"AutomationTarget":{"_attributes":{"Id":"31415"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31416"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseLevel":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31417"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31418"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ReleaseSlope":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31419"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31420"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"AutomationTarget":{"_attributes":{"Id":"31421"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"LoopTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100.000031"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"20000"}}},"AutomationTarget":{"_attributes":{"Id":"31422"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31423"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"RepeatTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"14"}}},"AutomationTarget":{"_attributes":{"Id":"31424"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31425"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeVelScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31426"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31427"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CurrentOverlay":{"_attributes":{"Value":"0"}}},"OneShotEnvelope":{"FadeInTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"31428"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31429"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SustainMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31430"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FadeOutTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.1000000089"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2000"}}},"AutomationTarget":{"_attributes":{"Id":"31431"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31432"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"AuxEnv":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31433"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"Lfo":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31434"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.0":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31435"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"AuxLfos.1":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31436"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Slot":{"Value":{}}},"KeyDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"VelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"RelVelDst":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}}},"MidiCtrl.0":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.1":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.2":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"MidiCtrl.3":{"ModConnections.0":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"ModConnections.1":{"Amount":{"_attributes":{"Value":"0"}},"Connection":{"_attributes":{"Value":"0"}}},"Feedback":{"_attributes":{"Value":"0"}}},"Globals":{"NumVoices":{"_attributes":{"Value":"2"}},"NumVoicesEnvTimeControl":{"_attributes":{"Value":"false"}},"RetriggerMode":{"_attributes":{"Value":"true"}},"ModulationResolution":{"_attributes":{"Value":"2"}},"SpreadAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31437"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31438"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"KeyZoneShift":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-48"}},"Max":{"_attributes":{"Value":"48"}}},"AutomationTarget":{"_attributes":{"Id":"31439"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31440"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"31441"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PortamentoTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50.0000153"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"10000"}}},"AutomationTarget":{"_attributes":{"Id":"31442"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31443"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PitchBendRange":{"_attributes":{"Value":"5"}},"ScrollPosition":{"_attributes":{"Value":"0"}},"EnvScale":{"EnvTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31444"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31445"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeKeyScale":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-100"}},"Max":{"_attributes":{"Value":"100"}}},"AutomationTarget":{"_attributes":{"Id":"31446"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31447"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EnvTimeIncludeAttack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31448"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}},"IsSimpler":{"_attributes":{"Value":"true"}},"PlaybackMode":{"_attributes":{"Value":"0"}},"LegacyMode":{"_attributes":{"Value":"false"}}},"ViewSettings":{"SelectedPage":{"_attributes":{"Value":"0"}},"ZoneEditorVisible":{"_attributes":{"Value":"false"}},"Seconds":{"_attributes":{"Value":"false"}},"SelectedSampleChannel":{"_attributes":{"Value":"0"}},"VerticalSampleZoom":{"_attributes":{"Value":"1"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"SimplerBreakoutVisible":{"_attributes":{"Value":"false"}}},"SimplerSlicing":{"PlaybackMode":{"_attributes":{"Value":"0"}}}},"GlueCompressor":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31491"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"Glue Compressor"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C0047006C0075006500200043006F006D00700072006500730073006F0072000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"GlueCompressor"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Threshold":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"-30"}}},"AutomationTarget":{"_attributes":{"Id":"31492"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31493"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Range":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"70"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"70"}}},"AutomationTarget":{"_attributes":{"Id":"31494"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31495"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Makeup":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"3"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31496"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31497"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Attack":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"4"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"31498"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31499"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Ratio":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"2"}}},"AutomationTarget":{"_attributes":{"Id":"31500"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31501"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Release":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"6"}}},"AutomationTarget":{"_attributes":{"Id":"31502"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31503"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31505"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"PeakClipIn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SideChain":{"OnOff":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31507"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoutedInput":{"Routable":{"Target":{"_attributes":{"Value":"AudioIn/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"15.8489332"}}},"AutomationTarget":{"_attributes":{"Id":"31508"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31509"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31510"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31511"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainEq":{"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31512"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31513"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"30"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"31514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31515"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067691"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"31516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31517"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31518"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31519"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"SideChainListen":{"_attributes":{"Value":"false"}},"ParamBlockSize":{"_attributes":{"Value":"128"}},"Oversample":{"_attributes":{"Value":"false"}}},"Eq8":{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31520"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"72","Dir":"Devices"}},{"_attributes":{"Id":"73","Dir":"Audio Effects"}},{"_attributes":{"Id":"74","Dir":"EQ Eight"}}]},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C00450051002000450069006700680074000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}},"DeviceId":{"_attributes":{"Name":"Eq8"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"true"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Precision":{"_attributes":{"Value":"0"}},"Mode":{"_attributes":{"Value":"0"}},"EditMode":{"_attributes":{"Value":"false"}},"SelectedBand":{"_attributes":{"Value":"3"}},"GlobalGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-12"}},"Max":{"_attributes":{"Value":"12"}}},"AutomationTarget":{"_attributes":{"Id":"31521"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31522"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Scale":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31523"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31524"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Bands.0":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31525"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"0"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31526"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"0"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"40"}},"Max":{"_attributes":{"Value":"7000"}}},"AutomationTarget":{"_attributes":{"Id":"31527"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31528"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31529"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31530"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31531"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31532"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31533"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"31534"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"40"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31535"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31536"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31537"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31538"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31539"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31540"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.1":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31541"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"31542"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31543"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31544"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31545"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31546"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31547"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31548"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31549"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"31550"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"200"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31551"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31552"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31553"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31554"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31555"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31556"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.2":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31557"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31558"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31559"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31560"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31561"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31562"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31563"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31564"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31565"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31566"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"99.9999924"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31567"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31568"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31569"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31570"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31571"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31572"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.3":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31573"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31574"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"671.36676"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31575"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31576"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-5.16393471"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31577"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31578"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3443258703"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31579"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31580"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31581"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31582"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"500"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31583"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31584"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31585"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31586"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31587"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31588"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.4":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"2"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31589"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"65"}},"Max":{"_attributes":{"Value":"63"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31590"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8162.05273"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31591"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31592"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5.65573883"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31593"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31594"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2802042365"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31595"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31596"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31597"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31598"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2000.00024"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31599"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31600"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31601"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31602"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31603"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31604"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.5":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31605"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31606"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31607"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31608"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31609"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31610"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31611"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31612"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31613"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3"}},"AutomationTarget":{"_attributes":{"Id":"31614"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"10000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31615"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31616"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31617"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31618"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31619"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31620"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.6":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31621"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31622"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31623"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31624"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31625"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31626"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31627"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31628"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31629"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5"}},"AutomationTarget":{"_attributes":{"Id":"31630"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"5000.00098"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31631"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31632"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31633"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31634"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31635"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31636"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"Bands.7":{"ParameterA":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31637"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"127"}},"Max":{"_attributes":{"Value":"126"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31638"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"1"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"18000"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2000"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"31639"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31640"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31641"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31642"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31643"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31644"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}},"ParameterB":{"IsOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31645"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Mode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"6"}},"AutomationTarget":{"_attributes":{"Id":"31646"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"18000.0039"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"10"}},"Max":{"_attributes":{"Value":"22000"}}},"AutomationTarget":{"_attributes":{"Id":"31647"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31648"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Gain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-15"}},"Max":{"_attributes":{"Value":"15"}}},"AutomationTarget":{"_attributes":{"Id":"31649"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31650"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Q":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.7071067095"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.1000000015"}},"Max":{"_attributes":{"Value":"18"}}},"AutomationTarget":{"_attributes":{"Id":"31651"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31652"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}},"SpectrumAnalyzer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"false"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31653"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"ScaleYBegin":{"_attributes":{"Value":"0"}},"ScaleYRange":{"_attributes":{"Value":"80"}},"AutoScaleY":{"_attributes":{"Value":"false"}},"ScaleXMode":{"_attributes":{"Value":"1"}},"ShowBins":{"_attributes":{"Value":"false"}},"ShowMax":{"_attributes":{"Value":"true"}},"AnalyzeOn":{"_attributes":{"Value":"true"}},"Length":{"_attributes":{"Value":"2"}},"Window":{"_attributes":{"Value":"3"}},"ChannelMode":{"_attributes":{"Value":"2"}},"NumAverages":{"_attributes":{"Value":"1"}},"MinRefreshTime":{"_attributes":{"Value":"60"}}},"Live8ShelfScaleLegacyMode":{"_attributes":{"Value":"false"}},"AuditionOnOff":{"_attributes":{"Value":"false"}},"AdaptiveQFactor":{"_attributes":{"Value":"1.12"}},"AdaptiveQ":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"31654"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31355"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"31356"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"KeyMidi":{"PersistentKeyString":{"_attributes":{"Value":""}},"IsNote":{"_attributes":{"Value":"false"}},"Channel":{"_attributes":{"Value":"16"}},"NoteOrController":{"_attributes":{"Value":"7"}},"LowerRangeNote":{"_attributes":{"Value":"-1"}},"UpperRangeNote":{"_attributes":{"Value":"-1"}},"ControllerMapMode":{"_attributes":{"Value":"0"}}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"31357"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31358"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"31359"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31360"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"ZoneSettings":{"KeyRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}},"VelocityRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"127"}},"CrossfadeMin":{"_attributes":{"Value":"1"}},"CrossfadeMax":{"_attributes":{"Value":"127"}}}}}},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"96.1950531"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31337"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31338"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31339"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31340"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"63.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31341"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31342"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31343"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31344"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31345"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31346"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"127"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31347"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31348"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"64"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31349"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31350"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"107.950005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31351"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31352"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Low Cut"}},"MacroDisplayNames.1":{"_attributes":{"Value":"High Cut"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Tone"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Glue"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Attack"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Decay"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Pitch"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Volume"}},"MacroDefaults.0":{"_attributes":{"Value":"96.1950531"}},"MacroDefaults.1":{"_attributes":{"Value":"127"}},"MacroDefaults.2":{"_attributes":{"Value":"63.5"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"127"}},"MacroDefaults.6":{"_attributes":{"Value":"64"}},"MacroDefaults.7":{"_attributes":{"Value":"107.950005"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"true"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"false"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"31353"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"31354"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"0"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"181"}},"MacroColorIndex.5":{"_attributes":{"Value":"181"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"195"}},"LockId":{"_attributes":{"Value":"0"}},"LockSeal":{"_attributes":{"Value":"0"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"false"}}}}}},"BranchSelectorRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0"}},"CrossfadeMin":{"_attributes":{"Value":"0"}},"CrossfadeMax":{"_attributes":{"Value":"0"}}},"IsSoloed":{"_attributes":{"Value":"false"}},"SessionViewBranchWidth":{"_attributes":{"Value":"55"}},"IsHighlightedInSessionView":{"_attributes":{"Value":"false"}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{},"BrowserContentPath":{"_attributes":{"Value":"query:Drums#Drum%20Hits:Cymbal"}},"PresetRef":{},"BranchDeviceId":{"_attributes":{"Value":""}}}}},"ColorIndex":{"_attributes":{"Value":"147"}},"AutoColored":{"_attributes":{"Value":"false"}},"AutoColorScheme":{"_attributes":{"Value":"0"}},"SoloActivatedInSessionMixer":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"MixerDevice":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27133"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"AbletonDefaultPresetRef":{"_attributes":{"Id":"1"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"false"}},"RelativePathType":{"_attributes":{"Value":"0"}},"RelativePath":{},"Name":{"_attributes":{"Value":""}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00550073006500720073005C0042006C007500640077006100720066005C0044006500\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73006B0074006F0070000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"true"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":""}},"LivePackId":{"_attributes":{"Value":""}}},"DeviceId":{"_attributes":{"Name":"AudioBranchMixerDevice"}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"AudioBranchMixerDevice"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"27134"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"27135"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27136"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Panorama":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"27137"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27138"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendInfos":{},"RoutingHelper":{"Routable":{"Target":{"_attributes":{"Value":"AudioOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"No Output"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"TargetEnum":{"_attributes":{"Value":"0"}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"BranchInfo":{"ReceivingNote":{"_attributes":{"Value":"77"}},"SendingNote":{"_attributes":{"Value":"60"}},"ChokeGroup":{"_attributes":{"Value":"2"}}}}]},"IsBranchesListVisible":{"_attributes":{"Value":"false"}},"IsReturnBranchesListVisible":{"_attributes":{"Value":"false"}},"IsRangesEditorVisible":{"_attributes":{"Value":"false"}},"AreDevicesVisible":{"_attributes":{"Value":"true"}},"MacroControls.0":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27025"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27026"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.1":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27027"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27028"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.2":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27029"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27030"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.3":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27031"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27032"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.4":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27033"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27034"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.5":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27035"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27036"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.6":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27037"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27038"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroControls.7":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27039"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27040"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MacroDisplayNames.0":{"_attributes":{"Value":"Macro 1"}},"MacroDisplayNames.1":{"_attributes":{"Value":"Macro 2"}},"MacroDisplayNames.2":{"_attributes":{"Value":"Macro 3"}},"MacroDisplayNames.3":{"_attributes":{"Value":"Macro 4"}},"MacroDisplayNames.4":{"_attributes":{"Value":"Macro 5"}},"MacroDisplayNames.5":{"_attributes":{"Value":"Macro 6"}},"MacroDisplayNames.6":{"_attributes":{"Value":"Macro 7"}},"MacroDisplayNames.7":{"_attributes":{"Value":"Macro 8"}},"MacroDefaults.0":{"_attributes":{"Value":"0"}},"MacroDefaults.1":{"_attributes":{"Value":"0"}},"MacroDefaults.2":{"_attributes":{"Value":"0"}},"MacroDefaults.3":{"_attributes":{"Value":"0"}},"MacroDefaults.4":{"_attributes":{"Value":"0"}},"MacroDefaults.5":{"_attributes":{"Value":"0"}},"MacroDefaults.6":{"_attributes":{"Value":"0"}},"MacroDefaults.7":{"_attributes":{"Value":"0"}},"MacroAnnotations.0":{"_attributes":{"Value":""}},"MacroAnnotations.1":{"_attributes":{"Value":""}},"MacroAnnotations.2":{"_attributes":{"Value":""}},"MacroAnnotations.3":{"_attributes":{"Value":""}},"MacroAnnotations.4":{"_attributes":{"Value":""}},"MacroAnnotations.5":{"_attributes":{"Value":""}},"MacroAnnotations.6":{"_attributes":{"Value":""}},"MacroAnnotations.7":{"_attributes":{"Value":""}},"ForceDisplayGenericValue.0":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.1":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.2":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.3":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.4":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.5":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.6":{"_attributes":{"Value":"false"}},"ForceDisplayGenericValue.7":{"_attributes":{"Value":"false"}},"AreMacroControlsVisible":{"_attributes":{"Value":"false"}},"IsAutoSelectEnabled":{"_attributes":{"Value":"true"}},"ChainSelector":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"127"}}},"AutomationTarget":{"_attributes":{"Id":"27041"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"27042"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChainSelectorRelativePosition":{"_attributes":{"Value":"-1073741824"}},"ViewsToRestoreWhenUnfolding":{"_attributes":{"Value":"10"}},"ReturnBranches":{},"BranchesSplitterProportion":{"_attributes":{"Value":"0.5"}},"ShowBranchesInSessionMixer":{"_attributes":{"Value":"false"}},"MacroColorIndex.0":{"_attributes":{"Value":"0"}},"MacroColorIndex.1":{"_attributes":{"Value":"0"}},"MacroColorIndex.2":{"_attributes":{"Value":"0"}},"MacroColorIndex.3":{"_attributes":{"Value":"0"}},"MacroColorIndex.4":{"_attributes":{"Value":"0"}},"MacroColorIndex.5":{"_attributes":{"Value":"0"}},"MacroColorIndex.6":{"_attributes":{"Value":"0"}},"MacroColorIndex.7":{"_attributes":{"Value":"0"}},"LockId":{"_attributes":{"Value":"1001"}},"LockSeal":{"_attributes":{"Value":"-559228159"}},"ChainsListWrapper":{"_attributes":{"LomId":"0"}},"ReturnChainsListWrapper":{"_attributes":{"LomId":"0"}},"ChainSelectorFilterMidiCtrl":{"_attributes":{"Value":"false"}},"RangeTypeIndex":{"_attributes":{"Value":"1"}},"ShowsZonesInsteadOfNoteNames":{"_attributes":{"Value":"true"}},"IsMidiSectionVisible":{"_attributes":{"Value":"true"}},"AreSendsVisible":{"_attributes":{"Value":"false"}},"ArePadsVisible":{"_attributes":{"Value":"true"}},"PadScrollPosition":{"_attributes":{"Value":"19"}},"DrumPadsListWrapper":{"_attributes":{"LomId":"0"}},"VisibleDrumPadsListWrapper":{"_attributes":{"LomId":"0"}}}}}},"ReWireSlaveMidiTargetId":{"_attributes":{"Value":"2"}}}],"ReturnTrack":[{"_attributes":{"Id":"2"},"LomId":{"_attributes":{"Value":"9"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"A-Reverb"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"143"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"2"}},"SelectedEnvelope":{"_attributes":{"Value":"2"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"85"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"484"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"2"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"501"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"502"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"false"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"522"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"523"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"false"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"485"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"486"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"487"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16167"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16168"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16169"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16170"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"488"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"489"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"490"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"DeviceChain":{"Devices":{"Reverb":{"_attributes":{"Id":"1"},"LomId":{"_attributes":{"Value":"17"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"798"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"30"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"140","Dir":"Devices"}},{"_attributes":{"Id":"141","Dir":"Audio Effects"}},{"_attributes":{"Id":"142","Dir":"Reverb"}},{"_attributes":{"Id":"143","Dir":"Room"}}]},"Name":{"_attributes":{"Value":"Ambience Medium.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6300650020004D0065006400690075006D002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":"Ambience Medium"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"0"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"140","Dir":"Devices"}},{"_attributes":{"Id":"141","Dir":"Audio Effects"}},{"_attributes":{"Id":"142","Dir":"Reverb"}},{"_attributes":{"Id":"143","Dir":"Room"}}]},"Name":{"_attributes":{"Value":"Ambience Medium.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6300650020004D0065006400690075006D002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":""}},"PresetRef":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"140","Dir":"Devices"}},{"_attributes":{"Id":"141","Dir":"Audio Effects"}},{"_attributes":{"Id":"142","Dir":"Reverb"}},{"_attributes":{"Id":"143","Dir":"Room"}}]},"Name":{"_attributes":{"Value":"Ambience Medium.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C00410062006C0065007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F006E005C004C006900760065002000310030002000530075006900740065005C00520065007300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6F00750072006300650073005C0043006F007200650020004C006900620072006100720079005C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t44006500760069006300650073005C0041007500640069006F002000450066006600650063007400\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t73005C005200650076006500720062005C0052006F006F006D005C0041006D006200690065006E00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6300650020004D0065006400690075006D002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}},"BranchDeviceId":{"_attributes":{"Value":"device:ableton:audiofx:Reverb?n=Reverb"}}}}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"PreDelay":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"15.7905722"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.5"}},"Max":{"_attributes":{"Value":"250"}}},"AutomationTarget":{"_attributes":{"Id":"799"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"800"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"BandHighOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"801"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"BandLowOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"802"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"BandFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"50"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"50"}},"Max":{"_attributes":{"Value":"18000"}}},"AutomationTarget":{"_attributes":{"Id":"803"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"804"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"BandWidth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"7.01063824"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.5"}},"Max":{"_attributes":{"Value":"9"}}},"AutomationTarget":{"_attributes":{"Id":"805"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"806"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SpinOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"807"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"EarlyReflectModFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.5968614221"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.07400000095"}},"Max":{"_attributes":{"Value":"1.29999995"}}},"AutomationTarget":{"_attributes":{"Id":"808"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"809"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"EarlyReflectModDepth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"17.7982407"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"2"}},"Max":{"_attributes":{"Value":"55"}}},"AutomationTarget":{"_attributes":{"Id":"810"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"811"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DiffuseDelay":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"812"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"813"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ShelfHighOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"814"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ShelfHiFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1314.0647"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"20"}},"Max":{"_attributes":{"Value":"16000"}}},"AutomationTarget":{"_attributes":{"Id":"815"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"816"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ShelfHiGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.6425532103"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"1.00000012"}}},"AutomationTarget":{"_attributes":{"Id":"817"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"818"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ShelfLowOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"819"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ShelfLoFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"669.981018"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"20"}},"Max":{"_attributes":{"Value":"15000"}}},"AutomationTarget":{"_attributes":{"Id":"820"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"821"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ShelfLoGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3702127635"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.200000003"}},"Max":{"_attributes":{"Value":"1.00000012"}}},"AutomationTarget":{"_attributes":{"Id":"822"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"823"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ChorusOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"824"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SizeModFreq":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1.96697807"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.009999999776"}},"Max":{"_attributes":{"Value":"8"}}},"AutomationTarget":{"_attributes":{"Id":"825"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"826"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SizeModDepth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1.11797035"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.009999999776"}},"Max":{"_attributes":{"Value":"4"}}},"AutomationTarget":{"_attributes":{"Id":"827"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"828"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DecayTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"3624.51904"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"200"}},"Max":{"_attributes":{"Value":"60000"}}},"AutomationTarget":{"_attributes":{"Id":"829"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"830"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AllPassGain":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.9599999785"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.001000000047"}},"Max":{"_attributes":{"Value":"0.9600000381"}}},"AutomationTarget":{"_attributes":{"Id":"831"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"832"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"AllPassSize":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.05000000075"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"833"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"834"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"FreezeOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"835"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"FlatOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"836"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"CutOn":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"837"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"RoomSize":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1.78249145"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.2220000029"}},"Max":{"_attributes":{"Value":"500"}}},"AutomationTarget":{"_attributes":{"Id":"838"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"839"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"StereoSeparation":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"87.6190491"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"120"}}},"AutomationTarget":{"_attributes":{"Id":"840"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"841"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"StereoSeparationOnDrySignal":{"_attributes":{"Value":"true"}},"RoomType":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"AutomationTarget":{"_attributes":{"Id":"842"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MixReflect":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1.99530005"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.02999999933"}},"Max":{"_attributes":{"Value":"1.99530005"}}},"AutomationTarget":{"_attributes":{"Id":"843"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"844"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MixDiffuse":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.9658571482"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.02999999933"}},"Max":{"_attributes":{"Value":"1.99530005"}}},"AutomationTarget":{"_attributes":{"Id":"845"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"846"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"MixDirect":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"847"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"848"},"LockEnvelope":{"_attributes":{"Value":"0"}}}}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"491"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"492"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"493"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"494"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"495"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"496"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}}}},{"_attributes":{"Id":"3"},"LomId":{"_attributes":{"Value":"10"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"B-Delay"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"141"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"1"}},"SelectedEnvelope":{"_attributes":{"Value":"10"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"85"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/Master"}},"UpperDisplayString":{"_attributes":{"Value":"Master"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"503"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"2"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{"TrackSendHolder":[{"_attributes":{"Id":"0"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"504"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"505"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"false"}}},{"_attributes":{"Id":"1"},"Send":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.0003162277571"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"524"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"525"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Active":{"_attributes":{"Value":"false"}}}]},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"506"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"507"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"508"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16171"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16172"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16173"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16174"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"509"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"510"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"511"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"DeviceChain":{"Devices":{"Delay":{"_attributes":{"Id":"7"},"LomId":{"_attributes":{"Value":"18"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"10578"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"10"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"12","Dir":"Devices"}},{"_attributes":{"Id":"13","Dir":"Audio Effects"}},{"_attributes":{"Id":"14","Dir":"Simple Delay"}}]},"Name":{"_attributes":{"Value":"Dotted Eighth Note.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6900760065002000310030002000530075006900740065005C005200650073006F00750072006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t670068007400680020004E006F00740065002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"true"}},"UserName":{"_attributes":{"Value":"Delay"}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{"BranchSourceContext":{"_attributes":{"Id":"0"},"OriginalFileRef":{"FileRef":{"_attributes":{"Id":"0"},"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"12","Dir":"Devices"}},{"_attributes":{"Id":"13","Dir":"Audio Effects"}},{"_attributes":{"Id":"14","Dir":"Simple Delay"}}]},"Name":{"_attributes":{"Value":"Dotted Eighth Note.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6900760065002000310030002000530075006900740065005C005200650073006F00750072006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t670068007400680020004E006F00740065002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}},"BrowserContentPath":{"_attributes":{"Value":"query:AudioFx#Simple%20Delay:Dotted%20Eighth%20Note.adv"}},"PresetRef":{"FilePresetRef":{"_attributes":{"Id":"0"},"FileRef":{"HasRelativePath":{"_attributes":{"Value":"true"}},"RelativePathType":{"_attributes":{"Value":"5"}},"RelativePath":{"RelativePathElement":[{"_attributes":{"Id":"12","Dir":"Devices"}},{"_attributes":{"Id":"13","Dir":"Audio Effects"}},{"_attributes":{"Id":"14","Dir":"Simple Delay"}}]},"Name":{"_attributes":{"Value":"Dotted Eighth Note.adv"}},"Type":{"_attributes":{"Value":"1"}},"Data":{"_text":"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t43003A005C00500072006F006700720061006D0044006100740061005C0053006F006E005C004C00\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6900760065002000310030002000530075006900740065005C005200650073006F00750072006300\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t650073005C0043006F007200650020004C006900620072006100720079005C004400650076006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6300650073005C0041007500640069006F00200045006600660065006300740073005C0053006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t6D0070006C0065002000440065006C00610079005C0044006F007400740065006400200045006900\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t670068007400680020004E006F00740065002E006100640076000000\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},"RefersToFolder":{"_attributes":{"Value":"false"}},"SearchHint":{"PathHint":{},"FileSize":{"_attributes":{"Value":"0"}},"Crc":{"_attributes":{"Value":"0"}},"MaxCrcSize":{"_attributes":{"Value":"0"}},"HasExtendedInfo":{"_attributes":{"Value":"false"}}},"LivePackName":{"_attributes":{"Value":"Core Library"}},"LivePackId":{"_attributes":{"Value":"www.ableton.com/0"}}}}},"BranchDeviceId":{"_attributes":{"Value":"device:ableton:audiofx:CrossDelay?n=Simple%20Delay"}}}}},"OverwriteProtectionNumber":{"_attributes":{"Value":"2561"}},"DelayLine_SmoothingMode":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"17911"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_Link":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"10579"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"DelayLine_PingPong":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"17912"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"DelayLine_SyncL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"10580"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"DelayLine_SyncR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"10586"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"DelayLine_TimeL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3749999404"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.001000000047"}},"Max":{"_attributes":{"Value":"5"}}},"AutomationTarget":{"_attributes":{"Id":"17913"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17914"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_TimeR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.3749999404"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.001000000047"}},"Max":{"_attributes":{"Value":"5"}}},"AutomationTarget":{"_attributes":{"Id":"17915"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17916"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_SimpleDelayTimeL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"22.1000004"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"300"}}},"AutomationTarget":{"_attributes":{"Id":"10584"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10585"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_SimpleDelayTimeR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"22.8999996"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"300"}}},"AutomationTarget":{"_attributes":{"Id":"10590"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10591"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_PingPongDelayTimeL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"999"}}},"AutomationTarget":{"_attributes":{"Id":"17917"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17918"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_PingPongDelayTimeR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"1"}},"Max":{"_attributes":{"Value":"999"}}},"AutomationTarget":{"_attributes":{"Id":"17919"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17920"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_SyncedSixteenthL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"10581"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_SyncedSixteenthR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"2"}},"AutomationTarget":{"_attributes":{"Id":"10587"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_OffsetL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-0.3330000043"}},"Max":{"_attributes":{"Value":"0.3330000043"}}},"AutomationTarget":{"_attributes":{"Id":"10582"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10583"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_OffsetR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-0.3330000043"}},"Max":{"_attributes":{"Value":"0.3330000043"}}},"AutomationTarget":{"_attributes":{"Id":"10588"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10589"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DelayLine_CompatibilityMode":{"_attributes":{"Value":"1"}},"Feedback":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.2099999934"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"0.9499999881"}}},"AutomationTarget":{"_attributes":{"Id":"10592"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10593"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Freeze":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"17921"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Filter_On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"false"}},"AutomationTarget":{"_attributes":{"Id":"17922"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"Filter_Frequency":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"999.999817"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"49.9999924"}},"Max":{"_attributes":{"Value":"18000.0059"}}},"AutomationTarget":{"_attributes":{"Id":"17923"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17924"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Filter_Bandwidth":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"8"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.5"}},"Max":{"_attributes":{"Value":"9"}}},"AutomationTarget":{"_attributes":{"Id":"17925"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17926"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Modulation_Frequency":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.5"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.01000000164"}},"Max":{"_attributes":{"Value":"40"}}},"AutomationTarget":{"_attributes":{"Id":"17927"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17928"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Modulation_AmountTime":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"17929"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17930"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Modulation_AmountFilter":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"17931"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"17932"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWet":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"10594"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"10595"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"DryWetMode":{"_attributes":{"Value":"0"}}}}},"FreezeSequencer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"512"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"513"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"514"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"515"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"516"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"517"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}}}}]},"MasterTrack":{"LomId":{"_attributes":{"Value":"11"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Master"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"155"}},"AutomationEnvelopes":{"Envelopes":{"AutomationEnvelope":[{"_attributes":{"Id":"0"},"EnvelopeTarget":{"PointeeId":{"_attributes":{"Value":"10"}}},"Automation":{"Events":{"EnumEvent":{"_attributes":{"Id":"0","Time":"-63072000","Value":"201"}}},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},{"_attributes":{"Id":"1"},"EnvelopeTarget":{"PointeeId":{"_attributes":{"Value":"8"}}},"Automation":{"Events":{"FloatEvent":{"_attributes":{"Id":"44967","Time":"-63072000","Value":"109"}}},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}}]}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"1"}},"SelectedEnvelope":{"_attributes":{"Value":"3"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"85"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. Out"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"1"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"3"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"2"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"3"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"4"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16175"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16176"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16177"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16178"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"5"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"6"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"93"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"7"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}},"Tempo":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"109"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"60"}},"Max":{"_attributes":{"Value":"200"}}},"AutomationTarget":{"_attributes":{"Id":"8"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"9"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TimeSignature":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"201"}},"AutomationTarget":{"_attributes":{"Id":"10"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"GlobalGrooveAmount":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"100"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0"}},"Max":{"_attributes":{"Value":"131.25"}}},"AutomationTarget":{"_attributes":{"Id":"11"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"12"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"CrossFade":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"13"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"14"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"TempoAutomationViewBottom":{"_attributes":{"Value":"60"}},"TempoAutomationViewTop":{"_attributes":{"Value":"200"}}},"FreezeSequencer":{"AudioSequencer":{"_attributes":{"Id":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"15"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"ClipSlotList":{},"MonitoringEnum":{"_attributes":{"Value":"1"}},"Sample":{"LomId":{"_attributes":{"Value":"0"}},"ArrangerAutomation":{"Events":{},"AutomationTransformViewState":{"IsTransformPending":{"_attributes":{"Value":"false"}},"TimeAndValueTransforms":{}}}},"VolumeModulationTarget":{"_attributes":{"Id":"16"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"TranspositionModulationTarget":{"_attributes":{"Id":"17"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"GrainSizeModulationTarget":{"_attributes":{"Id":"18"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"FluxModulationTarget":{"_attributes":{"Id":"19"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"SampleOffsetModulationTarget":{"_attributes":{"Id":"20"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"PitchViewScrollPosition":{"_attributes":{"Value":"-1073741824"}},"SampleOffsetModulationScrollPosition":{"_attributes":{"Value":"-1073741824"}},"Recorder":{"IsArmed":{"_attributes":{"Value":"false"}},"TakeCounter":{"_attributes":{"Value":"1"}}}}},"DeviceChain":{"Devices":{}}}},"PreHearTrack":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"EnvelopeModePreferred":{"_attributes":{"Value":"false"}},"TrackDelay":{"Value":{"_attributes":{"Value":"0"}},"IsValueSampleBased":{"_attributes":{"Value":"false"}}},"Name":{"EffectiveName":{"_attributes":{"Value":"Master"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"MemorizedFirstClipName":{"_attributes":{"Value":""}}},"ColorIndex":{"_attributes":{"Value":"0"}},"AutomationEnvelopes":{"Envelopes":{}},"TrackGroupId":{"_attributes":{"Value":"-1"}},"TrackUnfolded":{"_attributes":{"Value":"false"}},"DevicesListWrapper":{"_attributes":{"LomId":"0"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}},"ViewData":{"_attributes":{"Value":"{}"}},"DeviceChain":{"AutomationLanes":{"AutomationLanes":{"AutomationLane":{"_attributes":{"Id":"0"},"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"IsContentSelected":{"_attributes":{"Value":"false"}},"LaneHeight":{"_attributes":{"Value":"85"}}}},"AreAdditionalAutomationLanesFolded":{"_attributes":{"Value":"false"}}},"ClipEnvelopeChooserViewState":{"SelectedDevice":{"_attributes":{"Value":"0"}},"SelectedEnvelope":{"_attributes":{"Value":"0"}},"PreferModulationVisible":{"_attributes":{"Value":"false"}}},"AudioInputRouting":{"Target":{"_attributes":{"Value":"AudioIn/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. In"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiInputRouting":{"Target":{"_attributes":{"Value":"MidiIn/External.All/-1"}},"UpperDisplayString":{"_attributes":{"Value":"Ext: All Ins"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"AudioOutputRouting":{"Target":{"_attributes":{"Value":"AudioOut/External/S0"}},"UpperDisplayString":{"_attributes":{"Value":"Ext. Out"}},"LowerDisplayString":{"_attributes":{"Value":"1/2"}}},"MidiOutputRouting":{"Target":{"_attributes":{"Value":"MidiOut/None"}},"UpperDisplayString":{"_attributes":{"Value":"None"}},"LowerDisplayString":{"_attributes":{"Value":""}}},"Mixer":{"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"IsExpanded":{"_attributes":{"Value":"true"}},"On":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"21"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"ParametersListWrapper":{"_attributes":{"LomId":"0"}},"LastSelectedTimeableIndex":{"_attributes":{"Value":"0"}},"LastSelectedClipEnvelopeIndex":{"_attributes":{"Value":"0"}},"LastPresetRef":{"Value":{}},"LockedScripts":{},"IsFolded":{"_attributes":{"Value":"false"}},"ShouldShowPresetName":{"_attributes":{"Value":"false"}},"UserName":{"_attributes":{"Value":""}},"Annotation":{"_attributes":{"Value":""}},"SourceContext":{"Value":{}},"Sends":{},"Speaker":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"true"}},"AutomationTarget":{"_attributes":{"Id":"22"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"MidiCCOnOffThresholds":{"Min":{"_attributes":{"Value":"64"}},"Max":{"_attributes":{"Value":"127"}}}},"SoloSink":{"_attributes":{"Value":"false"}},"PanMode":{"_attributes":{"Value":"0"}},"Pan":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"23"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"24"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanL":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"-1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16179"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16180"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SplitStereoPanR":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"-1"}},"Max":{"_attributes":{"Value":"1"}}},"AutomationTarget":{"_attributes":{"Id":"16181"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"16182"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"Volume":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"0.6683439612"}},"MidiControllerRange":{"Min":{"_attributes":{"Value":"0.0003162277571"}},"Max":{"_attributes":{"Value":"1.99526238"}}},"AutomationTarget":{"_attributes":{"Id":"25"},"LockEnvelope":{"_attributes":{"Value":"0"}}},"ModulationTarget":{"_attributes":{"Id":"26"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"ViewStateSesstionTrackWidth":{"_attributes":{"Value":"74"}},"CrossFadeState":{"LomId":{"_attributes":{"Value":"0"}},"Manual":{"_attributes":{"Value":"1"}},"AutomationTarget":{"_attributes":{"Id":"27"},"LockEnvelope":{"_attributes":{"Value":"0"}}}},"SendsListWrapper":{"_attributes":{"LomId":"0"}}},"DeviceChain":{"Devices":{}}}},"SendsPre":{"SendPreBool":[{"_attributes":{"Id":"0","Value":"false"}},{"_attributes":{"Id":"1","Value":"false"}}]},"SceneNames":{"Scene":[{"_attributes":{"Id":"2","Value":"Couplet"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"20"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}},{"_attributes":{"Id":"3","Value":" 4"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"21"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}},{"_attributes":{"Id":"4","Value":" 5"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"22"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}},{"_attributes":{"Id":"5","Value":" 6"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"23"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}},{"_attributes":{"Id":"6","Value":" 7"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"24"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}},{"_attributes":{"Id":"7","Value":" 8"},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"0"}},"LomId":{"_attributes":{"Value":"25"}},"ClipSlotsListWrapper":{"_attributes":{"LomId":"0"}}}]},"Transport":{"PhaseNudgeTempo":{"_attributes":{"Value":"10"}},"LoopOn":{"_attributes":{"Value":"true"}},"LoopStart":{"_attributes":{"Value":"452"}},"LoopLength":{"_attributes":{"Value":"16"}},"LoopIsSongStart":{"_attributes":{"Value":"false"}},"CurrentTime":{"_attributes":{"Value":"4"}},"PunchIn":{"_attributes":{"Value":"false"}},"PunchOut":{"_attributes":{"Value":"false"}},"DrawMode":{"_attributes":{"Value":"false"}}},"SongMasterValues":{"SessionScrollerPos":{"_attributes":{"X":"0","Y":"0"}}},"GlobalQuantisation":{"_attributes":{"Value":"4"}},"AutoQuantisation":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"false"}}},"ScaleInformation":{"RootNote":{"_attributes":{"Value":"0"}},"Name":{"_attributes":{"Value":"Major"}}},"SmpteFormat":{"_attributes":{"Value":"0"}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"4"}},"OtherTime":{"_attributes":{"Value":"4"}}},"SequencerNavigator":{"BeatTimeHelper":{"CurrentZoom":{"_attributes":{"Value":"0.354107648725212443"}}},"ScrollerPos":{"_attributes":{"X":"0","Y":"0"}},"ClientSize":{"_attributes":{"X":"1414","Y":"497"}}},"ViewStateLaunchPanel":{"_attributes":{"Value":"false"}},"ViewStateEnvelopePanel":{"_attributes":{"Value":"false"}},"ViewStateSamplePanel":{"_attributes":{"Value":"true"}},"ContentSplitterProperties":{"Open":{"_attributes":{"Value":"true"}},"Size":{"_attributes":{"Value":"35"}}},"ViewStateFxSlotCount":{"_attributes":{"Value":"4"}},"ViewStateSessionMixerHeight":{"_attributes":{"Value":"174"}},"Locators":{"Locators":{}},"DetailClipKeyMidis":{},"TracksListWrapper":{"_attributes":{"LomId":"0"}},"VisibleTracksListWrapper":{"_attributes":{"LomId":"0"}},"ReturnTracksListWrapper":{"_attributes":{"LomId":"0"}},"ScenesListWrapper":{"_attributes":{"LomId":"0"}},"CuePointsListWrapper":{"_attributes":{"LomId":"0"}},"ChooserBar":{"_attributes":{"Value":"0"}},"Annotation":{"_attributes":{"Value":""}},"SoloOrPflSavedValue":{"_attributes":{"Value":"true"}},"SoloInPlace":{"_attributes":{"Value":"true"}},"CrossfadeCurve":{"_attributes":{"Value":"2"}},"LatencyCompensation":{"_attributes":{"Value":"2"}},"HighlightedTrackIndex":{"_attributes":{"Value":"0"}},"GroovePool":{"Grooves":{"Groove":[{"_attributes":{"Id":"0"},"Name":{"_attributes":{"Value":"PetitPapillon_couplet"}},"Clip":{"Value":{"MidiClip":{"_attributes":{"Id":"0","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"1"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"4"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"PetitPapillon_couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"-1"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"true"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"-0.000000260156510156510156","Duration":"0.0625","Velocity":"69.2160263","OffVelocity":"127","IsEnabled":"true","NoteId":"1"}},{"_attributes":{"Time":"0.51950289294039298","Duration":"0.0625","Velocity":"14.1240778","OffVelocity":"127","IsEnabled":"true","NoteId":"2"}},{"_attributes":{"Time":"1.0192214035964036","Duration":"0.0625","Velocity":"74.0608673","OffVelocity":"127","IsEnabled":"true","NoteId":"3"}},{"_attributes":{"Time":"1.4839168643856144","Duration":"0.0625","Velocity":"10.0719557","OffVelocity":"127","IsEnabled":"true","NoteId":"4"}},{"_attributes":{"Time":"1.7305077734765235","Duration":"0.0625","Velocity":"48.6858139","OffVelocity":"127","IsEnabled":"true","NoteId":"5"}},{"_attributes":{"Time":"2.000952432983683","Duration":"0.0625","Velocity":"23.4918423","OffVelocity":"127","IsEnabled":"true","NoteId":"6"}},{"_attributes":{"Time":"2.226156916000666","Duration":"0.0625","Velocity":"10.0960999","OffVelocity":"127","IsEnabled":"true","NoteId":"7"}},{"_attributes":{"Time":"2.4643489323176824","Duration":"0.0625","Velocity":"48.8427505","OffVelocity":"127","IsEnabled":"true","NoteId":"8"}},{"_attributes":{"Time":"2.9993072032134531","Duration":"0.0625","Velocity":"74.8294373","OffVelocity":"127","IsEnabled":"true","NoteId":"9"}},{"_attributes":{"Time":"3.5010174721112222","Duration":"0.0625","Velocity":"10.7037163","OffVelocity":"127","IsEnabled":"true","NoteId":"10"}},{"_attributes":{"Time":"3.7102473047785547","Duration":"0.0625","Velocity":"9.71784782","OffVelocity":"127","IsEnabled":"true","NoteId":"11"}},{"_attributes":{"Time":"4","Duration":"0.0625","Velocity":"57.2568359","OffVelocity":"127","IsEnabled":"true","NoteId":"12"}},{"_attributes":{"Time":"4.5104996565934066","Duration":"0.0625","Velocity":"68.8619232","OffVelocity":"127","IsEnabled":"true","NoteId":"13"}},{"_attributes":{"Time":"4.9918131347818848","Duration":"0.0625","Velocity":"70.6284332","OffVelocity":"127","IsEnabled":"true","NoteId":"14"}},{"_attributes":{"Time":"5.5186865218115218","Duration":"0.0625","Velocity":"5.63353491","OffVelocity":"127","IsEnabled":"true","NoteId":"15"}},{"_attributes":{"Time":"5.7611674783549782","Duration":"0.0625","Velocity":"54.3072815","OffVelocity":"127","IsEnabled":"true","NoteId":"16"}},{"_attributes":{"Time":"6.0203697344322347","Duration":"0.0625","Velocity":"13.9912863","OffVelocity":"127","IsEnabled":"true","NoteId":"17"}},{"_attributes":{"Time":"6.2398749687812192","Duration":"0.0625","Velocity":"6.10031366","OffVelocity":"127","IsEnabled":"true","NoteId":"18"}},{"_attributes":{"Time":"6.4920844780219777","Duration":"0.0625","Velocity":"72.0730362","OffVelocity":"127","IsEnabled":"true","NoteId":"19"}},{"_attributes":{"Time":"6.9987621753246749","Duration":"0.0625","Velocity":"88.3177338","OffVelocity":"127","IsEnabled":"true","NoteId":"20"}},{"_attributes":{"Time":"7.5489585934898438","Duration":"0.0625","Velocity":"4.69192982","OffVelocity":"127","IsEnabled":"true","NoteId":"21"}},{"_attributes":{"Time":"7.7161284028471533","Duration":"0.0625","Velocity":"6.44234943","OffVelocity":"127","IsEnabled":"true","NoteId":"22"}},{"_attributes":{"Time":"8","Duration":"0.0625","Velocity":"83.0544052","OffVelocity":"127","IsEnabled":"true","NoteId":"23"}},{"_attributes":{"Time":"8.5450822614885116","Duration":"0.0625","Velocity":"4.27343893","OffVelocity":"127","IsEnabled":"true","NoteId":"24"}},{"_attributes":{"Time":"9.011008782883783","Duration":"0.0625","Velocity":"75.1433105","OffVelocity":"127","IsEnabled":"true","NoteId":"25"}},{"_attributes":{"Time":"9.5122002997003001","Duration":"0.0625","Velocity":"4.9011755","OffVelocity":"127","IsEnabled":"true","NoteId":"26"}},{"_attributes":{"Time":"9.7415907009657001","Duration":"0.0625","Velocity":"50.5569534","OffVelocity":"127","IsEnabled":"true","NoteId":"27"}},{"_attributes":{"Time":"10.010897175740926","Duration":"0.0625","Velocity":"14.1321249","OffVelocity":"127","IsEnabled":"true","NoteId":"28"}},{"_attributes":{"Time":"10.433651764901764","Duration":"0.0625","Velocity":"62.1499634","OffVelocity":"127","IsEnabled":"true","NoteId":"29"}},{"_attributes":{"Time":"10.984188727938728","Duration":"0.0625","Velocity":"90.6154175","OffVelocity":"127","IsEnabled":"true","NoteId":"30"}},{"_attributes":{"Time":"11.524422452547453","Duration":"0.0625","Velocity":"12.2489147","OffVelocity":"127","IsEnabled":"true","NoteId":"31"}},{"_attributes":{"Time":"11.725041885198134","Duration":"0.0625","Velocity":"8.52273464","OffVelocity":"127","IsEnabled":"true","NoteId":"32"}},{"_attributes":{"Time":"12","Duration":"0.0625","Velocity":"62.9668274","OffVelocity":"127","IsEnabled":"true","NoteId":"33"}},{"_attributes":{"Time":"12.509837037962038","Duration":"0.0625","Velocity":"63.2766724","OffVelocity":"127","IsEnabled":"true","NoteId":"34"}},{"_attributes":{"Time":"13","Duration":"0.0625","Velocity":"77.9882507","OffVelocity":"127","IsEnabled":"true","NoteId":"35"}},{"_attributes":{"Time":"13.523691672910424","Duration":"0.0625","Velocity":"7.02582312","OffVelocity":"127","IsEnabled":"true","NoteId":"36"}},{"_attributes":{"Time":"13.794854884698635","Duration":"0.0625","Velocity":"53.5789413","OffVelocity":"127","IsEnabled":"true","NoteId":"37"}},{"_attributes":{"Time":"14.049473963536464","Duration":"0.0625","Velocity":"13.6412029","OffVelocity":"127","IsEnabled":"true","NoteId":"38"}},{"_attributes":{"Time":"14.27214061979687","Duration":"0.0625","Velocity":"11.5809393","OffVelocity":"127","IsEnabled":"true","NoteId":"39"}},{"_attributes":{"Time":"14.510760593573094","Duration":"0.0625","Velocity":"56.3997345","OffVelocity":"127","IsEnabled":"true","NoteId":"40"}},{"_attributes":{"Time":"15","Duration":"0.0625","Velocity":"75.2921982","OffVelocity":"127","IsEnabled":"true","NoteId":"41"}},{"_attributes":{"Time":"15.275694878038628","Duration":"0.0625","Velocity":"18.9729404","OffVelocity":"127","IsEnabled":"true","NoteId":"42"}},{"_attributes":{"Time":"15.5","Duration":"0.0625","Velocity":"19.5886059","OffVelocity":"127","IsEnabled":"true","NoteId":"43"}},{"_attributes":{"Time":"15.735774642024642","Duration":"0.0625","Velocity":"19.294857","OffVelocity":"127","IsEnabled":"true","NoteId":"44"}},{"_attributes":{"Time":"16","Duration":"0.0625","Velocity":"82.7445602","OffVelocity":"127","IsEnabled":"true","NoteId":"45"}},{"_attributes":{"Time":"16.553595883283382","Duration":"0.0625","Velocity":"13.0376101","OffVelocity":"127","IsEnabled":"true","NoteId":"46"}},{"_attributes":{"Time":"17","Duration":"0.0625","Velocity":"91.0379257","OffVelocity":"127","IsEnabled":"true","NoteId":"47"}},{"_attributes":{"Time":"17.483589587495839","Duration":"0.0625","Velocity":"8.3014164","OffVelocity":"127","IsEnabled":"true","NoteId":"48"}},{"_attributes":{"Time":"17.810277743090243","Duration":"0.0625","Velocity":"51.8043785","OffVelocity":"127","IsEnabled":"true","NoteId":"49"}},{"_attributes":{"Time":"18.019665490759241","Duration":"0.0625","Velocity":"25.4756489","OffVelocity":"127","IsEnabled":"true","NoteId":"50"}},{"_attributes":{"Time":"18.253149194555444","Duration":"0.0625","Velocity":"8.25715256","OffVelocity":"127","IsEnabled":"true","NoteId":"51"}},{"_attributes":{"Time":"18.500592116217117","Duration":"0.0625","Velocity":"58.3956146","OffVelocity":"127","IsEnabled":"true","NoteId":"52"}},{"_attributes":{"Time":"19.000374365218114","Duration":"0.0625","Velocity":"91.8467407","OffVelocity":"127","IsEnabled":"true","NoteId":"53"}},{"_attributes":{"Time":"19.535290750915753","Duration":"0.0625","Velocity":"7.13044596","OffVelocity":"127","IsEnabled":"true","NoteId":"54"}},{"_attributes":{"Time":"19.668354041791542","Duration":"0.0625","Velocity":"10.4944706","OffVelocity":"127","IsEnabled":"true","NoteId":"55"}},{"_attributes":{"Time":"19.967295725108226","Duration":"0.0625","Velocity":"65.0874481","OffVelocity":"127","IsEnabled":"true","NoteId":"56"}},{"_attributes":{"Time":"20.489025817932067","Duration":"0.0625","Velocity":"71.3889542","OffVelocity":"127","IsEnabled":"true","NoteId":"57"}},{"_attributes":{"Time":"20.985414845571096","Duration":"0.0625","Velocity":"82.6600571","OffVelocity":"127","IsEnabled":"true","NoteId":"58"}},{"_attributes":{"Time":"21.501776348651347","Duration":"0.0625","Velocity":"5.95545149","OffVelocity":"127","IsEnabled":"true","NoteId":"59"}},{"_attributes":{"Time":"21.796852366383618","Duration":"0.0625","Velocity":"53.9974365","OffVelocity":"127","IsEnabled":"true","NoteId":"60"}},{"_attributes":{"Time":"21.96509271978022","Duration":"0.0625","Velocity":"24.8640079","OffVelocity":"127","IsEnabled":"true","NoteId":"61"}},{"_attributes":{"Time":"22.225034600815849","Duration":"0.0625","Velocity":"8.93720055","OffVelocity":"127","IsEnabled":"true","NoteId":"62"}},{"_attributes":{"Time":"22.471747263153514","Duration":"0.0625","Velocity":"64.7534637","OffVelocity":"127","IsEnabled":"true","NoteId":"63"}},{"_attributes":{"Time":"22.99807328088578","Duration":"0.0625","Velocity":"84.9899216","OffVelocity":"127","IsEnabled":"true","NoteId":"64"}},{"_attributes":{"Time":"23.529897186147185","Duration":"0.0625","Velocity":"6.20091248","OffVelocity":"127","IsEnabled":"true","NoteId":"65"}},{"_attributes":{"Time":"23.744696969696971","Duration":"0.0625","Velocity":"4.92531919","OffVelocity":"127","IsEnabled":"true","NoteId":"66"}},{"_attributes":{"Time":"24","Duration":"0.0625","Velocity":"87.4887924","OffVelocity":"127","IsEnabled":"true","NoteId":"67"}},{"_attributes":{"Time":"24.513724816849816","Duration":"0.0625","Velocity":"7.67770338","OffVelocity":"127","IsEnabled":"true","NoteId":"68"}},{"_attributes":{"Time":"25.001712350149852","Duration":"0.0625","Velocity":"74.2660904","OffVelocity":"127","IsEnabled":"true","NoteId":"69"}},{"_attributes":{"Time":"25.518499989593739","Duration":"0.0625","Velocity":"6.06409836","OffVelocity":"127","IsEnabled":"true","NoteId":"70"}},{"_attributes":{"Time":"25.836025693056943","Duration":"0.0625","Velocity":"50.4362335","OffVelocity":"127","IsEnabled":"true","NoteId":"71"}},{"_attributes":{"Time":"26.042774933399933","Duration":"0.0625","Velocity":"18.8522243","OffVelocity":"127","IsEnabled":"true","NoteId":"72"}},{"_attributes":{"Time":"26.291214254495504","Duration":"0.0625","Velocity":"8.88891315","OffVelocity":"127","IsEnabled":"true","NoteId":"73"}},{"_attributes":{"Time":"26.504514756077256","Duration":"0.0625","Velocity":"57.4741325","OffVelocity":"127","IsEnabled":"true","NoteId":"74"}},{"_attributes":{"Time":"27.030406052281052","Duration":"0.0625","Velocity":"90.3981171","OffVelocity":"127","IsEnabled":"true","NoteId":"75"}},{"_attributes":{"Time":"27.533750884532136","Duration":"0.0625","Velocity":"6.2290802","OffVelocity":"127","IsEnabled":"true","NoteId":"76"}},{"_attributes":{"Time":"27.748114905927405","Duration":"0.0625","Velocity":"9.84259129","OffVelocity":"127","IsEnabled":"true","NoteId":"77"}},{"_attributes":{"Time":"28","Duration":"0.0625","Velocity":"58.1662483","OffVelocity":"127","IsEnabled":"true","NoteId":"78"}},{"_attributes":{"Time":"28.49471466033966","Duration":"0.0625","Velocity":"69.7512131","OffVelocity":"127","IsEnabled":"true","NoteId":"79"}},{"_attributes":{"Time":"29.01225311147186","Duration":"0.0625","Velocity":"75.1755066","OffVelocity":"127","IsEnabled":"true","NoteId":"80"}},{"_attributes":{"Time":"29.537629037629038","Duration":"0.0625","Velocity":"6.55502033","OffVelocity":"127","IsEnabled":"true","NoteId":"81"}},{"_attributes":{"Time":"29.813580690143191","Duration":"0.0625","Velocity":"50.6052399","OffVelocity":"127","IsEnabled":"true","NoteId":"82"}},{"_attributes":{"Time":"30.029070929070929","Duration":"0.0625","Velocity":"22.9445839","OffVelocity":"127","IsEnabled":"true","NoteId":"83"}},{"_attributes":{"Time":"30.242063405344656","Duration":"0.0625","Velocity":"9.72187233","OffVelocity":"127","IsEnabled":"true","NoteId":"84"}},{"_attributes":{"Time":"30.495622086247085","Duration":"0.0625","Velocity":"73.5618973","OffVelocity":"127","IsEnabled":"true","NoteId":"85"}},{"_attributes":{"Time":"30.795861430236432","Duration":"0.0625","Velocity":"28.9040585","OffVelocity":"127","IsEnabled":"true","NoteId":"86"}},{"_attributes":{"Time":"31.019275516150515","Duration":"0.0625","Velocity":"58.2266083","OffVelocity":"127","IsEnabled":"true","NoteId":"87"}},{"_attributes":{"Time":"31.233215482434233","Duration":"0.0625","Velocity":"64.5200729","OffVelocity":"127","IsEnabled":"true","NoteId":"88"}},{"_attributes":{"Time":"31.462658175158175","Duration":"0.0625","Velocity":"90.7361298","OffVelocity":"127","IsEnabled":"true","NoteId":"89"}},{"_attributes":{"Time":"31.721384344821846","Duration":"0.0625","Velocity":"127","OffVelocity":"127","IsEnabled":"true","NoteId":"90"}}]},"MidiKey":{"_attributes":{"Value":"36"}}}},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"91"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}}}},"Grid":{"_attributes":{"Value":"3"}},"QuantizationAmount":{"_attributes":{"Value":"0"}},"TimingAmount":{"_attributes":{"Value":"100"}},"RandomAmount":{"_attributes":{"Value":"0"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"Annotation":{"_attributes":{"Value":""}},"Selection":{"_attributes":{"Value":"false"}},"SourceContext":{}},{"_attributes":{"Id":"1"},"Name":{"_attributes":{"Value":"Couplet"}},"Clip":{"Value":{"MidiClip":{"_attributes":{"Id":"0","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"1"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"4"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"-1"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"true"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"-0.000000260156510156510156","Duration":"0.0625","Velocity":"69.2160263","OffVelocity":"127","IsEnabled":"true","NoteId":"1"}},{"_attributes":{"Time":"0.519459706959707002","Duration":"0.0625","Velocity":"14.1240778","OffVelocity":"127","IsEnabled":"true","NoteId":"2"}},{"_attributes":{"Time":"1.0191782176157176","Duration":"0.0625","Velocity":"74.0608673","OffVelocity":"127","IsEnabled":"true","NoteId":"3"}},{"_attributes":{"Time":"1.4839168643856144","Duration":"0.0625","Velocity":"10.0719557","OffVelocity":"127","IsEnabled":"true","NoteId":"4"}},{"_attributes":{"Time":"1.7305077734765235","Duration":"0.0625","Velocity":"48.6858139","OffVelocity":"127","IsEnabled":"true","NoteId":"5"}},{"_attributes":{"Time":"2.000952432983683","Duration":"0.0625","Velocity":"23.4918423","OffVelocity":"127","IsEnabled":"true","NoteId":"6"}},{"_attributes":{"Time":"2.226156916000666","Duration":"0.0625","Velocity":"10.0960999","OffVelocity":"127","IsEnabled":"true","NoteId":"7"}},{"_attributes":{"Time":"2.4643489323176824","Duration":"0.0625","Velocity":"48.8427505","OffVelocity":"127","IsEnabled":"true","NoteId":"8"}},{"_attributes":{"Time":"2.9993072032134531","Duration":"0.0625","Velocity":"74.8294373","OffVelocity":"127","IsEnabled":"true","NoteId":"9"}},{"_attributes":{"Time":"3.5010174721112222","Duration":"0.0625","Velocity":"10.7037163","OffVelocity":"127","IsEnabled":"true","NoteId":"10"}},{"_attributes":{"Time":"3.7102473047785547","Duration":"0.0625","Velocity":"9.71784782","OffVelocity":"127","IsEnabled":"true","NoteId":"11"}},{"_attributes":{"Time":"4","Duration":"0.0625","Velocity":"57.2568359","OffVelocity":"127","IsEnabled":"true","NoteId":"12"}},{"_attributes":{"Time":"4.5104996565934066","Duration":"0.0625","Velocity":"68.8619232","OffVelocity":"127","IsEnabled":"true","NoteId":"13"}},{"_attributes":{"Time":"4.9918131347818848","Duration":"0.0625","Velocity":"70.6284332","OffVelocity":"127","IsEnabled":"true","NoteId":"14"}},{"_attributes":{"Time":"5.5186865218115218","Duration":"0.0625","Velocity":"5.63353491","OffVelocity":"127","IsEnabled":"true","NoteId":"15"}},{"_attributes":{"Time":"5.7611674783549782","Duration":"0.0625","Velocity":"54.3072815","OffVelocity":"127","IsEnabled":"true","NoteId":"16"}},{"_attributes":{"Time":"6.0203697344322347","Duration":"0.0625","Velocity":"13.9912863","OffVelocity":"127","IsEnabled":"true","NoteId":"17"}},{"_attributes":{"Time":"6.2398749687812192","Duration":"0.0625","Velocity":"6.10031366","OffVelocity":"127","IsEnabled":"true","NoteId":"18"}},{"_attributes":{"Time":"6.4920844780219777","Duration":"0.0625","Velocity":"72.0730362","OffVelocity":"127","IsEnabled":"true","NoteId":"19"}},{"_attributes":{"Time":"6.9987621753246749","Duration":"0.0625","Velocity":"88.3177338","OffVelocity":"127","IsEnabled":"true","NoteId":"20"}},{"_attributes":{"Time":"7.5489585934898438","Duration":"0.0625","Velocity":"4.69192982","OffVelocity":"127","IsEnabled":"true","NoteId":"21"}},{"_attributes":{"Time":"7.7161284028471533","Duration":"0.0625","Velocity":"6.44234943","OffVelocity":"127","IsEnabled":"true","NoteId":"22"}},{"_attributes":{"Time":"8","Duration":"0.0625","Velocity":"83.0544052","OffVelocity":"127","IsEnabled":"true","NoteId":"23"}},{"_attributes":{"Time":"8.5450822614885116","Duration":"0.0625","Velocity":"4.27343893","OffVelocity":"127","IsEnabled":"true","NoteId":"24"}},{"_attributes":{"Time":"9.011008782883783","Duration":"0.0625","Velocity":"75.1433105","OffVelocity":"127","IsEnabled":"true","NoteId":"25"}},{"_attributes":{"Time":"9.5122002997003001","Duration":"0.0625","Velocity":"4.9011755","OffVelocity":"127","IsEnabled":"true","NoteId":"26"}},{"_attributes":{"Time":"9.7415907009657001","Duration":"0.0625","Velocity":"50.5569534","OffVelocity":"127","IsEnabled":"true","NoteId":"27"}},{"_attributes":{"Time":"10.010897175740926","Duration":"0.0625","Velocity":"14.1321249","OffVelocity":"127","IsEnabled":"true","NoteId":"28"}},{"_attributes":{"Time":"10.433651764901764","Duration":"0.0625","Velocity":"62.1499634","OffVelocity":"127","IsEnabled":"true","NoteId":"29"}},{"_attributes":{"Time":"10.984188727938728","Duration":"0.0625","Velocity":"90.6154175","OffVelocity":"127","IsEnabled":"true","NoteId":"30"}},{"_attributes":{"Time":"11.524422452547453","Duration":"0.0625","Velocity":"12.2489147","OffVelocity":"127","IsEnabled":"true","NoteId":"31"}},{"_attributes":{"Time":"11.725041885198134","Duration":"0.0625","Velocity":"8.52273464","OffVelocity":"127","IsEnabled":"true","NoteId":"32"}},{"_attributes":{"Time":"12","Duration":"0.0625","Velocity":"62.9668274","OffVelocity":"127","IsEnabled":"true","NoteId":"33"}},{"_attributes":{"Time":"12.509837037962038","Duration":"0.0625","Velocity":"63.2766724","OffVelocity":"127","IsEnabled":"true","NoteId":"34"}},{"_attributes":{"Time":"13","Duration":"0.0625","Velocity":"77.9882507","OffVelocity":"127","IsEnabled":"true","NoteId":"35"}},{"_attributes":{"Time":"13.523691672910424","Duration":"0.0625","Velocity":"7.02582312","OffVelocity":"127","IsEnabled":"true","NoteId":"36"}},{"_attributes":{"Time":"13.794854884698635","Duration":"0.0625","Velocity":"53.5789413","OffVelocity":"127","IsEnabled":"true","NoteId":"37"}},{"_attributes":{"Time":"14.049473963536464","Duration":"0.0625","Velocity":"13.6412029","OffVelocity":"127","IsEnabled":"true","NoteId":"38"}},{"_attributes":{"Time":"14.27214061979687","Duration":"0.0625","Velocity":"11.5809393","OffVelocity":"127","IsEnabled":"true","NoteId":"39"}},{"_attributes":{"Time":"14.510760593573094","Duration":"0.0625","Velocity":"56.3997345","OffVelocity":"127","IsEnabled":"true","NoteId":"40"}},{"_attributes":{"Time":"15","Duration":"0.0625","Velocity":"75.2921982","OffVelocity":"127","IsEnabled":"true","NoteId":"41"}},{"_attributes":{"Time":"15.275694878038628","Duration":"0.0625","Velocity":"18.9729404","OffVelocity":"127","IsEnabled":"true","NoteId":"42"}},{"_attributes":{"Time":"15.5","Duration":"0.0625","Velocity":"19.5886059","OffVelocity":"127","IsEnabled":"true","NoteId":"43"}},{"_attributes":{"Time":"15.735774642024642","Duration":"0.0625","Velocity":"19.294857","OffVelocity":"127","IsEnabled":"true","NoteId":"44"}},{"_attributes":{"Time":"16","Duration":"0.0625","Velocity":"82.7445602","OffVelocity":"127","IsEnabled":"true","NoteId":"45"}},{"_attributes":{"Time":"16.553595883283382","Duration":"0.0625","Velocity":"13.0376101","OffVelocity":"127","IsEnabled":"true","NoteId":"46"}},{"_attributes":{"Time":"17","Duration":"0.0625","Velocity":"91.0379257","OffVelocity":"127","IsEnabled":"true","NoteId":"47"}},{"_attributes":{"Time":"17.483589587495839","Duration":"0.0625","Velocity":"8.3014164","OffVelocity":"127","IsEnabled":"true","NoteId":"48"}},{"_attributes":{"Time":"17.810320668914418","Duration":"0.0625","Velocity":"51.8043785","OffVelocity":"127","IsEnabled":"true","NoteId":"49"}},{"_attributes":{"Time":"18.019665490759241","Duration":"0.0625","Velocity":"25.4756489","OffVelocity":"127","IsEnabled":"true","NoteId":"50"}},{"_attributes":{"Time":"18.253149194555444","Duration":"0.0625","Velocity":"8.25715256","OffVelocity":"127","IsEnabled":"true","NoteId":"51"}},{"_attributes":{"Time":"18.500592116217117","Duration":"0.0625","Velocity":"58.3956146","OffVelocity":"127","IsEnabled":"true","NoteId":"52"}},{"_attributes":{"Time":"19.000374365218114","Duration":"0.0625","Velocity":"91.8467407","OffVelocity":"127","IsEnabled":"true","NoteId":"53"}},{"_attributes":{"Time":"19.535290750915753","Duration":"0.0625","Velocity":"7.13044596","OffVelocity":"127","IsEnabled":"true","NoteId":"54"}},{"_attributes":{"Time":"19.668354041791542","Duration":"0.0625","Velocity":"10.4944706","OffVelocity":"127","IsEnabled":"true","NoteId":"55"}},{"_attributes":{"Time":"19.967295725108226","Duration":"0.0625","Velocity":"65.0874481","OffVelocity":"127","IsEnabled":"true","NoteId":"56"}},{"_attributes":{"Time":"20.489025817932067","Duration":"0.0625","Velocity":"71.3889542","OffVelocity":"127","IsEnabled":"true","NoteId":"57"}},{"_attributes":{"Time":"20.985414845571096","Duration":"0.0625","Velocity":"82.6600571","OffVelocity":"127","IsEnabled":"true","NoteId":"58"}},{"_attributes":{"Time":"21.501776348651347","Duration":"0.0625","Velocity":"5.95545149","OffVelocity":"127","IsEnabled":"true","NoteId":"59"}},{"_attributes":{"Time":"21.796852366383618","Duration":"0.0625","Velocity":"53.9974365","OffVelocity":"127","IsEnabled":"true","NoteId":"60"}},{"_attributes":{"Time":"21.96509271978022","Duration":"0.0625","Velocity":"24.8640079","OffVelocity":"127","IsEnabled":"true","NoteId":"61"}},{"_attributes":{"Time":"22.225034600815849","Duration":"0.0625","Velocity":"8.93720055","OffVelocity":"127","IsEnabled":"true","NoteId":"62"}},{"_attributes":{"Time":"22.471747263153514","Duration":"0.0625","Velocity":"64.7534637","OffVelocity":"127","IsEnabled":"true","NoteId":"63"}},{"_attributes":{"Time":"22.99807328088578","Duration":"0.0625","Velocity":"84.9899216","OffVelocity":"127","IsEnabled":"true","NoteId":"64"}},{"_attributes":{"Time":"23.529897186147185","Duration":"0.0625","Velocity":"6.20091248","OffVelocity":"127","IsEnabled":"true","NoteId":"65"}},{"_attributes":{"Time":"23.744696969696971","Duration":"0.0625","Velocity":"4.92531919","OffVelocity":"127","IsEnabled":"true","NoteId":"66"}},{"_attributes":{"Time":"24","Duration":"0.0625","Velocity":"87.4887924","OffVelocity":"127","IsEnabled":"true","NoteId":"67"}},{"_attributes":{"Time":"24.513724816849816","Duration":"0.0625","Velocity":"7.67770338","OffVelocity":"127","IsEnabled":"true","NoteId":"68"}},{"_attributes":{"Time":"25.001712350149852","Duration":"0.0625","Velocity":"74.2660904","OffVelocity":"127","IsEnabled":"true","NoteId":"69"}},{"_attributes":{"Time":"25.518499989593739","Duration":"0.0625","Velocity":"6.06409836","OffVelocity":"127","IsEnabled":"true","NoteId":"70"}},{"_attributes":{"Time":"25.836025693056943","Duration":"0.0625","Velocity":"50.4362335","OffVelocity":"127","IsEnabled":"true","NoteId":"71"}},{"_attributes":{"Time":"26.042774933399933","Duration":"0.0625","Velocity":"18.8522243","OffVelocity":"127","IsEnabled":"true","NoteId":"72"}},{"_attributes":{"Time":"26.291214254495504","Duration":"0.0625","Velocity":"8.88891315","OffVelocity":"127","IsEnabled":"true","NoteId":"73"}},{"_attributes":{"Time":"26.504514756077256","Duration":"0.0625","Velocity":"57.4741325","OffVelocity":"127","IsEnabled":"true","NoteId":"74"}},{"_attributes":{"Time":"27.030406052281052","Duration":"0.0625","Velocity":"90.3981171","OffVelocity":"127","IsEnabled":"true","NoteId":"75"}},{"_attributes":{"Time":"27.533750884532136","Duration":"0.0625","Velocity":"6.2290802","OffVelocity":"127","IsEnabled":"true","NoteId":"76"}},{"_attributes":{"Time":"27.748114905927405","Duration":"0.0625","Velocity":"9.84259129","OffVelocity":"127","IsEnabled":"true","NoteId":"77"}},{"_attributes":{"Time":"28","Duration":"0.0625","Velocity":"58.1662483","OffVelocity":"127","IsEnabled":"true","NoteId":"78"}},{"_attributes":{"Time":"28.49471466033966","Duration":"0.0625","Velocity":"69.7512131","OffVelocity":"127","IsEnabled":"true","NoteId":"79"}},{"_attributes":{"Time":"29.01225311147186","Duration":"0.0625","Velocity":"75.1755066","OffVelocity":"127","IsEnabled":"true","NoteId":"80"}},{"_attributes":{"Time":"29.537629037629038","Duration":"0.0625","Velocity":"6.55502033","OffVelocity":"127","IsEnabled":"true","NoteId":"81"}},{"_attributes":{"Time":"29.813580690143191","Duration":"0.0625","Velocity":"50.6052399","OffVelocity":"127","IsEnabled":"true","NoteId":"82"}},{"_attributes":{"Time":"30.029070929070929","Duration":"0.0625","Velocity":"22.9445839","OffVelocity":"127","IsEnabled":"true","NoteId":"83"}},{"_attributes":{"Time":"30.242063405344656","Duration":"0.0625","Velocity":"9.72187233","OffVelocity":"127","IsEnabled":"true","NoteId":"84"}},{"_attributes":{"Time":"30.495622086247085","Duration":"0.0625","Velocity":"73.5618973","OffVelocity":"127","IsEnabled":"true","NoteId":"85"}},{"_attributes":{"Time":"30.795818244255745","Duration":"0.0625","Velocity":"28.9040585","OffVelocity":"127","IsEnabled":"true","NoteId":"86"}},{"_attributes":{"Time":"31.019232330169832","Duration":"0.0625","Velocity":"58.2266083","OffVelocity":"127","IsEnabled":"true","NoteId":"87"}},{"_attributes":{"Time":"31.233215482434233","Duration":"0.0625","Velocity":"64.5200729","OffVelocity":"127","IsEnabled":"true","NoteId":"88"}},{"_attributes":{"Time":"31.462658175158175","Duration":"0.0625","Velocity":"90.7361298","OffVelocity":"127","IsEnabled":"true","NoteId":"89"}},{"_attributes":{"Time":"31.721384344821846","Duration":"0.0625","Velocity":"127","OffVelocity":"127","IsEnabled":"true","NoteId":"90"}}]},"MidiKey":{"_attributes":{"Value":"36"}}}},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"91"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}}}},"Grid":{"_attributes":{"Value":"3"}},"QuantizationAmount":{"_attributes":{"Value":"0"}},"TimingAmount":{"_attributes":{"Value":"100"}},"RandomAmount":{"_attributes":{"Value":"0"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"Annotation":{"_attributes":{"Value":""}},"Selection":{"_attributes":{"Value":"false"}},"SourceContext":{}},{"_attributes":{"Id":"2"},"Name":{"_attributes":{"Value":"Couplet-1"}},"Clip":{"Value":{"MidiClip":{"_attributes":{"Id":"0","Time":"0"},"LomId":{"_attributes":{"Value":"0"}},"LomIdView":{"_attributes":{"Value":"0"}},"CurrentStart":{"_attributes":{"Value":"0"}},"CurrentEnd":{"_attributes":{"Value":"1"}},"Loop":{"LoopStart":{"_attributes":{"Value":"0"}},"LoopEnd":{"_attributes":{"Value":"32"}},"StartRelative":{"_attributes":{"Value":"0"}},"LoopOn":{"_attributes":{"Value":"true"}},"OutMarker":{"_attributes":{"Value":"4"}},"HiddenLoopStart":{"_attributes":{"Value":"0"}},"HiddenLoopEnd":{"_attributes":{"Value":"4"}}},"Name":{"_attributes":{"Value":"Couplet-1"}},"Annotation":{"_attributes":{"Value":""}},"ColorIndex":{"_attributes":{"Value":"-1"}},"LaunchMode":{"_attributes":{"Value":"0"}},"LaunchQuantisation":{"_attributes":{"Value":"0"}},"TimeSignature":{"TimeSignatures":{"RemoteableTimeSignature":{"_attributes":{"Id":"0"},"Numerator":{"_attributes":{"Value":"4"}},"Denominator":{"_attributes":{"Value":"4"}},"Time":{"_attributes":{"Value":"0"}}}}},"Envelopes":{"Envelopes":{}},"ScrollerTimePreserver":{"LeftTime":{"_attributes":{"Value":"0"}},"RightTime":{"_attributes":{"Value":"0"}}},"TimeSelection":{"AnchorTime":{"_attributes":{"Value":"0"}},"OtherTime":{"_attributes":{"Value":"0"}}},"Legato":{"_attributes":{"Value":"false"}},"Ram":{"_attributes":{"Value":"false"}},"GrooveSettings":{"GrooveId":{"_attributes":{"Value":"-1"}}},"Disabled":{"_attributes":{"Value":"false"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"FollowTime":{"_attributes":{"Value":"4"}},"FollowActionA":{"_attributes":{"Value":"0"}},"FollowActionB":{"_attributes":{"Value":"0"}},"FollowChanceA":{"_attributes":{"Value":"1"}},"FollowChanceB":{"_attributes":{"Value":"0"}},"Grid":{"FixedNumerator":{"_attributes":{"Value":"1"}},"FixedDenominator":{"_attributes":{"Value":"16"}},"GridIntervalPixel":{"_attributes":{"Value":"20"}},"Ntoles":{"_attributes":{"Value":"2"}},"SnapToGrid":{"_attributes":{"Value":"true"}},"Fixed":{"_attributes":{"Value":"true"}}},"FreezeStart":{"_attributes":{"Value":"0"}},"FreezeEnd":{"_attributes":{"Value":"0"}},"IsWarped":{"_attributes":{"Value":"true"}},"Notes":{"KeyTracks":{"KeyTrack":{"_attributes":{"Id":"0"},"Notes":{"MidiNoteEvent":[{"_attributes":{"Time":"-0.000000260156510156510156","Duration":"0.0625","Velocity":"69.2160263","OffVelocity":"127","IsEnabled":"true","NoteId":"1"}},{"_attributes":{"Time":"0.519459706959707002","Duration":"0.0625","Velocity":"14.1240778","OffVelocity":"127","IsEnabled":"true","NoteId":"2"}},{"_attributes":{"Time":"1.0191782176157176","Duration":"0.0625","Velocity":"74.0608673","OffVelocity":"127","IsEnabled":"true","NoteId":"3"}},{"_attributes":{"Time":"1.4839168643856144","Duration":"0.0625","Velocity":"10.0719557","OffVelocity":"127","IsEnabled":"true","NoteId":"4"}},{"_attributes":{"Time":"1.7305077734765235","Duration":"0.0625","Velocity":"48.6858139","OffVelocity":"127","IsEnabled":"true","NoteId":"5"}},{"_attributes":{"Time":"2.000952432983683","Duration":"0.0625","Velocity":"23.4918423","OffVelocity":"127","IsEnabled":"true","NoteId":"6"}},{"_attributes":{"Time":"2.226156916000666","Duration":"0.0625","Velocity":"10.0960999","OffVelocity":"127","IsEnabled":"true","NoteId":"7"}},{"_attributes":{"Time":"2.4643489323176824","Duration":"0.0625","Velocity":"48.8427505","OffVelocity":"127","IsEnabled":"true","NoteId":"8"}},{"_attributes":{"Time":"2.9993072032134531","Duration":"0.0625","Velocity":"74.8294373","OffVelocity":"127","IsEnabled":"true","NoteId":"9"}},{"_attributes":{"Time":"3.5010174721112222","Duration":"0.0625","Velocity":"10.7037163","OffVelocity":"127","IsEnabled":"true","NoteId":"10"}},{"_attributes":{"Time":"3.7102473047785547","Duration":"0.0625","Velocity":"9.71784782","OffVelocity":"127","IsEnabled":"true","NoteId":"11"}},{"_attributes":{"Time":"4","Duration":"0.0625","Velocity":"57.2568359","OffVelocity":"127","IsEnabled":"true","NoteId":"12"}},{"_attributes":{"Time":"4.5104996565934066","Duration":"0.0625","Velocity":"68.8619232","OffVelocity":"127","IsEnabled":"true","NoteId":"13"}},{"_attributes":{"Time":"4.9918131347818848","Duration":"0.0625","Velocity":"70.6284332","OffVelocity":"127","IsEnabled":"true","NoteId":"14"}},{"_attributes":{"Time":"5.5186865218115218","Duration":"0.0625","Velocity":"5.63353491","OffVelocity":"127","IsEnabled":"true","NoteId":"15"}},{"_attributes":{"Time":"5.7611674783549782","Duration":"0.0625","Velocity":"54.3072815","OffVelocity":"127","IsEnabled":"true","NoteId":"16"}},{"_attributes":{"Time":"6.0203697344322347","Duration":"0.0625","Velocity":"13.9912863","OffVelocity":"127","IsEnabled":"true","NoteId":"17"}},{"_attributes":{"Time":"6.2398749687812192","Duration":"0.0625","Velocity":"6.10031366","OffVelocity":"127","IsEnabled":"true","NoteId":"18"}},{"_attributes":{"Time":"6.4920844780219777","Duration":"0.0625","Velocity":"72.0730362","OffVelocity":"127","IsEnabled":"true","NoteId":"19"}},{"_attributes":{"Time":"6.9987621753246749","Duration":"0.0625","Velocity":"88.3177338","OffVelocity":"127","IsEnabled":"true","NoteId":"20"}},{"_attributes":{"Time":"7.5489585934898438","Duration":"0.0625","Velocity":"4.69192982","OffVelocity":"127","IsEnabled":"true","NoteId":"21"}},{"_attributes":{"Time":"7.7161284028471533","Duration":"0.0625","Velocity":"6.44234943","OffVelocity":"127","IsEnabled":"true","NoteId":"22"}},{"_attributes":{"Time":"8","Duration":"0.0625","Velocity":"83.0544052","OffVelocity":"127","IsEnabled":"true","NoteId":"23"}},{"_attributes":{"Time":"8.5450822614885116","Duration":"0.0625","Velocity":"4.27343893","OffVelocity":"127","IsEnabled":"true","NoteId":"24"}},{"_attributes":{"Time":"9.011008782883783","Duration":"0.0625","Velocity":"75.1433105","OffVelocity":"127","IsEnabled":"true","NoteId":"25"}},{"_attributes":{"Time":"9.5122002997003001","Duration":"0.0625","Velocity":"4.9011755","OffVelocity":"127","IsEnabled":"true","NoteId":"26"}},{"_attributes":{"Time":"9.7415907009657001","Duration":"0.0625","Velocity":"50.5569534","OffVelocity":"127","IsEnabled":"true","NoteId":"27"}},{"_attributes":{"Time":"10.010897175740926","Duration":"0.0625","Velocity":"14.1321249","OffVelocity":"127","IsEnabled":"true","NoteId":"28"}},{"_attributes":{"Time":"10.433651764901764","Duration":"0.0625","Velocity":"62.1499634","OffVelocity":"127","IsEnabled":"true","NoteId":"29"}},{"_attributes":{"Time":"10.984188727938728","Duration":"0.0625","Velocity":"90.6154175","OffVelocity":"127","IsEnabled":"true","NoteId":"30"}},{"_attributes":{"Time":"11.524422452547453","Duration":"0.0625","Velocity":"12.2489147","OffVelocity":"127","IsEnabled":"true","NoteId":"31"}},{"_attributes":{"Time":"11.725041885198134","Duration":"0.0625","Velocity":"8.52273464","OffVelocity":"127","IsEnabled":"true","NoteId":"32"}},{"_attributes":{"Time":"12","Duration":"0.0625","Velocity":"62.9668274","OffVelocity":"127","IsEnabled":"true","NoteId":"33"}},{"_attributes":{"Time":"12.509837037962038","Duration":"0.0625","Velocity":"63.2766724","OffVelocity":"127","IsEnabled":"true","NoteId":"34"}},{"_attributes":{"Time":"13","Duration":"0.0625","Velocity":"77.9882507","OffVelocity":"127","IsEnabled":"true","NoteId":"35"}},{"_attributes":{"Time":"13.523691672910424","Duration":"0.0625","Velocity":"7.02582312","OffVelocity":"127","IsEnabled":"true","NoteId":"36"}},{"_attributes":{"Time":"13.794854884698635","Duration":"0.0625","Velocity":"53.5789413","OffVelocity":"127","IsEnabled":"true","NoteId":"37"}},{"_attributes":{"Time":"14.049473963536464","Duration":"0.0625","Velocity":"13.6412029","OffVelocity":"127","IsEnabled":"true","NoteId":"38"}},{"_attributes":{"Time":"14.27214061979687","Duration":"0.0625","Velocity":"11.5809393","OffVelocity":"127","IsEnabled":"true","NoteId":"39"}},{"_attributes":{"Time":"14.510760593573094","Duration":"0.0625","Velocity":"56.3997345","OffVelocity":"127","IsEnabled":"true","NoteId":"40"}},{"_attributes":{"Time":"15","Duration":"0.0625","Velocity":"75.2921982","OffVelocity":"127","IsEnabled":"true","NoteId":"41"}},{"_attributes":{"Time":"15.275694878038628","Duration":"0.0625","Velocity":"18.9729404","OffVelocity":"127","IsEnabled":"true","NoteId":"42"}},{"_attributes":{"Time":"15.5","Duration":"0.0625","Velocity":"19.5886059","OffVelocity":"127","IsEnabled":"true","NoteId":"43"}},{"_attributes":{"Time":"15.735774642024642","Duration":"0.0625","Velocity":"19.294857","OffVelocity":"127","IsEnabled":"true","NoteId":"44"}},{"_attributes":{"Time":"16","Duration":"0.0625","Velocity":"82.7445602","OffVelocity":"127","IsEnabled":"true","NoteId":"45"}},{"_attributes":{"Time":"16.553595883283382","Duration":"0.0625","Velocity":"13.0376101","OffVelocity":"127","IsEnabled":"true","NoteId":"46"}},{"_attributes":{"Time":"17","Duration":"0.0625","Velocity":"91.0379257","OffVelocity":"127","IsEnabled":"true","NoteId":"47"}},{"_attributes":{"Time":"17.483589587495839","Duration":"0.0625","Velocity":"8.3014164","OffVelocity":"127","IsEnabled":"true","NoteId":"48"}},{"_attributes":{"Time":"17.810320668914418","Duration":"0.0625","Velocity":"51.8043785","OffVelocity":"127","IsEnabled":"true","NoteId":"49"}},{"_attributes":{"Time":"18.019665490759241","Duration":"0.0625","Velocity":"25.4756489","OffVelocity":"127","IsEnabled":"true","NoteId":"50"}},{"_attributes":{"Time":"18.253149194555444","Duration":"0.0625","Velocity":"8.25715256","OffVelocity":"127","IsEnabled":"true","NoteId":"51"}},{"_attributes":{"Time":"18.500592116217117","Duration":"0.0625","Velocity":"58.3956146","OffVelocity":"127","IsEnabled":"true","NoteId":"52"}},{"_attributes":{"Time":"19.000374365218114","Duration":"0.0625","Velocity":"91.8467407","OffVelocity":"127","IsEnabled":"true","NoteId":"53"}},{"_attributes":{"Time":"19.535290750915753","Duration":"0.0625","Velocity":"7.13044596","OffVelocity":"127","IsEnabled":"true","NoteId":"54"}},{"_attributes":{"Time":"19.668354041791542","Duration":"0.0625","Velocity":"10.4944706","OffVelocity":"127","IsEnabled":"true","NoteId":"55"}},{"_attributes":{"Time":"19.967295725108226","Duration":"0.0625","Velocity":"65.0874481","OffVelocity":"127","IsEnabled":"true","NoteId":"56"}},{"_attributes":{"Time":"20.489025817932067","Duration":"0.0625","Velocity":"71.3889542","OffVelocity":"127","IsEnabled":"true","NoteId":"57"}},{"_attributes":{"Time":"20.985414845571096","Duration":"0.0625","Velocity":"82.6600571","OffVelocity":"127","IsEnabled":"true","NoteId":"58"}},{"_attributes":{"Time":"21.501776348651347","Duration":"0.0625","Velocity":"5.95545149","OffVelocity":"127","IsEnabled":"true","NoteId":"59"}},{"_attributes":{"Time":"21.796852366383618","Duration":"0.0625","Velocity":"53.9974365","OffVelocity":"127","IsEnabled":"true","NoteId":"60"}},{"_attributes":{"Time":"21.96509271978022","Duration":"0.0625","Velocity":"24.8640079","OffVelocity":"127","IsEnabled":"true","NoteId":"61"}},{"_attributes":{"Time":"22.225034600815849","Duration":"0.0625","Velocity":"8.93720055","OffVelocity":"127","IsEnabled":"true","NoteId":"62"}},{"_attributes":{"Time":"22.471747263153514","Duration":"0.0625","Velocity":"64.7534637","OffVelocity":"127","IsEnabled":"true","NoteId":"63"}},{"_attributes":{"Time":"22.99807328088578","Duration":"0.0625","Velocity":"84.9899216","OffVelocity":"127","IsEnabled":"true","NoteId":"64"}},{"_attributes":{"Time":"23.529897186147185","Duration":"0.0625","Velocity":"6.20091248","OffVelocity":"127","IsEnabled":"true","NoteId":"65"}},{"_attributes":{"Time":"23.744696969696971","Duration":"0.0625","Velocity":"4.92531919","OffVelocity":"127","IsEnabled":"true","NoteId":"66"}},{"_attributes":{"Time":"24","Duration":"0.0625","Velocity":"87.4887924","OffVelocity":"127","IsEnabled":"true","NoteId":"67"}},{"_attributes":{"Time":"24.513724816849816","Duration":"0.0625","Velocity":"7.67770338","OffVelocity":"127","IsEnabled":"true","NoteId":"68"}},{"_attributes":{"Time":"25.001712350149852","Duration":"0.0625","Velocity":"74.2660904","OffVelocity":"127","IsEnabled":"true","NoteId":"69"}},{"_attributes":{"Time":"25.518499989593739","Duration":"0.0625","Velocity":"6.06409836","OffVelocity":"127","IsEnabled":"true","NoteId":"70"}},{"_attributes":{"Time":"25.836025693056943","Duration":"0.0625","Velocity":"50.4362335","OffVelocity":"127","IsEnabled":"true","NoteId":"71"}},{"_attributes":{"Time":"26.042774933399933","Duration":"0.0625","Velocity":"18.8522243","OffVelocity":"127","IsEnabled":"true","NoteId":"72"}},{"_attributes":{"Time":"26.291214254495504","Duration":"0.0625","Velocity":"8.88891315","OffVelocity":"127","IsEnabled":"true","NoteId":"73"}},{"_attributes":{"Time":"26.504514756077256","Duration":"0.0625","Velocity":"57.4741325","OffVelocity":"127","IsEnabled":"true","NoteId":"74"}},{"_attributes":{"Time":"27.030406052281052","Duration":"0.0625","Velocity":"90.3981171","OffVelocity":"127","IsEnabled":"true","NoteId":"75"}},{"_attributes":{"Time":"27.533750884532136","Duration":"0.0625","Velocity":"6.2290802","OffVelocity":"127","IsEnabled":"true","NoteId":"76"}},{"_attributes":{"Time":"27.748114905927405","Duration":"0.0625","Velocity":"9.84259129","OffVelocity":"127","IsEnabled":"true","NoteId":"77"}},{"_attributes":{"Time":"28","Duration":"0.0625","Velocity":"58.1662483","OffVelocity":"127","IsEnabled":"true","NoteId":"78"}},{"_attributes":{"Time":"28.49471466033966","Duration":"0.0625","Velocity":"69.7512131","OffVelocity":"127","IsEnabled":"true","NoteId":"79"}},{"_attributes":{"Time":"29.01225311147186","Duration":"0.0625","Velocity":"75.1755066","OffVelocity":"127","IsEnabled":"true","NoteId":"80"}},{"_attributes":{"Time":"29.537629037629038","Duration":"0.0625","Velocity":"6.55502033","OffVelocity":"127","IsEnabled":"true","NoteId":"81"}},{"_attributes":{"Time":"29.813580690143191","Duration":"0.0625","Velocity":"50.6052399","OffVelocity":"127","IsEnabled":"true","NoteId":"82"}},{"_attributes":{"Time":"30.029070929070929","Duration":"0.0625","Velocity":"22.9445839","OffVelocity":"127","IsEnabled":"true","NoteId":"83"}},{"_attributes":{"Time":"30.242063405344656","Duration":"0.0625","Velocity":"9.72187233","OffVelocity":"127","IsEnabled":"true","NoteId":"84"}},{"_attributes":{"Time":"30.495622086247085","Duration":"0.0625","Velocity":"73.5618973","OffVelocity":"127","IsEnabled":"true","NoteId":"85"}},{"_attributes":{"Time":"30.795818244255745","Duration":"0.0625","Velocity":"28.9040585","OffVelocity":"127","IsEnabled":"true","NoteId":"86"}},{"_attributes":{"Time":"31.019232330169832","Duration":"0.0625","Velocity":"58.2266083","OffVelocity":"127","IsEnabled":"true","NoteId":"87"}},{"_attributes":{"Time":"31.233215482434233","Duration":"0.0625","Velocity":"64.5200729","OffVelocity":"127","IsEnabled":"true","NoteId":"88"}},{"_attributes":{"Time":"31.462658175158175","Duration":"0.0625","Velocity":"90.7361298","OffVelocity":"127","IsEnabled":"true","NoteId":"89"}},{"_attributes":{"Time":"31.721384344821846","Duration":"0.0625","Velocity":"127","OffVelocity":"127","IsEnabled":"true","NoteId":"90"}}]},"MidiKey":{"_attributes":{"Value":"36"}}}},"PerNoteEventStore":{"EventLists":{}},"NoteIdGenerator":{"NextId":{"_attributes":{"Value":"91"}}}},"BankSelectCoarse":{"_attributes":{"Value":"-1"}},"BankSelectFine":{"_attributes":{"Value":"-1"}},"ProgramChange":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldInScroll":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutZoom":{"_attributes":{"Value":"-1"}},"NoteEditorFoldOutScroll":{"_attributes":{"Value":"-1"}}}}},"Grid":{"_attributes":{"Value":"3"}},"QuantizationAmount":{"_attributes":{"Value":"0"}},"TimingAmount":{"_attributes":{"Value":"100"}},"RandomAmount":{"_attributes":{"Value":"0"}},"VelocityAmount":{"_attributes":{"Value":"0"}},"Annotation":{"_attributes":{"Value":""}},"Selection":{"_attributes":{"Value":"false"}},"SourceContext":{}}]}},"AutomationMode":{"_attributes":{"Value":"false"}},"SnapAutomationToGrid":{"_attributes":{"Value":"true"}},"ArrangementOverdub":{"_attributes":{"Value":"false"}},"ColorSequenceIndex":{"_attributes":{"Value":"1"}},"AutoColorPickerForPlayerAndGroupTracks":{"NextColorIndex":{"_attributes":{"Value":"1"}}},"AutoColorPickerForReturnAndMasterTracks":{"NextColorIndex":{"_attributes":{"Value":"4"}}},"ViewData":{"_attributes":{"Value":"{}"}},"MidiFoldIn":{"_attributes":{"Value":"true"}},"MidiPrelisten":{"_attributes":{"Value":"false"}},"UseWarperLegacyHiQMode":{"_attributes":{"Value":"false"}},"VideoWindowRect":{"_attributes":{"Top":"-2147483648","Left":"-2147483648","Bottom":"-2147483648","Right":"-2147483648"}},"ShowVideoWindow":{"_attributes":{"Value":"true"}},"TrackHeaderWidth":{"_attributes":{"Value":"93"}},"ViewStateArrangerHasDetail":{"_attributes":{"Value":"true"}},"ViewStateSessionHasDetail":{"_attributes":{"Value":"true"}},"ViewStateDetailIsSample":{"_attributes":{"Value":"true"}},"ViewStates":{"SessionIO":{"_attributes":{"Value":"1"}},"SessionSends":{"_attributes":{"Value":"0"}},"SessionReturns":{"_attributes":{"Value":"0"}},"SessionMixer":{"_attributes":{"Value":"1"}},"SessionTrackDelay":{"_attributes":{"Value":"0"}},"SessionCrossFade":{"_attributes":{"Value":"0"}},"SessionShowOverView":{"_attributes":{"Value":"0"}},"ArrangerIO":{"_attributes":{"Value":"0"}},"ArrangerReturns":{"_attributes":{"Value":"0"}},"ArrangerMixer":{"_attributes":{"Value":"0"}},"ArrangerTrackDelay":{"_attributes":{"Value":"0"}},"ArrangerShowOverView":{"_attributes":{"Value":"1"}}}}}} diff --git a/src/assets/structures/Petit Papillon.json b/src/assets/structures/Petit Papillon.json new file mode 100644 index 0000000..3271435 --- /dev/null +++ b/src/assets/structures/Petit Papillon.json @@ -0,0 +1,3 @@ +{ + "sampleDuration": 208 +}