From 7f143ac1edd9d32398b06de6fed493aadda069e9 Mon Sep 17 00:00:00 2001 From: Bludwarf Date: Sun, 17 Mar 2024 13:01:09 +0100 Subject: [PATCH] Import Ableton Live #7 --- package.json | 1 + src/app/als/README.md | 38 + src/app/als/als-extractor.spec.ts | 31 + src/app/als/als-importer.spec.ts | 35 + src/app/als/als-importer.ts | 71 + src/app/als/structure-extractor-from-als.ts | 30 + src/app/als/v10/als-project.ts | 11 + src/app/als/v10/audio-clip.ts | 15 + src/app/als/v10/audio-track.ts | 12 + src/app/app.module.ts | 5 +- src/app/convert/convert.component.html | 2 + src/app/convert/convert.component.scss | 0 src/app/convert/convert.component.spec.ts | 23 + src/app/convert/convert.component.ts | 36 + .../rythm-sandbox/rythm-sandbox.component.ts | 59 +- src/app/structure/structure.ts | 6 +- src/assets/als/Petit papillon.als | Bin 0 -> 208794 bytes src/assets/als/Petit papillon.als.xml | 67162 ++++++++++++++++ src/assets/als/Petit papillon.als.xml.json | 1 + src/assets/structures/Petit Papillon.json | 3 + 20 files changed, 67508 insertions(+), 33 deletions(-) create mode 100644 src/app/als/README.md create mode 100644 src/app/als/als-extractor.spec.ts create mode 100644 src/app/als/als-importer.spec.ts create mode 100644 src/app/als/als-importer.ts create mode 100644 src/app/als/structure-extractor-from-als.ts create mode 100644 src/app/als/v10/als-project.ts create mode 100644 src/app/als/v10/audio-clip.ts create mode 100644 src/app/als/v10/audio-track.ts create mode 100644 src/app/convert/convert.component.html create mode 100644 src/app/convert/convert.component.scss create mode 100644 src/app/convert/convert.component.spec.ts create mode 100644 src/app/convert/convert.component.ts create mode 100644 src/assets/als/Petit papillon.als create mode 100644 src/assets/als/Petit papillon.als.xml create mode 100644 src/assets/als/Petit papillon.als.xml.json create mode 100644 src/assets/structures/Petit Papillon.json 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 0000000000000000000000000000000000000000..4b1a5e80f7715150d80588efaaa7f656264994cd GIT binary patch literal 208794 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%0A(kVW*~qJ-Yt+&6sYK68s(sLaY%b~r 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¥BPA|Cq8uHio28YkRuQ5ru-n~R!gMgS4 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 v)9{o1=f*GI+{C90XX-YlCfKzp?@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 +}