diff --git a/CHANGELOG.md b/CHANGELOG.md index ffc80fd0b..2f1092a94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ - `Elements.MEP` - `GeometricElement.RepresentationInstances` - `ContentRepresentation` +- `Elements.Door` ### Fixed diff --git a/Elements.Serialization.IFC/src/Elements.Serialization.IFC.csproj b/Elements.Serialization.IFC/src/Elements.Serialization.IFC.csproj index 461980fa7..c24fac44c 100644 --- a/Elements.Serialization.IFC/src/Elements.Serialization.IFC.csproj +++ b/Elements.Serialization.IFC/src/Elements.Serialization.IFC.csproj @@ -1,7 +1,7 @@ - netstandard2.0 + net6.0 Hypar.Elements.Serialization.IFC Hypar Elements Serialization IFC true @@ -16,7 +16,7 @@ - + diff --git a/Elements.Serialization.IFC/src/Serialization/IFC/IFCElementExtensions.cs b/Elements.Serialization.IFC/src/IFCElementExtensions.cs similarity index 100% rename from Elements.Serialization.IFC/src/Serialization/IFC/IFCElementExtensions.cs rename to Elements.Serialization.IFC/src/IFCElementExtensions.cs diff --git a/Elements.Serialization.IFC/src/Serialization/IFC/IFCModelExtensions.cs b/Elements.Serialization.IFC/src/IFCModelExtensions.cs similarity index 62% rename from Elements.Serialization.IFC/src/Serialization/IFC/IFCModelExtensions.cs rename to Elements.Serialization.IFC/src/IFCModelExtensions.cs index c74b3e8e1..30a1f2bb5 100644 --- a/Elements.Serialization.IFC/src/Serialization/IFC/IFCModelExtensions.cs +++ b/Elements.Serialization.IFC/src/IFCModelExtensions.cs @@ -1,5 +1,7 @@ using Elements.Analysis; using Elements.Geometry; +using Elements.Interfaces; +using Elements.Serialization.IFC.IFCToHypar; using IFC; using STEP; using System; @@ -25,141 +27,9 @@ public static class IFCModelExtensions /// A model. public static Model FromIFC(string path, out List constructionErrors, IList idsToConvert = null) { - List errors; - var ifcModel = new Document(path, out errors); - foreach (var error in errors) - { - Console.WriteLine("***IFC ERROR***" + error.Message); - } - - IEnumerable ifcSlabs = null; - IEnumerable ifcSpaces = null; - IEnumerable ifcWalls = null; - IEnumerable ifcBeams = null; - IEnumerable ifcColumns = null; - IEnumerable ifcVoids = null; - IEnumerable ifcMaterials = null; - IEnumerable ifcDoors = null; - - if (idsToConvert != null && idsToConvert.Count > 0) - { - ifcSlabs = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcSpaces = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcWalls = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcBeams = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcColumns = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcVoids = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcMaterials = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - ifcDoors = ifcModel.AllInstancesOfType().Where(i => idsToConvert.Contains(i.GlobalId)); - } - else - { - ifcSlabs = ifcModel.AllInstancesOfType(); - ifcSpaces = ifcModel.AllInstancesOfType(); - ifcWalls = ifcModel.AllInstancesOfType(); - ifcBeams = ifcModel.AllInstancesOfType(); - ifcColumns = ifcModel.AllInstancesOfType(); - ifcVoids = ifcModel.AllInstancesOfType(); - ifcMaterials = ifcModel.AllInstancesOfType(); - ifcDoors = ifcModel.AllInstancesOfType(); - } - - constructionErrors = new List(); - - var slabs = new List(); - foreach (var s in ifcSlabs) - { - try - { - slabs.Add(s.ToFloor(ifcVoids.Where(v => v.RelatingBuildingElement == s).Select(v => v.RelatedOpeningElement).Cast())); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - - } - - var spaces = new List(); - foreach (var sp in ifcSpaces) - { - try - { - spaces.Add(sp.ToSpace()); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - } - - var walls = new List(); - foreach (var w in ifcWalls) - { - try - { - walls.Add(w.ToWall(ifcVoids.Where(v => v.RelatingBuildingElement == w).Select(v => v.RelatedOpeningElement).Cast())); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - } - - var beams = new List(); - foreach (var b in ifcBeams) - { - try - { - beams.Add(b.ToBeam()); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - } - - var columns = new List(); - foreach (var c in ifcColumns) - { - try - { - columns.Add(c.ToColumn()); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - } - - var doors = new List(); - foreach (var d in ifcDoors) - { - try - { - doors.Add(d.ToDoor(walls)); - } - catch (Exception ex) - { - constructionErrors.Add(ex.Message); - continue; - } - } - - var model = new Model(); - model.AddElements(slabs); - model.AddElements(spaces); - model.AddElements(walls); - model.AddElements(beams); - model.AddElements(columns); - model.AddElements(doors); - - return model; + var modelProvider = new FromIfcModelProvider(path, idsToConvert: idsToConvert); + constructionErrors = modelProvider.GetConstructionErrors(); + return modelProvider.Model; } private static Document CreateIfcDocument(this Model model, bool updateElementsRepresentation = true) @@ -304,7 +174,7 @@ public static void ToIFC(this Model model, { File.Delete(path); } - File.WriteAllText(path, ifc.ToSTEP(path)); + File.WriteAllText(path, ifc.ToSTEP()); } /// diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/CompositeFromIfcProductConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/CompositeFromIfcProductConverter.cs new file mode 100644 index 000000000..f85b4a955 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/CompositeFromIfcProductConverter.cs @@ -0,0 +1,69 @@ +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + /// Uses a list of IFromIfcProductConverter to convert an IfcProduct to a GeometricElement. + internal class CompositeFromIfcProductConverter : IFromIfcProductConverter + { + private readonly List _converters; + private readonly IFromIfcProductConverter _defaultConverter; + + /// + /// Create a CompositeFromIfcProductConverter that uses and + /// to convert an IfcProduct to a GeometricElement. + /// + /// A list, where CompositeFromIfcProductConverter looks for a converter that can convert an IfcProduct + /// to a GeometricElement. + /// A fallback converter, which will be used if none of can convert + /// an IfcProduct to a GeometricElement. + public CompositeFromIfcProductConverter(List converters, IFromIfcProductConverter defaultConverter) + { + _converters = converters; + _defaultConverter = defaultConverter; + } + + /// + /// Looks for a converter that can convert to a GeometricElement within _converters. + /// If none of _converters can do the conversion, _defaultConverter is used instead. + /// Returns null if the conversion was unsuccessful. + /// + /// IfcProduct to convert to a GeometricElement. + /// Parsed Representation of . + /// The list of construction errors that appeared during conversion. + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData representationData, List constructionErrors) + { + GeometricElement result; + + foreach (var converter in _converters) + { + if (!converter.CanConvert(ifcProduct)) + { + continue; + } + + result = converter.ConvertToElement(ifcProduct, representationData, constructionErrors); + + if (result != null) + { + return result; + } + } + + return _defaultConverter.ConvertToElement(ifcProduct, representationData, constructionErrors); + } + + /// + /// Returns true, if any of _converters or _defaultConverter can convert to a GeometricElement. + /// + /// IfcProduct that will be checked if it can be converted with this converter. + public bool CanConvert(IfcProduct ifcProduct) + { + return _converters.Any(converter => converter.CanConvert(ifcProduct)) || _defaultConverter.CanConvert(ifcProduct); + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcBeamConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcBeamConverter.cs new file mode 100644 index 000000000..234c363ae --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcBeamConverter.cs @@ -0,0 +1,53 @@ +using Elements.Geometry; +using Elements.Geometry.Solids; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcBeamConverter : IFromIfcProductConverter + { + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!(ifcProduct is IfcBeam ifcBeam)) + { + return null; + } + + var elementTransform = repData.Transform; + + if (repData.Extrude == null) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Conversion of IfcBeam without extrude or mapped item representation to Beam is not supported."); + return null; + } + + var representation = new Representation(repData.SolidOperations); + + var centerLine = new Line(Vector3.Origin, repData.Extrude.Direction, repData.Extrude.Height); + var transformedLine = centerLine.TransformedLine(repData.ExtrudeTransform); + var result = new Beam(transformedLine, + repData.Extrude.Profile, + 0, + 0, + 0, + elementTransform, + repData.Material, + representation, + false, + IfcGuid.FromIfcGUID(ifcBeam.GlobalId), + ifcBeam.Name); + + return result; + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcBeam; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcColumnConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcColumnConverter.cs new file mode 100644 index 000000000..717c4db4a --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcColumnConverter.cs @@ -0,0 +1,50 @@ +using Elements.Geometry; +using Elements.Geometry.Solids; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcColumnConverter : IFromIfcProductConverter + { + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!(ifcProduct is IfcColumn ifcColumn)) + { + return null; + } + + var elementTransform = repData.Transform; + + if (repData.Extrude == null) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Conversion of IfcColumn without extrude or mapped item representation to Column is not supported."); + return null; + } + + var result = new Column(repData.ExtrudeTransform.Origin, + repData.Extrude.Height, + null, + repData.Extrude.Profile, + 0, + 0, + 0, + elementTransform, + repData.Material, + new Representation(repData.SolidOperations), + false, + IfcGuid.FromIfcGUID(ifcColumn.GlobalId), + ifcColumn.Name); + return result; + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcColumn; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcDoorConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcDoorConverter.cs new file mode 100644 index 000000000..d59234f57 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcDoorConverter.cs @@ -0,0 +1,74 @@ +using Elements.Geometry; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcDoorConverter : IFromIfcProductConverter + { + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!(ifcProduct is IfcDoor ifcDoor)) + { + return null; + } + + if (ifcDoor.PredefinedType != IfcDoorTypeEnum.DOOR) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Doors of type {ifcDoor.PredefinedType} are not supported yet."); + return null; + } + + var openingSide = ifcDoor.GetDoorOpeningSide(); + var openingType = ifcDoor.GetDoorOpeningType(); + + if (openingSide == DoorOpeningSide.Undefined || openingType == DoorOpeningType.Undefined) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Doors of operation type {ifcDoor.OperationType} are not supported yet."); + return null; + } + + // TODO: Implement during the connections establishment. + //var wall = GetWallFromDoor(ifcDoor, allWalls); + var doorWidth = (IfcLengthMeasure) ifcDoor.OverallWidth; + var doorHeight = (IfcLengthMeasure) ifcDoor.OverallHeight; + + var result = new Door(doorWidth, + doorHeight, + openingSide, + openingType, + repData.Transform, + repData.Material, + new Representation(repData.SolidOperations), + IfcGuid.FromIfcGUID(ifcDoor.GlobalId), + ifcDoor.Name + ); + + return result; + } + + private static Wall GetWallFromDoor(IfcDoor door, List allWalls) + { + var walls = door.Decomposes.Select(rel => rel.RelatingObject).OfType(); + + if (!walls.Any()) + { + return null; + } + + var ifcWall = walls.First(); + var matchingWalls = allWalls.Where(w => w.Id.Equals(IfcGuid.FromIfcGUID(ifcWall.GlobalId))); + + return matchingWalls.FirstOrDefault(); + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcDoor; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcElementConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcElementConverter.cs new file mode 100644 index 000000000..fe0f77279 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcElementConverter.cs @@ -0,0 +1,67 @@ +using Elements.Geometry; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcElementConverter : IFromIfcProductConverter + { + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!CanConvert(ifcProduct)) + { + return null; + } + + if (repData == null) + { + constructionErrors.Add($"#{ifcProduct.StepId}: There was no representation for an element of type {ifcProduct.GetType()}."); + return null; + } + + if (repData.SolidOperations.Count == 0) + { + constructionErrors.Add($"#{ifcProduct.StepId}: {ifcProduct.GetType().Name} did not have any solid operations in it's representation."); + return null; + } + + var geom = new GeometricElement(repData.Transform, + repData.Material ?? BuiltInMaterials.Default, + new Representation(repData.SolidOperations), + false, + IfcGuid.FromIfcGUID(ifcProduct.GlobalId), + ifcProduct.Name); + + // geom.Representation.SkipCSGUnion = true; + return geom; + } + + public bool CanConvert(IfcProduct ifcProduct) + { + if (ifcProduct is IfcBuildingElement) + { + return true; + } + + if (ifcProduct is IfcFurnishingElement) + { + return true; + } + + if (ifcProduct is IfcSpace) + { + return true; + } + + if (ifcProduct is IfcSite) + { + return true; + } + + return false; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcFloorConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcFloorConverter.cs new file mode 100644 index 000000000..008363ec0 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcFloorConverter.cs @@ -0,0 +1,43 @@ +using Elements; +using Elements.Geometry; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcFloorConverter : IFromIfcProductConverter + { + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!(ifcProduct is IfcSlab slab)) + { + return null; + } + + if (repData.Extrude == null) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Conversion of IfcSlab without extrude or mapped item representation to Floor is not supported."); + return null; + } + + var floor = new Floor(repData.Extrude.Profile, + repData.Extrude.Height, + repData.Transform, + repData.Material, + new Representation(repData.SolidOperations), + false, + IfcGuid.FromIfcGUID(slab.GlobalId)); + + return floor; + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcSlab; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcSpaceConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcSpaceConverter.cs new file mode 100644 index 000000000..a980a34cc --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcSpaceConverter.cs @@ -0,0 +1,57 @@ +using Elements.Geometry.Solids; +using Elements.Geometry; +using IFC; +using System; +using System.Collections.Generic; +using System.Text; +using System.Linq; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcSpaceConverter : IFromIfcProductConverter + { + private static readonly Material DEFAULT_MATERIAL = new Material("space", new Color(1.0f, 0.0f, 1.0f, 0.5f), 0.0f, 0.0f); + + public GeometricElement ConvertToElement(IfcProduct product, RepresentationData repData, List constructionErrors) + { + if (!(product is IfcSpace ifcSpace)) + { + return null; + } + + var elementMaterial = repData.Material ?? DEFAULT_MATERIAL; + + var extrude = repData.Extrude; + + if (extrude != null) + { + + var result = new Space(extrude.Profile, + extrude.Height, + elementMaterial, + repData.Transform, + new Representation(repData.SolidOperations), + false, + Guid.NewGuid(), + ifcSpace.Name); + return result; + } + + var solid = repData.SolidOperations.FirstOrDefault()?.Solid; + + if (solid == null) + { + constructionErrors.Add($"#{product.StepId}: Conversion of IfcSpace without solid or mapped item representation to Space is not supported."); + return null; + } + + return new Space(solid, repData.Transform, elementMaterial, false, Guid.NewGuid(), ifcSpace.Name); + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcSpace; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcWallConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcWallConverter.cs new file mode 100644 index 000000000..a56e12c84 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcWallConverter.cs @@ -0,0 +1,44 @@ +using Elements; +using Elements.Geometry; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + internal class FromIfcWallConverter : IFromIfcProductConverter + { + + public GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData repData, List constructionErrors) + { + if (!(ifcProduct is IfcWall wall)) + { + return null; + } + + if (repData.Extrude == null) + { + constructionErrors.Add($"#{ifcProduct.StepId}: Conversion of IfcWall without extrude or mapped item representation to Wall is not supported."); + return null; + } + + var result = new Wall(repData.Extrude.Profile, + repData.Extrude.Height, + repData.Material, + repData.Transform, + new Representation(repData.SolidOperations), + false, + IfcGuid.FromIfcGUID(wall.GlobalId), + wall.Name); + return result; + } + + public bool CanConvert(IfcProduct ifcProduct) + { + return ifcProduct is IfcWall; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/Converters/IFromIfcProductConverter.cs b/Elements.Serialization.IFC/src/IFCToHypar/Converters/IFromIfcProductConverter.cs new file mode 100644 index 000000000..fa52fa768 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/Converters/IFromIfcProductConverter.cs @@ -0,0 +1,25 @@ +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using IFC; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.Converters +{ + /// Converts an IfcProduct to a GeometricElement. + internal interface IFromIfcProductConverter + { + /// + /// Converts to a GeometricElement. Returns null if the conversion was unsuccessful. + /// + /// IfcProduct to convert to a GeometricElement. + /// Parsed Representation of . + /// The list of construction errors that appeared during conversion. + GeometricElement ConvertToElement(IfcProduct ifcProduct, RepresentationData representationData, List constructionErrors); + /// + /// Returns true, if it is an appropriate converter for . + /// + /// IfcProduct that will be checked if it can be converted with this converter. + bool CanConvert(IfcProduct ifcProduct); + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/FromIfcModelProvider.cs b/Elements.Serialization.IFC/src/IFCToHypar/FromIfcModelProvider.cs new file mode 100644 index 000000000..f88cddd2d --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/FromIfcModelProvider.cs @@ -0,0 +1,237 @@ +using Elements.Geometry; +using Elements.Interfaces; +using Elements.Serialization.IFC.IFCToHypar.Converters; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction; +using Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers; +using IFC; +using STEP; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar +{ + /// Provides a Model, converted from IFC. + internal class FromIfcModelProvider + { + /// The Model, converted from IFC. + public Model Model { get; private set; } + + private readonly IFromIfcProductConverter _fromIfcToElementsConverter; + private readonly IfcRepresentationDataExtractor _representationDataExtractor; + + private readonly List _ifcProducts; + private readonly List _ifcRelationships; + + private readonly Dictionary _elementToIfcProduct; + private readonly Dictionary _elementDefinitions; + private readonly List _constructionErrors; + + private readonly MaterialExtractor _materialExtractor; + + /// + /// Create FromIfcModelProvider that provides a Model, build from data, extracted from IFC file. + /// + /// A path to IFC file. + /// Only IfcProducts with these ids will be converted. + /// An object that converts IfcProducts to GeometricElements. + /// If null, a fallback default converter will be created. + /// An object that extracts RepresentationData from IfcRepresentations + /// of IfcProduct. If null, a fallback default extractor will be created. + public FromIfcModelProvider(string path, + IList idsToConvert = null, + IFromIfcProductConverter fromIfcConverter = null, + IfcRepresentationDataExtractor representationExtractor = null) + { + _constructionErrors = new List(); + + var ifcModel = new Document(path, out List errors); + // TODO: IfcOpeningElement is prohibited because openings are handled during + // relationships processing. + // It is possible that there are more IfcElement types that should be excluded. + var prohibitedElements = ifcModel.AllInstancesOfType(); + + if (idsToConvert != null && idsToConvert.Count > 0) + { + _ifcProducts = ifcModel.AllInstancesDerivedFromType() + .Where(i => idsToConvert.Contains(i.GlobalId)).Except(prohibitedElements).ToList(); + _ifcRelationships = ifcModel.AllInstancesDerivedFromType() + .Where(i => idsToConvert.Contains(i.GlobalId)).ToList(); + } + else + { + _ifcProducts = ifcModel.AllInstancesDerivedFromType().Except(prohibitedElements).ToList(); + _ifcRelationships = ifcModel.AllInstancesDerivedFromType().ToList(); + } + + var styledItems = ifcModel.AllInstancesOfType().ToList(); + _materialExtractor = new MaterialExtractor(styledItems); + + _elementToIfcProduct = new Dictionary(); + _elementDefinitions = new Dictionary(); + + _representationDataExtractor = representationExtractor ?? GetDefaultRepresentationDataExtractor(_materialExtractor); + _fromIfcToElementsConverter = fromIfcConverter ?? GetDefaultFromIfcConverter(); + + var elements = GetElementsFromIfcProducts(); + HandleRelationships(elements); + + Model = new Model(); + Model.AddElements(elements); + } + + /// + /// Returns the list of construction errors that appeared during the conversion. + /// + public List GetConstructionErrors() + { + return _constructionErrors; + } + + /// + /// Converts the extracted IfcProducts into Elements. + /// + private List GetElementsFromIfcProducts() + { + var elements = new List(); + + foreach (var product in _ifcProducts) + { + // TODO: Parameter List constructionErrors and exceptions handling are both used to catch construction errors. + // Refactor the code so the only one of these approaches is used. + try + { + var element = ConvertIfcProductToElement(product); + + if (element == null) + { + continue; + } + + elements.Add(element); + _elementToIfcProduct.Add(element, product); + } + catch (Exception ex) + { + _constructionErrors.Add(ex.Message); + } + } + + return elements; + } + + /// + /// Converts into Element. + /// + /// IfcProduct that will be converted into an Element. + private Element ConvertIfcProductToElement(IfcProduct product) + { + // Extract RepresentationData from IfcRepresentations of IfcProduct. + var repData = _representationDataExtractor.ExtractRepresentationData(product); + + if (repData == null) + { + return null; + } + + // If the product has IfcMappedItem representation, it will be used + // to create an ElementInstance. If the definition isn't exist in + // _elementDefinitions, it will be extracted from IfcMappedItem + // and added to _elementDefinitions. + if (repData.MappingInfo != null) + { + // TODO: Handle IfcMappedItem + // - Idea: Make Representations an Element, so that they can be shared. + // - Idea: Make PropertySet an Element. PropertySets can store type properties. + if (!_elementDefinitions.TryGetValue(repData.MappingInfo.MappingId, out var definition)) + { + definition = _fromIfcToElementsConverter.ConvertToElement(product, repData, _constructionErrors); + + if (definition == null) + { + //Debug.Assert(false, "Cannot convert definition to GeometricElement."); + return null; + } + + definition.IsElementDefinition = true; + _elementDefinitions.Add(repData.MappingInfo.MappingId, definition); + //definition.SkipCSGUnion = true; + } + + // The cartesian transform needs to be applied + // before the element transformation because it + // may contain scale and rotation. + var instanceTransform = new Transform(repData.MappingInfo.MappingTransform); + instanceTransform.Concatenate(repData.Transform); + var instance = definition.CreateInstance(instanceTransform, product.Name ?? ""); + return instance; + } + + // If the product doesn't have an IfcMappedItem representation, it will be converted to + // a GeometricElement. + var element = _fromIfcToElementsConverter.ConvertToElement(product, repData, _constructionErrors); + return element; + } + + /// + /// Apply the extracted relationships to the converted Elements. + /// + private void HandleRelationships(List elements) + { + var elementsWithOpenings = elements.Where(element => element is IHasOpenings).ToList(); + var ifcOpenings = _ifcRelationships.OfType().ToList(); + + // Convert IfcOpeningElements into Openings and attach them to the corresponding + // converted Elements. + foreach (var elementWithOpenings in elementsWithOpenings) + { + var ifcElement = _elementToIfcProduct[elementWithOpenings]; + var openings = ifcOpenings.Where(v => v.RelatingBuildingElement == ifcElement) + .Select(v => v.RelatedOpeningElement).Cast() + .SelectMany(io => io.ToOpenings()); + + var openingsOwner = (IHasOpenings) elementWithOpenings; + openingsOwner.Openings.AddRange(openings); + } + } + + /// + /// Create the default IFromIfcProductConverter. It will be used, if + /// IFromIfcProductConverter is not specified in the constructor. + /// + private static IFromIfcProductConverter GetDefaultFromIfcConverter() + { + var converters = new List() + { + new FromIfcFloorConverter(), + new FromIfcSpaceConverter(), + new FromIfcWallConverter(), + new FromIfcDoorConverter(), + new FromIfcBeamConverter(), + new FromIfcColumnConverter() + }; + + var defaultConverter = new FromIfcElementConverter(); + + return new CompositeFromIfcProductConverter(converters, defaultConverter); + } + + /// + /// Create the default IfcRepresentationDataExtractor. It will be used, if + /// IfcRepresentationDataExtractor is not specified in the constructor. + /// + private static IfcRepresentationDataExtractor GetDefaultRepresentationDataExtractor(MaterialExtractor materialExtractor) + { + IfcRepresentationDataExtractor extractor = new IfcRepresentationDataExtractor(materialExtractor); + + extractor.AddRepresentationParser(new IfcFacetedBrepParser()); + extractor.AddRepresentationParser(new IfcExtrudedAreaSolidParser()); + extractor.AddRepresentationParser(new IfcMappedItemParser(extractor)); + extractor.AddRepresentationParser(new IfcBooleanClippingResultParser(extractor)); + + return extractor; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/IFCExtensions.cs b/Elements.Serialization.IFC/src/IFCToHypar/IFCExtensions.cs new file mode 100644 index 000000000..6a9417ac6 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/IFCExtensions.cs @@ -0,0 +1,494 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Elements.Geometry; +using Elements.Geometry.Interfaces; +using Elements.Geometry.Solids; +using IFC; + +namespace Elements.Serialization.IFC.IFCToHypar +{ + /// + /// Extension methods for converting IFC entities to elements. + /// + internal static class IFCExtensions + { + internal static DoorOpeningSide GetDoorOpeningSide(this IfcDoor ifcDoor) + { + switch (ifcDoor.OperationType) + { + case IfcDoorTypeOperationEnum.SINGLE_SWING_LEFT: + case IfcDoorTypeOperationEnum.DOUBLE_SWING_LEFT: + return DoorOpeningSide.LeftHand; + case IfcDoorTypeOperationEnum.SINGLE_SWING_RIGHT: + case IfcDoorTypeOperationEnum.DOUBLE_SWING_RIGHT: + return DoorOpeningSide.RightHand; + case IfcDoorTypeOperationEnum.DOUBLE_DOOR_SINGLE_SWING: + case IfcDoorTypeOperationEnum.DOUBLE_DOOR_DOUBLE_SWING: + return DoorOpeningSide.DoubleDoor; + } + return DoorOpeningSide.Undefined; + } + + internal static DoorOpeningType GetDoorOpeningType(this IfcDoor ifcDoor) + { + switch (ifcDoor.OperationType) + { + case IfcDoorTypeOperationEnum.SINGLE_SWING_LEFT: + case IfcDoorTypeOperationEnum.SINGLE_SWING_RIGHT: + case IfcDoorTypeOperationEnum.DOUBLE_DOOR_SINGLE_SWING: + return DoorOpeningType.SingleSwing; + case IfcDoorTypeOperationEnum.DOUBLE_SWING_LEFT: + case IfcDoorTypeOperationEnum.DOUBLE_SWING_RIGHT: + case IfcDoorTypeOperationEnum.DOUBLE_DOOR_DOUBLE_SWING: + return DoorOpeningType.DoubleSwing; + } + return DoorOpeningType.Undefined; + } + + // TODO: In IFC an IfcOpeningElement may have several extrudes. + // Now they are extracted as separate Openings. As the result + // initial Guid of IfcOpeningElement is not saved. + internal static List ToOpenings(this IfcOpeningElement opening) + { + var relativePlacement = ((IfcLocalPlacement)opening.ObjectPlacement).RelativePlacement.ToTransform(); + var resultOpenings = new List(); + + var extrudes = opening.RepresentationsOfType(); + + if (extrudes is null) + { + return resultOpenings; + } + + foreach (var extrude in extrudes) + { + var extrudePosition = extrude.Position.ToTransform(); + var openingTransform = extrudePosition.Concatenated(relativePlacement); + + var profile = (Polygon)extrude.SweptArea.ToCurve(); + var extrudeDir = extrude.ExtrudedDirection.ToVector3(); + + var profileTransformed = profile.TransformedPolygon(openingTransform); + var extrudeDirTransformed = openingTransform.OfVector(extrudeDir); + + var extrudeDepth = (IfcLengthMeasure)extrude.Depth; + var newOpening = new Opening(profileTransformed, extrudeDirTransformed, extrudeDepth, 0.0); + resultOpenings.Add(newOpening); + } + + return resultOpenings; + } + + internal static IEnumerable RepresentationsOfType(this IfcProduct product) where T : IfcGeometricRepresentationItem + { + var reps = product.Representation.Representations.SelectMany(r => r.Items); + if (reps.Any()) + { + return reps.OfType(); + } + return null; + } + + internal static ICurve ToCurve(this IfcProfileDef profile) + { + if (profile is IfcCircleProfileDef cpd) + { + // TODO: Remove this conversion to a polygon when downstream + // functions support arcs and circles. + return new Circle((IfcLengthMeasure)cpd.Radius).ToPolygon(10); + } + else if (profile is IfcParameterizedProfileDef ipd) + { + return ipd.ToCurve(); + } + else if (profile is IfcArbitraryOpenProfileDef aopd) + { + return aopd.ToCurve(); + } + else if (profile is IfcArbitraryClosedProfileDef acpd) + { + return acpd.ToCurve(); + } + else if (profile is IfcCompositeProfileDef) + { + throw new Exception("IfcCompositeProfileDef is not supported yet."); + } + else if (profile is IfcDerivedProfileDef) + { + throw new Exception("IfcDerivedProfileDef is not supported yet."); + } + return null; + } + + internal static ICurve ToCurve(this IfcParameterizedProfileDef profile) + { + var transform = new Transform(profile.Position.Location.ToVector3()); + if (profile is IfcRectangleProfileDef ifcRectangle) + { + var rectangle = Polygon.Rectangle((IfcLengthMeasure)ifcRectangle.XDim, (IfcLengthMeasure)ifcRectangle.YDim); + return rectangle.Transformed(transform); + } + else if (profile is IfcCircleProfileDef ifcCircle) + { + var circle = new Circle((IfcLengthMeasure) ifcCircle.Radius); + return circle.Transformed(transform); + } + else + { + throw new Exception($"The IfcParameterizedProfileDef type, {profile.GetType().Name}, is not supported."); + } + } + + internal static ICurve ToCurve(this IfcArbitraryOpenProfileDef profile) + { + return profile.Curve.ToCurve(false); + } + + internal static ICurve ToCurve(this IfcArbitraryClosedProfileDef profile) + { + return profile.OuterCurve.ToCurve(true); + } + + internal static ICurve ToCurve(this IfcCurve curve, bool closed) + { + if (curve is IfcBoundedCurve) + { + if (curve is IfcCompositeCurve) + { + throw new Exception("IfcCompositeCurve is not supported yet."); + } + else if (curve is IfcPolyline pl) + { + if (closed) + { + return pl.ToPolygon(true); + } + else + { + return pl.ToPolyline(); + } + } + else if (curve is IfcTrimmedCurve) + { + throw new Exception("IfcTrimmedCurve is not supported yet."); + } + else if (curve is IfcBSplineCurve) + { + throw new Exception("IfcBSplineCurve is not supported yet."); + } + else if (curve is IfcIndexedPolyCurve ipc) + { + return ipc.ToIndexedPolycurve(); + } + } + else if (curve is IfcConic) + { + throw new Exception("IfcConic is not supported yet."); + } + else if (curve is IfcOffsetCurve2D) + { + throw new Exception("IfcOffsetCurve2D is not supported yet."); + } + else if (curve is IfcOffsetCurve3D) + { + throw new Exception("IfcOffsetCurve3D is not supported yet."); + } + return null; + } + + internal static Profile ToProfile(this IfcProfileDef ifcProfile) + { + Polygon outer = null; + List inner = new List(); + + if (ifcProfile is IfcRectangleProfileDef ifcRectangle) + { + var rectangle = Polygon.Rectangle((IfcLengthMeasure)ifcRectangle.XDim, (IfcLengthMeasure)ifcRectangle.YDim); + var transform = new Transform(ifcRectangle.Position.Location.ToVector3()); + outer = (Polygon)rectangle.Transformed(transform); + } + else if (ifcProfile is IfcCircleProfileDef ifcCircle) + { + var circle = new Circle((IfcLengthMeasure)ifcCircle.Radius).ToPolygon(); + var transform = new Transform(ifcCircle.Position.Location.ToVector3()); + outer = (Polygon)circle.Transformed(transform); + } + else if (ifcProfile is IfcArbitraryClosedProfileDef closedProfile) + { + var outerCurve = closedProfile.OuterCurve.ToCurve(true); + if (outerCurve is Polygon pc) + { + outer = pc; + } + else if (outerCurve is IndexedPolycurve ipc) + { + outer = ipc.ToPolygon(); + } + + if (ifcProfile is IfcArbitraryProfileDefWithVoids) + { + var voidProfile = (IfcArbitraryProfileDefWithVoids)ifcProfile; + inner.AddRange(voidProfile.InnerCurves.Select(c => + { + var elCurve = c.ToCurve(true); + if (elCurve is Polygon voidP) + { + return voidP; + } + else if (elCurve is IndexedPolycurve voidPc) + { + return voidPc.ToPolygon(); + } + return null; + })); + } + } + else + { + throw new Exception($"The profile type, {ifcProfile.GetType().Name}, is not supported."); + } + + // var name = profile.ProfileName == null ? null : profile.ProfileName; + var newProfile = new Profile(outer, inner, ifcProfile.Id, string.Empty); + return newProfile; + } + + internal static IndexedPolycurve ToIndexedPolycurve(this IfcIndexedPolyCurve polycurve) + { + var vertices = new List(); + foreach (var point in ((IfcCartesianPointList2D)polycurve.Points).CoordList) + { + vertices.Add(point.ToVector3()); + } + + IndexedPolycurve pc; + var curveIndices = new List>(); + if (polycurve.Segments != null) + { + foreach (var select in polycurve.Segments) + { + var segmentIndices = new List(); + if (select.Choice is IfcLineIndex li) + { + foreach (IfcInteger segmentIndex in (List)li) + { + segmentIndices.Add(segmentIndex - 1); + } + } + else if (select.Choice is IfcArcIndex ai) + { + foreach (IfcInteger segmentIndex in (List)ai) + { + segmentIndices.Add(segmentIndex - 1); + } + } + curveIndices.Add(segmentIndices); + } + pc = new IndexedPolycurve(vertices, curveIndices); + } + else + { + pc = new IndexedPolycurve(vertices); + } + return pc; + } + + internal static Vector3 ToVector3(this IfcCartesianPoint cartesianPoint) + { + return cartesianPoint.Coordinates.ToVector3(); + } + + internal static Vector3 ToVector3(this List measures) + { + if (measures.Count == 2) + { + return new Vector3(measures[0], measures[1]); + } + else if (measures.Count == 3) + { + return new Vector3(measures[0], measures[1], measures[2]); + } + else + { + throw new Exception($"{measures.Count} measures could not be converted to a Vector3."); + } + } + + internal static Polygon ToPolygon(this IfcPolyline polyline, bool dropLastPoint = false) + { + var count = dropLastPoint ? polyline.Points.Count - 1 : polyline.Points.Count; + var verts = new Vector3[count]; + for (var i = 0; i < count; i++) + { + var v = polyline.Points[i].ToVector3(); + verts[i] = v; + } + return new Polygon(verts); + } + + internal static Polyline ToPolyline(this IfcPolyline polyline) + { + var verts = polyline.Points.Select(p => p.ToVector3()).ToArray(); + return new Polyline(verts); + } + + internal static bool IsClosed(this IfcPolyline pline) + { + var start = pline.Points[0]; + var end = pline.Points[pline.Points.Count - 1]; + return start.Equals(end); + } + + internal static bool Equals(this IfcCartesianPoint point, IfcCartesianPoint other, double tolerance = Vector3.EPSILON) + { + if (point.Coordinates != other.Coordinates) + { + return false; + } + + double distanceSquared = 0.0; + + for (int i = 0; i < point.Coordinates.Count; i++) + { + var dif = point.Coordinates[i] - other.Coordinates[i]; + distanceSquared += dif * dif; + } + + return distanceSquared < tolerance * tolerance; + } + internal static Transform ToTransform(this IfcAxis2Placement3D cs) + { + var x = cs.RefDirection != null ? cs.RefDirection.ToVector3() : Vector3.XAxis; + var z = cs.Axis != null ? cs.Axis.ToVector3() : Vector3.ZAxis; + var y = z.Cross(x); + var o = cs.Location.ToVector3(); + var t = new Transform(o, x, y, z); + return t; + } + + internal static Transform ToTransform(this IfcAxis2Placement2D cs) + { + var d = cs.RefDirection.ToVector3(); + var z = Vector3.ZAxis; + var o = cs.Location.ToVector3(); + return new Transform(o, d, z); + } + + internal static Vector3 ToVector3(this IfcDirection direction) + { + var ratios = direction.DirectionRatios; + return new Vector3(ratios[0], ratios[1], ratios[2]); + } + + internal static Transform ToTransform(this IfcAxis2Placement placement) + { + // SELECT IfcAxis2Placement3d, IfcAxis2Placement2d + if (placement.Choice.GetType() == typeof(IfcAxis2Placement2D)) + { + var cs = (IfcAxis2Placement2D)placement.Choice; + return cs.ToTransform(); + } + else if (placement.Choice.GetType() == typeof(IfcAxis2Placement3D)) + { + var cs = (IfcAxis2Placement3D)placement.Choice; + var t = cs.ToTransform(); + return t; + } + else + { + throw new Exception($"The specified placement of type, {placement.GetType().ToString()}, cannot be converted to a Transform."); + } + } + + internal static Transform ToTransform(this IfcLocalPlacement placement) + { + var t = placement.RelativePlacement.ToTransform(); + if (placement.PlacementRelTo != null) + { + var tr = placement.PlacementRelTo.ToTransform(); + t.Concatenate(tr); + } + return t; + } + + internal static Transform ToTransform(this IfcObjectPlacement placement) + { + if (placement.GetType() == typeof(IfcLocalPlacement)) + { + var lp = (IfcLocalPlacement)placement; + var t = lp.ToTransform(); + return t; + } + else if (placement.GetType() == typeof(IfcGridPlacement)) + { + throw new Exception("IfcGridPlacement conversion to Transform not supported."); + } + return null; + } + + internal static Transform ToTransform(this IfcCartesianTransformationOperator op) + { + if (op is IfcCartesianTransformationOperator2D) + { + var op2D = (IfcCartesianTransformationOperator2D)op; + return op2D.ToTransform(); + } + else if (op is IfcCartesianTransformationOperator3D) + { + var op3D = (IfcCartesianTransformationOperator3D)op; + return op3D.ToTransform(); + } + return null; + } + + internal static Transform ToTransform(this IfcCartesianTransformationOperator2D op) + { + var o = op.LocalOrigin.ToVector3(); + var x = op.Axis1 == null ? Vector3.XAxis : op.Axis1.ToVector3().Unitized(); + var y = op.Axis2 == null ? Vector3.YAxis : op.Axis2.ToVector3().Unitized(); + var z = x.Cross(y); + return new Transform(o, x, y, z); + } + + internal static Transform ToTransform(this IfcCartesianTransformationOperator3D op) + { + var o = op.LocalOrigin.ToVector3(); + var x = op.Axis1 == null ? Vector3.XAxis : op.Axis1.ToVector3().Unitized(); + var y = op.Axis2 == null ? Vector3.YAxis : op.Axis2.ToVector3().Unitized(); + var z = op.Axis3 == null ? Vector3.ZAxis : op.Axis3.ToVector3().Unitized(); + return new Transform(o, x, y, z); + } + + internal static Polygon ToPolygon(this List loop) + { + var verts = new Vector3[loop.Count]; + for (var i = 0; i < loop.Count; i++) + { + verts[i] = loop[i].ToVector3(); + } + return new Polygon(verts); + } + + internal static Loop ToLoop(this List loop, Solid solid) + { + var hes = new HalfEdge[loop.Count]; + for (var i = 0; i < loop.Count; i++) + { + var v = solid.AddVertex(loop[i].ToVector3()); + hes[i] = new HalfEdge(v); + } + var newLoop = new Loop(hes); + return newLoop; + } + + internal static Polygon ToPolygon(this IfcPolyLoop loop) + { + return loop.Polygon.ToPolygon(); + } + internal static Color ToColor(this IfcColourRgb rgb, double transparency) + { + return new Color((IfcRatioMeasure)rgb.Red, (IfcRatioMeasure)rgb.Green, (IfcRatioMeasure)rgb.Blue, transparency); + } + } +} \ No newline at end of file diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MappingInfo.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MappingInfo.cs new file mode 100644 index 000000000..aa77525b1 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MappingInfo.cs @@ -0,0 +1,25 @@ +using Elements.Geometry; +using System; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction +{ + /// Mapping information, extracted from IfcMappedItem representation. + internal class MappingInfo + { + /// Guid of MappingSource.MappedRepresentation of IfcMappedItem. + public Guid MappingId { get; private set; } + /// The transform of the MappingSource of IfcMappedItem. + public Transform MappingTransform { get; private set; } + + /// + /// Create an object that contains the mapping information from IfcMappedItem. + /// + /// Guid of MappingSource.MappedRepresentation of IfcMappedItem. + /// The transform of the MappingSource of IfcMappedItem. + public MappingInfo(Guid mappingId, Transform mappingTransform) + { + MappingId = mappingId; + MappingTransform = mappingTransform; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MaterialExtractor.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MaterialExtractor.cs new file mode 100644 index 000000000..16e48a7d3 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/MaterialExtractor.cs @@ -0,0 +1,109 @@ +using Elements.Geometry; +using glTFLoader.Schema; +using IFC; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction +{ + /// Extracts and keeps the material information from IfcRepresentationItems. + internal class MaterialExtractor + { + /// A mapping from the material name to the material itself. + public Dictionary MaterialByName { get; private set; } + /// A mapping from the material Guid to the material itself. + public Dictionary MaterialByGuid { get; private set; } + + /// + /// Create a MeterialExtractor that keeps information about materials of . + /// + /// A collection of IfcStyledItems that contain material information. + public MaterialExtractor(IEnumerable styledItems) + { + MaterialByName = new Dictionary(); + MaterialByGuid = new Dictionary(); + + // Get a unique set of materials that are used for all + // styled items. While we're doing that we also build + // a map of the items that are being styled and their materials. + + // TODO: Some of our test models use IfcMaterialList, which is + // deprecated in IFC4. In the AC-Smiley model, for example, the + // windows use a representation with a material list that has glass + // for the window and wood for the frame. I think styled items is + // the modern way to do this, so we shouldn't support material lists. + foreach (var styledItem in styledItems) + { + var item = styledItem.Item; // The representation item that is styled. + + if (item == null) + { + continue; + } + + foreach (IfcStyleAssignmentSelect style in styledItem.Styles) + { + if (style.Choice is IfcPresentationStyle) { + // See https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/schema/ifcpresentationappearanceresource/lexical/ifcpresentationstyle.htm + continue; + } + + if (!(style.Choice is IfcPresentationStyleAssignment styleAssign)) + { + continue; + } + + foreach (IfcPresentationStyleSelect presentationStyle in styleAssign.Styles) + { + if (!(presentationStyle.Choice is IfcSurfaceStyle surfaceStyle)) + { + continue; + } + + foreach (IfcSurfaceStyleElementSelect styleElement in surfaceStyle.Styles) + { + if (styleElement.Choice is IfcSurfaceStyleRendering rendering) + { + var transparency = (IfcRatioMeasure)rendering.Transparency; + var color = rendering.SurfaceColour.ToColor(1.0 - transparency); + var name = surfaceStyle.Name; + + if (!MaterialByName.TryGetValue(name, out var material)) + { + material = new Material(color, + 0.4, + 0.4, + false, + null, + false, + true, + null, + true, + null, + 0.0, + false, + surfaceStyle.Id, + surfaceStyle.Name); + MaterialByName.Add(material.Name, material); + } + + MaterialByGuid.Add(item.Id, material); + } + } + } + } + } + } + + /// + /// Extracts Material from . + /// + /// A representation item, from which the Material will be extracted. + public Material ExtractMaterial(IfcRepresentationItem repItem) + { + MaterialByGuid.TryGetValue(repItem.Id, out var extractedMaterial); + return extractedMaterial; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IIfcRepresentationParser.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IIfcRepresentationParser.cs new file mode 100644 index 000000000..685c7dc65 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IIfcRepresentationParser.cs @@ -0,0 +1,20 @@ +using IFC; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + /// Parses an IfcRepresentationItem into a RepresentationData. + internal interface IIfcRepresentationParser + { + /// + /// Parses into a RepresentationData. + /// Returns null if the conversion was unsuccessful. + /// + /// IfcRepresentationItem to parse. + RepresentationData ParseRepresentationItem(IfcRepresentationItem ifcRepresentationItem); + /// + /// Returns true, if it is an appropriate parser for . + /// + /// IfcRepresentationItem that will be checked if it can be parsed with this parser. + bool CanParse(IfcRepresentationItem ifcRepresentationItem); + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcBooleanClippingResultParser.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcBooleanClippingResultParser.cs new file mode 100644 index 000000000..2d2ac0dcc --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcBooleanClippingResultParser.cs @@ -0,0 +1,41 @@ +using IFC; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + internal class IfcBooleanClippingResultParser : IIfcRepresentationParser + { + private readonly IfcRepresentationDataExtractor _representationDataExtractor; + + /// + /// Create a parser of IfcBooleanClippingResult. + /// + /// + /// General representation data extractor for the extraction of the solids of the first operand. + /// + public IfcBooleanClippingResultParser(IfcRepresentationDataExtractor refDataExtractor) + { + _representationDataExtractor = refDataExtractor; + } + + public bool CanParse(IfcRepresentationItem ifcRepresentationItem) + { + return ifcRepresentationItem is IfcBooleanClippingResult; + } + + public RepresentationData ParseRepresentationItem(IfcRepresentationItem ifcRepresentationItem) + { + if (!(ifcRepresentationItem is IfcBooleanClippingResult ifcBooleanClippingResult)) + { + return null; + } + + // TODO: Apply clipping operation with second operand. + if (!(ifcBooleanClippingResult.FirstOperand.Choice is IfcRepresentationItem firstOperand)) + { + return null; + } + + return _representationDataExtractor.ParseRepresentationItem(firstOperand); + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcExtrudedAreaSolidParser.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcExtrudedAreaSolidParser.cs new file mode 100644 index 000000000..76f65dd8b --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcExtrudedAreaSolidParser.cs @@ -0,0 +1,44 @@ +using Elements; +using Elements.Geometry; +using Elements.Geometry.Solids; +using IFC; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + internal class IfcExtrudedAreaSolidParser : IIfcRepresentationParser + { + public bool CanParse(IfcRepresentationItem ifcRepresentationItem) + { + return ifcRepresentationItem is IfcExtrudedAreaSolid; + } + + public RepresentationData ParseRepresentationItem(IfcRepresentationItem ifcRepresentationItem) + { + if (!(ifcRepresentationItem is IfcExtrudedAreaSolid ifcSolid)) + { + return null; + } + + var profile = ifcSolid.SweptArea.ToProfile(); + var solidTransform = ifcSolid.Position.ToTransform(); + var direction = ifcSolid.ExtrudedDirection.ToVector3(); + + if (profile == null) + { + throw new NotImplementedException($"{profile.GetType().Name} is not supported for IfcExtrudedAreaSolid."); + } + + double height = (IfcLengthMeasure)ifcSolid.Depth; + + var extrude = new Extrude(solidTransform.OfProfile(profile), + height, + solidTransform.OfVector(direction).Unitized(), + false); + + return new RepresentationData(extrude, solidTransform); + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcFacetedBrepParser.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcFacetedBrepParser.cs new file mode 100644 index 000000000..a94bf776e --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcFacetedBrepParser.cs @@ -0,0 +1,42 @@ +using Elements.Geometry; +using Elements.Geometry.Solids; +using IFC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + internal class IfcFacetedBrepParser : IIfcRepresentationParser + { + public bool CanParse(IfcRepresentationItem ifcRepresentationItem) + { + return ifcRepresentationItem is IfcFacetedBrep; + } + + public RepresentationData ParseRepresentationItem(IfcRepresentationItem ifcRepresentationItem) + { + if (!(ifcRepresentationItem is IfcFacetedBrep ifcSolid)) + { + return null; + } + + var shell = ifcSolid.Outer; + var newSolid = new Solid(); + for (var i = 0; i < shell.CfsFaces.Count; i++) + { + var f = shell.CfsFaces[i]; + foreach (var b in f.Bounds) + { + var loop = (IfcPolyLoop)b.Bound; + var poly = loop.Polygon.ToPolygon(); + newSolid.AddFace(poly); + } + } + + var solidOperation = new ConstructedSolid(newSolid); + return new RepresentationData(new List() { solidOperation }); + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcMappedItemParser.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcMappedItemParser.cs new file mode 100644 index 000000000..06abdcc03 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcMappedItemParser.cs @@ -0,0 +1,60 @@ +using IFC; +using System; +using System.Collections.Generic; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + /// Parser for IfcMappedItem representation. + internal class IfcMappedItemParser : IIfcRepresentationParser + { + private readonly IfcRepresentationDataExtractor _representationDataExtractor; + private readonly Dictionary _representationsMap; + + /// + /// Create IfcMappedItem parser. + /// + /// + /// General IfcRepresentationItem parser to extract RepresentationData of the definition. + /// + public IfcMappedItemParser(IfcRepresentationDataExtractor ifcRepresentationDataExtractor) + { + _representationDataExtractor = ifcRepresentationDataExtractor; + _representationsMap = new Dictionary(); + } + + public bool CanParse(IfcRepresentationItem ifcRepresentationItem) + { + return ifcRepresentationItem is IfcMappedItem; + } + + /// + /// Returns RepresentationData - the result of IfcMappedItem parsing. Saves RepresentationData + /// of the MappedSourse. If it's saved version already exists - uses the existing one. + /// + /// + /// IfcRepresentationItem that will be parsed. + /// + public RepresentationData ParseRepresentationItem(IfcRepresentationItem ifcRepresentationItem) + { + if (!(ifcRepresentationItem is IfcMappedItem mappedItem)) + { + return null; + } + + if (_representationsMap.ContainsKey(mappedItem.MappingSource.MappedRepresentation.Id)) + { + var ops = _representationsMap[mappedItem.MappingSource.MappedRepresentation.Id]; + return ops; + } + else + { + var parsedData = _representationDataExtractor.ParseRepresentationItems(mappedItem.MappingSource.MappedRepresentation.Items); + var mappingTransform = mappedItem.MappingSource.MappingOrigin.ToTransform().Concatenated(mappedItem.MappingTarget.ToTransform()); + var repData = new RepresentationData(mappedItem.MappingSource.MappedRepresentation.Id, mappingTransform, parsedData); + + _representationsMap.Add(mappedItem.MappingSource.MappedRepresentation.Id, repData); + return repData; + } + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcRepresentationDataExtractor.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcRepresentationDataExtractor.cs new file mode 100644 index 000000000..e171a7c6c --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/Parsers/IfcRepresentationDataExtractor.cs @@ -0,0 +1,126 @@ +using Elements.Geometry; +using IFC; +using System.Collections.Generic; +using System.Linq; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction.Parsers +{ + /// Extracts all representation data from IfcProduct using list of IIfcRepresentationParsers. + internal class IfcRepresentationDataExtractor + { + private readonly List _ifcRepresentationParsers; + private readonly MaterialExtractor _materialExtractor; + + /// + /// Create an IfcRepresentationDataExtractor. + /// + /// + /// Parses materials from IFC and contains information about them. + /// + public IfcRepresentationDataExtractor(MaterialExtractor materialExtractor) + { + _ifcRepresentationParsers = new List(); + _materialExtractor = materialExtractor; + } + + public void AddRepresentationParser(IIfcRepresentationParser ifcRepresentationParser) + { + _ifcRepresentationParsers.Add(ifcRepresentationParser); + } + + /// + /// Parse IfcRepresentationItems of and merge the results + /// into a single RepresentationData. + /// + /// + /// IfcRepresentationItems of this IfcProduct will be parsed. + /// + public RepresentationData ExtractRepresentationData(IfcProduct ifcProduct) + { + var rep = ifcProduct.Representation; + + if (rep == null) + { + return null; + } + + var repItems = rep.Representations.SelectMany(r => r.Items); + var representation = ParseRepresentationItems(repItems); + representation.Transform = GetTransformFromIfcProduct(ifcProduct); + return representation; + } + + /// + /// Parse into RepresentationData. Returns null, if the item cannot be parsed. + /// + /// IfcRepresentationItem that will be parsed. + public RepresentationData ParseRepresentationItem(IfcRepresentationItem repItem) + { + var material = _materialExtractor.ExtractMaterial(repItem); + var matchingParsers = _ifcRepresentationParsers.Where(parser => parser.CanParse(repItem)); + + if (!matchingParsers.Any()) + { + // TODO: There are many representation types that aren't supported now. + return null; + } + + var repParser = matchingParsers.First(); + var parsedItem = repParser.ParseRepresentationItem(repItem); + + if (parsedItem == null) + { + return null; + } + + parsedItem.Material = material ?? parsedItem.Material; + return parsedItem; + } + + /// + /// Parse and merge results into single RepresentationData. + /// + /// IfcRepresentationItems that will be parsed. + public RepresentationData ParseRepresentationItems(IEnumerable repItems) + { + var parsedItems = new List(); + + foreach (var repItem in repItems) + { + var parsedItem = ParseRepresentationItem(repItem); + + if (parsedItem == null) + { + continue; + } + + parsedItems.Add(parsedItem); + } + + var repData = new RepresentationData(parsedItems); + return repData; + } + + /// + /// Parse Transform from . + /// + private static Transform GetTransformFromIfcProduct(IfcProduct ifcProduct) + { + var transform = new Transform(); + transform.Concatenate(ifcProduct.ObjectPlacement.ToTransform()); + + if (!(ifcProduct is IfcBuildingElement ifcBuildingElement)) + { + return transform; + } + + // Check if the building element is contained in a building storey + foreach (var cis in ifcBuildingElement.ContainedInStructure) + { + transform.Concatenate(cis.RelatingStructure.ObjectPlacement.ToTransform()); + } + + return transform; + } + } +} diff --git a/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/RepresentationData.cs b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/RepresentationData.cs new file mode 100644 index 000000000..1b4458220 --- /dev/null +++ b/Elements.Serialization.IFC/src/IFCToHypar/RepresentationsExtraction/RepresentationData.cs @@ -0,0 +1,123 @@ +using Elements.Geometry; +using Elements.Geometry.Solids; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Elements.Serialization.IFC.IFCToHypar.RepresentationsExtraction +{ + // TODO: Use RepresentationInstances instead of this. + /// + /// A piece of IfcProduct representation information. + /// + internal class RepresentationData + { + /// + /// A transform of IfcRepresentationItem. + /// + public Transform Transform { get; set; } + /// + /// A material of IfcRepresentationItem. + /// + public Material Material { get; set; } + + /// + /// Solid operations for the Representation. + /// + public List SolidOperations { get; private set; } + /// + /// An extrude that is used for the Element defining properties extraction. + /// + public Extrude Extrude { get; private set; } + /// + /// The transform of the Extrude. + /// + public Transform ExtrudeTransform { get; private set; } + + /// + /// Information about mapping that can be used for ElementInstance creation. + /// + public MappingInfo MappingInfo { get; private set; } + + /// + /// Create a RepresentationData from . + /// + /// + /// A collection of solid operations that define representation of IfcProduct. + /// + public RepresentationData(List solidOperations) + { + SolidOperations = solidOperations; + } + + /// + /// Create a RepresentationData from a single . + /// + /// The extrude that defines the representation item. + /// The transform of the . + public RepresentationData(Extrude extrude, Transform extrudeTransform) : this(new List() { extrude }) + { + Extrude = extrude; + ExtrudeTransform = extrudeTransform; + } + + /// + /// Create a RepresentationData for IfcMappedItem. + /// + /// Guid of MappingSource.MappedRepresentation of IfcMappedItem. + /// The transform of the MappingSource of IfcMappedItem. + /// The representation data of the definition. + public RepresentationData(Guid mappedId, Transform mappedTransform, RepresentationData mappedRepresentation) + { + SolidOperations = mappedRepresentation.SolidOperations; + Extrude = mappedRepresentation.Extrude; + ExtrudeTransform = mappedRepresentation.ExtrudeTransform; + Material = mappedRepresentation.Material; + MappingInfo = new MappingInfo(mappedId, mappedTransform); + } + + // TODO: Change the way the representations are merged when multiple representations + // are supported. + /// + /// Merge multiple representations into a single one. + /// + /// Multiple representations that should be merged into a single one. + public RepresentationData(List representations) + { + // Combine solid operations of all representations. + SolidOperations = representations.SelectMany(x => x.SolidOperations).ToList(); + + // Use first found material as the Material of the GeometricElement. + // TODO: Single IfcProduct can have multiple representations. Each of them + // has it's own material. Change the material assignement behavior when + // multiple representations are supported. + var repsWithMaterial = representations.Where(rep => rep.Material != null); + if (repsWithMaterial.Any()) + { + Material = repsWithMaterial.First().Material; + } + + // TODO: IfcProduct can have several differend IfcMappedItem representations. + // Each of them should be handled separately. Now just the first IfcMappedItem + // is used. + var mappedReps = representations.Where(rep => rep.MappingInfo != null); + if (mappedReps.Any()) + { + MappingInfo = mappedReps.First().MappingInfo; + } + + // TODO: IfcProducts can include several extrudes. Now single extrude + // is supported. Moreover, most of the representation parsers work + // with the first found extrude. They require an extrude for the + // Element defining properties to be extracted. + var extrudeReps = representations.Where(rep => rep.Extrude != null); + if (extrudeReps.Any()) + { + var extrudeRep = extrudeReps.First(); + Extrude = extrudeRep.Extrude; + ExtrudeTransform = extrudeRep.ExtrudeTransform; + } + } + } +} diff --git a/Elements.Serialization.IFC/src/Serialization/IFC/IFCExtensions.cs b/Elements.Serialization.IFC/src/Serialization/IFC/IFCExtensions.cs deleted file mode 100644 index 3a022c728..000000000 --- a/Elements.Serialization.IFC/src/Serialization/IFC/IFCExtensions.cs +++ /dev/null @@ -1,724 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using Elements; -using Elements.Geometry; -using Elements.Geometry.Interfaces; -using Elements.Geometry.Solids; -using IFC; - -namespace Elements.Serialization.IFC -{ - /// - /// Extension methods for converting IFC entities to elements. - /// - internal static class IFCExtensions - { - internal static Beam ToBeam(this IfcBeam beam) - { - var elementTransform = beam.ObjectPlacement.ToTransform(); - - var solid = beam.RepresentationsOfType().FirstOrDefault(); - - // foreach (var cis in beam.ContainedInStructure) - // { - // cis.RelatingStructure.ObjectPlacement.ToTransform().Concatenate(transform); - // } - - if (solid != null) - { - var solidTransform = solid.Position.ToTransform(); - - var c = solid.SweptArea.ToCurve(); - if (c is Polygon polygon) - { - var cl = new Line(Vector3.Origin, - solid.ExtrudedDirection.ToVector3(), (IfcLengthMeasure)solid.Depth); - var result = new Beam(cl.TransformedLine(solidTransform), - new Profile(polygon), - 0, - 0, - 0, - elementTransform, - BuiltInMaterials.Steel, - null, - false, - IfcGuid.FromIfcGUID(beam.GlobalId), - beam.Name); - return result; - } - } - return null; - } - - internal static Column ToColumn(this IfcColumn column) - { - var elementTransform = column.ObjectPlacement.ToTransform(); - - var solid = column.RepresentationsOfType().FirstOrDefault(); - foreach (var cis in column.ContainedInStructure) - { - cis.RelatingStructure.ObjectPlacement.ToTransform().Concatenate(elementTransform); - } - - if (solid != null) - { - var solidTransform = solid.Position.ToTransform(); - var c = solid.SweptArea.ToCurve(); - var result = new Column(solidTransform.Origin, - (IfcLengthMeasure)solid.Depth, - null, - new Profile((Polygon)c), - 0, - 0, - 0, - elementTransform, - BuiltInMaterials.Steel, - null, - false, - IfcGuid.FromIfcGUID(column.GlobalId), - column.Name); - return result; - } - return null; - } - - internal static Space ToSpace(this IfcSpace space) - { - var transform = new Transform(); - - var repItems = space.Representation.Representations.SelectMany(r => r.Items); - if (!repItems.Any()) - { - throw new Exception("The provided IfcSlab does not have any representations."); - } - - var localPlacement = space.ObjectPlacement.ToTransform(); - transform.Concatenate(localPlacement); - - var foundSolid = repItems.First(); - var material = new Material("space", new Color(1.0f, 0.0f, 1.0f, 0.5f), 0.0f, 0.0f); - if (foundSolid.GetType() == typeof(IfcExtrudedAreaSolid)) - { - var solid = (IfcExtrudedAreaSolid)foundSolid; - var profileDef = (IfcArbitraryClosedProfileDef)solid.SweptArea; - transform.Concatenate(solid.Position.ToTransform()); - var pline = (IfcPolyline)profileDef.OuterCurve; - var outline = pline.ToPolygon(true); - var result = new Space(new Profile(outline), (IfcLengthMeasure)solid.Depth, material, transform, null, false, IfcGuid.FromIfcGUID(space.GlobalId), space.Name); - return result; - } - else if (foundSolid.GetType() == typeof(IfcFacetedBrep)) - { - var solid = (IfcFacetedBrep)foundSolid; - var shell = solid.Outer; - var newSolid = new Solid(); - for (var i = 0; i < shell.CfsFaces.Count; i++) - { - var f = shell.CfsFaces[i]; - foreach (var b in f.Bounds) - { - var loop = (IfcPolyLoop)b.Bound; - var poly = loop.Polygon.ToPolygon(); - newSolid.AddFace(poly); - } - } - var result = new Space(newSolid, transform, null, false, Guid.NewGuid(), space.Name); - - return result; - } - - return null; - } - - internal static Floor ToFloor(this IfcSlab slab, IEnumerable openings) - { - var transform = new Transform(); - transform.Concatenate(slab.ObjectPlacement.ToTransform()); - // Console.WriteLine($"IfcSlab transform:\n{transform}\n"); - - // Check if the slab is contained in a building storey - foreach (var cis in slab.ContainedInStructure) - { - transform.Concatenate(cis.RelatingStructure.ObjectPlacement.ToTransform()); - } - - var repItems = slab.Representation.Representations.SelectMany(r => r.Items); - if (!repItems.Any()) - { - throw new Exception("The provided IfcSlab does not have any representations."); - } - - var solid = slab.RepresentationsOfType().FirstOrDefault(); - if (solid == null) - { - return null; - } - - var outline = (Polygon)solid.SweptArea.ToCurve(); - var solidTransform = solid.Position.ToTransform(); - - solidTransform.Concatenate(transform); - var floor = new Floor(new Profile(outline), (IfcLengthMeasure)solid.Depth, - solidTransform, BuiltInMaterials.Concrete, null, false, IfcGuid.FromIfcGUID(slab.GlobalId)); - - floor.Openings.AddRange(openings.Select(o => o.ToOpening())); - - return floor; - } - - internal static Door ToDoor(this IfcDoor ifcDoor, List allWalls) - { - if (ifcDoor.PredefinedType != IfcDoorTypeEnum.DOOR) - { - throw new Exception("Door types except DOOR are not supported yet."); - } - - var openingSide = ifcDoor.GetDoorOpeningSide(); - var openingType = ifcDoor.GetDoorOpeningType(); - - if (openingSide == DoorOpeningSide.Undefined || openingType == DoorOpeningType.Undefined) - { - throw new Exception("This DoorOperationType is not supported yet."); - } - - var transform = GetTransformFromIfcElement(ifcDoor); - - var wall = GetWallFromDoor(ifcDoor, allWalls); - - var result = new Door(wall, transform, (IfcLengthMeasure)ifcDoor.OverallWidth, (IfcLengthMeasure)ifcDoor.OverallHeight, openingSide, openingType); - return result; - } - - internal static Transform GetTransformFromIfcElement(IfcElement ifcElement) - { - // TODO: AC20-Institute-Var-2.ifc model contains doors with IfcFacetedBrep based representation. - var repItems = ifcElement.Representation.Representations.SelectMany(r => r.Items); - if (!repItems.Any()) - { - throw new Exception("The provided IfcDoor does not have any representations."); - } - - var containedInStructureTransform = new Transform(); - containedInStructureTransform.Concatenate(ifcElement.ObjectPlacement.ToTransform()); - - // Check if the door is contained in a building storey - foreach (var cis in ifcElement.ContainedInStructure) - { - containedInStructureTransform.Concatenate(cis.RelatingStructure.ObjectPlacement.ToTransform()); - } - - var repMappedItems = repItems.OfType(); - - if (repMappedItems.Any()) - { - var representation = repMappedItems.FirstOrDefault(); - var localOrigin = representation.MappingTarget.LocalOrigin.ToVector3(); - return new Transform(localOrigin).Concatenated(containedInStructureTransform); - } - - var repSolidItems = repItems.OfType(); - - if (repSolidItems.Any()) - { - var representation = repSolidItems.FirstOrDefault(); - var solidTransform = representation.Position.ToTransform(); - return solidTransform.Concatenated(containedInStructureTransform); - } - - return containedInStructureTransform; - } - - internal static Wall GetWallFromDoor(IfcDoor door, List allWalls) - { - var walls = door.Decomposes.Select(rel => rel.RelatingObject).OfType(); - - if (!walls.Any()) - { - return null; - } - - var ifcWall = walls.First(); - var matchingWalls = allWalls.Where(w => w.Id.Equals(IfcGuid.FromIfcGUID(ifcWall.GlobalId))); - - return matchingWalls.Any() ? matchingWalls.First() : null; - } - - internal static DoorOpeningSide GetDoorOpeningSide(this IfcDoor ifcDoor) - { - switch(ifcDoor.OperationType) - { - case IfcDoorTypeOperationEnum.SINGLE_SWING_LEFT: - case IfcDoorTypeOperationEnum.DOUBLE_SWING_LEFT: - return DoorOpeningSide.LeftHand; - case IfcDoorTypeOperationEnum.SINGLE_SWING_RIGHT: - case IfcDoorTypeOperationEnum.DOUBLE_SWING_RIGHT: - return DoorOpeningSide.RightHand; - case IfcDoorTypeOperationEnum.DOUBLE_DOOR_SINGLE_SWING: - case IfcDoorTypeOperationEnum.DOUBLE_DOOR_DOUBLE_SWING: - return DoorOpeningSide.DoubleDoor; - } - return DoorOpeningSide.Undefined; - } - - internal static DoorOpeningType GetDoorOpeningType(this IfcDoor ifcDoor) - { - switch (ifcDoor.OperationType) - { - case IfcDoorTypeOperationEnum.SINGLE_SWING_LEFT: - case IfcDoorTypeOperationEnum.SINGLE_SWING_RIGHT: - case IfcDoorTypeOperationEnum.DOUBLE_DOOR_SINGLE_SWING: - return DoorOpeningType.SingleSwing; - case IfcDoorTypeOperationEnum.DOUBLE_SWING_LEFT: - case IfcDoorTypeOperationEnum.DOUBLE_SWING_RIGHT: - case IfcDoorTypeOperationEnum.DOUBLE_DOOR_DOUBLE_SWING: - return DoorOpeningType.DoubleSwing; - } - return DoorOpeningType.Undefined; - } - - internal static Wall ToWall(this IfcWall wall, - IEnumerable openings) - { - var transform = new Transform(); - transform.Concatenate(wall.ObjectPlacement.ToTransform()); - - var os = openings.Select(o => o.ToOpening()); - - // An extruded face solid. - var solid = wall.RepresentationsOfType().FirstOrDefault(); - if (solid == null) - { - // It's possible that the rep is a boolean. - var boolean = wall.RepresentationsOfType().FirstOrDefault(); - if (boolean != null) - { - solid = boolean.FirstOperand.Choice as IfcExtrudedAreaSolid; - if (solid == null) - { - solid = boolean.SecondOperand.Choice as IfcExtrudedAreaSolid; - } - } - - // if(solid == null) - // { - // throw new Exception("No usable solid was found when converting an IfcWallStandardCase to a Wall."); - // } - } - - // A centerline wall with material layers. - // var axis = (Polyline)wall.RepresentationsOfType().FirstOrDefault().ToICurve(false); - - foreach (var cis in wall.ContainedInStructure) - { - cis.RelatingStructure.ObjectPlacement.ToTransform().Concatenate(transform); - } - - if (solid != null) - { - var c = solid.SweptArea.ToCurve(); - if (c is Polygon polygon) - { - transform.Concatenate(solid.Position.ToTransform()); - var result = new Wall(polygon, - (IfcLengthMeasure)solid.Depth, - null, - transform, - null, - false, - IfcGuid.FromIfcGUID(wall.GlobalId), - wall.Name); - result.Openings.AddRange(os); - return result; - } - } - return null; - } - - internal static Opening ToOpening(this IfcOpeningElement opening) - { - var openingTransform = opening.ObjectPlacement.ToTransform(); - var s = opening.RepresentationsOfType().FirstOrDefault(); - if (s != null) - { - var solidTransform = s.Position.ToTransform(); - solidTransform.Concatenate(openingTransform); - var profile = (Polygon)s.SweptArea.ToCurve(); - - var newOpening = new Opening(profile, - default, - (IfcLengthMeasure)s.Depth, - (IfcLengthMeasure)s.Depth, - solidTransform, - null, - false, - IfcGuid.FromIfcGUID(opening.GlobalId)); - return newOpening; - } - return null; - } - - private static Solid Representations(this IfcProduct product) - { - var reps = product.Representation.Representations.SelectMany(r => r.Items); - foreach (var r in reps) - { - if (r is IfcSurfaceCurveSweptAreaSolid) - { - throw new Exception("IfcSurfaceCurveSweptAreaSolid is not supported yet."); - } - if (r is IfcRevolvedAreaSolid) - { - throw new Exception("IfcRevolvedAreaSolid is not supported yet."); - } - if (r is IfcSweptDiskSolid) - { - throw new Exception("IfcSweptDiskSolid is not supported yet."); - } - else if (r is IfcExtrudedAreaSolid eas) - { - var profileDef = (IfcArbitraryClosedProfileDef)eas.SweptArea; - var pline = (IfcPolyline)profileDef.OuterCurve; - var outline = pline.ToPolygon(true); - var solid = Solid.SweepFace(outline, null, (IfcLengthMeasure)eas.Depth); - return solid; - } - else if (r is IfcFacetedBrep brep) - { - var solid = new Solid(); - var fbr = brep; - var shell = fbr.Outer; - var faces = new Face[shell.CfsFaces.Count]; - for (var i = 0; i < shell.CfsFaces.Count; i++) - { - var f = shell.CfsFaces[i]; - var boundCount = 0; - Loop outer = null; - Loop[] inner = new Loop[f.Bounds.Count - 1]; - foreach (var b in f.Bounds) - { - var loop = (IfcPolyLoop)b.Bound; - var newLoop = loop.Polygon.ToLoop(solid); - if (boundCount == 0) - { - outer = newLoop; - } - else - { - inner[boundCount - 1] = newLoop; - } - boundCount++; - } - solid.AddFace(outer, inner); - } - return solid; - } - else if (r is IfcFacetedBrepWithVoids) - { - throw new Exception("IfcFacetedBrepWithVoids is not supported yet."); - } - } - return null; - } - - private static IEnumerable RepresentationsOfType(this IfcProduct product) where T : IfcGeometricRepresentationItem - { - var reps = product.Representation.Representations.SelectMany(r => r.Items); - if (reps.Any()) - { - return reps.OfType(); - } - return null; - } - - // private static IfcOpeningElement ToIfcOpeningElement(this Opening opening, IfcRepresentationContext context, Document doc, IfcObjectPlacement parent) - // { - // // var sweptArea = opening.Profile.Perimeter.ToIfcArbitraryClosedProfileDef(doc); - // // We use the Z extrude direction because the direction is - // // relative to the local placement, which is a transform at the - // // beam's end with the Z axis pointing along the direction. - - // // var extrudeDirection = opening.ExtrudeDirection.ToIfcDirection(); - // // var position = new Transform().ToIfcAxis2Placement3D(doc); - // // var solid = new IfcExtrudedAreaSolid(sweptArea, position, - // // extrudeDirection, new IfcPositiveLengthMeasure(opening.ExtrudeDepth)); - - // var extrude= (Extrude)opening.Geometry.SolidOperations[0]; - // var solid = extrude.ToIfcExtrudedAreaSolid(new Transform(), doc); - // var localPlacement = new Transform().ToIfcLocalPlacement(doc, parent); - - // var shape = new IfcShapeRepresentation(context, "Body", "SweptSolid", new List{solid}); - // var productRep = new IfcProductDefinitionShape(new List{shape}); - - // var ifcOpening = new IfcOpeningElement(IfcGuid.ToIfcGuid(opening.Id), null, null, null, null, localPlacement, productRep, null); - - // // doc.AddEntity(sweptArea); - // // doc.AddEntity(extrudeDirection); - // // doc.AddEntity(position); - // // doc.AddEntity(repItem); - - // doc.AddEntity(solid); - // doc.AddEntity(localPlacement); - // doc.AddEntity(shape); - // doc.AddEntity(productRep); - - // return ifcOpening; - // } - - private static ICurve ToCurve(this IfcProfileDef profile) - { - if (profile is IfcCircleProfileDef cpd) - { - // TODO: Remove this conversion to a polygon when downstream - // functions support arcs and circles. - return new Circle((IfcLengthMeasure)cpd.Radius).ToPolygon(10); - } - else if (profile is IfcParameterizedProfileDef ipd) - { - return ipd.ToCurve(); - } - else if (profile is IfcArbitraryOpenProfileDef aopd) - { - return aopd.ToCurve(); - } - else if (profile is IfcArbitraryClosedProfileDef acpd) - { - return acpd.ToCurve(); - } - else if (profile is IfcCompositeProfileDef) - { - throw new Exception("IfcCompositeProfileDef is not supported yet."); - } - else if (profile is IfcDerivedProfileDef) - { - throw new Exception("IfcDerivedProfileDef is not supported yet."); - } - return null; - } - - private static ICurve ToCurve(this IfcParameterizedProfileDef profile) - { - if (profile is IfcRectangleProfileDef rect) - { - var p = Polygon.Rectangle((IfcLengthMeasure)rect.XDim, (IfcLengthMeasure)rect.YDim); - var t = new Transform(rect.Position.Location.ToVector3()); - return p.Transformed(t); - } - else if (profile is IfcCircleProfileDef circle) - { - return new Circle((IfcLengthMeasure)circle.Radius); - } - else - { - throw new Exception($"The IfcParameterizedProfileDef type, {profile.GetType().Name}, is not supported."); - } - } - - private static ICurve ToCurve(this IfcArbitraryOpenProfileDef profile) - { - return profile.Curve.ToCurve(false); - } - - private static ICurve ToCurve(this IfcArbitraryClosedProfileDef profile) - { - return profile.OuterCurve.ToCurve(true); - } - - private static ICurve ToCurve(this IfcCurve curve, bool closed) - { - if (curve is IfcBoundedCurve) - { - if (curve is IfcCompositeCurve) - { - throw new Exception("IfcCompositeCurve is not supported yet."); - } - else if (curve is IfcPolyline pl) - { - if (closed) - { - return pl.ToPolygon(true); - } - else - { - return pl.ToPolyline(); - } - } - else if (curve is IfcTrimmedCurve) - { - throw new Exception("IfcTrimmedCurve is not supported yet."); - } - else if (curve is IfcBSplineCurve) - { - throw new Exception("IfcBSplineCurve is not supported yet."); - } - } - else if (curve is IfcConic) - { - throw new Exception("IfcConic is not supported yet."); - } - else if (curve is IfcOffsetCurve2D) - { - throw new Exception("IfcOffsetCurve2D is not supported yet."); - } - else if (curve is IfcOffsetCurve3D) - { - throw new Exception("IfcOffsetCurve3D is not supported yet."); - } - return null; - } - - private static Vector3 ToVector3(this IfcCartesianPoint cartesianPoint) - { - return cartesianPoint.Coordinates.ToVector3(); - } - - private static Vector3 ToVector3(this List measures) - { - if (measures.Count == 2) - { - return new Vector3(measures[0], measures[1]); - } - else if (measures.Count == 3) - { - return new Vector3(measures[0], measures[1], measures[2]); - } - else - { - throw new Exception($"{measures.Count} measures could not be converted to a Vector3."); - } - } - - private static Polygon ToPolygon(this IfcPolyline polyline, bool dropLastPoint = false) - { - var count = dropLastPoint ? polyline.Points.Count - 1 : polyline.Points.Count; - var verts = new Vector3[count]; - for (var i = 0; i < count; i++) - { - var v = polyline.Points[i].ToVector3(); - verts[i] = v; - } - return new Polygon(verts); - } - - private static Polyline ToPolyline(this IfcPolyline polyline) - { - var verts = polyline.Points.Select(p => p.ToVector3()).ToArray(); - return new Polyline(verts); - } - - private static bool IsClosed(this IfcPolyline pline) - { - var start = pline.Points[0]; - var end = pline.Points[pline.Points.Count - 1]; - return start.Equals(end); - } - - private static bool Equals(this IfcCartesianPoint point, IfcCartesianPoint other) - { - for (var i = 0; i < point.Coordinates.Count; i++) - { - if (point.Coordinates[i] != other.Coordinates[i]) - { - return false; - } - } - return true; - } - private static Transform ToTransform(this IfcAxis2Placement3D cs) - { - var x = cs.RefDirection != null ? cs.RefDirection.ToVector3() : Vector3.XAxis; - var z = cs.Axis != null ? cs.Axis.ToVector3() : Vector3.ZAxis; - var y = z.Cross(x); - var o = cs.Location.ToVector3(); - var t = new Transform(o, x, y, z); - return t; - } - - private static Transform ToTransform(this IfcAxis2Placement2D cs) - { - var d = cs.RefDirection.ToVector3(); - var z = Vector3.ZAxis; - var o = cs.Location.ToVector3(); - return new Transform(o, d, z); - } - - private static Vector3 ToVector3(this IfcDirection direction) - { - var ratios = direction.DirectionRatios; - return new Vector3(ratios[0], ratios[1], ratios[2]); - } - - private static Transform ToTransform(this IfcAxis2Placement placement) - { - // SELECT IfcAxis2Placement3d, IfcAxis2Placement2d - if (placement.Choice.GetType() == typeof(IfcAxis2Placement2D)) - { - var cs = (IfcAxis2Placement2D)placement.Choice; - return cs.ToTransform(); - } - else if (placement.Choice.GetType() == typeof(IfcAxis2Placement3D)) - { - var cs = (IfcAxis2Placement3D)placement.Choice; - var t = cs.ToTransform(); - return t; - } - else - { - throw new Exception($"The specified placement of type, {placement.GetType().ToString()}, cannot be converted to a Transform."); - } - } - - private static Transform ToTransform(this IfcLocalPlacement placement) - { - var t = placement.RelativePlacement.ToTransform(); - if (placement.PlacementRelTo != null) - { - var tr = placement.PlacementRelTo.ToTransform(); - t.Concatenate(tr); - } - return t; - } - - private static Transform ToTransform(this IfcObjectPlacement placement) - { - if (placement.GetType() == typeof(IfcLocalPlacement)) - { - var lp = (IfcLocalPlacement)placement; - var t = lp.ToTransform(); - return t; - } - else if (placement.GetType() == typeof(IfcGridPlacement)) - { - throw new Exception("IfcGridPlacement conversion to Transform not supported."); - } - return null; - } - - private static Polygon ToPolygon(this List loop) - { - var verts = new Vector3[loop.Count]; - for (var i = 0; i < loop.Count; i++) - { - verts[i] = loop[i].ToVector3(); - } - return new Polygon(verts); - } - - private static Loop ToLoop(this List loop, Solid solid) - { - var hes = new HalfEdge[loop.Count]; - for (var i = 0; i < loop.Count; i++) - { - var v = solid.AddVertex(loop[i].ToVector3()); - hes[i] = new HalfEdge(v); - } - var newLoop = new Loop(hes); - return newLoop; - } - - private static Polygon ToPolygon(this IfcPolyLoop loop) - { - return loop.Polygon.ToPolygon(); - } - } -} \ No newline at end of file diff --git a/Elements.Serialization.IFC/test/IFCTests.cs b/Elements.Serialization.IFC/test/IFCTests.cs index dbd912197..82dd05832 100644 --- a/Elements.Serialization.IFC/test/IFCTests.cs +++ b/Elements.Serialization.IFC/test/IFCTests.cs @@ -28,16 +28,56 @@ public IfcTests(ITestOutputHelper output) // [InlineData("rac_sample", "../../../models/IFC4/rac_advanced_sample_project.ifc")] // [InlineData("rme_sample", "../../../models/IFC4/rme_advanced_sample_project.ifc")] // [InlineData("rst_sample", "../../../models/IFC4/rst_advanced_sample_project.ifc")] - [InlineData("AC-20-Smiley-West-10-Bldg", "../../../models/IFC4/AC-20-Smiley-West-10-Bldg.ifc")] - [InlineData("AC20-Institute-Var-2", "../../../models/IFC4/AC20-Institute-Var-2.ifc")] + [InlineData("AC-20-Smiley-West-10-Bldg", "../../../models/IFC4/AC-20-Smiley-West-10-Bldg.ifc", 1972, 120, 539, 270, 9, 140, 10, 2)] + // TODO: Some walls are extracted incorrectly and intersecting the roof. It happens because + // IfcBooleanClippingResultParser doesn't handle the boolean clipping operation. + // In order to fix it surface support is required. + // The Plane case isn't implemented because some critical information about IfcPlane is + // missing during it's extraction. + // TODO: German names are converted incorrectly. + // TODO: The entrance door has an incorrect representation. It happens because during + // the UpdateRepresentation the default representation of a door is created instead of + // the extracted one. + [InlineData("AC20-Institute-Var-2", "../../../models/IFC4/AC20-Institute-Var-2.ifc", 1517, 5, 577, 121, 7, 82, 0, 21)] // [InlineData("20160125WestRiverSide Hospital - IFC4-Autodesk_Hospital_Sprinkle", "../../../models/IFC4/20160125WestRiverSide Hospital - IFC4-Autodesk_Hospital_Sprinkle.ifc")] - public void IFC4(string name, string ifcPath) + public void FromIFC4(string name, + string ifcPath, + int expectedElementsCount, + int expectedCountOfFloors, + int expectedCountOfOpenings, + int expectedCountOfWalls, + int expectedCountOfDoors, + int expectedCountOfSpaces, + int expectedCountOfBeams, + int expectedCountOfErrors + ) { var model = IFCModelExtensions.FromIFC(Path.Combine(Environment.CurrentDirectory, ifcPath), out var ctorErrors); + + int countOfFloors = model.AllElementsOfType().Count(); + int countOfOpenings = model.AllElementsOfType().Count(); + int countOfWalls = model.AllElementsOfType().Count(); + int countOfDoors = model.AllElementsOfType().Count(); + int countOfSpaces = model.AllElementsOfType().Count(); + int countOfBeams = model.AllElementsOfType().Count(); + + Assert.Equal(expectedElementsCount, model.Elements.Count); + + Assert.Equal(expectedCountOfFloors, countOfFloors); + Assert.Equal(expectedCountOfOpenings, countOfOpenings); + Assert.Equal(expectedCountOfWalls, countOfWalls); + Assert.Equal(expectedCountOfDoors, countOfDoors); + Assert.Equal(expectedCountOfSpaces, countOfSpaces); + Assert.Equal(expectedCountOfBeams, countOfBeams); + foreach (var e in ctorErrors) { this.output.WriteLine(e); } + + Assert.Equal(expectedCountOfErrors, ctorErrors.Count); + + model.ToJson(ConstructJsonPath(name)); model.ToGlTF(ConstructGlbPath(name)); } @@ -77,6 +117,15 @@ public void InstanceOpenings() Assert.Equal(floorCount, 1); } + [Fact] + public void SpaceTemplate() + { + var model = System.IO.File.ReadAllText("../../../models/Hypar/space-planning.json"); + var hyparModel = Model.FromJson(model); + var path = ConstructIfcPath("space-planning-test"); + hyparModel.ToIFC(path); + } + [Fact] public void Doors() { @@ -85,8 +134,8 @@ public void Doors() // Add 2 walls. var wallLine1 = new Line(Vector3.Origin, new Vector3(10, 10, 0)); var wallLine2 = new Line(new Vector3(10, 10, 0), new Vector3(10, 15, 0)); - var wall1 = new StandardWall(wallLine1, 0.2, 3, name: "wall1"); - var wall2 = new StandardWall(wallLine2, 0.2, 2, name: "wall2"); + var wall1 = new StandardWall(wallLine1, 0.2, 3, name: "Wall1"); + var wall2 = new StandardWall(wallLine2, 0.2, 2, name: "Wall2"); model.AddElement(wall1); model.AddElement(wall2); @@ -131,7 +180,7 @@ public void Floor() var planShape = Polygon.L(2, 4, 1.5); var floor = new Floor(planShape, 0.1); var floor1 = new Floor(planShape, 0.1, new Transform(0, 0, 2)); - var o = new Opening(Polygon.Rectangle(0.5, 0.5), transform: new Transform(0.5, 0.5, 0)); + var o = new Opening(Polygon.Rectangle(0.5, 0.5), Vector3.ZAxis, transform: new Transform(0.5, 0.5, 0)); floor.Openings.Add(o); var model = new Model(); @@ -230,5 +279,15 @@ private string ConstructGlbPath(string modelName) } return Path.GetFullPath(Path.Combine(modelsDirectory, $"{modelName}.glb")); } + + private string ConstructJsonPath(string modelName) + { + var modelsDirectory = Path.Combine(Environment.CurrentDirectory, basePath); + if (!Directory.Exists(modelsDirectory)) + { + Directory.CreateDirectory(modelsDirectory); + } + return Path.GetFullPath(Path.Combine(modelsDirectory, $"{modelName}.json")); + } } } \ No newline at end of file diff --git a/Elements.Serialization.IFC/test/models/Hypar/space-planning.json b/Elements.Serialization.IFC/test/models/Hypar/space-planning.json new file mode 100644 index 000000000..aa36d1933 --- /dev/null +++ b/Elements.Serialization.IFC/test/models/Hypar/space-planning.json @@ -0,0 +1,123188 @@ +{ + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Elements": { + "34cc63ce-8e19-4796-828f-d7e8cca561ec": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Open Office", + "Program Group": "", + "Program Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 11, + "Width": 15.5, + "Depth": 6.5, + "Hypar Space Type": "Open Office", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "34cc63ce-8e19-4796-828f-d7e8cca561ec", + "Name": null + }, + "84a5c8ae-7c9d-4e94-908a-b3476e3e754a": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Private Office", + "Program Group": "", + "Program Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 12, + "Width": 5.0, + "Depth": 4.0, + "Hypar Space Type": "Private Office", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "84a5c8ae-7c9d-4e94-908a-b3476e3e754a", + "Name": null + }, + "78d960b3-3a2a-48a6-9c0e-a4d1ba52701a": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Lounge", + "Program Group": "", + "Program Name": "Lounge", + "Color": { + "Red": 1.0, + "Green": 0.5843137254901961, + "Blue": 0.19607843137254902, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 6.5, + "Depth": 5.5, + "Hypar Space Type": "Lounge", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "78d960b3-3a2a-48a6-9c0e-a4d1ba52701a", + "Name": null + }, + "ebab8feb-5da6-4ea3-a58e-4f92266ff1bf": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Classroom", + "Program Group": "", + "Program Name": "Classroom", + "Color": { + "Red": 0.796078431372549, + "Green": 0.9137254901960784, + "Blue": 0.796078431372549, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 6.0, + "Depth": 6.0, + "Hypar Space Type": "Classroom", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "ebab8feb-5da6-4ea3-a58e-4f92266ff1bf", + "Name": null + }, + "fdc5f28c-1444-4c07-93f8-a934bc105f13": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Pantry", + "Program Group": "", + "Program Name": "Pantry", + "Color": { + "Red": 0.5019607843137255, + "Green": 0.7137254901960784, + "Blue": 0.7450980392156863, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 12.0, + "Depth": 7.5, + "Hypar Space Type": "Pantry", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "fdc5f28c-1444-4c07-93f8-a934bc105f13", + "Name": null + }, + "e8de7c4b-674f-4d97-9505-f797712d01d2": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Meeting Room", + "Program Group": "", + "Program Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 12, + "Width": 5.5, + "Depth": 4.0, + "Hypar Space Type": "Meeting Room", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "e8de7c4b-674f-4d97-9505-f797712d01d2", + "Name": null + }, + "60e28337-ee9e-4c40-bb87-d6e0dce3653b": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Phone Booth", + "Program Group": "", + "Program Name": "Phone Booth", + "Color": { + "Red": 0.9764705882352941, + "Green": 0.788235294117647, + "Blue": 0.12941176470588237, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 2, + "Width": 3.5, + "Depth": 2.0, + "Hypar Space Type": "Phone Booth", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "60e28337-ee9e-4c40-bb87-d6e0dce3653b", + "Name": null + }, + "96162a08-4b25-44a8-8053-16c21e6ed16c": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Support", + "Program Group": "", + "Program Name": "Support", + "Color": { + "Red": 0.4470588235294118, + "Green": 0.4980392156862745, + "Blue": 0.5725490196078431, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 4.0, + "Depth": 4.0, + "Hypar Space Type": "Support", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "96162a08-4b25-44a8-8053-16c21e6ed16c", + "Name": null + }, + "952af65f-653e-40e6-8fc1-01676f4be102": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Reception", + "Program Group": "", + "Program Name": "Reception", + "Color": { + "Red": 0.5764705882352941, + "Green": 0.4627450980392157, + "Blue": 0.7529411764705882, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 6.5, + "Depth": 6.5, + "Hypar Space Type": "Reception", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "952af65f-653e-40e6-8fc1-01676f4be102", + "Name": null + }, + "6fdaa7b1-7bd3-49f7-9e54-5093728a13fe": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Open Collaboration", + "Program Group": "", + "Program Name": "Open Collaboration", + "Color": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 2, + "Width": 6.5, + "Depth": 2.5, + "Hypar Space Type": "Open Collaboration", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "6fdaa7b1-7bd3-49f7-9e54-5093728a13fe", + "Name": null + }, + "cae9f38c-3934-44ac-a307-110c4023858d": { + "discriminator": "Elements.ProgramRequirement", + "Qualified Program Name": "Circulation", + "Program Group": "", + "Program Name": "Circulation", + "Color": { + "Red": 0.996078431372549, + "Green": 0.9647058823529412, + "Blue": 0.8627450980392157, + "Alpha": 1.0 + }, + "Area per Space": 0.0, + "Space Count": 1, + "Width": 0.0, + "Depth": 0.0, + "Hypar Space Type": "Circulation", + "Count Type": "Item", + "Total Area": 0.0, + "Id": "cae9f38c-3934-44ac-a307-110c4023858d", + "Name": null + }, + "e65703cd-8235-4eaa-ad7a-e383d38f1501": { + "discriminator": "Elements.ColorScheme", + "Mapping": { + "unspecified": { + "Red": 0.8, + "Green": 0.8, + "Blue": 0.8, + "Alpha": 0.3 + }, + "Unassigned Space Type": { + "Red": 0.8, + "Green": 0.8, + "Blue": 0.8, + "Alpha": 0.3 + }, + "unrecognized": { + "Red": 0.8, + "Green": 0.8, + "Blue": 0.2, + "Alpha": 0.3 + }, + "Circulation": { + "Red": 0.996078431372549, + "Green": 0.9647058823529412, + "Blue": 0.8627450980392157, + "Alpha": 1.0 + }, + "Open Office": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 1.0 + }, + "Private Office": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 1.0 + }, + "Lounge": { + "Red": 1.0, + "Green": 0.5843137254901961, + "Blue": 0.19607843137254902, + "Alpha": 1.0 + }, + "Classroom": { + "Red": 0.796078431372549, + "Green": 0.9137254901960784, + "Blue": 0.796078431372549, + "Alpha": 1.0 + }, + "Pantry": { + "Red": 0.5019607843137255, + "Green": 0.7137254901960784, + "Blue": 0.7450980392156863, + "Alpha": 1.0 + }, + "Meeting Room": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 1.0 + }, + "Phone Booth": { + "Red": 0.9764705882352941, + "Green": 0.788235294117647, + "Blue": 0.12941176470588237, + "Alpha": 1.0 + }, + "Support": { + "Red": 0.4470588235294118, + "Green": 0.4980392156862745, + "Blue": 0.5725490196078431, + "Alpha": 1.0 + }, + "Reception": { + "Red": 0.5764705882352941, + "Green": 0.4627450980392157, + "Blue": 0.7529411764705882, + "Alpha": 1.0 + }, + "Open Collaboration": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 1.0 + }, + "Data Hall": { + "Red": 0.46, + "Green": 0.46, + "Blue": 0.48, + "Alpha": 0.5 + } + }, + "Property Name": "Program Type", + "Id": "e65703cd-8235-4eaa-ad7a-e383d38f1501", + "Name": "Program Colors" + }, + "36498b1f-85cf-400e-8f5b-afadc617dd24": { + "discriminator": "Elements.ElementProxy", + "elementId": "aee16692-9345-4746-8769-1835826237b0", + "dependency": "Space Settings", + "Id": "36498b1f-85cf-400e-8f5b-afadc617dd24", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0, + "associatedIdentities": { + "Space Settings": [ + { + "id": "807700e5-8a8f-4761-94f4-a20d0c711ef2", + "identity": { + "ParentCentroid": { + "X": 65.76414162676465, + "Y": 53.96663883534323, + "Z": 0.0 + } + } + } + ] + }, + "associatedValues": { + "Space Settings": { + "Grid Rotation": 90.0, + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Back-to-Back Width": 1.0, + "Desk Type": "Simple Desk - 29x70", + "Custom Workstation Properties": { + "Width": 2.0, + "Length": 2.0 + }, + "GetDeskType": "Simple Desk - 29x70" + } + } + }, + "a2262dfc-cf55-4e24-81f2-d3d0a1a71a27": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "a2262dfc-cf55-4e24-81f2-d3d0a1a71a27", + "Name": "Default Material" + }, + "509e4274-1f29-4d9c-b432-a9bafc96f684": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.02540006207227707, + "Y": -0.7776156166076661, + "Z": -6.289300746864513E-14 + }, + { + "X": 0.02540006207227707, + "Y": -0.01904998864531517, + "Z": -6.289300746864513E-14 + }, + { + "X": 1.803399660873413, + "Y": -0.01904998864531517, + "Z": -6.289300746864513E-14 + }, + { + "X": 1.803399660873413, + "Y": -0.7776156166076661, + "Z": -6.289300746864513E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "509e4274-1f29-4d9c-b432-a9bafc96f684", + "Name": null + }, + "e8e3a8b0-52e9-4a21-b2bc-44975c7478a3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.02540006207227707, + "Y": -0.7776156166076661, + "Z": -6.289300746864513E-14 + }, + { + "X": 0.02540006207227707, + "Y": -0.01904998864531517, + "Z": -6.289300746864513E-14 + }, + { + "X": 1.803399660873413, + "Y": -0.01904998864531517, + "Z": -6.289300746864513E-14 + }, + { + "X": 1.803399660873413, + "Y": -0.7776156166076661, + "Z": -6.289300746864513E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e8e3a8b0-52e9-4a21-b2bc-44975c7478a3", + "Name": null + }, + "bfd07eab-38a3-477a-97db-c64498ffa228": { + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.02540006207227707, + "Y": -0.7776156166076661, + "Z": -6.289300746864513E-14 + }, + "Max": { + "X": 1.803399660873413, + "Y": -0.01904998864531517, + "Z": 0.7399020029067993 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a2262dfc-cf55-4e24-81f2-d3d0a1a71a27", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e8e3a8b0-52e9-4a21-b2bc-44975c7478a3", + "Height": 0.7399020029068621, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Name": "Steelcase - Migration - Desk - Rectangular - 29D x 70W", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1, + "Up Down Controller": 1, + "Right Controller": 0, + "Left Controller": 1, + "4 Preset Controller": 0, + "Height Control": 2.4275, + "Height": 2.4275, + "Up Down Opaque": 1, + "4 Preset Opaque": 0 + }, + "e53481b3-e236-44da-88a5-7671b8d263d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 68.45185079182863, + 1.0, + -5.436691348603585E-16, + 0.0, + 53.939158289935854, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e53481b3-e236-44da-88a5-7671b8d263d5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.45185079182863, + "Y": 53.939158289935854, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7198f7e0-d39a-4ac8-97bc-0758ebf289c1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.3229502002716065, + "Y": -0.07431776568889618, + "Z": -0.00022974565420299769 + }, + { + "X": -0.3229502002716065, + "Y": 0.5676121559143067, + "Z": -0.00022974565420299769 + }, + { + "X": 0.32174300651550297, + "Y": 0.5676121559143067, + "Z": -0.00022974565420299769 + }, + { + "X": 0.32174300651550297, + "Y": -0.07431776568889618, + "Z": -0.00022974565420299769 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7198f7e0-d39a-4ac8-97bc-0758ebf289c1", + "Name": null + }, + "13c9675e-5995-4653-99be-181d3fbfaf35": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.3229502002716065, + "Y": -0.07431776568889618, + "Z": -0.00022974565420299769 + }, + { + "X": -0.3229502002716065, + "Y": 0.5676121559143067, + "Z": -0.00022974565420299769 + }, + { + "X": 0.32174300651550297, + "Y": 0.5676121559143067, + "Z": -0.00022974565420299769 + }, + { + "X": 0.32174300651550297, + "Y": -0.07431776568889618, + "Z": -0.00022974565420299769 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "13c9675e-5995-4653-99be-181d3fbfaf35", + "Name": null + }, + "7e22c64d-ec85-41da-932c-71b18af83901": { + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.3229502002716065, + "Y": -0.07431776568889618, + "Z": -0.00022974565420299769 + }, + "Max": { + "X": 0.32174300651550297, + "Y": 0.5676121559143067, + "Z": 0.9457663267135621 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a2262dfc-cf55-4e24-81f2-d3d0a1a71a27", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "13c9675e-5995-4653-99be-181d3fbfaf35", + "Height": 0.9459960723677651, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7e22c64d-ec85-41da-932c-71b18af83901", + "Name": "Steelcase - Seating - Series 1 - Task Chair - Task Chair", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1, + "Glide": 0, + "Caster": 1, + "Arm": 1, + "Arm (Opaque)": 1 + }, + "c1a6903d-52fe-41d8-8f4d-72d1fe9f2d8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 69.19916593492667, + -1.0, + -3.908665341092487E-15, + 0.0, + 54.86955104087957, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c1a6903d-52fe-41d8-8f4d-72d1fe9f2d8e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.19916593492667, + "Y": 54.86955104087957, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "12d46fc7-c4d1-43bd-a644-9b15cb216ef8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 68.45185079182863, + 1.0, + -5.436691348603585E-16, + 0.0, + 52.150628265953834, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "12d46fc7-c4d1-43bd-a644-9b15cb216ef8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.45185079182863, + "Y": 52.150628265953834, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "94a9ddca-09c7-45e8-abed-8f0ce6fd1572": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 69.19916593492667, + -1.0, + -3.908665341092487E-15, + 0.0, + 53.08102101689755, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "94a9ddca-09c7-45e8-abed-8f0ce6fd1572", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.19916593492667, + "Y": 53.08102101689755, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5a083fc5-7443-4240-8b2a-87fd31bd6d24": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 6.661338147750938E-16, + 1.0, + 0.0, + 68.48049883744582, + -1.0, + 6.661338147750938E-16, + 0.0, + 55.78264940473256, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5a083fc5-7443-4240-8b2a-87fd31bd6d24", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.48049883744582, + "Y": 55.78264940473256, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "61ad2e30-b083-47bf-82e2-860b24fcb850": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.786200661177752E-15, + -1.0, + 0.0, + 67.73318369434779, + 1.0, + 3.786200661177752E-15, + 0.0, + 54.85225665378884, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "61ad2e30-b083-47bf-82e2-860b24fcb850", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.73318369434779, + "Y": 54.85225665378884, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ff6fd58c-03aa-4f4a-95ba-f280ab8ce6f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 6.661338147750938E-16, + 1.0, + 0.0, + 68.48049883744582, + -1.0, + 6.661338147750938E-16, + 0.0, + 53.99411938075054, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ff6fd58c-03aa-4f4a-95ba-f280ab8ce6f8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.48049883744582, + "Y": 53.99411938075054, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "60d2ac40-01a1-4235-85d5-1d5557559c77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.786200661177752E-15, + -1.0, + 0.0, + 67.73318369434779, + 1.0, + 3.786200661177752E-15, + 0.0, + 53.06372662980682, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "60d2ac40-01a1-4235-85d5-1d5557559c77", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.73318369434779, + "Y": 53.06372662980682, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7660e6bf-0812-4429-9dce-0bf12a09aae0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 64.51580654133188, + 1.0, + -5.436691348603585E-16, + 0.0, + 53.939158289935854, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7660e6bf-0812-4429-9dce-0bf12a09aae0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.51580654133188, + "Y": 53.939158289935854, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9e919447-d54b-4dae-8109-4287156876b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 65.26312168442992, + -1.0, + -3.908665341092487E-15, + 0.0, + 54.86955104087957, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9e919447-d54b-4dae-8109-4287156876b7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.26312168442992, + "Y": 54.86955104087957, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "17078bd2-53d3-49ad-9618-2acbf03a1cc1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 64.51580654133188, + 1.0, + -5.436691348603585E-16, + 0.0, + 52.150628265953834, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "17078bd2-53d3-49ad-9618-2acbf03a1cc1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.51580654133188, + "Y": 52.150628265953834, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "eff00e6c-7c0a-45d9-9950-0e6e66517849": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 65.26312168442992, + -1.0, + -3.908665341092487E-15, + 0.0, + 53.08102101689755, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eff00e6c-7c0a-45d9-9950-0e6e66517849", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.26312168442992, + "Y": 53.08102101689755, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "27910f6c-8f9c-4655-974f-cf20de62e710": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 6.661338147750938E-16, + 1.0, + 0.0, + 64.54445458694906, + -1.0, + 6.661338147750938E-16, + 0.0, + 55.78264940473256, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "27910f6c-8f9c-4655-974f-cf20de62e710", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.54445458694906, + "Y": 55.78264940473256, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a2f04c9c-3f5a-4951-ac57-e63b2a7643cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.786200661177752E-15, + -1.0, + 0.0, + 63.797139443851044, + 1.0, + 3.786200661177752E-15, + 0.0, + 54.85225665378884, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a2f04c9c-3f5a-4951-ac57-e63b2a7643cd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.797139443851044, + "Y": 54.85225665378884, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "639876a4-07c3-4e76-8739-79b7a9bb6406": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 6.661338147750938E-16, + 1.0, + 0.0, + 64.54445458694906, + -1.0, + 6.661338147750938E-16, + 0.0, + 53.99411938075054, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "639876a4-07c3-4e76-8739-79b7a9bb6406", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.54445458694906, + "Y": 53.99411938075054, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8fc444dd-0ea5-4865-8779-fc28247ee5d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.786200661177752E-15, + -1.0, + 0.0, + 63.797139443851044, + 1.0, + 3.786200661177752E-15, + 0.0, + 53.06372662980682, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8fc444dd-0ea5-4865-8779-fc28247ee5d5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.797139443851044, + "Y": 53.06372662980682, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "15976e2c-f5ef-4cae-a72c-b34e8eb4729c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 60.57976229083513, + 1.0, + -5.436691348603585E-16, + 0.0, + 53.939158289935854, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "15976e2c-f5ef-4cae-a72c-b34e8eb4729c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.57976229083513, + "Y": 53.939158289935854, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1ee21118-6f7a-4c46-88da-a254ccfc21db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 61.32707743393315, + -1.0, + -3.908665341092487E-15, + 0.0, + 54.86955104087957, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1ee21118-6f7a-4c46-88da-a254ccfc21db", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.32707743393315, + "Y": 54.86955104087957, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "784ef737-03b0-4d2b-9188-7bd86eafb502": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -5.436691348603585E-16, + -1.0, + 0.0, + 60.57976229083513, + 1.0, + -5.436691348603585E-16, + 0.0, + 52.150628265953834, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "784ef737-03b0-4d2b-9188-7bd86eafb502", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.57976229083513, + "Y": 52.150628265953834, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "804e1ae0-9f60-4944-a917-54326fd14b99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.908665341092487E-15, + 1.0, + 0.0, + 61.32707743393315, + -1.0, + -3.908665341092487E-15, + 0.0, + 53.08102101689755, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "804e1ae0-9f60-4944-a917-54326fd14b99", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.32707743393315, + "Y": 53.08102101689755, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c9ddf7a8-7554-4dda-9a0a-4929cf986c24": { + "discriminator": "Elements.SpaceMetric", + "Space": "aee16692-9345-4746-8769-1835826237b0", + "Seats": 10.0, + "Headcount": 10.0, + "Desks": 10.0, + "Collaboration Seats": 0.0, + "Id": "c9ddf7a8-7554-4dda-9a0a-4929cf986c24", + "Name": null + }, + "4f50659a-7973-4a4a-82c9-9a2a11fed494": { + "discriminator": "Elements.ElementProxy", + "elementId": "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4", + "dependency": "Space Settings", + "Id": "4f50659a-7973-4a4a-82c9-9a2a11fed494", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "4314e5a4-f267-4249-8769-bc71c18c6bcf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 3.109014539238445E-14, + 1.0, + 0.0, + 77.38450402280868, + -1.0, + 3.109014539238445E-14, + 0.0, + 35.06369052142523, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "4314e5a4-f267-4249-8769-bc71c18c6bcf", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.38450402280868, + "Y": 35.06369052142523, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5bc747f8-5ddf-450d-910d-22ea0d2d0690": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -2.6637810916431607E-14, + -1.0, + 0.0, + 76.63718887971069, + 1.0, + -2.6637810916431607E-14, + 0.0, + 34.133297770481484, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bc747f8-5ddf-450d-910d-22ea0d2d0690", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.63718887971069, + "Y": 34.133297770481484, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "dfb131ae-7cb5-4fa0-aec1-5aab5852e44f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 3.109014539238445E-14, + 1.0, + 0.0, + 77.38450402280863, + -1.0, + 3.109014539238445E-14, + 0.0, + 36.85222054540725, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "dfb131ae-7cb5-4fa0-aec1-5aab5852e44f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.38450402280863, + "Y": 36.85222054540725, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3ceb4772-1e54-4a66-9428-76fff728aa1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -2.6637810916431607E-14, + -1.0, + 0.0, + 76.63718887971064, + 1.0, + -2.6637810916431607E-14, + 0.0, + 35.9218277944635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3ceb4772-1e54-4a66-9428-76fff728aa1b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.63718887971064, + "Y": 35.9218277944635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "94535a5a-d7d8-4de9-8eef-41a989887588": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 3.109014539238445E-14, + 1.0, + 0.0, + 77.38450402280857, + -1.0, + 3.109014539238445E-14, + 0.0, + 38.64075056938927, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "94535a5a-d7d8-4de9-8eef-41a989887588", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.38450402280857, + "Y": 38.64075056938927, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "981207bf-12cf-4d6e-ad35-ec2ed03b28dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -2.6637810916431607E-14, + -1.0, + 0.0, + 76.63718887971058, + 1.0, + -2.6637810916431607E-14, + 0.0, + 37.71035781844552, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "981207bf-12cf-4d6e-ad35-ec2ed03b28dd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.63718887971058, + "Y": 37.71035781844552, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ed6d9a3b-0d41-4da3-a56f-2e98eec1b7bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 3.109014539238445E-14, + 1.0, + 0.0, + 77.38450402280851, + -1.0, + 3.109014539238445E-14, + 0.0, + 40.429280593371296, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ed6d9a3b-0d41-4da3-a56f-2e98eec1b7bb", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.38450402280851, + "Y": 40.429280593371296, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "da1676b7-a710-4bb6-bf97-bdbb0708204e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -2.6637810916431607E-14, + -1.0, + 0.0, + 76.63718887971052, + 1.0, + -2.6637810916431607E-14, + 0.0, + 39.49888784242755, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "da1676b7-a710-4bb6-bf97-bdbb0708204e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.63718887971052, + "Y": 39.49888784242755, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ebcdccfc-724f-40f3-8cd1-902cba1c9a1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -3.121261007229919E-14, + -1.0, + 0.0, + 77.35585597719155, + 1.0, + -3.121261007229919E-14, + 0.0, + 33.220199406628524, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ebcdccfc-724f-40f3-8cd1-902cba1c9a1d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.35585597719155, + "Y": 33.220199406628524, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3e1e2079-e368-4886-a08a-eb4130e6bcd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 2.6760275596346342E-14, + 1.0, + 0.0, + 78.10317112028955, + -1.0, + 2.6760275596346342E-14, + 0.0, + 34.15059215757227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3e1e2079-e368-4886-a08a-eb4130e6bcd0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.10317112028955, + "Y": 34.15059215757227, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "66ad8fed-fe2e-49fc-9ee8-9dd21115f380": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -3.121261007229919E-14, + -1.0, + 0.0, + 77.3558559771915, + 1.0, + -3.121261007229919E-14, + 0.0, + 35.00872943061054, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "66ad8fed-fe2e-49fc-9ee8-9dd21115f380", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.3558559771915, + "Y": 35.00872943061054, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9823267c-7d33-4697-aad3-6a6a285a4e2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 2.6760275596346342E-14, + 1.0, + 0.0, + 78.10317112028949, + -1.0, + 2.6760275596346342E-14, + 0.0, + 35.93912218155429, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9823267c-7d33-4697-aad3-6a6a285a4e2e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.10317112028949, + "Y": 35.93912218155429, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ead99bb0-1a10-431e-9361-13b6eed1e562": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -3.121261007229919E-14, + -1.0, + 0.0, + 77.35585597719144, + 1.0, + -3.121261007229919E-14, + 0.0, + 36.79725945459257, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ead99bb0-1a10-431e-9361-13b6eed1e562", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.35585597719144, + "Y": 36.79725945459257, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8c035bf4-7a22-4354-8e07-2aa5e1998f19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 2.6760275596346342E-14, + 1.0, + 0.0, + 78.10317112028943, + -1.0, + 2.6760275596346342E-14, + 0.0, + 37.727652205536316, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8c035bf4-7a22-4354-8e07-2aa5e1998f19", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.10317112028943, + "Y": 37.727652205536316, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0f386b9e-38f2-42f9-83b8-0a43f6b95ca5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -3.121261007229919E-14, + -1.0, + 0.0, + 77.35585597719138, + 1.0, + -3.121261007229919E-14, + 0.0, + 38.58578947857459, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0f386b9e-38f2-42f9-83b8-0a43f6b95ca5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.35585597719138, + "Y": 38.58578947857459, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7cb32584-71ea-4acf-9f24-2645fe61df72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 2.6760275596346342E-14, + 1.0, + 0.0, + 78.10317112028937, + -1.0, + 2.6760275596346342E-14, + 0.0, + 39.516182229518336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7cb32584-71ea-4acf-9f24-2645fe61df72", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.10317112028937, + "Y": 39.516182229518336, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "064b873b-ddb1-4e58-97ca-732543cde79d": { + "discriminator": "Elements.SpaceMetric", + "Space": "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4", + "Seats": 8.0, + "Headcount": 8.0, + "Desks": 8.0, + "Collaboration Seats": 0.0, + "Id": "064b873b-ddb1-4e58-97ca-732543cde79d", + "Name": null + }, + "2bf31780-cc23-41b3-90ff-f489e68ab40d": { + "discriminator": "Elements.ElementProxy", + "elementId": "e548bf7c-f184-4ed2-a4e6-ca2441e37591", + "dependency": "Space Settings", + "Id": "2bf31780-cc23-41b3-90ff-f489e68ab40d", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "63872041-0ebb-451b-aeb4-0617cff39775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 49.73799783260205, + 1.0, + -8.43170627046148E-14, + 0.0, + 20.720334454593, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "63872041-0ebb-451b-aeb4-0617cff39775", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.73799783260205, + "Y": 20.720334454593, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "17078de8-f29b-4c2f-b421-33823791511f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 50.4853129757, + -1.0, + 7.986472822866196E-14, + 0.0, + 21.650727205536782, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "17078de8-f29b-4c2f-b421-33823791511f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.4853129757, + "Y": 21.650727205536782, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "482aff7f-ab2e-42d5-9a0d-574f1da1515b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 49.737997832602204, + 1.0, + -8.43170627046148E-14, + 0.0, + 18.93180443061098, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "482aff7f-ab2e-42d5-9a0d-574f1da1515b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.737997832602204, + "Y": 18.93180443061098, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c1d4e4d5-63e2-480a-9348-3128155b22b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 50.485312975700154, + -1.0, + 7.986472822866196E-14, + 0.0, + 19.862197181554762, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c1d4e4d5-63e2-480a-9348-3128155b22b7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.485312975700154, + "Y": 19.862197181554762, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "15099ef2-e7c2-4b63-be31-2f15415236b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 49.76664587821908, + -1.0, + 8.443952738452954E-14, + 0.0, + 22.563825569389707, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "15099ef2-e7c2-4b63-be31-2f15415236b3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.76664587821908, + "Y": 22.563825569389707, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a5ffe128-95aa-4d9a-a6eb-999ab91f7cd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 49.01933073512113, + 1.0, + -7.998719290857669E-14, + 0.0, + 21.633432818445925, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a5ffe128-95aa-4d9a-a6eb-999ab91f7cd0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.01933073512113, + "Y": 21.633432818445925, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "6c4dd9bb-199b-434e-a30c-c29f4b7767ae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 49.76664587821923, + -1.0, + 8.443952738452954E-14, + 0.0, + 20.775295545407683, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6c4dd9bb-199b-434e-a30c-c29f4b7767ae", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.76664587821923, + "Y": 20.775295545407683, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "cc262770-e8ec-4b9a-a64c-324dec2aca3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 49.01933073512128, + 1.0, + -7.998719290857669E-14, + 0.0, + 19.844902794463902, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cc262770-e8ec-4b9a-a64c-324dec2aca3a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.01933073512128, + "Y": 19.844902794463902, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "99502da8-1219-452e-8ab3-e991e79649c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 45.80195358210529, + 1.0, + -8.43170627046148E-14, + 0.0, + 20.720334454592674, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "99502da8-1219-452e-8ab3-e991e79649c3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.80195358210529, + "Y": 20.720334454592674, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "b543f11f-eef8-484d-89d4-d81affe874e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 46.54926872520324, + -1.0, + 7.986472822866196E-14, + 0.0, + 21.650727205536455, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b543f11f-eef8-484d-89d4-d81affe874e5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 46.54926872520324, + "Y": 21.650727205536455, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8fdb922b-3dcf-42b2-93a1-d96a16d5098d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 45.80195358210545, + 1.0, + -8.43170627046148E-14, + 0.0, + 18.931804430610654, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8fdb922b-3dcf-42b2-93a1-d96a16d5098d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.80195358210545, + "Y": 18.931804430610654, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "bfd230e6-6bd6-44cd-b100-937912940546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 46.5492687252034, + -1.0, + 7.986472822866196E-14, + 0.0, + 19.862197181554436, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bfd230e6-6bd6-44cd-b100-937912940546", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 46.5492687252034, + "Y": 19.862197181554436, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "31f58a5b-6e98-4ba8-bca1-735a5cd25968": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 45.830601627722324, + -1.0, + 8.443952738452954E-14, + 0.0, + 22.56382556938938, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "31f58a5b-6e98-4ba8-bca1-735a5cd25968", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.830601627722324, + "Y": 22.56382556938938, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "66be23c5-5fb0-4427-b8ba-b4f8917f5233": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 45.083286484624374, + 1.0, + -7.998719290857669E-14, + 0.0, + 21.6334328184456, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66be23c5-5fb0-4427-b8ba-b4f8917f5233", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.083286484624374, + "Y": 21.6334328184456, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5a26adcf-2a47-4de0-9709-51ca55b52284": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 45.83060162772247, + -1.0, + 8.443952738452954E-14, + 0.0, + 20.775295545407356, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5a26adcf-2a47-4de0-9709-51ca55b52284", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.83060162772247, + "Y": 20.775295545407356, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "deda3bae-2f5a-4b06-979f-79c6c31a1eab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 45.08328648462452, + 1.0, + -7.998719290857669E-14, + 0.0, + 19.844902794463575, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "deda3bae-2f5a-4b06-979f-79c6c31a1eab", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.08328648462452, + "Y": 19.844902794463575, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "10bbb02e-d772-4aca-97a5-ae797a62b48a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 41.86590933160853, + 1.0, + -8.43170627046148E-14, + 0.0, + 20.720334454592344, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "10bbb02e-d772-4aca-97a5-ae797a62b48a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.86590933160853, + "Y": 20.720334454592344, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c484f22f-0298-4d2a-beff-366cc3e03a35": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 42.61322447470648, + -1.0, + 7.986472822866196E-14, + 0.0, + 21.650727205536125, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c484f22f-0298-4d2a-beff-366cc3e03a35", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.61322447470648, + "Y": 21.650727205536125, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8a7b4fc7-8dc8-4945-8040-1c121c46204c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 41.865909331608684, + 1.0, + -8.43170627046148E-14, + 0.0, + 18.931804430610324, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8a7b4fc7-8dc8-4945-8040-1c121c46204c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.865909331608684, + "Y": 18.931804430610324, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e4010bb4-0bb1-4471-8150-033fedd90be2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 42.613224474706634, + -1.0, + 7.986472822866196E-14, + 0.0, + 19.862197181554105, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e4010bb4-0bb1-4471-8150-033fedd90be2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.613224474706634, + "Y": 19.862197181554105, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "21f61c1a-fe9c-49cc-9dac-0f588e56e769": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 41.89455737722556, + -1.0, + 8.443952738452954E-14, + 0.0, + 22.56382556938905, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "21f61c1a-fe9c-49cc-9dac-0f588e56e769", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.89455737722556, + "Y": 22.56382556938905, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "32837597-f212-4e21-b53d-cebe1347036a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 41.14724223412761, + 1.0, + -7.998719290857669E-14, + 0.0, + 21.633432818445268, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32837597-f212-4e21-b53d-cebe1347036a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.14724223412761, + "Y": 21.633432818445268, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0ae1ec52-ef94-4e74-94e6-63f3c9644092": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 41.89455737722571, + -1.0, + 8.443952738452954E-14, + 0.0, + 20.775295545407026, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0ae1ec52-ef94-4e74-94e6-63f3c9644092", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.89455737722571, + "Y": 20.775295545407026, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "69c230f3-0013-440c-8b93-3ee1b52457b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 41.14724223412776, + 1.0, + -7.998719290857669E-14, + 0.0, + 19.844902794463245, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "69c230f3-0013-440c-8b93-3ee1b52457b4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.14724223412776, + "Y": 19.844902794463245, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5777812b-9314-4982-a876-253509ad925b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 37.92986508111193, + 1.0, + -8.43170627046148E-14, + 0.0, + 18.931804430609994, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5777812b-9314-4982-a876-253509ad925b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.92986508111193, + "Y": 18.931804430609994, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8d879a4a-1497-49ed-a92c-b440f051cc2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 38.67718022420988, + -1.0, + 7.986472822866196E-14, + 0.0, + 19.862197181553775, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d879a4a-1497-49ed-a92c-b440f051cc2b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.67718022420988, + "Y": 19.862197181553775, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "386a0a19-12e8-4871-9894-ef91077c89e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 37.95851312672895, + -1.0, + 8.443952738452954E-14, + 0.0, + 20.775295545406696, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "386a0a19-12e8-4871-9894-ef91077c89e1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.95851312672895, + "Y": 20.775295545406696, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "aaa9bd20-4503-41d4-8717-3ec9fe4d7e00": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 37.211197983631, + 1.0, + -7.998719290857669E-14, + 0.0, + 19.844902794462914, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aaa9bd20-4503-41d4-8717-3ec9fe4d7e00", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.211197983631, + "Y": 19.844902794462914, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "53a60269-b055-471e-9442-b29caafb81cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 33.99382083061501, + 1.0, + -8.43170627046148E-14, + 0.0, + 20.720334454591683, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "53a60269-b055-471e-9442-b29caafb81cc", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.99382083061501, + "Y": 20.720334454591683, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ce96f1e3-4c94-4c45-b128-4d44729d5738": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 34.74113597371296, + -1.0, + 7.986472822866196E-14, + 0.0, + 21.650727205535464, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ce96f1e3-4c94-4c45-b128-4d44729d5738", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.74113597371296, + "Y": 21.650727205535464, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "93e5610b-ff91-43cb-923b-041685b04a85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -8.43170627046148E-14, + -1.0, + 0.0, + 33.993820830615164, + 1.0, + -8.43170627046148E-14, + 0.0, + 18.931804430609663, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "93e5610b-ff91-43cb-923b-041685b04a85", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.993820830615164, + "Y": 18.931804430609663, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "687b08b4-4946-474a-be58-3eb002bc297d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 7.986472822866196E-14, + 1.0, + 0.0, + 34.741135973713114, + -1.0, + 7.986472822866196E-14, + 0.0, + 19.862197181553444, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "687b08b4-4946-474a-be58-3eb002bc297d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.741135973713114, + "Y": 19.862197181553444, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b6b50815-5d79-4f1d-b7ee-e833d08b7068": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 34.02246887623204, + -1.0, + 8.443952738452954E-14, + 0.0, + 22.56382556938839, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "b6b50815-5d79-4f1d-b7ee-e833d08b7068", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.02246887623204, + "Y": 22.56382556938839, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "842b1d75-397b-446c-9e21-e5326ed0ad4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 33.27515373313409, + 1.0, + -7.998719290857669E-14, + 0.0, + 21.633432818444607, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "842b1d75-397b-446c-9e21-e5326ed0ad4c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.27515373313409, + "Y": 21.633432818444607, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b485ef80-1cd3-4b98-87e6-30af7dac689f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 8.443952738452954E-14, + 1.0, + 0.0, + 34.02246887623219, + -1.0, + 8.443952738452954E-14, + 0.0, + 20.775295545406365, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "b485ef80-1cd3-4b98-87e6-30af7dac689f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.02246887623219, + "Y": 20.775295545406365, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a903ed46-5f9c-49d4-816c-4db9e2344e81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -7.998719290857669E-14, + -1.0, + 0.0, + 33.27515373313424, + 1.0, + -7.998719290857669E-14, + 0.0, + 19.844902794462584, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a903ed46-5f9c-49d4-816c-4db9e2344e81", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.27515373313424, + "Y": 19.844902794462584, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "af7ebffd-2e44-4df8-b61e-452cc7e0f243": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 36.47617, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 22.53635, + "Z": 0.0 + }, + { + "X": 36.47617, + "Y": 22.53635, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "af7ebffd-2e44-4df8-b61e-452cc7e0f243", + "Name": null + }, + "e69336dd-3efb-4cb2-bfde-bc558200e886": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": true, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Name": "Open Collaboration" + }, + "89d5d5e6-df75-460f-9d9d-1f70f189cc7c": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 37.94419, + "Y": 21.642080000000007, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 37.94419, + "Y": 21.642080000000007, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "CollectedSpaces": [], + "ProgramName": "Open Collaboration", + "Boundary": "af7ebffd-2e44-4df8-b61e-452cc7e0f243", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 36.47617, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 22.53635, + "Z": 0.0 + }, + { + "X": 36.47617, + "Y": 22.53635, + "Z": 0.0 + } + ] + } + ], + "Area": 5.251224981599989, + "Height": 3.0, + "Program Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Material": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 36.47617, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 20.74781, + "Z": 0.0 + }, + { + "X": 39.41221, + "Y": 22.53635, + "Z": 0.0 + }, + { + "X": 36.47617, + "Y": 22.53635, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "89d5d5e6-df75-460f-9d9d-1f70f189cc7c", + "Name": "Open Collaboration", + "Parent Level Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510" + }, + "5bbd37d2-14f9-4ab7-8bb0-57a89078474d": { + "discriminator": "Elements.SpaceMetric", + "Space": "e548bf7c-f184-4ed2-a4e6-ca2441e37591", + "Seats": 18.0, + "Headcount": 18.0, + "Desks": 18.0, + "Collaboration Seats": 0.0, + "Id": "5bbd37d2-14f9-4ab7-8bb0-57a89078474d", + "Name": null + }, + "99850650-df74-4778-8a43-2826c92610d0": { + "discriminator": "Elements.ElementProxy", + "elementId": "4598c6bf-f2eb-4e81-8803-5057a8ec49c3", + "dependency": "Space Settings", + "Id": "99850650-df74-4778-8a43-2826c92610d0", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0, + "associatedIdentities": { + "Space Settings": [ + { + "id": "b19b2a6b-4a2f-4596-8d46-e1527858f624", + "identity": { + "ParentCentroid": { + "X": 38.816855, + "Y": 54.116695, + "Z": 0.0 + } + } + } + ] + }, + "associatedValues": { + "Space Settings": { + "Grid Rotation": 90.0, + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Back-to-Back Width": 1.0, + "Desk Type": "Simple Desk - 29x70", + "Custom Workstation Properties": { + "Width": 2.0, + "Length": 2.0 + }, + "GetDeskType": "Simple Desk - 29x70" + } + } + }, + "5bfb6703-9e5c-48a2-a3e9-bbcbc663026c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 34.89513477231183, + -1.0, + 5.436691348603585E-16, + 0.0, + 53.994119380750604, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5bfb6703-9e5c-48a2-a3e9-bbcbc663026c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.89513477231183, + "Y": 53.994119380750604, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1596a3ec-33c1-484e-868e-d45c200d8cdb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 34.14781962921381, + 1.0, + 3.908665341092487E-15, + 0.0, + 53.06372662980689, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1596a3ec-33c1-484e-868e-d45c200d8cdb", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.14781962921381, + "Y": 53.06372662980689, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d80f6728-9ef9-4237-b8c2-0642cb52ae16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 34.89513477231183, + -1.0, + 5.436691348603585E-16, + 0.0, + 55.782649404732624, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d80f6728-9ef9-4237-b8c2-0642cb52ae16", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.89513477231183, + "Y": 55.782649404732624, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "b52d6146-1487-406b-a9b2-f9f33426febe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 34.14781962921381, + 1.0, + 3.908665341092487E-15, + 0.0, + 54.852256653788906, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b52d6146-1487-406b-a9b2-f9f33426febe", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.14781962921381, + "Y": 54.852256653788906, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "33e85d74-797d-440a-9f5a-d379d29b35d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 34.86648672669465, + 1.0, + -6.661338147750938E-16, + 0.0, + 52.1506282659539, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "33e85d74-797d-440a-9f5a-d379d29b35d3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.86648672669465, + "Y": 52.1506282659539, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8174ad53-6f18-4ed7-88f1-a23b1b42f192": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 35.613801869792674, + -1.0, + -3.786200661177752E-15, + 0.0, + 53.081021016897616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8174ad53-6f18-4ed7-88f1-a23b1b42f192", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.613801869792674, + "Y": 53.081021016897616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ef5cc22a-dc31-4d3c-b32d-d929d3c76623": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 34.86648672669465, + 1.0, + -6.661338147750938E-16, + 0.0, + 53.939158289935925, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ef5cc22a-dc31-4d3c-b32d-d929d3c76623", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.86648672669465, + "Y": 53.939158289935925, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3f3c0ffd-36c9-4c96-ae7c-59bc30d31f59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 35.613801869792674, + -1.0, + -3.786200661177752E-15, + 0.0, + 54.86955104087964, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3f3c0ffd-36c9-4c96-ae7c-59bc30d31f59", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.613801869792674, + "Y": 54.86955104087964, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2d841590-2259-40e0-88ad-5d3f3de442e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 38.831179022808584, + -1.0, + 5.436691348603585E-16, + 0.0, + 53.994119380750604, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2d841590-2259-40e0-88ad-5d3f3de442e5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.831179022808584, + "Y": 53.994119380750604, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "867920a2-f9b2-49f7-85ae-dd2a17fe3461": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 38.08386387971056, + 1.0, + 3.908665341092487E-15, + 0.0, + 53.06372662980689, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "867920a2-f9b2-49f7-85ae-dd2a17fe3461", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.08386387971056, + "Y": 53.06372662980689, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5c9c58a4-1af4-4960-943b-e9d504ff98c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 38.831179022808584, + -1.0, + 5.436691348603585E-16, + 0.0, + 55.782649404732624, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5c9c58a4-1af4-4960-943b-e9d504ff98c9", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.831179022808584, + "Y": 55.782649404732624, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "66883146-dc8c-470a-be6c-dc1546831596": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 38.08386387971056, + 1.0, + 3.908665341092487E-15, + 0.0, + 54.852256653788906, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66883146-dc8c-470a-be6c-dc1546831596", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.08386387971056, + "Y": 54.852256653788906, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "90ba30ef-fea8-4831-9e66-59717b85c8a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 38.80253097719141, + 1.0, + -6.661338147750938E-16, + 0.0, + 52.1506282659539, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "90ba30ef-fea8-4831-9e66-59717b85c8a8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.80253097719141, + "Y": 52.1506282659539, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "17085f89-e99b-4e9e-a971-7f5727cf510e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 39.54984612028943, + -1.0, + -3.786200661177752E-15, + 0.0, + 53.081021016897616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "17085f89-e99b-4e9e-a971-7f5727cf510e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.54984612028943, + "Y": 53.081021016897616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8bb832b1-22cf-4fb0-8300-d8fca02a97d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 38.80253097719141, + 1.0, + -6.661338147750938E-16, + 0.0, + 53.939158289935925, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8bb832b1-22cf-4fb0-8300-d8fca02a97d5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.80253097719141, + "Y": 53.939158289935925, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3edfa96f-452e-4982-bc05-bfeff634d4d0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 39.54984612028943, + -1.0, + -3.786200661177752E-15, + 0.0, + 54.86955104087964, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3edfa96f-452e-4982-bc05-bfeff634d4d0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.54984612028943, + "Y": 54.86955104087964, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0e09cc64-fbdd-4e37-8910-c6742253b99d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 42.76722327330534, + -1.0, + 5.436691348603585E-16, + 0.0, + 53.994119380750604, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0e09cc64-fbdd-4e37-8910-c6742253b99d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.76722327330534, + "Y": 53.994119380750604, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c405209f-7c43-42f2-b240-a3e03d5633d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 42.01990813020732, + 1.0, + 3.908665341092487E-15, + 0.0, + 53.06372662980689, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c405209f-7c43-42f2-b240-a3e03d5633d8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.01990813020732, + "Y": 53.06372662980689, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8c6dd9ca-3a55-49cd-b81d-75b840d9e311": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 5.436691348603585E-16, + 1.0, + 0.0, + 42.76722327330534, + -1.0, + 5.436691348603585E-16, + 0.0, + 55.782649404732624, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8c6dd9ca-3a55-49cd-b81d-75b840d9e311", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.76722327330534, + "Y": 55.782649404732624, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c51d5daf-0704-42bf-a02f-c4dd1b11b384": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.908665341092487E-15, + -1.0, + 0.0, + 42.01990813020732, + 1.0, + 3.908665341092487E-15, + 0.0, + 54.852256653788906, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c51d5daf-0704-42bf-a02f-c4dd1b11b384", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.01990813020732, + "Y": 54.852256653788906, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "81e61a60-d309-47c4-9a82-4a3065081d92": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 42.738575227688166, + 1.0, + -6.661338147750938E-16, + 0.0, + 52.1506282659539, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "81e61a60-d309-47c4-9a82-4a3065081d92", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.738575227688166, + "Y": 52.1506282659539, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "87175573-e1b4-4d52-ad33-2f915e31459f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 43.48589037078619, + -1.0, + -3.786200661177752E-15, + 0.0, + 53.081021016897616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "87175573-e1b4-4d52-ad33-2f915e31459f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.48589037078619, + "Y": 53.081021016897616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "770920cd-e9da-4805-a6f5-631ad541f670": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.661338147750938E-16, + -1.0, + 0.0, + 42.738575227688166, + 1.0, + -6.661338147750938E-16, + 0.0, + 53.939158289935925, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "770920cd-e9da-4805-a6f5-631ad541f670", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.738575227688166, + "Y": 53.939158289935925, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "42c9f19e-edb9-45f0-b4b6-28ccbaa48c6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.786200661177752E-15, + 1.0, + 0.0, + 43.48589037078619, + -1.0, + -3.786200661177752E-15, + 0.0, + 54.86955104087964, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "42c9f19e-edb9-45f0-b4b6-28ccbaa48c6b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.48589037078619, + "Y": 54.86955104087964, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5f7e2c07-34e2-4aef-b4c6-b7453f478957": { + "discriminator": "Elements.SpaceMetric", + "Space": "4598c6bf-f2eb-4e81-8803-5057a8ec49c3", + "Seats": 12.0, + "Headcount": 12.0, + "Desks": 12.0, + "Collaboration Seats": 0.0, + "Id": "5f7e2c07-34e2-4aef-b4c6-b7453f478957", + "Name": null + }, + "41bfda4c-17a1-4127-8af8-c81fb33145ad": { + "discriminator": "Elements.ElementProxy", + "elementId": "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd", + "dependency": "Space Settings", + "Id": "41bfda4c-17a1-4127-8af8-c81fb33145ad", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "7b3b4478-a96c-4677-b9d2-d759e43965c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 68.4751116034333, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7b3b4478-a96c-4677-b9d2-d759e43965c6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.4751116034333, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3be50b81-9a5f-4d96-b33b-4d1efeb33fb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 69.22242674653134, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3be50b81-9a5f-4d96-b33b-4d1efeb33fb9", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.22242674653134, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2de30a1b-6c94-44a7-beba-2b27bf39eef5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 68.4751116034333, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2de30a1b-6c94-44a7-beba-2b27bf39eef5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.4751116034333, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8b5e1947-0076-4aa0-a97a-36da1da5fb65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 69.22242674653134, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8b5e1947-0076-4aa0-a97a-36da1da5fb65", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.22242674653134, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "043cbf4b-ea8f-4eb7-8b72-3111510bd434": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 68.4751116034333, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "043cbf4b-ea8f-4eb7-8b72-3111510bd434", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.4751116034333, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e8ac676c-8484-478b-a538-bff41a4f54cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 69.22242674653134, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8ac676c-8484-478b-a538-bff41a4f54cf", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.22242674653134, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a949bbe1-1ab4-4299-85d8-07d6ad09953c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 68.50375964905048, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a949bbe1-1ab4-4299-85d8-07d6ad09953c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.50375964905048, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a559f9f9-54ef-49ae-bb06-fb3980c7c90f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 67.75644450595246, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a559f9f9-54ef-49ae-bb06-fb3980c7c90f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.75644450595246, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c7632009-74ff-41c2-b08d-52891f495c22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 68.50375964905048, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c7632009-74ff-41c2-b08d-52891f495c22", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.50375964905048, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "422ad6b4-9de0-42dd-b7db-4e7ce00fbd70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 67.75644450595246, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "422ad6b4-9de0-42dd-b7db-4e7ce00fbd70", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.75644450595246, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a97a322c-1f67-4db5-ac23-2744b3b9481a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 68.50375964905048, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a97a322c-1f67-4db5-ac23-2744b3b9481a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.50375964905048, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "af9071ec-b8a8-4211-a833-8f2033c938d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 67.75644450595246, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "af9071ec-b8a8-4211-a833-8f2033c938d5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.75644450595246, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8b87a072-ec80-4f2d-97ea-0ef4427ad943": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 64.53906735293654, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8b87a072-ec80-4f2d-97ea-0ef4427ad943", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.53906735293654, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3f0a7bc6-61f9-4c6a-84dc-e0fbf068245a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 65.28638249603458, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3f0a7bc6-61f9-4c6a-84dc-e0fbf068245a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.28638249603458, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1a786c1a-7d4e-4ee0-aa29-a1da4f770f4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 64.53906735293654, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1a786c1a-7d4e-4ee0-aa29-a1da4f770f4e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.53906735293654, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f560db3c-d86f-46f0-88b0-def75b50607c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 65.28638249603458, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f560db3c-d86f-46f0-88b0-def75b50607c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.28638249603458, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "06d6498d-0fa0-4bcf-ba26-422cd8653666": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 64.53906735293654, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "06d6498d-0fa0-4bcf-ba26-422cd8653666", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.53906735293654, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "109e6f07-9a18-4e6d-908a-ce0d827ccc1c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 65.28638249603458, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "109e6f07-9a18-4e6d-908a-ce0d827ccc1c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.28638249603458, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9d856151-a38b-452d-b985-569f9d98e385": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 64.56771539855372, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9d856151-a38b-452d-b985-569f9d98e385", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.56771539855372, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4977d707-74ad-44e6-8b81-15de22f71e7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 63.8204002554557, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4977d707-74ad-44e6-8b81-15de22f71e7d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.8204002554557, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8d47c348-c0ec-4351-8a31-65acfd2db1b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 64.56771539855372, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8d47c348-c0ec-4351-8a31-65acfd2db1b7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.56771539855372, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4b6afd99-fb9b-43c2-a814-c281bdf0bfe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 63.8204002554557, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4b6afd99-fb9b-43c2-a814-c281bdf0bfe7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.8204002554557, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a5466538-3f42-4a55-b7d5-9b0ea8d53f7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 64.56771539855372, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a5466538-3f42-4a55-b7d5-9b0ea8d53f7f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.56771539855372, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "cbbcc286-ce7b-488f-81b4-1c4e56d11b2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 63.8204002554557, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cbbcc286-ce7b-488f-81b4-1c4e56d11b2c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.8204002554557, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1f7b3296-c291-468d-80fe-1cbd94d534c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 60.603023102439785, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1f7b3296-c291-468d-80fe-1cbd94d534c3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.603023102439785, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "0e46e117-cf03-410b-b646-8c79778802cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 61.350338245537806, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0e46e117-cf03-410b-b646-8c79778802cd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.350338245537806, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c4254812-6260-47de-aa68-cd240887a14a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 60.603023102439785, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c4254812-6260-47de-aa68-cd240887a14a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.603023102439785, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ec47706b-120b-4d4a-a486-6aeb61d54ee7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 61.350338245537806, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec47706b-120b-4d4a-a486-6aeb61d54ee7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.350338245537806, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2eed813c-99a6-42b6-b8ce-642e5ad4884b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 60.603023102439785, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2eed813c-99a6-42b6-b8ce-642e5ad4884b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.603023102439785, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "dc52b88a-59ca-48a6-9857-421c00e14355": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 61.350338245537806, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dc52b88a-59ca-48a6-9857-421c00e14355", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.350338245537806, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c8e126a6-7eee-446f-b22d-dfb96bb896f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 60.63167114805696, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c8e126a6-7eee-446f-b22d-dfb96bb896f8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.63167114805696, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "6d39e21f-7f80-473a-9363-4bfc5d6cfebe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 59.88435600495894, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6d39e21f-7f80-473a-9363-4bfc5d6cfebe", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.88435600495894, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "781aa4ef-0e55-442f-bab1-99ce704bda4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 60.63167114805696, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "781aa4ef-0e55-442f-bab1-99ce704bda4b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.63167114805696, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5788345e-8417-4bf3-86fc-2d71737bf274": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 59.88435600495894, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5788345e-8417-4bf3-86fc-2d71737bf274", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.88435600495894, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9ef6c225-fd1f-41cd-93fb-8e4f00144a1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 60.63167114805696, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9ef6c225-fd1f-41cd-93fb-8e4f00144a1e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.63167114805696, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e987f229-977f-4684-b285-45a6d1a84bc2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 59.88435600495894, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e987f229-977f-4684-b285-45a6d1a84bc2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.88435600495894, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "717ee999-ce0e-4ed0-9510-9604fa2ab2da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 56.66697885194303, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "717ee999-ce0e-4ed0-9510-9604fa2ab2da", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.66697885194303, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9fe9ccca-515f-4c6c-adce-e40a9efa2b49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 57.41429399504105, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9fe9ccca-515f-4c6c-adce-e40a9efa2b49", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.41429399504105, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2981497b-5ed2-46a2-8dc3-2ab4287c2b8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 56.66697885194303, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2981497b-5ed2-46a2-8dc3-2ab4287c2b8e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.66697885194303, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "43398cd4-9b39-4d16-96cb-349fc41fc0b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 57.41429399504105, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "43398cd4-9b39-4d16-96cb-349fc41fc0b1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.41429399504105, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7d25b38b-f3a4-47cd-a3e8-c371fce4ceee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 56.6956268975602, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7d25b38b-f3a4-47cd-a3e8-c371fce4ceee", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.6956268975602, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "88298979-4c3a-40e7-82d7-3de51640eb9e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 55.94831175446218, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "88298979-4c3a-40e7-82d7-3de51640eb9e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.94831175446218, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8d046ed8-beb0-4fc0-b21f-03eb8b36084d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 56.6956268975602, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8d046ed8-beb0-4fc0-b21f-03eb8b36084d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.6956268975602, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3e1a4d26-13d2-4226-9ede-6a33c2393187": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 55.94831175446218, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3e1a4d26-13d2-4226-9ede-6a33c2393187", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.94831175446218, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "30b78e87-edef-4d7a-a82b-990960144092": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 52.73093460144627, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "30b78e87-edef-4d7a-a82b-990960144092", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.73093460144627, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "fd7811f2-310e-4a87-9229-0fad316acc3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 53.47824974454429, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd7811f2-310e-4a87-9229-0fad316acc3f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.47824974454429, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "74f9577c-a899-4f8e-b232-0dd0995cec61": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 52.73093460144627, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "74f9577c-a899-4f8e-b232-0dd0995cec61", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.73093460144627, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ffb71136-8eb2-42ff-8dfa-df86e2e1f864": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 53.47824974454429, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ffb71136-8eb2-42ff-8dfa-df86e2e1f864", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.47824974454429, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8d6989f5-cfd2-487e-8912-c550d1c9a2b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 52.73093460144627, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8d6989f5-cfd2-487e-8912-c550d1c9a2b7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.73093460144627, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "397eb0d8-40f1-461f-b8bc-61e3f0522f86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 53.47824974454429, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "397eb0d8-40f1-461f-b8bc-61e3f0522f86", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.47824974454429, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "51df50d3-cadf-4ba3-8203-82353e6326cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 52.759582647063446, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "51df50d3-cadf-4ba3-8203-82353e6326cb", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.759582647063446, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "740b7509-e9b7-48cb-90f4-2cbf7177e6f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 52.012267503965425, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "740b7509-e9b7-48cb-90f4-2cbf7177e6f3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.012267503965425, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0e378f6a-c467-4be7-9ea7-f0b542a15391": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 52.759582647063446, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0e378f6a-c467-4be7-9ea7-f0b542a15391", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.759582647063446, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "08ae4fa3-cfdb-4d9b-979d-d39a7ae07675": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 52.012267503965425, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "08ae4fa3-cfdb-4d9b-979d-d39a7ae07675", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.012267503965425, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "e35c5dad-df77-423d-8c9e-5ee856fb20c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 52.759582647063446, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e35c5dad-df77-423d-8c9e-5ee856fb20c6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.759582647063446, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "18a87543-5987-4945-91e9-8567a3e027bf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 52.012267503965425, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "18a87543-5987-4945-91e9-8567a3e027bf", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.012267503965425, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "79c8045d-c404-4d3b-bc41-75e970ec0b1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 48.79489035094951, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "79c8045d-c404-4d3b-bc41-75e970ec0b1d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.79489035094951, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8a6695f9-ea12-41c8-ba29-8a47dff45c4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 49.54220549404753, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8a6695f9-ea12-41c8-ba29-8a47dff45c4d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.54220549404753, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "e27c639e-8929-48f1-a6aa-3481473b258c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 48.79489035094951, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e27c639e-8929-48f1-a6aa-3481473b258c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.79489035094951, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "17b314ed-520d-4193-afde-64365fff0741": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 49.54220549404753, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "17b314ed-520d-4193-afde-64365fff0741", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.54220549404753, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "f8fefe80-258c-4c02-99b4-5499a715ddda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 48.79489035094951, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "f8fefe80-258c-4c02-99b4-5499a715ddda", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.79489035094951, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a7f04157-17a4-49e3-9afd-2af3d6a3b8cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 49.54220549404753, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a7f04157-17a4-49e3-9afd-2af3d6a3b8cd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.54220549404753, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "e9aac4e2-5d2e-40bc-b387-ac8ec25e904e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 48.82353839656668, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e9aac4e2-5d2e-40bc-b387-ac8ec25e904e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.82353839656668, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d86d4b15-1539-4707-ba69-2e88f0d7ec8b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 48.07622325346866, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d86d4b15-1539-4707-ba69-2e88f0d7ec8b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.07622325346866, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1e4ae201-2021-4ccc-b6c0-4b3f1991c61f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 48.82353839656668, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1e4ae201-2021-4ccc-b6c0-4b3f1991c61f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.82353839656668, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c7385b7b-b5de-4cc1-b49f-dc1603e7610e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 48.07622325346866, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c7385b7b-b5de-4cc1-b49f-dc1603e7610e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.07622325346866, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1a625551-699b-4ea5-b41c-075a4897cff4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 48.82353839656668, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1a625551-699b-4ea5-b41c-075a4897cff4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.82353839656668, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d632735b-69e2-4ba9-a106-3f362fc007a7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 48.07622325346866, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d632735b-69e2-4ba9-a106-3f362fc007a7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.07622325346866, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ed0421f0-82d3-428b-aa49-e98c1e5a282c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 55.21328, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 49.75973, + "Z": 0.0 + }, + { + "X": 55.21328, + "Y": 49.75973, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ed0421f0-82d3-428b-aa49-e98c1e5a282c", + "Name": null + }, + "5d7a9d56-6b81-4ed4-b3e7-0a3eb368cb90": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 56.6812999999977, + "Y": 48.86546499999799, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 56.6812999999977, + "Y": 48.86546499999799, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "CollectedSpaces": [], + "ProgramName": "Open Collaboration", + "Boundary": "ed0421f0-82d3-428b-aa49-e98c1e5a282c", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 55.21328, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 49.75973, + "Z": 0.0 + }, + { + "X": 55.21328, + "Y": 49.75973, + "Z": 0.0 + } + ] + } + ], + "Area": 5.2511956212006226, + "Height": 3.0, + "Program Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Material": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 55.21328, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 47.9712, + "Z": 0.0 + }, + { + "X": 58.14932, + "Y": 49.75973, + "Z": 0.0 + }, + { + "X": 55.21328, + "Y": 49.75973, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5d7a9d56-6b81-4ed4-b3e7-0a3eb368cb90", + "Name": "Open Collaboration", + "Parent Level Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510" + }, + "8fd4e8e3-4f19-47d1-8b72-be773fa49064": { + "discriminator": "Elements.SpaceMetric", + "Space": "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd", + "Seats": 34.0, + "Headcount": 34.0, + "Desks": 34.0, + "Collaboration Seats": 0.0, + "Id": "8fd4e8e3-4f19-47d1-8b72-be773fa49064", + "Name": null + }, + "2cbc45d5-ddb0-46b8-bae2-30ec96baca49": { + "discriminator": "Elements.ElementProxy", + "elementId": "45ba4411-a8f4-488f-9abf-229f056faba5", + "dependency": "Space Settings", + "Id": "2cbc45d5-ddb0-46b8-bae2-30ec96baca49", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "05854924-cb44-49fb-80f8-9efd67a2cd82": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.75275052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "05854924-cb44-49fb-80f8-9efd67a2cd82", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.75275052142531, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2acb9b69-ec61-4a99-b88c-fbb5f7e0c896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.82235777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2acb9b69-ec61-4a99-b88c-fbb5f7e0c896", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.82235777048159, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "83ba417f-0813-4d54-848a-cc349d9aa804": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.54128054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "83ba417f-0813-4d54-848a-cc349d9aa804", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.54128054540733, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "aa2c5b40-9861-4f9c-a633-ddc7f7559dfe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.61088779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aa2c5b40-9861-4f9c-a633-ddc7f7559dfe", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.61088779446361, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "e36d59a7-36f1-4af0-b36d-99ec59643be5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.32981056938937, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e36d59a7-36f1-4af0-b36d-99ec59643be5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.32981056938937, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8d9d8432-9a83-4564-b4e0-09fc74aa18d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.39941781844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d9d8432-9a83-4564-b4e0-09fc74aa18d8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39941781844564, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b3abe086-5634-4b33-9b58-472eb3d3235e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.11834059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "b3abe086-5634-4b33-9b58-472eb3d3235e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.11834059337139, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "363ad6f8-4c04-473c-8e49-0ef49e422a6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.18794784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "363ad6f8-4c04-473c-8e49-0ef49e422a6d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.18794784242766, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "07d80871-2e3b-4ec6-a839-df904ce28857": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.9092594066286, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "07d80871-2e3b-4ec6-a839-df904ce28857", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.9092594066286, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "bdaf661d-c745-4ac2-a5b9-d0c356427406": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.83965215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bdaf661d-c745-4ac2-a5b9-d0c356427406", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.83965215757233, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "657b030f-9ab5-402e-a24a-26505eccbfc7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.69778943061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "657b030f-9ab5-402e-a24a-26505eccbfc7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.69778943061064, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2a61ce05-eee8-4429-9d47-c07a9b002e13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.62818218155437, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2a61ce05-eee8-4429-9d47-c07a9b002e13", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.62818218155437, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9f230079-6453-43ef-acc8-24b323e87203": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.48631945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9f230079-6453-43ef-acc8-24b323e87203", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.48631945459266, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "598c7b8d-5e54-46bf-8a8d-90126c69b666": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.41671220553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "598c7b8d-5e54-46bf-8a8d-90126c69b666", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.41671220553638, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0df5c3f6-27b0-4205-a616-e652f7c04617": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.27484947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0df5c3f6-27b0-4205-a616-e652f7c04617", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.27484947857468, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d0a896e2-a714-478d-a375-a8283b44b752": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.2052422295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0a896e2-a714-478d-a375-a8283b44b752", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.2052422295184, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8417f2a3-40db-42cf-9000-6987d9419c6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.75275052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8417f2a3-40db-42cf-9000-6987d9419c6d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.75275052142531, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f98ad5ae-4b7e-4839-80f9-74db36f1aa2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.82235777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f98ad5ae-4b7e-4839-80f9-74db36f1aa2b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.82235777048159, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "aedc9ad4-0db1-43a5-9eab-920135512900": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.54128054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "aedc9ad4-0db1-43a5-9eab-920135512900", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.54128054540733, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "88eaff17-fc4a-4017-a283-2118abc11f76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.61088779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "88eaff17-fc4a-4017-a283-2118abc11f76", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.61088779446361, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d618764b-0532-4c72-8b65-2375d3737ea2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.32981056938937, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d618764b-0532-4c72-8b65-2375d3737ea2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.32981056938937, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "dbcde27d-68bf-459c-bb13-06d357843e2d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.39941781844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dbcde27d-68bf-459c-bb13-06d357843e2d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39941781844564, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ea736f83-d779-42ff-868b-c8d9180abe02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.11834059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ea736f83-d779-42ff-868b-c8d9180abe02", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.11834059337139, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a11b05b8-704f-4fb7-bd85-963ffd45e154": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.18794784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a11b05b8-704f-4fb7-bd85-963ffd45e154", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.18794784242766, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ae82ed82-4b1a-4301-b48d-2239b62a80b6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.9092594066286, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ae82ed82-4b1a-4301-b48d-2239b62a80b6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.9092594066286, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "404890e2-57b9-41fc-8aeb-7fb34baf1bf5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.83965215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "404890e2-57b9-41fc-8aeb-7fb34baf1bf5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.83965215757233, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c5716eba-956c-4e38-b4b7-a4eddae76556": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.69778943061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c5716eba-956c-4e38-b4b7-a4eddae76556", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.69778943061064, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "afcbfe00-f9ba-4c7b-bb52-b1c044e6546d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.62818218155437, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "afcbfe00-f9ba-4c7b-bb52-b1c044e6546d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.62818218155437, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "3a01724c-2a05-4167-b8a9-9ac5c73be983": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.48631945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "3a01724c-2a05-4167-b8a9-9ac5c73be983", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.48631945459266, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "84fde91d-42fd-471f-b78d-62f00f764aa5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.41671220553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "84fde91d-42fd-471f-b78d-62f00f764aa5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.41671220553638, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7837e232-ac55-4dae-ac98-2277f283d80e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.27484947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7837e232-ac55-4dae-ac98-2277f283d80e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.27484947857468, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7418bd4e-1fee-4e1a-b590-f38076c18d52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.2052422295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7418bd4e-1fee-4e1a-b590-f38076c18d52", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.2052422295184, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8d8d9607-8816-48c1-a690-1f80f00e3921": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.75275052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8d8d9607-8816-48c1-a690-1f80f00e3921", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.75275052142531, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2e0151aa-c855-46c2-a872-0bbeaf30c09b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.82235777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2e0151aa-c855-46c2-a872-0bbeaf30c09b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.82235777048159, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "03c5c798-f18c-46b6-9213-bf3d23f5e503": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.54128054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "03c5c798-f18c-46b6-9213-bf3d23f5e503", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.54128054540733, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "465f66c3-f348-4195-a503-f62494455491": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.61088779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "465f66c3-f348-4195-a503-f62494455491", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.61088779446361, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "85ce7f42-e9fd-46a1-9b95-bd97ab778be4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.32981056938937, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "85ce7f42-e9fd-46a1-9b95-bd97ab778be4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.32981056938937, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c62e851e-d876-44cb-80ef-6734cc7257c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.39941781844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c62e851e-d876-44cb-80ef-6734cc7257c4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39941781844564, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "4532585d-9a23-4ac5-817b-d2aed24faaec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.11834059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "4532585d-9a23-4ac5-817b-d2aed24faaec", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.11834059337139, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1b5bbc9f-08ec-4280-91d6-d62a0ffae45f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.18794784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1b5bbc9f-08ec-4280-91d6-d62a0ffae45f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.18794784242766, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2cf1ccdf-0632-4c03-a39c-905eda12b0f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.9092594066286, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2cf1ccdf-0632-4c03-a39c-905eda12b0f5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.9092594066286, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "29b5957c-1e2b-4b58-bcd3-03f37399ed63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.83965215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "29b5957c-1e2b-4b58-bcd3-03f37399ed63", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.83965215757233, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "433695c9-2fcc-4043-85f3-ac5cf8ba843d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.69778943061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "433695c9-2fcc-4043-85f3-ac5cf8ba843d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.69778943061064, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2fa5dc5b-a369-43a2-a70f-35d561a6880d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.62818218155437, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2fa5dc5b-a369-43a2-a70f-35d561a6880d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.62818218155437, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1e7170de-db9d-48bb-b5f2-aec2ff976fd7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.48631945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1e7170de-db9d-48bb-b5f2-aec2ff976fd7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.48631945459266, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "505db47f-2849-41d5-a01d-fc3904e7fb3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.41671220553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "505db47f-2849-41d5-a01d-fc3904e7fb3c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.41671220553638, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0673d828-29ea-467b-9382-3aa85f060bb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.27484947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0673d828-29ea-467b-9382-3aa85f060bb3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.27484947857468, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2d6733e2-aaa0-4385-8f5c-17fc1588e2a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.2052422295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2d6733e2-aaa0-4385-8f5c-17fc1588e2a0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.2052422295184, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "03a0ec1a-ba35-4863-9600-78838686b5aa": { + "discriminator": "Elements.SpaceMetric", + "Space": "45ba4411-a8f4-488f-9abf-229f056faba5", + "Seats": 24.0, + "Headcount": 24.0, + "Desks": 24.0, + "Collaboration Seats": 0.0, + "Id": "03a0ec1a-ba35-4863-9600-78838686b5aa", + "Name": null + }, + "8cb9cb34-7b95-4d4a-bd77-ff35fc51e648": { + "discriminator": "Elements.ElementProxy", + "elementId": "da93c9d8-1e09-488e-9114-8510055c0214", + "dependency": "Space Settings", + "Id": "8cb9cb34-7b95-4d4a-bd77-ff35fc51e648", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "541f51f3-2f31-445a-bfe2-713c144c153e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 42.59817522768817, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "541f51f3-2f31-445a-bfe2-713c144c153e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.59817522768817, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "0019bc1b-d301-48ca-a46f-4faa1428fd9b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 43.345490370786194, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0019bc1b-d301-48ca-a46f-4faa1428fd9b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.345490370786194, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7baf8bd8-4e03-4edd-aa58-060a41ccf078": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 42.59817522768817, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7baf8bd8-4e03-4edd-aa58-060a41ccf078", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.59817522768817, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ac60bc92-8961-408b-b70f-ad341ad45a80": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 43.345490370786194, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ac60bc92-8961-408b-b70f-ad341ad45a80", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.345490370786194, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "fabae0c7-1bf5-48f6-8f87-125cb1983a4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 42.59817522768817, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "fabae0c7-1bf5-48f6-8f87-125cb1983a4a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.59817522768817, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f3af5ee5-a638-44a7-ac28-fa4cc9b69684": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 43.345490370786194, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3af5ee5-a638-44a7-ac28-fa4cc9b69684", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.345490370786194, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d503f79e-ca5a-4f7e-a491-574a4bfa5c23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 42.62682327330535, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d503f79e-ca5a-4f7e-a491-574a4bfa5c23", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.62682327330535, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "50fbb5b3-27f8-4569-8011-da0adceba8bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 41.87950813020733, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "50fbb5b3-27f8-4569-8011-da0adceba8bb", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.87950813020733, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "e68f2761-a85a-4659-9c41-ba0c0e3ccd34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 42.62682327330535, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "e68f2761-a85a-4659-9c41-ba0c0e3ccd34", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.62682327330535, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2955f707-4f98-4a32-9c3e-9f45c886f38c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 41.87950813020733, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2955f707-4f98-4a32-9c3e-9f45c886f38c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.87950813020733, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "74e5e6d6-a8f5-46bf-8c9d-b9e427a75567": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 42.62682327330535, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "74e5e6d6-a8f5-46bf-8c9d-b9e427a75567", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.62682327330535, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "28aed700-a4eb-4b0d-a39a-f538970579c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 41.87950813020733, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28aed700-a4eb-4b0d-a39a-f538970579c5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 41.87950813020733, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c4b53fc4-3d67-4355-8980-f73c564f280c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 38.66213097719141, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c4b53fc4-3d67-4355-8980-f73c564f280c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.66213097719141, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "81431664-7afc-4f0b-afa6-c598aad63783": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 39.40944612028943, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "81431664-7afc-4f0b-afa6-c598aad63783", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.40944612028943, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c06a0444-496b-4abe-9871-1bc6f0412589": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 38.66213097719141, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c06a0444-496b-4abe-9871-1bc6f0412589", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.66213097719141, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e96c3acf-661a-42e8-8242-296015e77b3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 39.40944612028943, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e96c3acf-661a-42e8-8242-296015e77b3f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.40944612028943, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "fb95f6d6-d13f-4642-a4b9-65282a4b8c55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 38.66213097719141, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "fb95f6d6-d13f-4642-a4b9-65282a4b8c55", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.66213097719141, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "93c8c0e4-1f37-4e06-af1c-9a24ac8988de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 39.40944612028943, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "93c8c0e4-1f37-4e06-af1c-9a24ac8988de", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.40944612028943, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9e234224-2086-4824-b275-47691bcc9647": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 38.690779022808584, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9e234224-2086-4824-b275-47691bcc9647", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.690779022808584, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "72204594-3182-4f3f-9bb5-c56d3e17a152": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 37.94346387971056, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "72204594-3182-4f3f-9bb5-c56d3e17a152", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.94346387971056, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1ca68243-804f-41c2-ac50-6fc725f5f271": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 38.690779022808584, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1ca68243-804f-41c2-ac50-6fc725f5f271", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.690779022808584, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ab959cca-555d-44c3-a7ba-5964f1ec9295": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 37.94346387971056, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ab959cca-555d-44c3-a7ba-5964f1ec9295", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.94346387971056, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "f048de46-2ed4-42b8-9f50-554e0cc3f87d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 38.690779022808584, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "f048de46-2ed4-42b8-9f50-554e0cc3f87d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.690779022808584, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "22e49928-cfdb-4ea5-ab00-24a9baf5e4dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 37.94346387971056, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "22e49928-cfdb-4ea5-ab00-24a9baf5e4dc", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.94346387971056, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a2c249af-aeda-414d-8b8d-f5835f3291c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 34.72608672669465, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a2c249af-aeda-414d-8b8d-f5835f3291c4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.72608672669465, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "234d0afd-7815-4239-8f3a-2886c890e381": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 35.473401869792674, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "234d0afd-7815-4239-8f3a-2886c890e381", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.473401869792674, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a9c2e7ae-4562-44e6-8b46-854047f70b4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 34.72608672669465, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a9c2e7ae-4562-44e6-8b46-854047f70b4f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.72608672669465, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3ace9c62-8634-4a2a-921a-0579af6ad840": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 35.473401869792674, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3ace9c62-8634-4a2a-921a-0579af6ad840", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.473401869792674, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c54b55e2-be67-4b12-8c11-03161217da3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 34.72608672669465, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c54b55e2-be67-4b12-8c11-03161217da3e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.72608672669465, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "50445bb4-d869-466c-8bbd-84549f157097": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 35.473401869792674, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "50445bb4-d869-466c-8bbd-84549f157097", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.473401869792674, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7dc1241a-96d1-48e3-a8c8-a05a2c985f90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 34.75473477231183, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7dc1241a-96d1-48e3-a8c8-a05a2c985f90", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.75473477231183, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5bf042a3-fa23-49d1-81dc-a9a2f1f60b07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 34.00741962921381, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bf042a3-fa23-49d1-81dc-a9a2f1f60b07", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.00741962921381, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "6ecc6077-9a97-48c8-b897-0efbccf80cb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 34.75473477231183, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6ecc6077-9a97-48c8-b897-0efbccf80cb0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.75473477231183, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "91dd9618-d7c3-4e66-995b-ed79830921be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 34.00741962921381, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "91dd9618-d7c3-4e66-995b-ed79830921be", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.00741962921381, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9c0e9909-4706-46ad-9adc-91a3fe699a2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 34.75473477231183, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9c0e9909-4706-46ad-9adc-91a3fe699a2e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.75473477231183, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "56d22a7f-a7d9-461c-a29b-b00d91bb2caa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 34.00741962921381, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "56d22a7f-a7d9-461c-a29b-b00d91bb2caa", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.00741962921381, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a52a9b5f-3587-47da-a114-cca871e29411": { + "discriminator": "Elements.SpaceMetric", + "Space": "da93c9d8-1e09-488e-9114-8510055c0214", + "Seats": 18.0, + "Headcount": 18.0, + "Desks": 18.0, + "Collaboration Seats": 0.0, + "Id": "a52a9b5f-3587-47da-a114-cca871e29411", + "Name": null + }, + "cb998ec3-3e23-4ccc-b116-43c6b29d1b49": { + "discriminator": "Elements.ElementProxy", + "elementId": "faf9ed0e-a0c5-48d4-b076-db826c78909a", + "dependency": "Space Settings", + "Id": "cb998ec3-3e23-4ccc-b116-43c6b29d1b49", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "754deee3-b4f4-4091-a14c-cd2ec4a46486": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 84.23355554540734, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "754deee3-b4f4-4091-a14c-cd2ec4a46486", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.23355554540734, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "0434f38e-552d-4ed1-b964-40e6fd91103f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 83.30316279446362, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0434f38e-552d-4ed1-b964-40e6fd91103f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.30316279446362, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "3d579c92-2872-4844-b37c-88e492f0dda4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 86.02208556938936, + -6.049014748177262E-16, + -1.0, + 0.0, + 53.38493022768817, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "3d579c92-2872-4844-b37c-88e492f0dda4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 86.02208556938936, + "Y": 53.38493022768817, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c30347b3-bb67-4aaa-84b9-10b2eeddcfbc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 85.09169281844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 54.132245370786194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c30347b3-bb67-4aaa-84b9-10b2eeddcfbc", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.09169281844564, + "Y": 54.132245370786194, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "06ff16a8-5104-4ae5-96fa-59cafb92556b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 82.39006443061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "06ff16a8-5104-4ae5-96fa-59cafb92556b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 82.39006443061064, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "dc8cd672-f847-4d06-8a80-5e4fb4578ff6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 83.32045718155436, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dc8cd672-f847-4d06-8a80-5e4fb4578ff6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.32045718155436, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b7c0e753-9cb7-401c-9157-183080adc9c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 84.17859445459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 53.41357827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "b7c0e753-9cb7-401c-9157-183080adc9c7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.17859445459266, + "Y": 53.41357827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "bf69ce6c-a626-4a09-9a39-0ec6077562db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 85.10898720553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 52.66626313020733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bf69ce6c-a626-4a09-9a39-0ec6077562db", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.10898720553638, + "Y": 52.66626313020733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1536d23c-9313-4c07-8957-0900a9b65abb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 84.23355554540734, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1536d23c-9313-4c07-8957-0900a9b65abb", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.23355554540734, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "336c36e5-79c8-4588-a31a-7ca01cbbdbff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 83.30316279446362, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "336c36e5-79c8-4588-a31a-7ca01cbbdbff", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.30316279446362, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5466f831-daf3-4717-9681-8e480195ae84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 86.02208556938936, + -6.049014748177262E-16, + -1.0, + 0.0, + 49.44888597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5466f831-daf3-4717-9681-8e480195ae84", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 86.02208556938936, + "Y": 49.44888597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "87c7fc92-24bc-483b-b474-022558109f40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 85.09169281844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 50.19620112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "87c7fc92-24bc-483b-b474-022558109f40", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.09169281844564, + "Y": 50.19620112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "db3859a1-2cc7-4c11-be60-56bb0413ba82": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 82.39006443061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "db3859a1-2cc7-4c11-be60-56bb0413ba82", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 82.39006443061064, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5bf04add-412a-46b0-9881-9a74605f3823": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 83.32045718155436, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bf04add-412a-46b0-9881-9a74605f3823", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.32045718155436, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "eca8c1ee-0d9d-44fa-8b78-4bf053859036": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 84.17859445459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 49.477534022808584, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "eca8c1ee-0d9d-44fa-8b78-4bf053859036", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.17859445459266, + "Y": 49.477534022808584, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9ef7f645-5e7c-43eb-a048-18a619b1a3e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 85.10898720553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 48.73021887971056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9ef7f645-5e7c-43eb-a048-18a619b1a3e3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.10898720553638, + "Y": 48.73021887971056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2f7f099d-6495-4be6-ab58-eabace0bd63e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 84.23355554540734, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2f7f099d-6495-4be6-ab58-eabace0bd63e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.23355554540734, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ef80621a-a5e8-4f76-8df3-ffbd3edf880c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 83.30316279446362, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef80621a-a5e8-4f76-8df3-ffbd3edf880c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.30316279446362, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "77dd854c-0a8a-4cea-bf0f-2087adaae042": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 86.02208556938936, + -6.049014748177262E-16, + -1.0, + 0.0, + 45.51284172669465, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "77dd854c-0a8a-4cea-bf0f-2087adaae042", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 86.02208556938936, + "Y": 45.51284172669465, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e5ff9b36-fe7e-4e2a-b6fc-951bc383d743": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 85.09169281844564, + -3.847433001135119E-15, + 1.0, + 0.0, + 46.260156869792674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e5ff9b36-fe7e-4e2a-b6fc-951bc383d743", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.09169281844564, + "Y": 46.260156869792674, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "536a420c-8273-4e68-8220-f729ebb92188": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 82.39006443061064, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "536a420c-8273-4e68-8220-f729ebb92188", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 82.39006443061064, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e7e0fc37-d52c-491a-9508-80058ac2439d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 83.32045718155436, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e7e0fc37-d52c-491a-9508-80058ac2439d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.32045718155436, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "15f28ab3-63e3-448a-b8a6-6232b986e38a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 84.17859445459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 45.54148977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "15f28ab3-63e3-448a-b8a6-6232b986e38a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.17859445459266, + "Y": 45.54148977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7ef6a77a-93d6-4009-89b0-0c3edbe1e39c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 85.10898720553638, + 3.724968321220384E-15, + -1.0, + 0.0, + 44.794174629213806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7ef6a77a-93d6-4009-89b0-0c3edbe1e39c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.10898720553638, + "Y": 44.794174629213806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b6582904-5f43-444a-9c56-070c30dbd423": { + "discriminator": "Elements.SpaceMetric", + "Space": "faf9ed0e-a0c5-48d4-b076-db826c78909a", + "Seats": 12.0, + "Headcount": 12.0, + "Desks": 12.0, + "Collaboration Seats": 0.0, + "Id": "b6582904-5f43-444a-9c56-070c30dbd423", + "Name": null + }, + "85d304fc-8a0b-4b82-967b-29b96840161b": { + "discriminator": "Elements.ElementProxy", + "elementId": "77dd2a79-a557-45f9-b79d-e9ac0fc5231b", + "dependency": "Space Settings", + "Id": "85d304fc-8a0b-4b82-967b-29b96840161b", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "6ed61330-f0b4-45c9-83d3-dbc9a2916da2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 14.898353102439794, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6ed61330-f0b4-45c9-83d3-dbc9a2916da2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.898353102439794, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7f35a7b3-3ee4-4bae-84e6-4293ec4446d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 15.645668245537816, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7f35a7b3-3ee4-4bae-84e6-4293ec4446d8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.645668245537816, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "248410a9-cdc0-4522-b65b-af3fd7783746": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 14.898353102439794, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "248410a9-cdc0-4522-b65b-af3fd7783746", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.898353102439794, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3a522c8c-cb99-4051-854c-0a569add0cb2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 15.645668245537816, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3a522c8c-cb99-4051-854c-0a569add0cb2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.645668245537816, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0b0b3912-d0b3-4ed4-acd8-82983909d25f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 14.898353102439794, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0b0b3912-d0b3-4ed4-acd8-82983909d25f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.898353102439794, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "e01269f7-a345-482d-8948-b3d4ca3df497": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 15.645668245537816, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e01269f7-a345-482d-8948-b3d4ca3df497", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.645668245537816, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "6d5113e6-0c28-437a-9afb-7143545776d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 14.927001148056968, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6d5113e6-0c28-437a-9afb-7143545776d3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.927001148056968, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "b54abe59-3644-4beb-b365-8982a4a0bb9c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 14.179686004958945, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b54abe59-3644-4beb-b365-8982a4a0bb9c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.179686004958945, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "4aba3cab-01aa-4aac-b781-f14593923754": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 14.927001148056968, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "4aba3cab-01aa-4aac-b781-f14593923754", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.927001148056968, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7767f849-539b-4b82-81b1-1b3b49ebb215": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 14.179686004958945, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7767f849-539b-4b82-81b1-1b3b49ebb215", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.179686004958945, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d32628bf-8aeb-4909-bf90-b6e0ba903158": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 14.927001148056968, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d32628bf-8aeb-4909-bf90-b6e0ba903158", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.927001148056968, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5a540e78-febb-4534-9042-80f65410dde3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 14.179686004958945, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5a540e78-febb-4534-9042-80f65410dde3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.179686004958945, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c8fc4581-9fb2-42af-8bee-bfbf5fa2b2b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 10.962308851943035, + 1.0, + -6.049014748177262E-16, + 0.0, + 47.94371946658367, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c8fc4581-9fb2-42af-8bee-bfbf5fa2b2b5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.962308851943035, + "Y": 47.94371946658367, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f09414d9-59df-4fe1-9a26-055cac263f86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 11.709623995041056, + -1.0, + -3.847433001135119E-15, + 0.0, + 48.87411221752739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f09414d9-59df-4fe1-9a26-055cac263f86", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.709623995041056, + "Y": 48.87411221752739, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "48cb1b71-f3c5-4255-adf5-5abf447f0cf0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 10.962308851943035, + 1.0, + -6.049014748177262E-16, + 0.0, + 46.15518944260165, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "48cb1b71-f3c5-4255-adf5-5abf447f0cf0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.962308851943035, + "Y": 46.15518944260165, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "15ba432b-d8fe-4b64-aa2d-ec3f73533a6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 11.709623995041056, + -1.0, + -3.847433001135119E-15, + 0.0, + 47.08558219354537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "15ba432b-d8fe-4b64-aa2d-ec3f73533a6f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.709623995041056, + "Y": 47.08558219354537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "46ad7937-20bf-4127-abc2-93200c8bf29b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -6.049014748177262E-16, + -1.0, + 0.0, + 10.962308851943035, + 1.0, + -6.049014748177262E-16, + 0.0, + 44.366659418619626, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "46ad7937-20bf-4127-abc2-93200c8bf29b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.962308851943035, + "Y": 44.366659418619626, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "325b5359-2654-480f-8728-8e9b02781c68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -3.847433001135119E-15, + 1.0, + 0.0, + 11.709623995041056, + -1.0, + -3.847433001135119E-15, + 0.0, + 45.297052169563344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "325b5359-2654-480f-8728-8e9b02781c68", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.709623995041056, + "Y": 45.297052169563344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "83313d3f-1e03-417d-bdb4-49e53e3f3d50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 10.99095689756021, + -1.0, + 7.273661547324615E-16, + 0.0, + 49.78721058138038, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "83313d3f-1e03-417d-bdb4-49e53e3f3d50", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.99095689756021, + "Y": 49.78721058138038, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "57ba5217-18b9-464c-b396-54c02cf87a99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 10.243641754462189, + 1.0, + 3.724968321220384E-15, + 0.0, + 48.85681783043666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "57ba5217-18b9-464c-b396-54c02cf87a99", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.243641754462189, + "Y": 48.85681783043666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "48324929-7665-468c-854c-e14c8dc5a8cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 10.99095689756021, + -1.0, + 7.273661547324615E-16, + 0.0, + 47.99868055739835, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "48324929-7665-468c-854c-e14c8dc5a8cd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.99095689756021, + "Y": 47.99868055739835, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5c4d08e7-a3ee-4799-9883-9807f59fc453": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 10.243641754462189, + 1.0, + 3.724968321220384E-15, + 0.0, + 47.068287806454634, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5c4d08e7-a3ee-4799-9883-9807f59fc453", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.243641754462189, + "Y": 47.068287806454634, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d77bc539-90db-4a46-9581-84e943d79458": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 7.273661547324615E-16, + 1.0, + 0.0, + 10.99095689756021, + -1.0, + 7.273661547324615E-16, + 0.0, + 46.21015053341633, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d77bc539-90db-4a46-9581-84e943d79458", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.99095689756021, + "Y": 46.21015053341633, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7fa4adac-a936-4e07-b98c-a38607057781": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 3.724968321220384E-15, + -1.0, + 0.0, + 10.243641754462189, + 1.0, + 3.724968321220384E-15, + 0.0, + 45.279757782472615, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7fa4adac-a936-4e07-b98c-a38607057781", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.243641754462189, + "Y": 45.279757782472615, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "45010997-d472-4fb3-a86b-bc07b1c6382f": { + "discriminator": "Elements.SpaceMetric", + "Space": "77dd2a79-a557-45f9-b79d-e9ac0fc5231b", + "Seats": 12.0, + "Headcount": 12.0, + "Desks": 12.0, + "Collaboration Seats": 0.0, + "Id": "45010997-d472-4fb3-a86b-bc07b1c6382f", + "Name": null + }, + "3af3a8e5-fe6c-4263-b979-33f53e842ace": { + "discriminator": "Elements.ElementProxy", + "elementId": "95d3743d-9b47-4a6c-bbc0-653da1ae4e49", + "dependency": "Space Settings", + "Id": "3af3a8e5-fe6c-4263-b979-33f53e842ace", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "0f392cf9-86c3-4b40-86cd-6a41265d23f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 15.492614490565694, + 6.049014748177262E-16, + 1.0, + 0.0, + 21.844494459190884, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0f392cf9-86c3-4b40-86cd-6a41265d23f9", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.492614490565694, + "Y": 21.844494459190884, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "fb4f4a43-b02b-42ec-8350-19441791ccde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 16.423007241509413, + 3.847433001135119E-15, + -1.0, + 0.0, + 21.097179316092863, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fb4f4a43-b02b-42ec-8350-19441791ccde", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.423007241509413, + "Y": 21.097179316092863, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a665d9a1-23e6-426f-8e1f-cf7f7774e8f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 21.844494459190884, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a665d9a1-23e6-426f-8e1f-cf7f7774e8f8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 21.844494459190884, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "bc729cb3-eeeb-48c5-9b91-ca5d822146d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 21.097179316092863, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bc729cb3-eeeb-48c5-9b91-ca5d822146d1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 21.097179316092863, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "00e59efb-8fe9-4c71-bdce-45bbc8ba35a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 21.844494459190884, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "00e59efb-8fe9-4c71-bdce-45bbc8ba35a8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 21.844494459190884, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d417396a-1bd4-4cf3-9168-aea9c19c9b67": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 21.097179316092863, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d417396a-1bd4-4cf3-9168-aea9c19c9b67", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 21.097179316092863, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c1b5e440-8569-47a9-9998-ce00268039f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 9.127024418619627, + 6.049014748177262E-16, + 1.0, + 0.0, + 21.844494459190884, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c1b5e440-8569-47a9-9998-ce00268039f2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.127024418619627, + "Y": 21.844494459190884, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5d437754-1a87-4dd4-b0af-4005805026a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 10.057417169563346, + 3.847433001135119E-15, + -1.0, + 0.0, + 21.097179316092863, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5d437754-1a87-4dd4-b0af-4005805026a4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.057417169563346, + "Y": 21.097179316092863, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7be1c9db-79a1-4d9b-874a-5e7ab9074d33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 7.338494394637605, + 6.049014748177262E-16, + 1.0, + 0.0, + 21.844494459190884, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7be1c9db-79a1-4d9b-874a-5e7ab9074d33", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 7.338494394637605, + "Y": 21.844494459190884, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "35b2d1a6-0514-47a3-a288-167f52c68177": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 8.268887145581324, + 3.847433001135119E-15, + -1.0, + 0.0, + 21.097179316092863, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "35b2d1a6-0514-47a3-a288-167f52c68177", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.268887145581324, + "Y": 21.097179316092863, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "57d0078d-00c5-461e-9d26-260ab2bd2790": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 17.33610560536239, + -7.273661547324615E-16, + -1.0, + 0.0, + 21.81584641357371, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "57d0078d-00c5-461e-9d26-260ab2bd2790", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.33610560536239, + "Y": 21.81584641357371, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1c31c6bc-3166-46ea-9674-cb1fafac4be8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 16.405712854418674, + -3.724968321220384E-15, + 1.0, + 0.0, + 22.56316155667173, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1c31c6bc-3166-46ea-9674-cb1fafac4be8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.405712854418674, + "Y": 22.56316155667173, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "df762d45-d925-441b-a22e-ac150c4e8883": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 15.547575581380372, + -7.273661547324615E-16, + -1.0, + 0.0, + 21.81584641357371, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "df762d45-d925-441b-a22e-ac150c4e8883", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.547575581380372, + "Y": 21.81584641357371, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8c896e9f-e2df-4c73-8ecd-f776d3798c2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 14.617182830436652, + -3.724968321220384E-15, + 1.0, + 0.0, + 22.56316155667173, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8c896e9f-e2df-4c73-8ecd-f776d3798c2f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.617182830436652, + "Y": 22.56316155667173, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "40920eb4-d927-491b-9ab2-1322375d959c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 13.759045557398348, + -7.273661547324615E-16, + -1.0, + 0.0, + 21.81584641357371, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "40920eb4-d927-491b-9ab2-1322375d959c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.759045557398348, + "Y": 21.81584641357371, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2b0c3889-d28a-427e-9a0a-5700c172d3c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 12.82865280645463, + -3.724968321220384E-15, + 1.0, + 0.0, + 22.56316155667173, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2b0c3889-d28a-427e-9a0a-5700c172d3c8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.82865280645463, + "Y": 22.56316155667173, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "52da5ece-151a-4485-aa01-f6190af766de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 10.970515533416327, + -7.273661547324615E-16, + -1.0, + 0.0, + 21.81584641357371, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "52da5ece-151a-4485-aa01-f6190af766de", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.970515533416327, + "Y": 21.81584641357371, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9d326e08-c779-43a9-9f69-22618a5bcfae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 10.040122782472608, + -3.724968321220384E-15, + 1.0, + 0.0, + 22.56316155667173, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9d326e08-c779-43a9-9f69-22618a5bcfae", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.040122782472608, + "Y": 22.56316155667173, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "db8036c9-a68e-4fd5-ae5d-f73a1b386ebf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 9.181985509434305, + -7.273661547324615E-16, + -1.0, + 0.0, + 21.81584641357371, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "db8036c9-a68e-4fd5-ae5d-f73a1b386ebf", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.181985509434305, + "Y": 21.81584641357371, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8b774503-c962-40f7-9c82-10e7385ff501": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 8.251592758490586, + -3.724968321220384E-15, + 1.0, + 0.0, + 22.56316155667173, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8b774503-c962-40f7-9c82-10e7385ff501", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.251592758490586, + "Y": 22.56316155667173, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "f8cb1c4e-4330-448c-8ff5-28506668c4d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 15.492614490565694, + 6.049014748177262E-16, + 1.0, + 0.0, + 25.78053870968764, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "f8cb1c4e-4330-448c-8ff5-28506668c4d7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.492614490565694, + "Y": 25.78053870968764, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "23e022c3-af30-4ed9-8048-75769531bf68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 16.423007241509413, + 3.847433001135119E-15, + -1.0, + 0.0, + 25.03322356658962, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "23e022c3-af30-4ed9-8048-75769531bf68", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.423007241509413, + "Y": 25.03322356658962, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "b74d35bc-f135-4f00-90b5-cf360fd61179": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 25.78053870968764, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "b74d35bc-f135-4f00-90b5-cf360fd61179", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 25.78053870968764, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "50218dc1-e7fb-4348-a291-d03401e7c7b6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 25.03322356658962, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "50218dc1-e7fb-4348-a291-d03401e7c7b6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 25.03322356658962, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "39f80291-b3e1-4d37-b69b-6c23935b4b5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 25.78053870968764, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "39f80291-b3e1-4d37-b69b-6c23935b4b5d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 25.78053870968764, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "845ff5dc-bf48-4af0-b320-8390d86fd281": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 25.03322356658962, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "845ff5dc-bf48-4af0-b320-8390d86fd281", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 25.03322356658962, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2d7f01da-33b8-4563-936e-5a926fc07958": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 9.127024418619627, + 6.049014748177262E-16, + 1.0, + 0.0, + 25.78053870968764, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2d7f01da-33b8-4563-936e-5a926fc07958", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.127024418619627, + "Y": 25.78053870968764, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "623a747b-a708-49e2-839c-3d7591201155": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 10.057417169563346, + 3.847433001135119E-15, + -1.0, + 0.0, + 25.03322356658962, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "623a747b-a708-49e2-839c-3d7591201155", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.057417169563346, + "Y": 25.03322356658962, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8638bec2-528a-4f99-bebb-25d6975c1804": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 7.338494394637605, + 6.049014748177262E-16, + 1.0, + 0.0, + 25.78053870968764, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8638bec2-528a-4f99-bebb-25d6975c1804", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 7.338494394637605, + "Y": 25.78053870968764, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7c7f23d6-6ad5-4693-a71c-ed488fa7ad0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 8.268887145581324, + 3.847433001135119E-15, + -1.0, + 0.0, + 25.03322356658962, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7c7f23d6-6ad5-4693-a71c-ed488fa7ad0f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.268887145581324, + "Y": 25.03322356658962, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "06f47a1d-d89d-4a40-bc5c-b65d1bc19345": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 17.33610560536239, + -7.273661547324615E-16, + -1.0, + 0.0, + 25.751890664070466, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "06f47a1d-d89d-4a40-bc5c-b65d1bc19345", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.33610560536239, + "Y": 25.751890664070466, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c3131181-9794-4899-b8aa-fb9bfb03ed21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 16.405712854418674, + -3.724968321220384E-15, + 1.0, + 0.0, + 26.499205807168487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c3131181-9794-4899-b8aa-fb9bfb03ed21", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.405712854418674, + "Y": 26.499205807168487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "4d859bc3-1ad8-4cc4-96f8-111a9e0425a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 15.547575581380372, + -7.273661547324615E-16, + -1.0, + 0.0, + 25.751890664070466, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "4d859bc3-1ad8-4cc4-96f8-111a9e0425a8", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.547575581380372, + "Y": 25.751890664070466, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3d7feec3-695a-4095-b67d-adc24ee14043": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 14.617182830436652, + -3.724968321220384E-15, + 1.0, + 0.0, + 26.499205807168487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3d7feec3-695a-4095-b67d-adc24ee14043", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.617182830436652, + "Y": 26.499205807168487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "748eda88-d300-4fc8-be0f-28babceff8af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 13.759045557398348, + -7.273661547324615E-16, + -1.0, + 0.0, + 25.751890664070466, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "748eda88-d300-4fc8-be0f-28babceff8af", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.759045557398348, + "Y": 25.751890664070466, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "930f9a98-da88-47f7-96b3-01f3fb90c00b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 12.82865280645463, + -3.724968321220384E-15, + 1.0, + 0.0, + 26.499205807168487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "930f9a98-da88-47f7-96b3-01f3fb90c00b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.82865280645463, + "Y": 26.499205807168487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "029172df-62b4-46a9-8770-9f2f5b774a2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 10.970515533416327, + -7.273661547324615E-16, + -1.0, + 0.0, + 25.751890664070466, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "029172df-62b4-46a9-8770-9f2f5b774a2f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.970515533416327, + "Y": 25.751890664070466, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "758058ab-9669-4238-9329-609f24cb0966": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 10.040122782472608, + -3.724968321220384E-15, + 1.0, + 0.0, + 26.499205807168487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "758058ab-9669-4238-9329-609f24cb0966", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.040122782472608, + "Y": 26.499205807168487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5c6fa92e-c8e0-4b04-b5a1-367ff3fd5630": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 9.181985509434305, + -7.273661547324615E-16, + -1.0, + 0.0, + 25.751890664070466, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5c6fa92e-c8e0-4b04-b5a1-367ff3fd5630", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.181985509434305, + "Y": 25.751890664070466, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "fd654f06-f2c2-42fc-a90e-db1cb11cb993": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 8.251592758490586, + -3.724968321220384E-15, + 1.0, + 0.0, + 26.499205807168487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd654f06-f2c2-42fc-a90e-db1cb11cb993", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.251592758490586, + "Y": 26.499205807168487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "97cb683a-fc92-45bc-b0fe-d34e6f5bde07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 15.492614490565694, + 6.049014748177262E-16, + 1.0, + 0.0, + 29.716582960184404, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "97cb683a-fc92-45bc-b0fe-d34e6f5bde07", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.492614490565694, + "Y": 29.716582960184404, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7dc8512e-4932-4ee0-bd1c-f98a72c27452": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 16.423007241509413, + 3.847433001135119E-15, + -1.0, + 0.0, + 28.969267817086383, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7dc8512e-4932-4ee0-bd1c-f98a72c27452", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.423007241509413, + "Y": 28.969267817086383, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7553f384-9096-440b-8d97-6e48cd41d3da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 29.716582960184404, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7553f384-9096-440b-8d97-6e48cd41d3da", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 29.716582960184404, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "dd57dd91-a09c-4024-8a40-4f6237d26537": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 28.969267817086383, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dd57dd91-a09c-4024-8a40-4f6237d26537", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 28.969267817086383, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2d3c3f23-53cd-4d21-9c69-3ff857a2dcfd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 29.716582960184404, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2d3c3f23-53cd-4d21-9c69-3ff857a2dcfd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 29.716582960184404, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "0f32b4ea-7d02-47c2-9e71-d570651d9c03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 28.969267817086383, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0f32b4ea-7d02-47c2-9e71-d570651d9c03", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 28.969267817086383, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "09bcae56-de27-428e-bb2e-4f98b07eee5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 9.127024418619627, + 6.049014748177262E-16, + 1.0, + 0.0, + 29.716582960184404, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "09bcae56-de27-428e-bb2e-4f98b07eee5a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.127024418619627, + "Y": 29.716582960184404, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f94b207c-10ab-4187-a8e6-312ff323b90b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 10.057417169563346, + 3.847433001135119E-15, + -1.0, + 0.0, + 28.969267817086383, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f94b207c-10ab-4187-a8e6-312ff323b90b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.057417169563346, + "Y": 28.969267817086383, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2d94566f-d0ad-4bd2-8ba9-cc826272da18": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 7.338494394637605, + 6.049014748177262E-16, + 1.0, + 0.0, + 29.716582960184404, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2d94566f-d0ad-4bd2-8ba9-cc826272da18", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 7.338494394637605, + "Y": 29.716582960184404, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d348d03d-e9a3-4034-b984-de64e4430d8c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 8.268887145581324, + 3.847433001135119E-15, + -1.0, + 0.0, + 28.969267817086383, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d348d03d-e9a3-4034-b984-de64e4430d8c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.268887145581324, + "Y": 28.969267817086383, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "6b3d09bd-11f9-478c-a098-3369eb485f5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 17.33610560536239, + -7.273661547324615E-16, + -1.0, + 0.0, + 29.68793491456723, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6b3d09bd-11f9-478c-a098-3369eb485f5e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.33610560536239, + "Y": 29.68793491456723, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "5d91afc1-15dc-4557-a489-069e6426ae01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 16.405712854418674, + -3.724968321220384E-15, + 1.0, + 0.0, + 30.43525005766525, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5d91afc1-15dc-4557-a489-069e6426ae01", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.405712854418674, + "Y": 30.43525005766525, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a452e445-5863-4cfe-86ca-d87b0e421b3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 15.547575581380372, + -7.273661547324615E-16, + -1.0, + 0.0, + 29.68793491456723, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a452e445-5863-4cfe-86ca-d87b0e421b3f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.547575581380372, + "Y": 29.68793491456723, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1adff8a6-a915-4ba7-8ff9-fba529bcbb8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 14.617182830436652, + -3.724968321220384E-15, + 1.0, + 0.0, + 30.43525005766525, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1adff8a6-a915-4ba7-8ff9-fba529bcbb8a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.617182830436652, + "Y": 30.43525005766525, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a14add92-9d29-4ee4-97ce-159ca99a2030": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 13.759045557398348, + -7.273661547324615E-16, + -1.0, + 0.0, + 29.68793491456723, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a14add92-9d29-4ee4-97ce-159ca99a2030", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.759045557398348, + "Y": 29.68793491456723, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f3d37277-b53f-4d69-8f99-5c06091d9dca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 12.82865280645463, + -3.724968321220384E-15, + 1.0, + 0.0, + 30.43525005766525, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3d37277-b53f-4d69-8f99-5c06091d9dca", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.82865280645463, + "Y": 30.43525005766525, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "3259d703-c95b-48c4-afcf-946f79432197": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 10.970515533416327, + -7.273661547324615E-16, + -1.0, + 0.0, + 29.68793491456723, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "3259d703-c95b-48c4-afcf-946f79432197", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.970515533416327, + "Y": 29.68793491456723, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8d888e08-7f12-4330-92de-77556a8d789f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 10.040122782472608, + -3.724968321220384E-15, + 1.0, + 0.0, + 30.43525005766525, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d888e08-7f12-4330-92de-77556a8d789f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.040122782472608, + "Y": 30.43525005766525, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "18cce10b-ca29-464e-824c-47db942243f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 33.65262721068116, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "18cce10b-ca29-464e-824c-47db942243f3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 33.65262721068116, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "928e9fb7-20f0-4782-9be0-c6c314e2f0f6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 32.90531206758314, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "928e9fb7-20f0-4782-9be0-c6c314e2f0f6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 32.90531206758314, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "2d78eed5-d233-4f41-9332-9812f6c6b478": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 33.65262721068116, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "2d78eed5-d233-4f41-9332-9812f6c6b478", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 33.65262721068116, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3f7dfbee-178b-41fd-908f-f5d362c02908": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 32.90531206758314, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3f7dfbee-178b-41fd-908f-f5d362c02908", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 32.90531206758314, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "753df594-23dd-421c-a7e1-2aeb4c181859": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 15.547575581380372, + -7.273661547324615E-16, + -1.0, + 0.0, + 33.623979165063986, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "753df594-23dd-421c-a7e1-2aeb4c181859", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.547575581380372, + "Y": 33.623979165063986, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ed13863a-454e-4d67-a755-2962270747b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 14.617182830436652, + -3.724968321220384E-15, + 1.0, + 0.0, + 34.37129430816201, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ed13863a-454e-4d67-a755-2962270747b5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.617182830436652, + "Y": 34.37129430816201, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9321e86d-274b-4b09-b8d2-4dd9f93d18b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 13.759045557398348, + -7.273661547324615E-16, + -1.0, + 0.0, + 33.623979165063986, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9321e86d-274b-4b09-b8d2-4dd9f93d18b9", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.759045557398348, + "Y": 33.623979165063986, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "0343d415-8e54-4a60-bc43-9ca213a27c4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 12.82865280645463, + -3.724968321220384E-15, + 1.0, + 0.0, + 34.37129430816201, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0343d415-8e54-4a60-bc43-9ca213a27c4f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.82865280645463, + "Y": 34.37129430816201, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d99e2e9d-0596-4d05-a8b5-39015c08dd72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 15.492614490565694, + 6.049014748177262E-16, + 1.0, + 0.0, + 37.58867146117792, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "d99e2e9d-0596-4d05-a8b5-39015c08dd72", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.492614490565694, + "Y": 37.58867146117792, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "95d673ed-0a80-4959-a6e2-d5677652f3bf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 16.423007241509413, + 3.847433001135119E-15, + -1.0, + 0.0, + 36.841356318079896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "95d673ed-0a80-4959-a6e2-d5677652f3bf", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.423007241509413, + "Y": 36.841356318079896, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5e5f7e17-f264-43b1-8182-6d08143b7d1f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 37.58867146117792, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5e5f7e17-f264-43b1-8182-6d08143b7d1f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 37.58867146117792, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "df98081e-95bf-4146-b0fe-48bfee26f295": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 36.841356318079896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "df98081e-95bf-4146-b0fe-48bfee26f295", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 36.841356318079896, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "a7887714-9762-4f4f-a180-9244f0367ad6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 37.58867146117792, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "a7887714-9762-4f4f-a180-9244f0367ad6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 37.58867146117792, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "eefc2355-7799-47c4-9538-12f67b43e6b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 36.841356318079896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eefc2355-7799-47c4-9538-12f67b43e6b2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 36.841356318079896, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "39d1af65-977b-416a-aff1-a39a4074e5ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 9.127024418619627, + 6.049014748177262E-16, + 1.0, + 0.0, + 37.58867146117792, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "39d1af65-977b-416a-aff1-a39a4074e5ce", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.127024418619627, + "Y": 37.58867146117792, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4d381a45-d70b-478d-a08e-08116d51a40c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 10.057417169563346, + 3.847433001135119E-15, + -1.0, + 0.0, + 36.841356318079896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4d381a45-d70b-478d-a08e-08116d51a40c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.057417169563346, + "Y": 36.841356318079896, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "fb402c6f-f56d-42d1-90d2-ec881f1fa5bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 17.33610560536239, + -7.273661547324615E-16, + -1.0, + 0.0, + 37.56002341556074, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "fb402c6f-f56d-42d1-90d2-ec881f1fa5bc", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.33610560536239, + "Y": 37.56002341556074, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "2f5dda7f-0503-46eb-a942-54ca9b1705bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 16.405712854418674, + -3.724968321220384E-15, + 1.0, + 0.0, + 38.30733855865876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2f5dda7f-0503-46eb-a942-54ca9b1705bd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.405712854418674, + "Y": 38.30733855865876, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "47549055-f414-4123-abba-9a9555255eb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 15.547575581380372, + -7.273661547324615E-16, + -1.0, + 0.0, + 37.56002341556074, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "47549055-f414-4123-abba-9a9555255eb7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.547575581380372, + "Y": 37.56002341556074, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "15239b6d-1422-4717-ba49-52549a8b7ca6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 14.617182830436652, + -3.724968321220384E-15, + 1.0, + 0.0, + 38.30733855865876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "15239b6d-1422-4717-ba49-52549a8b7ca6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.617182830436652, + "Y": 38.30733855865876, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "55efbaf6-8f68-4260-b86d-cb2e86425918": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 13.759045557398348, + -7.273661547324615E-16, + -1.0, + 0.0, + 37.56002341556074, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "55efbaf6-8f68-4260-b86d-cb2e86425918", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.759045557398348, + "Y": 37.56002341556074, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "9425ca80-81aa-413a-bc51-ac3163904d2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 12.82865280645463, + -3.724968321220384E-15, + 1.0, + 0.0, + 38.30733855865876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9425ca80-81aa-413a-bc51-ac3163904d2e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.82865280645463, + "Y": 38.30733855865876, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "acd5edd0-3143-43e7-8e2b-272715f8f142": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 7.273661547324615E-16, + 0.0, + 10.970515533416327, + -7.273661547324615E-16, + -1.0, + 0.0, + 37.56002341556074, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "acd5edd0-3143-43e7-8e2b-272715f8f142", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.970515533416327, + "Y": 37.56002341556074, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "64da6176-3d01-4d95-b045-573be4081a67": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.724968321220384E-15, + 0.0, + 10.040122782472608, + -3.724968321220384E-15, + 1.0, + 0.0, + 38.30733855865876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "64da6176-3d01-4d95-b045-573be4081a67", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.040122782472608, + "Y": 38.30733855865876, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "637341c7-9977-49ff-b33f-1a0f0b654cd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 15.492614490565694, + 6.049014748177262E-16, + 1.0, + 0.0, + 41.52471571167468, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "637341c7-9977-49ff-b33f-1a0f0b654cd4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.492614490565694, + "Y": 41.52471571167468, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "ef7f2832-3215-4b65-b2a9-4dc7abda4d47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 16.423007241509413, + 3.847433001135119E-15, + -1.0, + 0.0, + 40.77740056857666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef7f2832-3215-4b65-b2a9-4dc7abda4d47", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.423007241509413, + "Y": 40.77740056857666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "9b6adf57-993f-4adf-81b7-e2615d345214": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 13.704084466583671, + 6.049014748177262E-16, + 1.0, + 0.0, + 41.52471571167468, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "9b6adf57-993f-4adf-81b7-e2615d345214", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.704084466583671, + "Y": 41.52471571167468, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "201f9305-50f0-43ca-a6bb-8eae2a638587": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 14.63447721752739, + 3.847433001135119E-15, + -1.0, + 0.0, + 40.77740056857666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "201f9305-50f0-43ca-a6bb-8eae2a638587", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.63447721752739, + "Y": 40.77740056857666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "62ceca65-745e-414c-8068-fe6153f42100": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 11.91555444260165, + 6.049014748177262E-16, + 1.0, + 0.0, + 41.52471571167468, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "62ceca65-745e-414c-8068-fe6153f42100", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 11.91555444260165, + "Y": 41.52471571167468, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "53ef8bc8-a80b-44da-8bbe-df156a406657": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 12.845947193545369, + 3.847433001135119E-15, + -1.0, + 0.0, + 40.77740056857666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "53ef8bc8-a80b-44da-8bbe-df156a406657", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 12.845947193545369, + "Y": 40.77740056857666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "4fe4267d-bf41-4fb7-aa11-36b9c386818f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -6.049014748177262E-16, + 0.0, + 9.127024418619627, + 6.049014748177262E-16, + 1.0, + 0.0, + 41.52471571167468, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "4fe4267d-bf41-4fb7-aa11-36b9c386818f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 9.127024418619627, + "Y": 41.52471571167468, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "b4a3ff97-0128-40fa-8bbc-f03112893f64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.847433001135119E-15, + 0.0, + 10.057417169563346, + 3.847433001135119E-15, + -1.0, + 0.0, + 40.77740056857666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b4a3ff97-0128-40fa-8bbc-f03112893f64", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.057417169563346, + "Y": 40.77740056857666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "bd57a04c-9ff5-4a1c-800a-6aa34fe3469d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 10.94303, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 10.94303, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 32.17028, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bd57a04c-9ff5-4a1c-800a-6aa34fe3469d", + "Name": null + }, + "dbb61606-4945-4829-92a6-303925addf9f": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 10.048764999999962, + "Y": 33.63830499999989, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 10.048764999999962, + "Y": 33.63830499999989, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "CollectedSpaces": [], + "ProgramName": "Open Collaboration", + "Boundary": "bd57a04c-9ff5-4a1c-800a-6aa34fe3469d", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 10.94303, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 10.94303, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 32.17028, + "Z": 0.0 + } + ] + } + ], + "Area": 5.251213506500051, + "Height": 3.0, + "Program Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Material": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 10.94303, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 10.94303, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 9.1545, + "Y": 32.17028, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dbb61606-4945-4829-92a6-303925addf9f", + "Name": "Open Collaboration", + "Parent Level Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510" + }, + "8fc97397-e70c-48af-a8e2-9c888f9bc55c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.30863, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 17.30863, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 32.17028, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8fc97397-e70c-48af-a8e2-9c888f9bc55c", + "Name": null + }, + "e991e070-8fb7-4d17-a0ca-6d64b838c2bd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 16.41436500000008, + "Y": 33.63830500000016, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 16.41436500000008, + "Y": 33.63830500000016, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "CollectedSpaces": [], + "ProgramName": "Open Collaboration", + "Boundary": "8fc97397-e70c-48af-a8e2-9c888f9bc55c", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.30863, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 17.30863, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 32.17028, + "Z": 0.0 + } + ] + } + ], + "Area": 5.251213506499937, + "Height": 3.0, + "Program Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Material": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.30863, + "Y": 32.17028, + "Z": 0.0 + }, + { + "X": 17.30863, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 35.10633, + "Z": 0.0 + }, + { + "X": 15.5201, + "Y": 32.17028, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e991e070-8fb7-4d17-a0ca-6d64b838c2bd", + "Name": "Open Collaboration", + "Parent Level Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510" + }, + "14efea80-02aa-4c5c-9d9e-496be6bb50f5": { + "discriminator": "Elements.SpaceMetric", + "Space": "95d3743d-9b47-4a6c-bbc0-653da1ae4e49", + "Seats": 45.0, + "Headcount": 45.0, + "Desks": 45.0, + "Collaboration Seats": 0.0, + "Id": "14efea80-02aa-4c5c-9d9e-496be6bb50f5", + "Name": null + }, + "2901d2aa-633d-47e3-b3c7-c4358d1e5ee2": { + "discriminator": "Elements.ElementProxy", + "elementId": "b86ae247-6bf0-4d23-ae9b-cbd4085de406", + "dependency": "Space Settings", + "Id": "2901d2aa-633d-47e3-b3c7-c4358d1e5ee2", + "Name": null, + "Desk Type": "Simple Desk - 29x70", + "Integrated Collaboration Space Density": 0.2, + "Aisle Width": 1.0, + "Grid Rotation": 0.0 + }, + "1400e1af-52a9-41f7-ade1-2f7121801fe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.72710052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 28.41488447818493, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1400e1af-52a9-41f7-ade1-2f7121801fe7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.72710052142531, + "Y": 28.41488447818493, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "edec38d6-2492-45ac-8ec3-f3c6d64c10e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.79670777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 29.16219962128295, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "edec38d6-2492-45ac-8ec3-f3c6d64c10e7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.79670777048159, + "Y": 29.16219962128295, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "bdf237ec-2907-4f9c-99b2-d07bd37b55c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.51563054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 28.41488447818493, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "bdf237ec-2907-4f9c-99b2-d07bd37b55c2", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.51563054540733, + "Y": 28.41488447818493, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "cc848b1f-ce33-46d8-9dbd-165f69205e33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.58523779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 29.16219962128295, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cc848b1f-ce33-46d8-9dbd-165f69205e33", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.58523779446361, + "Y": 29.16219962128295, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7636b8fd-53b2-46e7-9b71-c875f9b4ccf0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.30416056938935, + -6.049014748177262E-16, + -1.0, + 0.0, + 28.41488447818493, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7636b8fd-53b2-46e7-9b71-c875f9b4ccf0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.30416056938935, + "Y": 28.41488447818493, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "f89e0c35-0e39-4d93-9892-61807e50f14a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.37376781844563, + -3.847433001135119E-15, + 1.0, + 0.0, + 29.16219962128295, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f89e0c35-0e39-4d93-9892-61807e50f14a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.37376781844563, + "Y": 29.16219962128295, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1f0497b5-a4f2-4743-833c-fe5d3fe88700": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.09269059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 28.41488447818493, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1f0497b5-a4f2-4743-833c-fe5d3fe88700", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.09269059337139, + "Y": 28.41488447818493, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c3fa25dd-a96e-44a1-8617-dcb8db2c7b80": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.16229784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 29.16219962128295, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c3fa25dd-a96e-44a1-8617-dcb8db2c7b80", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.16229784242766, + "Y": 29.16219962128295, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c3228a5d-447c-42a7-a700-45deeafb005c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.88360940662861, + 7.273661547324615E-16, + 1.0, + 0.0, + 28.443532523802105, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c3228a5d-447c-42a7-a700-45deeafb005c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.88360940662861, + "Y": 28.443532523802105, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "6b9fff69-2286-4bc4-99d7-9f9dc33bb229": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.81400215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 27.696217380704084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6b9fff69-2286-4bc4-99d7-9f9dc33bb229", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.81400215757233, + "Y": 27.696217380704084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7fefaf84-d5e3-4858-a341-d01003a9d930": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.67213943061063, + 7.273661547324615E-16, + 1.0, + 0.0, + 28.443532523802105, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7fefaf84-d5e3-4858-a341-d01003a9d930", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.67213943061063, + "Y": 28.443532523802105, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d6de087d-7946-4db7-8823-a9025a3bacc1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.60253218155435, + 3.724968321220384E-15, + -1.0, + 0.0, + 27.696217380704084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d6de087d-7946-4db7-8823-a9025a3bacc1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.60253218155435, + "Y": 27.696217380704084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "20887115-5261-4b46-a969-7240ceb796e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.46066945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 28.443532523802105, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "20887115-5261-4b46-a969-7240ceb796e6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.46066945459266, + "Y": 28.443532523802105, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c99d2736-dc2c-40d7-ba8d-50152befeed5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.39106220553639, + 3.724968321220384E-15, + -1.0, + 0.0, + 27.696217380704084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c99d2736-dc2c-40d7-ba8d-50152befeed5", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39106220553639, + "Y": 27.696217380704084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "30f0a37f-5080-4160-9e9c-3dc88eaa0158": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.24919947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 28.443532523802105, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "30f0a37f-5080-4160-9e9c-3dc88eaa0158", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.24919947857468, + "Y": 28.443532523802105, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "56739806-0971-46fe-bc9e-5a797c04f18d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.1795922295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 27.696217380704084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "56739806-0971-46fe-bc9e-5a797c04f18d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.1795922295184, + "Y": 27.696217380704084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "16941abe-9cde-4471-a0a5-8395e2adbe86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.72710052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 24.478840227688174, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "16941abe-9cde-4471-a0a5-8395e2adbe86", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.72710052142531, + "Y": 24.478840227688174, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7e4107f0-d215-4661-aa44-21951cee3277": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.79670777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 25.226155370786195, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e4107f0-d215-4661-aa44-21951cee3277", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.79670777048159, + "Y": 25.226155370786195, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "39b5802d-b6cf-4a98-b7b9-928e4627976d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.51563054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 24.478840227688174, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "39b5802d-b6cf-4a98-b7b9-928e4627976d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.51563054540733, + "Y": 24.478840227688174, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "8e51ead9-d507-45c0-a8a8-2b5e7f5d6f01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.58523779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 25.226155370786195, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e51ead9-d507-45c0-a8a8-2b5e7f5d6f01", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.58523779446361, + "Y": 25.226155370786195, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "6cdb5925-9695-43e5-a5b3-bd05a9d22cc7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.30416056938935, + -6.049014748177262E-16, + -1.0, + 0.0, + 24.478840227688174, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "6cdb5925-9695-43e5-a5b3-bd05a9d22cc7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.30416056938935, + "Y": 24.478840227688174, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "b4e12470-f802-46ba-b638-6773dc2b89ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.37376781844563, + -3.847433001135119E-15, + 1.0, + 0.0, + 25.226155370786195, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b4e12470-f802-46ba-b638-6773dc2b89ed", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.37376781844563, + "Y": 25.226155370786195, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "f4e1f317-f002-41bb-94e5-1045bf4b3a46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.09269059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 24.478840227688174, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "f4e1f317-f002-41bb-94e5-1045bf4b3a46", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.09269059337139, + "Y": 24.478840227688174, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4bb2ad24-53d6-4b98-bc37-9c1ad478c6a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.16229784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 25.226155370786195, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4bb2ad24-53d6-4b98-bc37-9c1ad478c6a6", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.16229784242766, + "Y": 25.226155370786195, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "707d9e48-aee8-4334-aa4e-5a90097a52db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.88360940662861, + 7.273661547324615E-16, + 1.0, + 0.0, + 24.50748827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "707d9e48-aee8-4334-aa4e-5a90097a52db", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.88360940662861, + "Y": 24.50748827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "77409f5f-81ea-42cd-af2b-bd9dba7bb5e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.81400215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 23.760173130207328, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "77409f5f-81ea-42cd-af2b-bd9dba7bb5e0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.81400215757233, + "Y": 23.760173130207328, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "0384676c-3bdf-4adf-aecd-7d67ab5f3201": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.67213943061063, + 7.273661547324615E-16, + 1.0, + 0.0, + 24.50748827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "0384676c-3bdf-4adf-aecd-7d67ab5f3201", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.67213943061063, + "Y": 24.50748827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "cf6f97ac-79d4-4b53-b0ef-3e127d70ef61": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.60253218155435, + 3.724968321220384E-15, + -1.0, + 0.0, + 23.760173130207328, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cf6f97ac-79d4-4b53-b0ef-3e127d70ef61", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.60253218155435, + "Y": 23.760173130207328, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "856bd692-c96f-4123-9426-c344b31625ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.46066945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 24.50748827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "856bd692-c96f-4123-9426-c344b31625ec", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.46066945459266, + "Y": 24.50748827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4d77a7fb-0421-41bc-bbe5-ed895897ae92": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.39106220553639, + 3.724968321220384E-15, + -1.0, + 0.0, + 23.760173130207328, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4d77a7fb-0421-41bc-bbe5-ed895897ae92", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39106220553639, + "Y": 23.760173130207328, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "71635413-72b6-4234-91d8-0396da5ff32d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.24919947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 24.50748827330535, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "71635413-72b6-4234-91d8-0396da5ff32d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.24919947857468, + "Y": 24.50748827330535, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "fdf56639-6dab-48d5-b8ac-c2551ea24f16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.1795922295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 23.760173130207328, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fdf56639-6dab-48d5-b8ac-c2551ea24f16", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.1795922295184, + "Y": 23.760173130207328, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "db8afce5-1225-4a64-91cf-d0732f14641a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.72710052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 20.54279597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "db8afce5-1225-4a64-91cf-d0732f14641a", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.72710052142531, + "Y": 20.54279597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a26b7970-5921-45c7-8bd3-62b474ba6544": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.79670777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 21.29011112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a26b7970-5921-45c7-8bd3-62b474ba6544", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.79670777048159, + "Y": 21.29011112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ed53d6d8-7272-4e63-ad36-d07875c6e104": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.51563054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 20.54279597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ed53d6d8-7272-4e63-ad36-d07875c6e104", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.51563054540733, + "Y": 20.54279597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "39fbf159-5f85-46ae-80ce-ca97a200e3f0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.58523779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 21.29011112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "39fbf159-5f85-46ae-80ce-ca97a200e3f0", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.58523779446361, + "Y": 21.29011112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "7e7a89d2-f3aa-4a50-9f4f-a82edc0c8f75": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.30416056938935, + -6.049014748177262E-16, + -1.0, + 0.0, + 20.54279597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "7e7a89d2-f3aa-4a50-9f4f-a82edc0c8f75", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.30416056938935, + "Y": 20.54279597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3924476a-6408-4e9d-8845-6339e0a0b732": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.37376781844563, + -3.847433001135119E-15, + 1.0, + 0.0, + 21.29011112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3924476a-6408-4e9d-8845-6339e0a0b732", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.37376781844563, + "Y": 21.29011112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8c82dcc2-aae7-45b3-ac98-df93e34c0d68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.09269059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 20.54279597719141, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8c82dcc2-aae7-45b3-ac98-df93e34c0d68", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.09269059337139, + "Y": 20.54279597719141, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "6a877509-f642-4800-8dfe-92188f47da2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.16229784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 21.29011112028943, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6a877509-f642-4800-8dfe-92188f47da2e", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.16229784242766, + "Y": 21.29011112028943, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "57632cfd-75a0-4199-b34c-eca476c0a311": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.88360940662861, + 7.273661547324615E-16, + 1.0, + 0.0, + 20.571444022808585, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "57632cfd-75a0-4199-b34c-eca476c0a311", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.88360940662861, + "Y": 20.571444022808585, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "226834e6-ceaf-4195-9994-ee005554cac4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.81400215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 19.824128879710564, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "226834e6-ceaf-4195-9994-ee005554cac4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.81400215757233, + "Y": 19.824128879710564, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "f5769f46-ede2-4526-91f0-48581b09ace4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.67213943061063, + 7.273661547324615E-16, + 1.0, + 0.0, + 20.571444022808585, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "f5769f46-ede2-4526-91f0-48581b09ace4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.67213943061063, + "Y": 20.571444022808585, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a6880998-0d34-4ad1-9e73-ce44508e508d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.60253218155435, + 3.724968321220384E-15, + -1.0, + 0.0, + 19.824128879710564, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6880998-0d34-4ad1-9e73-ce44508e508d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.60253218155435, + "Y": 19.824128879710564, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "dbd6ff6c-ef61-4f96-9353-14083b563600": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.46066945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 20.571444022808585, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "dbd6ff6c-ef61-4f96-9353-14083b563600", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.46066945459266, + "Y": 20.571444022808585, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d99c751a-6a96-4411-b52a-58713953a6c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.39106220553639, + 3.724968321220384E-15, + -1.0, + 0.0, + 19.824128879710564, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d99c751a-6a96-4411-b52a-58713953a6c9", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39106220553639, + "Y": 19.824128879710564, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "c7b28ca7-b293-4f09-9ec8-90d528e71c3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.24919947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 20.571444022808585, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "c7b28ca7-b293-4f09-9ec8-90d528e71c3c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.24919947857468, + "Y": 20.571444022808585, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "010a1169-3b5f-4b2b-a1a6-86061ff2484c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.1795922295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 19.824128879710564, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "010a1169-3b5f-4b2b-a1a6-86061ff2484c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.1795922295184, + "Y": 19.824128879710564, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "3c7f852f-649a-44f5-be30-e2168aa478b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.51563054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 16.606751726694654, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "3c7f852f-649a-44f5-be30-e2168aa478b3", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.51563054540733, + "Y": 16.606751726694654, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "a1bab12b-11f6-4eeb-bc8a-0d138fccc201": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.58523779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 17.354066869792675, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a1bab12b-11f6-4eeb-bc8a-0d138fccc201", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.58523779446361, + "Y": 17.354066869792675, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "01616966-7e0c-4fad-a086-d5a5599bc994": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.30416056938935, + -6.049014748177262E-16, + -1.0, + 0.0, + 16.606751726694654, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "01616966-7e0c-4fad-a086-d5a5599bc994", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.30416056938935, + "Y": 16.606751726694654, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "528fee5c-ab99-472a-b6df-ed79376d76ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.37376781844563, + -3.847433001135119E-15, + 1.0, + 0.0, + 17.354066869792675, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "528fee5c-ab99-472a-b6df-ed79376d76ee", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.37376781844563, + "Y": 17.354066869792675, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "087da996-4eef-4a62-aad8-47251d9b024f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.09269059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 16.606751726694654, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "087da996-4eef-4a62-aad8-47251d9b024f", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.09269059337139, + "Y": 16.606751726694654, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "7acfff41-514f-4867-b86c-fa88df9d0ae1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.16229784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 17.354066869792675, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7acfff41-514f-4867-b86c-fa88df9d0ae1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.16229784242766, + "Y": 17.354066869792675, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ab06a588-fb01-4808-856e-013e83135a2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.67213943061063, + 7.273661547324615E-16, + 1.0, + 0.0, + 16.63539977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ab06a588-fb01-4808-856e-013e83135a2c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.67213943061063, + "Y": 16.63539977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "96d54729-b6f7-442a-bfdb-916c81b99a36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.60253218155435, + 3.724968321220384E-15, + -1.0, + 0.0, + 15.888084629213807, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "96d54729-b6f7-442a-bfdb-916c81b99a36", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.60253218155435, + "Y": 15.888084629213807, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "cb2134d8-0b4e-4948-9352-31a418eaf659": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.46066945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 16.63539977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "cb2134d8-0b4e-4948-9352-31a418eaf659", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.46066945459266, + "Y": 16.63539977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "bff960dc-ade0-4d6d-98ac-a8b9e080be19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.39106220553639, + 3.724968321220384E-15, + -1.0, + 0.0, + 15.888084629213807, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bff960dc-ade0-4d6d-98ac-a8b9e080be19", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39106220553639, + "Y": 15.888084629213807, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "06bbeb81-ed63-43a2-a677-b681ac7c3bf1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.24919947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 16.63539977231183, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "06bbeb81-ed63-43a2-a677-b681ac7c3bf1", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.24919947857468, + "Y": 16.63539977231183, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "70609d9d-ba4f-4d8a-b9f7-3681c0f9802d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.1795922295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 15.888084629213807, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "70609d9d-ba4f-4d8a-b9f7-3681c0f9802d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.1795922295184, + "Y": 15.888084629213807, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1e798b8d-e207-40dd-a7df-d6b86ee93d66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 74.72710052142531, + -6.049014748177262E-16, + -1.0, + 0.0, + 12.670707476197894, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1e798b8d-e207-40dd-a7df-d6b86ee93d66", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.72710052142531, + "Y": 12.670707476197894, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "c1e82834-566f-4db3-89e8-12029659152d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 73.79670777048159, + -3.847433001135119E-15, + 1.0, + 0.0, + 13.418022619295915, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c1e82834-566f-4db3-89e8-12029659152d", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.79670777048159, + "Y": 13.418022619295915, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "5949253a-86dc-4c35-8e1f-24d856e6289b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 76.51563054540733, + -6.049014748177262E-16, + -1.0, + 0.0, + 12.670707476197894, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "5949253a-86dc-4c35-8e1f-24d856e6289b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.51563054540733, + "Y": 12.670707476197894, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "94153996-33d2-4071-80e3-13f2aa537f71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 75.58523779446361, + -3.847433001135119E-15, + 1.0, + 0.0, + 13.418022619295915, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "94153996-33d2-4071-80e3-13f2aa537f71", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.58523779446361, + "Y": 13.418022619295915, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "8045578e-42d9-49d2-9f2d-8382ef7c6318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 78.30416056938935, + -6.049014748177262E-16, + -1.0, + 0.0, + 12.670707476197894, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "8045578e-42d9-49d2-9f2d-8382ef7c6318", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.30416056938935, + "Y": 12.670707476197894, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "3cc90135-0986-4fe7-a4cd-3fe4590520e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 77.37376781844563, + -3.847433001135119E-15, + 1.0, + 0.0, + 13.418022619295915, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3cc90135-0986-4fe7-a4cd-3fe4590520e4", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.37376781844563, + "Y": 13.418022619295915, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1716667b-c17e-4ee4-b29b-7b97331e7a55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.049014748177262E-16, + 0.0, + 80.09269059337139, + -6.049014748177262E-16, + -1.0, + 0.0, + 12.670707476197894, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1716667b-c17e-4ee4-b29b-7b97331e7a55", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 80.09269059337139, + "Y": 12.670707476197894, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1acb0b43-82de-4c35-a7eb-8648ee0105f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.847433001135119E-15, + 0.0, + 79.16229784242766, + -3.847433001135119E-15, + 1.0, + 0.0, + 13.418022619295915, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1acb0b43-82de-4c35-a7eb-8648ee0105f7", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.16229784242766, + "Y": 13.418022619295915, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "1d792dcb-f4b6-4dff-baa4-ce4795fed716": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 72.88360940662861, + 7.273661547324615E-16, + 1.0, + 0.0, + 12.699355521815068, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "1d792dcb-f4b6-4dff-baa4-ce4795fed716", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 72.88360940662861, + "Y": 12.699355521815068, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "1d32407c-c103-470c-8ecf-8c583c6e28fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 73.81400215757233, + 3.724968321220384E-15, + -1.0, + 0.0, + 11.952040378717047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1d32407c-c103-470c-8ecf-8c583c6e28fd", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.81400215757233, + "Y": 11.952040378717047, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "ae1fcafb-f6ef-4c00-822d-75df678ce673": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 74.67213943061063, + 7.273661547324615E-16, + 1.0, + 0.0, + 12.699355521815068, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "ae1fcafb-f6ef-4c00-822d-75df678ce673", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 74.67213943061063, + "Y": 12.699355521815068, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "4a50f8d2-739c-495e-8510-4f77e198e46b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 75.60253218155435, + 3.724968321220384E-15, + -1.0, + 0.0, + 11.952040378717047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4a50f8d2-739c-495e-8510-4f77e198e46b", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 75.60253218155435, + "Y": 11.952040378717047, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "3d87f681-d400-40d7-8f4d-cac571124a57": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 76.46066945459266, + 7.273661547324615E-16, + 1.0, + 0.0, + 12.699355521815068, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "3d87f681-d400-40d7-8f4d-cac571124a57", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 76.46066945459266, + "Y": 12.699355521815068, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "d64dfefa-89b5-4071-8404-7cc7fb281980": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 77.39106220553639, + 3.724968321220384E-15, + -1.0, + 0.0, + 11.952040378717047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d64dfefa-89b5-4071-8404-7cc7fb281980", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 77.39106220553639, + "Y": 11.952040378717047, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "27dc882a-d954-493a-9826-a4b0efe54f2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bfd07eab-38a3-477a-97db-c64498ffa228", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -7.273661547324615E-16, + 0.0, + 78.24919947857468, + 7.273661547324615E-16, + 1.0, + 0.0, + 12.699355521815068, + 0.0, + 0.0, + 1.0, + -1.353583911622991E-16 + ] + } + }, + "Id": "27dc882a-d954-493a-9826-a4b0efe54f2c", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 78.24919947857468, + "Y": 12.699355521815068, + "Z": -1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/042f4a8a-577b-4a4f-b8b7-762861e616d3.glb" + }, + "106ef079-bd41-41dc-9be8-dd32797b0f31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7e22c64d-ec85-41da-932c-71b18af83901", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.724968321220384E-15, + 0.0, + 79.1795922295184, + 3.724968321220384E-15, + -1.0, + 0.0, + 11.952040378717047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "106ef079-bd41-41dc-9be8-dd32797b0f31", + "Name": null, + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 79.1795922295184, + "Y": 11.952040378717047, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/306f5daa-edd9-48bd-8a7a-635239b8fac5.glb" + }, + "d435f5c3-cd80-4afd-b6dd-7e6c5f3a275e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.69962, + "Y": 15.15305, + "Z": 0.0 + }, + { + "X": 74.69962, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 15.15305, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d435f5c3-cd80-4afd-b6dd-7e6c5f3a275e", + "Name": null + }, + "1961ccb5-ed3a-4477-a946-bbb243e9e432": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 73.80535500000038, + "Y": 16.621075000000097, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 73.80535500000038, + "Y": 16.621075000000097, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "CollectedSpaces": [], + "ProgramName": "Open Collaboration", + "Boundary": "d435f5c3-cd80-4afd-b6dd-7e6c5f3a275e", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.69962, + "Y": 15.15305, + "Z": 0.0 + }, + { + "X": 74.69962, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 15.15305, + "Z": 0.0 + } + ] + } + ], + "Area": 5.25121350649988, + "Height": 3.0, + "Program Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Material": "e69336dd-3efb-4cb2-bfde-bc558200e886", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.69962, + "Y": 15.15305, + "Z": 0.0 + }, + { + "X": 74.69962, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 18.0891, + "Z": 0.0 + }, + { + "X": 72.91109, + "Y": 15.15305, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1961ccb5-ed3a-4477-a946-bbb243e9e432", + "Name": "Open Collaboration", + "Parent Level Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510" + }, + "bb466fcc-07c3-448b-9c25-7dea3fb6a2a0": { + "discriminator": "Elements.SpaceMetric", + "Space": "b86ae247-6bf0-4d23-ae9b-cbd4085de406", + "Seats": 38.0, + "Headcount": 38.0, + "Desks": 38.0, + "Collaboration Seats": 0.0, + "Id": "bb466fcc-07c3-448b-9c25-7dea3fb6a2a0", + "Name": null + }, + "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Name": "Default Material" + }, + "a2481acc-d347-4aa0-b016-2bf7857e9e21": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a2481acc-d347-4aa0-b016-2bf7857e9e21", + "Name": null + }, + "e4caa1e1-025d-4d43-93d3-da271a4d78fc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e4caa1e1-025d-4d43-93d3-da271a4d78fc", + "Name": null + }, + "3875010c-510e-4f6c-8741-f1d4b2b5c4f1": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e4caa1e1-025d-4d43-93d3-da271a4d78fc", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Name": null + }, + "fcb9576d-8061-4f0d-a8be-73e548a9d788": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7933533292038171, + -0.608761443458125, + 0.0, + 83.6772845490954, + 0.608761443458125, + -0.7933533292038171, + 0.0, + 38.55575283802621, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fcb9576d-8061-4f0d-a8be-73e548a9d788", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.6772845490954, + "Y": 38.55575283802621, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "4f552c6e-4b1d-4f80-81da-53ebb93c2388": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7933533824234261, + 0.6087613741009765, + 0.0, + 84.4762629701061, + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 38.60419119900021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4f552c6e-4b1d-4f80-81da-53ebb93c2388", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.4762629701061, + "Y": 38.60419119900021, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "f709b05f-6943-49f0-b206-3c110a7a6d79": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7256874888718275, + -0.6880244679478349, + 0.0, + 83.6481108268951, + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 39.47001058652344, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f709b05f-6943-49f0-b206-3c110a7a6d79", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.6481108268951, + "Y": 39.47001058652344, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "fb7546e1-857e-4c03-abb9-9ef9ecf30c49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7010910727704015, + 0.7130717409080575, + 0.0, + 84.5096424091947, + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 39.48592820147202, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fb7546e1-857e-4c03-abb9-9ef9ecf30c49", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.5096424091947, + "Y": 39.48592820147202, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "33f3cf32-8d98-4083-94fa-e5509caa47e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "33f3cf32-8d98-4083-94fa-e5509caa47e5", + "Name": null + }, + "90ff09fd-21e3-4ebe-92fc-495ab6e5d37f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "90ff09fd-21e3-4ebe-92fc-495ab6e5d37f", + "Name": null + }, + "82af9942-b44d-475d-81d1-d1a3115776ff": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "90ff09fd-21e3-4ebe-92fc-495ab6e5d37f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Name": null + }, + "b15b7c40-2d47-482d-be47-272f807d5e1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.849031556809838E-15, + 1.0, + 0.0, + 83.98267541137471, + -1.0, + -1.849031556809838E-15, + 0.0, + 38.986056421074366, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b15b7c40-2d47-482d-be47-272f807d5e1d", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.98267541137471, + "Y": 38.986056421074366, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "99d47a84-86b2-41ae-b9c0-4304e3b544ec": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "99d47a84-86b2-41ae-b9c0-4304e3b544ec", + "Name": null + }, + "93920413-80cb-41f4-81a4-0555f0dbf489": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "93920413-80cb-41f4-81a4-0555f0dbf489", + "Name": null + }, + "e55e3783-2c97-4db8-866b-5609954b5736": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "93920413-80cb-41f4-81a4-0555f0dbf489", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e55e3783-2c97-4db8-866b-5609954b5736", + "Name": null + }, + "67d60ed3-7bff-46b8-ab07-393cab7e927c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.511968260235496E-15, + 0.0, + 85.09093291354614, + 6.511968260235496E-15, + -1.0, + 0.0, + 37.260785918398184, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "67d60ed3-7bff-46b8-ab07-393cab7e927c", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 85.09093291354614, + "Y": 37.260785918398184, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "7c7b534f-4c30-4294-a50b-a850c1f1db5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 2.182098464197385E-15, + 0.0, + 83.26213291354614, + -2.182098464197385E-15, + 1.0, + 0.0, + 40.870013348789726, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7c7b534f-4c30-4294-a50b-a850c1f1db5a", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.26213291354614, + "Y": 40.870013348789726, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "09fe0b2f-691e-46e1-b097-a7618a13de30": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "09fe0b2f-691e-46e1-b097-a7618a13de30", + "Name": null + }, + "52965839-f0ec-49ac-bb13-3a26bed7d55c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "52965839-f0ec-49ac-bb13-3a26bed7d55c", + "Name": null + }, + "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "52965839-f0ec-49ac-bb13-3a26bed7d55c", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Name": null + }, + "fc3bc83a-7b32-4a80-99aa-5995c05ea0ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.369815936765756E-15, + 0.0, + 83.26613485190201, + 2.369815936765756E-15, + 1.0, + 0.0, + 40.833499881425006, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "fc3bc83a-7b32-4a80-99aa-5995c05ea0ec", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.26613485190201, + "Y": 40.833499881425006, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "c0a64f09-87a6-4e63-a871-9c9aefd63b4a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c0a64f09-87a6-4e63-a871-9c9aefd63b4a", + "Name": null + }, + "68980fd8-031e-4522-9647-49ec4d8d5fbc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "68980fd8-031e-4522-9647-49ec4d8d5fbc", + "Name": null + }, + "db8206c2-36ae-415f-95d0-ec4ad2dcc192": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "68980fd8-031e-4522-9647-49ec4d8d5fbc", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Name": null + }, + "63db73ad-cd30-457b-8da6-6d00e81c9a5b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.400945957772979E-15, + 0.0, + 81.98360492391654, + 6.400945957772979E-15, + -1.0, + 0.0, + 40.62986997382351, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "63db73ad-cd30-457b-8da6-6d00e81c9a5b", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 81.98360492391654, + "Y": 40.62986997382351, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "e5f778a9-b745-4fde-9a0b-7f79382c3f8f": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "fcb9576d-8061-4f0d-a8be-73e548a9d788", + "4f552c6e-4b1d-4f80-81da-53ebb93c2388", + "f709b05f-6943-49f0-b206-3c110a7a6d79", + "fb7546e1-857e-4c03-abb9-9ef9ecf30c49", + "b15b7c40-2d47-482d-be47-272f807d5e1d", + "67d60ed3-7bff-46b8-ab07-393cab7e927c", + "7c7b534f-4c30-4294-a50b-a850c1f1db5a", + "fc3bc83a-7b32-4a80-99aa-5995c05ea0ec", + "63db73ad-cd30-457b-8da6-6d00e81c9a5b" + ], + "Id": "e5f778a9-b745-4fde-9a0b-7f79382c3f8f", + "Name": null + }, + "1c53847a-c884-48ee-8802-1714952361d9": { + "discriminator": "Elements.SpaceMetric", + "Space": "0c1e3c8e-17ad-4fd3-ba69-c8609cc5a13e", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "1c53847a-c884-48ee-8802-1714952361d9", + "Name": null + }, + "e64af9e0-7b3e-4857-9932-ce3ef67a6139": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.608761443458125, + -0.7933533292038171, + 0.0, + 24.501238809405532, + 0.7933533292038171, + 0.608761443458125, + 0.0, + 47.60572545090306, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e64af9e0-7b3e-4857-9932-ce3ef67a6139", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 24.501238809405532, + "Y": 47.60572545090306, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "a21a4df5-b967-408f-83aa-524900ed994d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 24.549677170379535, + 0.7933533824234261, + -0.6087613741009765, + 0.0, + 46.80674702989235, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a21a4df5-b967-408f-83aa-524900ed994d", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 24.549677170379535, + "Y": 46.80674702989235, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "6e36922a-c39f-4799-be26-f19e072b5fb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 25.415496557902767, + -0.7256874888718275, + 0.6880244679478349, + 0.0, + 47.63489917310335, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6e36922a-c39f-4799-be26-f19e072b5fb3", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.415496557902767, + "Y": 47.63489917310335, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "4737a4bd-6787-416c-904c-7ea484a26952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 25.431414172851344, + -0.7010910727704015, + -0.7130717409080575, + 0.0, + 46.77336759080376, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4737a4bd-6787-416c-904c-7ea484a26952", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.431414172851344, + "Y": 46.77336759080376, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "84ef8a55-4164-457b-912a-014e67c2e980": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.78779921685247E-15, + 0.0, + 24.93154239245369, + 1.78779921685247E-15, + -1.0, + 0.0, + 47.30033458862375, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "84ef8a55-4164-457b-912a-014e67c2e980", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 24.93154239245369, + "Y": 47.30033458862375, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "f30b8cb3-1113-4e4e-b240-a2c3f6ccb3be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 23.06602991826133, + 1.0, + 6.450735920278128E-15, + 0.0, + 46.192077086452755, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f30b8cb3-1113-4e4e-b240-a2c3f6ccb3be", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.06602991826133, + "Y": 46.192077086452755, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "b1e8a885-ced8-496c-949d-5b218e1abdfb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -2.120866124240017E-15, + 1.0, + 0.0, + 26.955741291684873, + -1.0, + -2.120866124240017E-15, + 0.0, + 48.020877086452764, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1e8a885-ced8-496c-949d-5b218e1abdfb", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.955741291684873, + "Y": 48.020877086452764, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "f8fd590d-d645-4766-a4db-c54d5071e65d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 2.431048276723124E-15, + 1.0, + 0.0, + 26.919227824320153, + -1.0, + 2.431048276723124E-15, + 0.0, + 48.016875148096894, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "f8fd590d-d645-4766-a4db-c54d5071e65d", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.919227824320153, + "Y": 48.016875148096894, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "07ac3ed9-1bed-40c6-b97d-9c4930ea13ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + 6.339713617815612E-15, + -1.0, + 0.0, + 26.715597916718657, + 1.0, + 6.339713617815612E-15, + 0.0, + 50.23274507608345, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "07ac3ed9-1bed-40c6-b97d-9c4930ea13ad", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.715597916718657, + "Y": 50.23274507608345, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "599ade94-1d60-431d-871e-c0dd85551cbc": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "e64af9e0-7b3e-4857-9932-ce3ef67a6139", + "a21a4df5-b967-408f-83aa-524900ed994d", + "6e36922a-c39f-4799-be26-f19e072b5fb3", + "4737a4bd-6787-416c-904c-7ea484a26952", + "84ef8a55-4164-457b-912a-014e67c2e980", + "f30b8cb3-1113-4e4e-b240-a2c3f6ccb3be", + "b1e8a885-ced8-496c-949d-5b218e1abdfb", + "f8fd590d-d645-4766-a4db-c54d5071e65d", + "07ac3ed9-1bed-40c6-b97d-9c4930ea13ad" + ], + "Id": "599ade94-1d60-431d-871e-c0dd85551cbc", + "Name": null + }, + "5dc1348e-9067-4c7e-9358-053d37f8f149": { + "discriminator": "Elements.SpaceMetric", + "Space": "f91ef1e3-22d1-434b-b933-95fe79b9a849", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "5dc1348e-9067-4c7e-9358-053d37f8f149", + "Name": null + }, + "264feece-def2-4533-81a8-734a11d5a73f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.4988010832439615E-15, + 0.0, + 28.748133698394316, + -1.4988010832439615E-15, + 1.0, + 0.0, + 45.260973544740224, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "264feece-def2-4533-81a8-734a11d5a73f", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.748133698394316, + "Y": 45.260973544740224, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "713a110b-d167-4c4e-9e0b-4c5af45bca2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7130717409080571, + -0.7010910727704017, + 0.0, + 28.24826191799666, + 0.7010910727704017, + 0.7130717409080571, + 0.0, + 45.78794054256021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "713a110b-d167-4c4e-9e0b-4c5af45bca2a", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.24826191799666, + "Y": 45.78794054256021, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "12cc31dc-7107-4132-8ff7-0fac6234e7c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6880244679478351, + -0.7256874888718273, + 0.0, + 28.264179532945246, + 0.7256874888718273, + -0.6880244679478351, + 0.0, + 44.92640896026062, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "12cc31dc-7107-4132-8ff7-0fac6234e7c9", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.264179532945246, + "Y": 44.92640896026062, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "722d118f-25cb-4676-a915-9e76ca5c1460": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6087613741009769, + 0.7933533824234259, + 0.0, + 29.12999892046847, + -0.7933533824234259, + 0.6087613741009769, + 0.0, + 45.754561103471616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "722d118f-25cb-4676-a915-9e76ca5c1460", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.12999892046847, + "Y": 45.754561103471616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "4b86d91b-7e22-46cd-884d-83b5acc75d31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087614434581247, + 0.7933533292038173, + 0.0, + 29.178437281442474, + -0.7933533292038173, + -0.6087614434581247, + 0.0, + 44.955582682460914, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4b86d91b-7e22-46cd-884d-83b5acc75d31", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.178437281442474, + "Y": 44.955582682460914, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "0fe7e0a7-432b-4e08-b84c-8e6c94c22510": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -6.328271240363393E-15, + 1.0, + 0.0, + 30.614537889899644, + -1.0, + -6.328271240363393E-15, + 0.0, + 46.26005041354686, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0fe7e0a7-432b-4e08-b84c-8e6c94c22510", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.614537889899644, + "Y": 46.26005041354686, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "e401f8bf-70f5-4dba-9974-e263b0efcf0d": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "264feece-def2-4533-81a8-734a11d5a73f", + "713a110b-d167-4c4e-9e0b-4c5af45bca2a", + "12cc31dc-7107-4132-8ff7-0fac6234e7c9", + "722d118f-25cb-4676-a915-9e76ca5c1460", + "4b86d91b-7e22-46cd-884d-83b5acc75d31", + "0fe7e0a7-432b-4e08-b84c-8e6c94c22510" + ], + "Id": "e401f8bf-70f5-4dba-9974-e263b0efcf0d", + "Name": null + }, + "5ef8affb-7793-4370-ac1e-7045d57bfd16": { + "discriminator": "Elements.SpaceMetric", + "Space": "21c5de94-8810-4d07-900d-82f90d830241", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "5ef8affb-7793-4370-ac1e-7045d57bfd16", + "Name": null + }, + "b3f882cd-6dbc-461a-91fd-d52b720fcfe3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.6212657631586969E-15, + 0.0, + 28.83389439083912, + 1.6212657631586969E-15, + -1.0, + 0.0, + 48.892896455259276, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b3f882cd-6dbc-461a-91fd-d52b720fcfe3", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.83389439083912, + "Y": 48.892896455259276, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "e3ce1e59-d523-482c-bc6d-20c67d60239e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080572, + 0.7010910727704016, + 0.0, + 29.333766171236775, + -0.7010910727704016, + -0.7130717409080572, + 0.0, + 48.36592945743929, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e3ce1e59-d523-482c-bc6d-20c67d60239e", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.333766171236775, + "Y": 48.36592945743929, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "8c5e8f24-e465-47f9-82b1-04f7a93a442b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.688024467947835, + 0.7256874888718274, + 0.0, + 29.31784855628819, + -0.7256874888718274, + 0.688024467947835, + 0.0, + 49.22746103973888, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8c5e8f24-e465-47f9-82b1-04f7a93a442b", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.31784855628819, + "Y": 49.22746103973888, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "dfb1db56-5f7d-4834-a300-3b895a2cdb29": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009767, + -0.793353382423426, + 0.0, + 28.452029168764966, + 0.793353382423426, + -0.6087613741009767, + 0.0, + 48.39930889652788, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dfb1db56-5f7d-4834-a300-3b895a2cdb29", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.452029168764966, + "Y": 48.39930889652788, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "dc704dd8-e5c5-4e3e-8e0e-42a84e477466": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6087614434581248, + -0.7933533292038172, + 0.0, + 28.403590807790962, + 0.7933533292038172, + 0.6087614434581248, + 0.0, + 49.198287317538586, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dc704dd8-e5c5-4e3e-8e0e-42a84e477466", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.403590807790962, + "Y": 49.198287317538586, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "a11cbd73-f8d3-4ad0-9c40-bee2b956127a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 26.967490199334158, + 1.0, + 6.450735920278128E-15, + 0.0, + 47.89381958645314, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a11cbd73-f8d3-4ad0-9c40-bee2b956127a", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.967490199334158, + "Y": 47.89381958645314, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "c67ab9d1-9c44-4fe8-b4f5-472bc982e66c": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "b3f882cd-6dbc-461a-91fd-d52b720fcfe3", + "e3ce1e59-d523-482c-bc6d-20c67d60239e", + "8c5e8f24-e465-47f9-82b1-04f7a93a442b", + "dfb1db56-5f7d-4834-a300-3b895a2cdb29", + "dc704dd8-e5c5-4e3e-8e0e-42a84e477466", + "a11cbd73-f8d3-4ad0-9c40-bee2b956127a" + ], + "Id": "c67ab9d1-9c44-4fe8-b4f5-472bc982e66c", + "Name": null + }, + "46c8f521-3833-4be9-983e-8cc1b87beb98": { + "discriminator": "Elements.SpaceMetric", + "Space": "d34fb7c6-ff2f-4ff5-a693-b11500aa6abd", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "46c8f521-3833-4be9-983e-8cc1b87beb98", + "Name": null + }, + "b70ba91c-0b65-48ad-be99-63ca1a8d0841": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b70ba91c-0b65-48ad-be99-63ca1a8d0841", + "Name": null + }, + "7e1a12ec-8c42-42d8-acf8-5a137f488173": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7e1a12ec-8c42-42d8-acf8-5a137f488173", + "Name": null + }, + "7b993477-a0fd-4027-9df6-792b0c91ca21": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7e1a12ec-8c42-42d8-acf8-5a137f488173", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7b993477-a0fd-4027-9df6-792b0c91ca21", + "Name": null + }, + "967b8fbe-a095-454d-8829-20dea24d0eff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7b993477-a0fd-4027-9df6-792b0c91ca21", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 29.000270035381437, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.012661135386924, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "967b8fbe-a095-454d-8829-20dea24d0eff", + "Name": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.000270035381437, + "Y": 27.012661135386924, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb" + }, + "e3651274-058c-42cf-90ec-657aedc1a7f2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e3651274-058c-42cf-90ec-657aedc1a7f2", + "Name": null + }, + "767a118b-b849-41ac-9404-e587440d6182": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "767a118b-b849-41ac-9404-e587440d6182", + "Name": null + }, + "3d1a7ea0-7043-43b1-96cc-461ad27f7047": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "767a118b-b849-41ac-9404-e587440d6182", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Name": null + }, + "4d42f98c-92b4-45d4-a24f-5bdd2ec3b4c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -9.208048160269439E-16, + 0.0, + 28.526526080834703, + 9.208048160269439E-16, + 1.0, + 0.0, + 28.212557006624234, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4d42f98c-92b4-45d4-a24f-5bdd2ec3b4c5", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.526526080834703, + "Y": 28.212557006624234, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "ab73494b-9376-4252-a97f-ebcccac29d96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -9.208048160269439E-16, + 0.0, + 27.676606080834702, + 9.208048160269439E-16, + 1.0, + 0.0, + 28.21255700662423, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ab73494b-9376-4252-a97f-ebcccac29d96", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 27.676606080834702, + "Y": 28.21255700662423, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "136f366f-3824-4f11-8caf-8b9455ae5fb5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -9.208048160269439E-16, + 0.0, + 26.8215660808347, + 9.208048160269439E-16, + 1.0, + 0.0, + 28.212557006624227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "136f366f-3824-4f11-8caf-8b9455ae5fb5", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.8215660808347, + "Y": 28.212557006624227, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "37fce1ab-29df-45f3-95f9-820c90ace861": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -9.877583447104212E-16, + 0.0, + 25.9716460808347, + 9.877583447104212E-16, + 1.0, + 0.0, + 28.212557006624223, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "37fce1ab-29df-45f3-95f9-820c90ace861", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.9716460808347, + "Y": 28.212557006624223, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "932c6e4f-d387-4b95-90a4-004362fc3b19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 25.971646080834724, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.012559406624256, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "932c6e4f-d387-4b95-90a4-004362fc3b19", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.971646080834724, + "Y": 27.012559406624256, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "783ed542-06f7-4ae4-93f7-ce3dc9883c0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 26.821566080834724, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.01255940662426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "783ed542-06f7-4ae4-93f7-ce3dc9883c0f", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.821566080834724, + "Y": 27.01255940662426, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "f3f55231-7f12-4c77-92d9-d00d3e6ff9c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 27.676606080834723, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.012559406624263, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3f55231-7f12-4c77-92d9-d00d3e6ff9c7", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 27.676606080834723, + "Y": 27.012559406624263, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "1157fa79-982f-4db5-8f62-8b30862c1100": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d1a7ea0-7043-43b1-96cc-461ad27f7047", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 28.526526080834724, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.012559406624266, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1157fa79-982f-4db5-8f62-8b30862c1100", + "Name": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.526526080834724, + "Y": 27.012559406624266, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb" + }, + "a94f378b-01f5-4012-a7f3-4ddfe1e407f0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a94f378b-01f5-4012-a7f3-4ddfe1e407f0", + "Name": null + }, + "3e9c0647-7164-4d91-a3a1-5313a8ba5a46": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3e9c0647-7164-4d91-a3a1-5313a8ba5a46", + "Name": null + }, + "7769d83e-512f-405f-9654-c722a01eac84": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3e9c0647-7164-4d91-a3a1-5313a8ba5a46", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7769d83e-512f-405f-9654-c722a01eac84", + "Name": null + }, + "f7343ca1-0167-4a13-aa80-3ceaa2de5e9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7769d83e-512f-405f-9654-c722a01eac84", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 25.99600853440603, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.61255820662424, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f7343ca1-0167-4a13-aa80-3ceaa2de5e9f", + "Name": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.99600853440603, + "Y": 27.61255820662424, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb" + }, + "081a9536-2693-4725-b84a-4deb68fa75ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7769d83e-512f-405f-9654-c722a01eac84", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 27.205277134406032, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.612558206624243, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "081a9536-2693-4725-b84a-4deb68fa75ad", + "Name": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 27.205277134406032, + "Y": 27.612558206624243, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb" + }, + "55dae9c3-add8-45e6-83aa-f803a6590e6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7769d83e-512f-405f-9654-c722a01eac84", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.1518939648921175E-15, + 0.0, + 28.378350834406014, + -4.1518939648921175E-15, + -1.0, + 0.0, + 27.612558206624247, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "55dae9c3-add8-45e6-83aa-f803a6590e6f", + "Name": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 28.378350834406014, + "Y": 27.612558206624247, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb" + }, + "db7fce97-ef6b-460c-b3dd-9bbc16c702af": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "db7fce97-ef6b-460c-b3dd-9bbc16c702af", + "Name": null + }, + "1b8f6de1-b992-43e5-8b15-705b7a805ec6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1b8f6de1-b992-43e5-8b15-705b7a805ec6", + "Name": null + }, + "dce8bac9-18c4-4129-9112-dab0ad400dcb": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dcc275c4-b0d8-4230-aa7a-8a05648b1ad4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1b8f6de1-b992-43e5-8b15-705b7a805ec6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "dce8bac9-18c4-4129-9112-dab0ad400dcb", + "Name": null + }, + "117a1c69-6a0f-41a6-bcfb-8ec413923655": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dce8bac9-18c4-4129-9112-dab0ad400dcb", + "Transform": { + "Matrix": { + "Components": [ + 4.000204360710245E-16, + -1.0, + 0.0, + 23.05812608889252, + 1.0, + 4.000204360710245E-16, + 0.0, + 26.450095629798952, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "117a1c69-6a0f-41a6-bcfb-8ec413923655", + "Name": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.05812608889252, + "Y": 26.450095629798952, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb" + }, + "49b5e51e-d625-469d-9829-7c154c899207": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "967b8fbe-a095-454d-8829-20dea24d0eff", + "4d42f98c-92b4-45d4-a24f-5bdd2ec3b4c5", + "ab73494b-9376-4252-a97f-ebcccac29d96", + "136f366f-3824-4f11-8caf-8b9455ae5fb5", + "37fce1ab-29df-45f3-95f9-820c90ace861", + "932c6e4f-d387-4b95-90a4-004362fc3b19", + "783ed542-06f7-4ae4-93f7-ce3dc9883c0f", + "f3f55231-7f12-4c77-92d9-d00d3e6ff9c7", + "1157fa79-982f-4db5-8f62-8b30862c1100", + "f7343ca1-0167-4a13-aa80-3ceaa2de5e9f", + "081a9536-2693-4725-b84a-4deb68fa75ad", + "55dae9c3-add8-45e6-83aa-f803a6590e6f", + "117a1c69-6a0f-41a6-bcfb-8ec413923655" + ], + "Id": "49b5e51e-d625-469d-9829-7c154c899207", + "Name": null + }, + "dfd0d4a2-d892-449c-8d1a-7372900c3abb": { + "discriminator": "Elements.SpaceMetric", + "Space": "fd9f9f76-67dd-4476-9830-44af139a6ae4", + "Seats": 8.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "dfd0d4a2-d892-449c-8d1a-7372900c3abb", + "Name": null + }, + "839b2af0-4c98-4ca5-9732-eb3db2f5e957": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.608761443458125, + -0.7933533292038171, + 0.0, + 39.876411552749566, + 0.7933533292038171, + 0.608761443458125, + 0.0, + 28.165075450902798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "839b2af0-4c98-4ca5-9732-eb3db2f5e957", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.876411552749566, + "Y": 28.165075450902798, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "bfc4fcde-03a6-4279-800e-0a7efcdc283d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 39.92484991372357, + 0.7933533824234261, + -0.6087613741009765, + 0.0, + 27.366097029892096, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bfc4fcde-03a6-4279-800e-0a7efcdc283d", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 39.92484991372357, + "Y": 27.366097029892096, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "6bbfe91b-6bf7-4cd6-8059-a9f7682ccbd1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 40.7906693012468, + -0.7256874888718275, + 0.6880244679478349, + 0.0, + 28.19424917310309, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6bbfe91b-6bf7-4cd6-8059-a9f7682ccbd1", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 40.7906693012468, + "Y": 28.19424917310309, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "82f3f4e5-1258-4ba6-9e8f-ded460355662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 40.80658691619538, + -0.7010910727704015, + -0.7130717409080575, + 0.0, + 27.332717590803504, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "82f3f4e5-1258-4ba6-9e8f-ded460355662", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 40.80658691619538, + "Y": 27.332717590803504, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "e54dcb2c-74c9-4179-ad4b-31c6cf5c96a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.78779921685247E-15, + 0.0, + 40.306715135797724, + 1.78779921685247E-15, + -1.0, + 0.0, + 27.859684588623487, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e54dcb2c-74c9-4179-ad4b-31c6cf5c96a5", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 40.306715135797724, + "Y": 27.859684588623487, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "0806533f-c71a-460e-9b13-9273f891faee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 38.146155696969416, + 1.0, + 6.450735920278128E-15, + 0.0, + 26.751427086452285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0806533f-c71a-460e-9b13-9273f891faee", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.146155696969416, + "Y": 26.751427086452285, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "edbda5e7-9afc-4ee8-b888-8b288f1728db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -2.120866124240017E-15, + 1.0, + 0.0, + 42.62596099966468, + -1.0, + -2.120866124240017E-15, + 0.0, + 28.58022708645252, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "edbda5e7-9afc-4ee8-b888-8b288f1728db", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.62596099966468, + "Y": 28.58022708645252, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "506b9bbd-ec55-4c54-a045-be6cac513029": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 2.431048276723124E-15, + 1.0, + 0.0, + 42.58944753229996, + -1.0, + 2.431048276723124E-15, + 0.0, + 28.57622514809665, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "506b9bbd-ec55-4c54-a045-be6cac513029", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.58944753229996, + "Y": 28.57622514809665, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "8d4f5550-50eb-4f1f-9488-bf13f87467dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + 6.339713617815612E-15, + -1.0, + 0.0, + 42.38581762469829, + 1.0, + 6.339713617815612E-15, + 0.0, + 30.728355076082014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d4f5550-50eb-4f1f-9488-bf13f87467dd", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.38581762469829, + "Y": 30.728355076082014, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "f5f436a2-2a0b-421c-a101-f9e85f79730b": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "839b2af0-4c98-4ca5-9732-eb3db2f5e957", + "bfc4fcde-03a6-4279-800e-0a7efcdc283d", + "6bbfe91b-6bf7-4cd6-8059-a9f7682ccbd1", + "82f3f4e5-1258-4ba6-9e8f-ded460355662", + "e54dcb2c-74c9-4179-ad4b-31c6cf5c96a5", + "0806533f-c71a-460e-9b13-9273f891faee", + "edbda5e7-9afc-4ee8-b888-8b288f1728db", + "506b9bbd-ec55-4c54-a045-be6cac513029", + "8d4f5550-50eb-4f1f-9488-bf13f87467dd" + ], + "Id": "f5f436a2-2a0b-421c-a101-f9e85f79730b", + "Name": null + }, + "0e726538-f2d2-41d4-93f6-045199a85af5": { + "discriminator": "Elements.SpaceMetric", + "Space": "90be1c10-d286-45b2-88ab-94467bca71a0", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "0e726538-f2d2-41d4-93f6-045199a85af5", + "Name": null + }, + "1d152aa5-4a15-4d7a-b1d2-44d5f1a4cd3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.608761443458125, + -0.7933533292038171, + 0.0, + 50.5291771998863, + 0.7933533292038171, + 0.608761443458125, + 0.0, + 28.165075450903075, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1d152aa5-4a15-4d7a-b1d2-44d5f1a4cd3b", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.5291771998863, + "Y": 28.165075450903075, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "4623e2d2-cadf-4c4e-92b9-76b816fdeb6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 50.5776155608603, + 0.7933533824234261, + -0.6087613741009765, + 0.0, + 27.366097029892366, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4623e2d2-cadf-4c4e-92b9-76b816fdeb6e", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.5776155608603, + "Y": 27.366097029892366, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "ec37ed24-ef40-4575-91a5-67cfea6066ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 51.44343494838353, + -0.7256874888718275, + 0.6880244679478349, + 0.0, + 28.194249173103362, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec37ed24-ef40-4575-91a5-67cfea6066ee", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.44343494838353, + "Y": 28.194249173103362, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "c9ba0bce-a367-4b44-9de6-e6d2c7cf9ba7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 51.45935256333211, + -0.7010910727704015, + -0.7130717409080575, + 0.0, + 27.332717590803778, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c9ba0bce-a367-4b44-9de6-e6d2c7cf9ba7", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.45935256333211, + "Y": 27.332717590803778, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "35440efa-1b51-4f55-a0e1-32fc75af02c0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.78779921685247E-15, + 0.0, + 50.959480782934456, + 1.78779921685247E-15, + -1.0, + 0.0, + 27.85968458862376, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "35440efa-1b51-4f55-a0e1-32fc75af02c0", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.959480782934456, + "Y": 27.85968458862376, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "30cdf8b2-b7cb-463e-9b5f-00053e53e823": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 48.95633562717882, + 1.0, + 6.450735920278128E-15, + 0.0, + 26.751427086452562, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "30cdf8b2-b7cb-463e-9b5f-00053e53e823", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.95633562717882, + "Y": 26.751427086452562, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "e05cfe63-e762-4b41-b65d-cee8bab14e70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -2.120866124240017E-15, + 1.0, + 0.0, + 53.121312363728826, + -1.0, + -2.120866124240017E-15, + 0.0, + 28.580227086452783, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e05cfe63-e762-4b41-b65d-cee8bab14e70", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.121312363728826, + "Y": 28.580227086452783, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "4d011bdb-e99f-4809-913c-6106e45e8bff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 2.431048276723124E-15, + 1.0, + 0.0, + 53.084798896364106, + -1.0, + 2.431048276723124E-15, + 0.0, + 28.576225148096913, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "4d011bdb-e99f-4809-913c-6106e45e8bff", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.084798896364106, + "Y": 28.576225148096913, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "49284e4f-89e5-41ad-a7ec-b4a02a634eda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + 6.339713617815612E-15, + -1.0, + 0.0, + 52.88116898876244, + 1.0, + 6.339713617815612E-15, + 0.0, + 30.72835507608254, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "49284e4f-89e5-41ad-a7ec-b4a02a634eda", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.88116898876244, + "Y": 30.72835507608254, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "62acc4a9-7716-4b2a-bde8-8b55dd1fb09b": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "1d152aa5-4a15-4d7a-b1d2-44d5f1a4cd3b", + "4623e2d2-cadf-4c4e-92b9-76b816fdeb6e", + "ec37ed24-ef40-4575-91a5-67cfea6066ee", + "c9ba0bce-a367-4b44-9de6-e6d2c7cf9ba7", + "35440efa-1b51-4f55-a0e1-32fc75af02c0", + "30cdf8b2-b7cb-463e-9b5f-00053e53e823", + "e05cfe63-e762-4b41-b65d-cee8bab14e70", + "4d011bdb-e99f-4809-913c-6106e45e8bff", + "49284e4f-89e5-41ad-a7ec-b4a02a634eda" + ], + "Id": "62acc4a9-7716-4b2a-bde8-8b55dd1fb09b", + "Name": null + }, + "661909bb-bc32-47f9-be57-66bf9d9ea3ac": { + "discriminator": "Elements.SpaceMetric", + "Space": "85b6e9da-7c2c-4fa7-bac8-2dac8ecbab35", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "661909bb-bc32-47f9-be57-66bf9d9ea3ac", + "Name": null + }, + "6ea7db40-a745-4bdb-8b80-87e472b11935": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.6212657631586969E-15, + 0.0, + 55.06321518990964, + 1.6212657631586969E-15, + -1.0, + 0.0, + 29.42037645525902, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6ea7db40-a745-4bdb-8b80-87e472b11935", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.06321518990964, + "Y": 29.42037645525902, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "9556d307-b496-4506-94a2-1c485d756c41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080572, + 0.7010910727704016, + 0.0, + 55.563086970307296, + -0.7010910727704016, + -0.7130717409080572, + 0.0, + 28.893409457439038, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9556d307-b496-4506-94a2-1c485d756c41", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.563086970307296, + "Y": 28.893409457439038, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "83678837-727f-4104-a5a4-09181c3b782d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.688024467947835, + 0.7256874888718274, + 0.0, + 55.54716935535871, + -0.7256874888718274, + 0.688024467947835, + 0.0, + 29.754941039738622, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "83678837-727f-4104-a5a4-09181c3b782d", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.54716935535871, + "Y": 29.754941039738622, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "a2026bcd-b6b6-45f2-a5e9-f69f4b1603ae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009767, + -0.793353382423426, + 0.0, + 54.68134996783549, + 0.793353382423426, + -0.6087613741009767, + 0.0, + 28.926788896527626, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a2026bcd-b6b6-45f2-a5e9-f69f4b1603ae", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.68134996783549, + "Y": 28.926788896527626, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "f8883b82-0d18-450c-8192-9da0e8850aee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6087614434581248, + -0.7933533292038172, + 0.0, + 54.632911606861484, + 0.7933533292038172, + 0.6087614434581248, + 0.0, + 29.725767317538335, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f8883b82-0d18-450c-8192-9da0e8850aee", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.632911606861484, + "Y": 29.725767317538335, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "c4362bea-afa8-4d90-93dd-9e37e0fabb60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 53.133061271377905, + 1.0, + 6.450735920278128E-15, + 0.0, + 28.421299586453113, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c4362bea-afa8-4d90-93dd-9e37e0fabb60", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 53.133061271377905, + "Y": 28.421299586453113, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "cd2a0494-1209-4268-a130-ccf4d668b008": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "6ea7db40-a745-4bdb-8b80-87e472b11935", + "9556d307-b496-4506-94a2-1c485d756c41", + "83678837-727f-4104-a5a4-09181c3b782d", + "a2026bcd-b6b6-45f2-a5e9-f69f4b1603ae", + "f8883b82-0d18-450c-8192-9da0e8850aee", + "c4362bea-afa8-4d90-93dd-9e37e0fabb60" + ], + "Id": "cd2a0494-1209-4268-a130-ccf4d668b008", + "Name": null + }, + "92e3ef4c-93e3-4387-bbf1-e12adb2df323": { + "discriminator": "Elements.SpaceMetric", + "Space": "f3b9d53a-cf2a-4cc6-8a26-afc8868d8e23", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "92e3ef4c-93e3-4387-bbf1-e12adb2df323", + "Name": null + }, + "49a02f86-275a-46cb-83a3-6e883cad19b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.4988010832439615E-15, + 0.0, + 54.97745449746469, + -1.4988010832439615E-15, + 1.0, + 0.0, + 25.85219354474127, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "49a02f86-275a-46cb-83a3-6e883cad19b1", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.97745449746469, + "Y": 25.85219354474127, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "0d2c818b-b519-4a6a-af2e-4eba2d0a6871": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7130717409080571, + -0.7010910727704017, + 0.0, + 54.47758271706704, + 0.7010910727704017, + 0.7130717409080571, + 0.0, + 26.37916054256125, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0d2c818b-b519-4a6a-af2e-4eba2d0a6871", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.47758271706704, + "Y": 26.37916054256125, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "616cb2cb-b005-4ad6-a996-284925bf0456": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6880244679478351, + -0.7256874888718273, + 0.0, + 54.49350033201562, + 0.7256874888718273, + -0.6880244679478351, + 0.0, + 25.517628960261668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "616cb2cb-b005-4ad6-a996-284925bf0456", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.49350033201562, + "Y": 25.517628960261668, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "14b3db29-464f-4c44-a990-9af72028daae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6087613741009769, + 0.7933533824234259, + 0.0, + 55.359319719538846, + -0.7933533824234259, + 0.6087613741009769, + 0.0, + 26.34578110347266, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "14b3db29-464f-4c44-a990-9af72028daae", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.359319719538846, + "Y": 26.34578110347266, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "aa05819a-3a9a-4358-b87b-64ffddac677b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087614434581247, + 0.7933533292038173, + 0.0, + 55.40775808051285, + -0.7933533292038173, + -0.6087614434581247, + 0.0, + 25.54680268246196, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aa05819a-3a9a-4358-b87b-64ffddac677b", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.40775808051285, + "Y": 25.54680268246196, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "c119a745-3d99-4f14-b603-db61f996dbc3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -6.328271240363393E-15, + 1.0, + 0.0, + 56.90760841599663, + -1.0, + -6.328271240363393E-15, + 0.0, + 26.851270413547983, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c119a745-3d99-4f14-b603-db61f996dbc3", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.90760841599663, + "Y": 26.851270413547983, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "d7bacd1e-dbc6-4882-8f34-a9bdaea1f680": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "49a02f86-275a-46cb-83a3-6e883cad19b1", + "0d2c818b-b519-4a6a-af2e-4eba2d0a6871", + "616cb2cb-b005-4ad6-a996-284925bf0456", + "14b3db29-464f-4c44-a990-9af72028daae", + "aa05819a-3a9a-4358-b87b-64ffddac677b", + "c119a745-3d99-4f14-b603-db61f996dbc3" + ], + "Id": "d7bacd1e-dbc6-4882-8f34-a9bdaea1f680", + "Name": null + }, + "b54c61df-6bfc-4bc4-b385-a742898265ba": { + "discriminator": "Elements.SpaceMetric", + "Space": "01f19bed-07d8-4a94-86e0-e6c69b535f69", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "b54c61df-6bfc-4bc4-b385-a742898265ba", + "Name": null + }, + "c9170bb1-b9e7-46ca-b8c6-9bb667a528c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.608761443458125, + -0.7933533292038171, + 0.0, + 61.20506306984926, + 0.7933533292038171, + 0.608761443458125, + 0.0, + 28.16507545090338, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c9170bb1-b9e7-46ca-b8c6-9bb667a528c2", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.20506306984926, + "Y": 28.16507545090338, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "44ca82e2-fab6-4c19-b2f5-74c2090ccd9c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 61.25350143082326, + 0.7933533824234261, + -0.6087613741009765, + 0.0, + 27.36609702989267, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "44ca82e2-fab6-4c19-b2f5-74c2090ccd9c", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.25350143082326, + "Y": 27.36609702989267, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "66fe9bb6-1196-4f1a-bc28-994a31b444ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 62.119320818346495, + -0.7256874888718275, + 0.6880244679478349, + 0.0, + 28.194249173103668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66fe9bb6-1196-4f1a-bc28-994a31b444ac", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.119320818346495, + "Y": 28.194249173103668, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "a756ee8f-d399-4fe8-b1c8-3ed6842df7dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 62.13523843329507, + -0.7010910727704015, + -0.7130717409080575, + 0.0, + 27.332717590804084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a756ee8f-d399-4fe8-b1c8-3ed6842df7dc", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.13523843329507, + "Y": 27.332717590804084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "015672bb-0483-4d05-ab6b-e317354fa619": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.78779921685247E-15, + 0.0, + 61.63536665289742, + 1.78779921685247E-15, + -1.0, + 0.0, + 27.859684588624066, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "015672bb-0483-4d05-ab6b-e317354fa619", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 61.63536665289742, + "Y": 27.859684588624066, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "4ab23239-bac2-4ecc-83b7-f04354f3e542": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 59.70568149590808, + 1.0, + 6.450735920278128E-15, + 0.0, + 26.751427086453926, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4ab23239-bac2-4ecc-83b7-f04354f3e542", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.70568149590808, + "Y": 26.751427086453926, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "3fbbf02f-c7a2-4c27-9ec1-99ae44067d66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -2.120866124240017E-15, + 1.0, + 0.0, + 63.72373823492541, + -1.0, + -2.120866124240017E-15, + 0.0, + 28.580227086452116, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3fbbf02f-c7a2-4c27-9ec1-99ae44067d66", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.72373823492541, + "Y": 28.580227086452116, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "ed05d64e-2972-489d-8905-b55a6aad21a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 2.431048276723124E-15, + 1.0, + 0.0, + 63.68722476756069, + -1.0, + 2.431048276723124E-15, + 0.0, + 28.576225148096245, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "ed05d64e-2972-489d-8905-b55a6aad21a0", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.68722476756069, + "Y": 28.576225148096245, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "8ed8654e-5a2b-4980-9b91-0b1d6df5c9f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + 6.339713617815612E-15, + -1.0, + 0.0, + 63.48359485996071, + 1.0, + 6.339713617815612E-15, + 0.0, + 30.728355076081435, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ed8654e-5a2b-4980-9b91-0b1d6df5c9f7", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.48359485996071, + "Y": 30.728355076081435, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "87fc1e26-b14e-4c67-8dff-dab076a38665": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "c9170bb1-b9e7-46ca-b8c6-9bb667a528c2", + "44ca82e2-fab6-4c19-b2f5-74c2090ccd9c", + "66fe9bb6-1196-4f1a-bc28-994a31b444ac", + "a756ee8f-d399-4fe8-b1c8-3ed6842df7dc", + "015672bb-0483-4d05-ab6b-e317354fa619", + "4ab23239-bac2-4ecc-83b7-f04354f3e542", + "3fbbf02f-c7a2-4c27-9ec1-99ae44067d66", + "ed05d64e-2972-489d-8905-b55a6aad21a0", + "8ed8654e-5a2b-4980-9b91-0b1d6df5c9f7" + ], + "Id": "87fc1e26-b14e-4c67-8dff-dab076a38665", + "Name": null + }, + "dcb2c429-83ed-4348-bd8e-1042dcef88cb": { + "discriminator": "Elements.SpaceMetric", + "Space": "7fd3572d-149d-40aa-ab64-0c07b7d9c8d9", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "dcb2c429-83ed-4348-bd8e-1042dcef88cb", + "Name": null + }, + "7d7273e0-63df-4112-aea6-a1825541b974": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.608761443458125, + -0.7933533292038171, + 0.0, + 65.23486871651372, + 0.7933533292038171, + 0.608761443458125, + 0.0, + 28.165075450903068, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7d7273e0-63df-4112-aea6-a1825541b974", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.23486871651372, + "Y": 28.165075450903068, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "06a18a5e-9aba-4e2d-8bfb-dd7895aa6d12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.6087613741009765, + -0.7933533824234261, + 0.0, + 65.28330707748772, + 0.7933533824234261, + -0.6087613741009765, + 0.0, + 27.366097029892366, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "06a18a5e-9aba-4e2d-8bfb-dd7895aa6d12", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.28330707748772, + "Y": 27.366097029892366, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "65bf7582-f60b-4527-8760-5b5f4367a2ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.6880244679478349, + 0.7256874888718275, + 0.0, + 66.14912646501095, + -0.7256874888718275, + 0.6880244679478349, + 0.0, + 28.19424917310336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "65bf7582-f60b-4527-8760-5b5f4367a2ec", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.14912646501095, + "Y": 28.19424917310336, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "ebb7f3eb-f609-40cf-866b-e2dd80e7624a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7130717409080575, + 0.7010910727704015, + 0.0, + 66.16504407995953, + -0.7010910727704015, + -0.7130717409080575, + 0.0, + 27.332717590803774, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ebb7f3eb-f609-40cf-866b-e2dd80e7624a", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.16504407995953, + "Y": 27.332717590803774, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "6155070a-f1a2-48b0-9a91-1282f884577a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.78779921685247E-15, + 0.0, + 65.66517229956187, + 1.78779921685247E-15, + -1.0, + 0.0, + 27.859684588623757, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6155070a-f1a2-48b0-9a91-1282f884577a", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.66517229956187, + "Y": 27.859684588623757, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "dcd3209c-d8c5-45e0-a872-13b0db9caf5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + 6.450735920278128E-15, + -1.0, + 0.0, + 63.73548714257049, + 1.0, + 6.450735920278128E-15, + 0.0, + 26.751427086450864, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dcd3209c-d8c5-45e0-a872-13b0db9caf5d", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.73548714257049, + "Y": 26.751427086450864, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "ed973a39-f4f3-4b43-9e5c-27c3d74e62a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -2.120866124240017E-15, + 1.0, + 0.0, + 67.75354388159201, + -1.0, + -2.120866124240017E-15, + 0.0, + 28.58022708645451, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ed973a39-f4f3-4b43-9e5c-27c3d74e62a3", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.75354388159201, + "Y": 28.58022708645451, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "db2207de-284a-4d94-8e85-ac42ecad9f7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7eaf4b3b-f24a-4e7d-9bda-da4415ba57b9", + "Transform": { + "Matrix": { + "Components": [ + 2.431048276723124E-15, + 1.0, + 0.0, + 67.71703041422728, + -1.0, + 2.431048276723124E-15, + 0.0, + 28.57622514809864, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Id": "db2207de-284a-4d94-8e85-ac42ecad9f7f", + "Name": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.71703041422728, + "Y": 28.57622514809864, + "Z": -0.6349999999999998 + }, + "gltfLocation": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb" + }, + "fd73d3af-cf42-4e1d-883b-cf32ccea1ff0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "db8206c2-36ae-415f-95d0-ec4ad2dcc192", + "Transform": { + "Matrix": { + "Components": [ + 6.339713617815612E-15, + -1.0, + 0.0, + 67.51340050662277, + 1.0, + 6.339713617815612E-15, + 0.0, + 30.728355076085073, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd73d3af-cf42-4e1d-883b-cf32ccea1ff0", + "Name": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.51340050662277, + "Y": 30.728355076085073, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb" + }, + "f706ce91-dd08-4702-95e4-04d2036be0e7": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "7d7273e0-63df-4112-aea6-a1825541b974", + "06a18a5e-9aba-4e2d-8bfb-dd7895aa6d12", + "65bf7582-f60b-4527-8760-5b5f4367a2ec", + "ebb7f3eb-f609-40cf-866b-e2dd80e7624a", + "6155070a-f1a2-48b0-9a91-1282f884577a", + "dcd3209c-d8c5-45e0-a872-13b0db9caf5d", + "ed973a39-f4f3-4b43-9e5c-27c3d74e62a3", + "db2207de-284a-4d94-8e85-ac42ecad9f7f", + "fd73d3af-cf42-4e1d-883b-cf32ccea1ff0" + ], + "Id": "f706ce91-dd08-4702-95e4-04d2036be0e7", + "Name": null + }, + "6abacd20-8cff-416d-bd15-e4ff4826741a": { + "discriminator": "Elements.SpaceMetric", + "Space": "6d1d66d3-8ac5-4158-8bc1-13a451879fce", + "Seats": 4.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "6abacd20-8cff-416d-bd15-e4ff4826741a", + "Name": null + }, + "8eedf88f-715f-4f1c-adbb-e54b213b6b8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "82af9942-b44d-475d-81d1-d1a3115776ff", + "Transform": { + "Matrix": { + "Components": [ + -1.6824981031160644E-15, + 1.0, + 0.0, + 57.81406235912588, + -1.0, + -1.6824981031160644E-15, + 0.0, + 20.79069534622215, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8eedf88f-715f-4f1c-adbb-e54b213b6b8d", + "Name": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.81406235912588, + "Y": 20.79069534622215, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb" + }, + "9f1f9fce-6c54-438a-bb79-59e57b20ce63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7010910727704016, + 0.7130717409080572, + 0.0, + 58.34102935694586, + -0.7130717409080572, + 0.7010910727704016, + 0.0, + 21.290567126619806, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f1f9fce-6c54-438a-bb79-59e57b20ce63", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 58.34102935694586, + "Y": 21.290567126619806, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "f3375186-a226-40bc-8186-3e8b27ee60d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + 0.7256874888718274, + -0.688024467947835, + 0.0, + 57.479497774646276, + 0.688024467947835, + 0.7256874888718274, + 0.0, + 21.27464951167122, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3375186-a226-40bc-8186-3e8b27ee60d7", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.479497774646276, + "Y": 21.27464951167122, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "e670006c-beac-4ffa-b386-27f60be24029": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.793353382423426, + 0.6087613741009767, + 0.0, + 58.30764991785727, + -0.6087613741009767, + -0.793353382423426, + 0.0, + 20.408830124147997, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e670006c-beac-4ffa-b386-27f60be24029", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 58.30764991785727, + "Y": 20.408830124147997, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "768ca9ce-9c73-4791-8e44-709947a261a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3875010c-510e-4f6c-8741-f1d4b2b5c4f1", + "Transform": { + "Matrix": { + "Components": [ + -0.7933533292038172, + -0.6087614434581248, + 0.0, + 57.50867149684657, + 0.6087614434581248, + -0.7933533292038172, + 0.0, + 20.360391763173993, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "768ca9ce-9c73-4791-8e44-709947a261a2", + "Name": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.50867149684657, + "Y": 20.360391763173993, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb" + }, + "b8d7d0f6-ae66-498a-8006-d5da41bc2bec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e55e3783-2c97-4db8-866b-5609954b5736", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.511968260235496E-15, + 0.0, + 58.813139227931686, + 6.511968260235496E-15, + -1.0, + 0.0, + 18.711282110102868, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b8d7d0f6-ae66-498a-8006-d5da41bc2bec", + "Name": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 58.813139227931686, + "Y": 18.711282110102868, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb" + }, + "bedd2234-284b-4ee2-a3e7-070a1c061ac8": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "8eedf88f-715f-4f1c-adbb-e54b213b6b8d", + "9f1f9fce-6c54-438a-bb79-59e57b20ce63", + "f3375186-a226-40bc-8186-3e8b27ee60d7", + "e670006c-beac-4ffa-b386-27f60be24029", + "768ca9ce-9c73-4791-8e44-709947a261a2", + "b8d7d0f6-ae66-498a-8006-d5da41bc2bec" + ], + "Id": "bedd2234-284b-4ee2-a3e7-070a1c061ac8", + "Name": null + }, + "bbf2a5fc-afb2-4b20-9ec9-cd15ad6a5740": { + "discriminator": "Elements.SpaceMetric", + "Space": "fc647b72-a8fc-435f-8e71-041d36b603a1", + "Seats": 0.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "bbf2a5fc-afb2-4b20-9ec9-cd15ad6a5740", + "Name": null + }, + "6d0e1566-fc85-4283-8327-a1943d4b7ebe": { + "discriminator": "Elements.InteriorPartitionCandidate", + "WallCandidateLines": [ + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.620976338041139, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.940289999999379, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.940289999999379, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.901460281073142, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.903661425803861, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 1.9033085741959113, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.901460281073142, + "Direction": { + "X": 1.0, + "Y": -4.662329672738645E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.4034850000007992, + "Direction": { + "X": -8.97707427465587E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.403485000000792, + "Direction": { + "X": 8.977074274655889E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6714319107684013, + "Direction": { + "X": 1.0, + "Y": 4.3351361724409917E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.4034850000007992, + "Direction": { + "X": 8.97707427465587E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.4034849999992076, + "Direction": { + "X": 5.208790770994621E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6714319107704796, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6714319107684013, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.403485000000792, + "Direction": { + "X": -5.208790770992196E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.403485000000792, + "Direction": { + "X": -8.977074274655889E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6714319107704796, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 7.975657009023557, + "Direction": { + "X": -1.0, + "Y": 2.2806765655642853E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.0892026231269547, + "Direction": { + "X": 3.0609212103465293E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.590287376872855, + "Direction": { + "X": -1.393133827319856E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 7.975657009023557, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.67948999999799, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.491554210344837, + "Direction": { + "X": -1.0, + "Y": -4.983151739523317E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999998978, + "Direction": { + "X": 5.2124629353813294E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.491554210344837, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999999202, + "Direction": { + "X": -5.2124629353811546E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.1767256441991805, + "Direction": { + "X": -1.0, + "Y": -5.018527068933658E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999999518, + "Direction": { + "X": 5.212462935380908E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.176725644199166, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.339745000000672, + "Direction": { + "X": 7.871882800369015E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.3397449999990556, + "Direction": { + "X": -1.7871301492738307E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.7989313648243836, + "Direction": { + "X": -1.0, + "Y": -4.9564945215884666E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.3397449999990485, + "Direction": { + "X": 1.914782302793394E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.3397449999990556, + "Direction": { + "X": 1.7871301492738307E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.7989313648231473, + "Direction": { + "X": 1.0, + "Y": 5.143532050706687E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.7989313648243908, + "Direction": { + "X": 1.0, + "Y": 4.788160745383566E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.339745000000672, + "Direction": { + "X": -7.871882800369015E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.3397449999990485, + "Direction": { + "X": -2.935999530949871E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.7989313648231473, + "Direction": { + "X": -1.0, + "Y": -5.143532050706687E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.029805646664464, + "Direction": { + "X": -1.0, + "Y": 4.5138390360127264E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999998854, + "Direction": { + "X": -7.978259594971571E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.0298056466644425, + "Direction": { + "X": 1.0, + "Y": -8.287126355179659E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999997369, + "Direction": { + "X": 8.297389978772278E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.029805646664528, + "Direction": { + "X": -1.0, + "Y": -9.027678072025309E-13, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 6.679489999997369, + "Direction": { + "X": -8.297389978772278E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.029805646664514, + "Direction": { + "X": 1.0, + "Y": -8.287126355179512E-14, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.529699275210653, + "Direction": { + "X": -2.196083602079476E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.1497907247906873, + "Direction": { + "X": 7.271377630603647E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Item2": "Glass", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.0042626217339574, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Item1": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Item2": "Solid", + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097450000000207, + "Direction": { + "X": 6.407039030669965E-07, + "Y": 0.9999999999997947, + "Z": 0.0 + } + } + ], + "Height": 4.0, + "LevelTransform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6d0e1566-fc85-4283-8327-a1943d4b7ebe", + "Name": null + }, + "1f741b00-13d1-4b66-91df-18d5223a78af": { + "discriminator": "Elements.RoomTally", + "Room type": "4P-A", + "SeatsCount": 24, + "Id": "1f741b00-13d1-4b66-91df-18d5223a78af", + "Name": null + }, + "be7ffb44-bf50-48fb-ab45-6a3f84c38643": { + "discriminator": "Elements.RoomTally", + "Room type": "4P-B", + "SeatsCount": 16, + "Id": "be7ffb44-bf50-48fb-ab45-6a3f84c38643", + "Name": null + }, + "8c512dbe-0763-4b85-bb76-21a38fac43d0": { + "discriminator": "Elements.RoomTally", + "Room type": "8P", + "SeatsCount": 8, + "Id": "8c512dbe-0763-4b85-bb76-21a38fac43d0", + "Name": null + }, + "9cfd9658-f133-46d6-9e57-1faae015e6fe": { + "discriminator": "Elements.RoomTally", + "Room type": "4P-B Rotated", + "SeatsCount": 0, + "Id": "9cfd9658-f133-46d6-9e57-1faae015e6fe", + "Name": null + }, + "2cf31641-f272-459a-a382-008e3fcb448b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "2cf31641-f272-459a-a382-008e3fcb448b", + "Name": "Default Material" + }, + "054a9834-0152-4f3a-bbe0-4421185fb283": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "054a9834-0152-4f3a-bbe0-4421185fb283", + "Name": null + }, + "fd13750e-cc2c-4132-8fc6-81a3204fe519": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/851e49a9-f59d-47aa-966d-c924da863ac3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "054a9834-0152-4f3a-bbe0-4421185fb283", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "fd13750e-cc2c-4132-8fc6-81a3204fe519", + "Name": "Steelcase - Seating - Sylvi - Table - Ganging - Square - Corner" + }, + "30d8fb63-6577-4a39-9dc3-ba5ccd0ac21d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "fd13750e-cc2c-4132-8fc6-81a3204fe519", + "Transform": { + "Matrix": { + "Components": [ + -6.756048941905851E-15, + 1.0, + 0.0, + 43.32282956386961, + -1.0, + -6.756048941905851E-15, + 0.0, + 28.567289343501, + 0.0, + 0.0, + 1.0, + 0.0127 + ] + } + }, + "Id": "30d8fb63-6577-4a39-9dc3-ba5ccd0ac21d", + "Name": "Steelcase - Seating - Sylvi - Table - Ganging - Square - Corner", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.32282956386961, + "Y": 28.567289343501, + "Z": 0.0127 + }, + "gltfLocation": "https://hypar.io/user-static/851e49a9-f59d-47aa-966d-c924da863ac3.glb" + }, + "438a0f4d-05b0-4f57-a9b5-8456ba9474f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "fd13750e-cc2c-4132-8fc6-81a3204fe519", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 2.7753885759823352E-17, + 0.0, + 43.322773296874296, + -2.7753885759823352E-17, + -1.0, + 0.0, + 30.24371072159585, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "438a0f4d-05b0-4f57-a9b5-8456ba9474f2", + "Name": "Steelcase - Seating - Sylvi - Table - Ganging - Square - Corner", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.322773296874296, + "Y": 30.24371072159585, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/851e49a9-f59d-47aa-966d-c924da863ac3.glb" + }, + "21b08023-344c-4946-ad09-dea171fec7e9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "21b08023-344c-4946-ad09-dea171fec7e9", + "Name": null + }, + "d58ad694-31e4-47f1-a397-5936f0f8cf55": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/929171ae-aeeb-40c2-8ed4-f89c90fc1b99.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "21b08023-344c-4946-ad09-dea171fec7e9", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d58ad694-31e4-47f1-a397-5936f0f8cf55", + "Name": "Savannah Hayes - Bruges Pillow 14 x 24 - Cotton Canvas" + }, + "c4922e2b-b8bb-4948-90e4-090ecdf34b86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d58ad694-31e4-47f1-a397-5936f0f8cf55", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.009044543940142E-15, + 0.0, + 43.85666400994688, + 3.009044543940142E-15, + -1.0, + 0.0, + 30.648982166960824, + 0.0, + 0.0, + 1.0, + 0.40640000000000004 + ] + } + }, + "Id": "c4922e2b-b8bb-4948-90e4-090ecdf34b86", + "Name": "Savannah Hayes - Bruges Pillow 14 x 24 - Cotton Canvas", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.85666400994688, + "Y": 30.648982166960824, + "Z": 0.40640000000000004 + }, + "gltfLocation": "https://hypar.io/user-static/929171ae-aeeb-40c2-8ed4-f89c90fc1b99.glb" + }, + "4b9e02f8-dbbb-4197-ac05-fb100422469c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d58ad694-31e4-47f1-a397-5936f0f8cf55", + "Transform": { + "Matrix": { + "Components": [ + 1.6212657631586967E-15, + -1.0, + 0.0, + 42.86537239269524, + 1.0, + 1.6212657631586967E-15, + 0.0, + 29.67928823191697, + 0.0, + 0.0, + 1.0, + 0.40640000000000004 + ] + } + }, + "Id": "4b9e02f8-dbbb-4197-ac05-fb100422469c", + "Name": "Savannah Hayes - Bruges Pillow 14 x 24 - Cotton Canvas", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.86537239269524, + "Y": 29.67928823191697, + "Z": 0.40640000000000004 + }, + "gltfLocation": "https://hypar.io/user-static/929171ae-aeeb-40c2-8ed4-f89c90fc1b99.glb" + }, + "7cc37a68-06e6-421a-af4c-bad4c74ca20e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7cc37a68-06e6-421a-af4c-bad4c74ca20e", + "Name": null + }, + "b481a821-ccb2-47b2-88b5-a39d29b647c2": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/63fa4702-98a4-4d75-af74-224ae9048d68.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7cc37a68-06e6-421a-af4c-bad4c74ca20e", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b481a821-ccb2-47b2-88b5-a39d29b647c2", + "Name": "Steelcase - Seating - Sylvi - Table - Occasional - Square - 24D x 24W" + }, + "01a6dbd4-41d4-459e-911b-0cef4ae48a47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b481a821-ccb2-47b2-88b5-a39d29b647c2", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.5509107624155381E-16, + 0.0, + 43.703783756416136, + 1.5509107624155381E-16, + 1.0, + 0.0, + 29.710264760245835, + 0.0, + 0.0, + 1.0, + 0.012700000000000001 + ] + } + }, + "Id": "01a6dbd4-41d4-459e-911b-0cef4ae48a47", + "Name": "Steelcase - Seating - Sylvi - Table - Occasional - Square - 24D x 24W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.703783756416136, + "Y": 29.710264760245835, + "Z": 0.012700000000000001 + }, + "gltfLocation": "https://hypar.io/user-static/63fa4702-98a4-4d75-af74-224ae9048d68.glb" + }, + "fe56c3f4-7db9-4144-b28a-cd372197ed79": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fe56c3f4-7db9-4144-b28a-cd372197ed79", + "Name": null + }, + "b17be456-3e44-48f4-9011-fb5cb601732b": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d4f3d417-5113-475e-b8fe-52e229181b44.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fe56c3f4-7db9-4144-b28a-cd372197ed79", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b17be456-3e44-48f4-9011-fb5cb601732b", + "Name": "Steelcase - Seating - Sylvi - Table - Lolli-Top - 20dia" + }, + "a0201ca8-73eb-421b-9990-e230054e9385": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b17be456-3e44-48f4-9011-fb5cb601732b", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.009044543940142E-15, + 0.0, + 44.3896107525852, + 3.009044543940142E-15, + -1.0, + 0.0, + 28.433824518482727, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a0201ca8-73eb-421b-9990-e230054e9385", + "Name": "Steelcase - Seating - Sylvi - Table - Lolli-Top - 20dia", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 44.3896107525852, + "Y": 28.433824518482727, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d4f3d417-5113-475e-b8fe-52e229181b44.glb" + }, + "7629ee04-622e-4710-99d4-b2286c0a9a6b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7629ee04-622e-4710-99d4-b2286c0a9a6b", + "Name": null + }, + "0b0bee45-8c15-414b-84fd-37b8ff110155": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/3e6ee24c-bbc6-418a-9e82-7f49e76ba7a0.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7629ee04-622e-4710-99d4-b2286c0a9a6b", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0b0bee45-8c15-414b-84fd-37b8ff110155", + "Name": "Steelcase - Seating - Sylvi - Lounge - Rectangular - 42W" + }, + "554061a7-1d0e-4538-9145-8eb6824750a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b0bee45-8c15-414b-84fd-37b8ff110155", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.0576018547299838E-13, + 0.0, + 44.38961075258513, + 1.0576018547299838E-13, + -1.0, + 0.0, + 27.95755304831953, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "554061a7-1d0e-4538-9145-8eb6824750a8", + "Name": "Steelcase - Seating - Sylvi - Lounge - Rectangular - 42W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 44.38961075258513, + "Y": 27.95755304831953, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/3e6ee24c-bbc6-418a-9e82-7f49e76ba7a0.glb" + }, + "0fdffc6e-27ce-4e7f-997d-c1ce02eb7378": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b0bee45-8c15-414b-84fd-37b8ff110155", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.5509107624155381E-16, + 0.0, + 43.32281135034831, + 1.5509107624155381E-16, + 1.0, + 0.0, + 30.85337563017306, + 0.0, + 0.0, + 1.0, + 0.0127 + ] + } + }, + "Id": "0fdffc6e-27ce-4e7f-997d-c1ce02eb7378", + "Name": "Steelcase - Seating - Sylvi - Lounge - Rectangular - 42W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 43.32281135034831, + "Y": 30.85337563017306, + "Z": 0.0127 + }, + "gltfLocation": "https://hypar.io/user-static/3e6ee24c-bbc6-418a-9e82-7f49e76ba7a0.glb" + }, + "4c67e029-ac8a-4154-81a6-013fefdec46e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4c67e029-ac8a-4154-81a6-013fefdec46e", + "Name": null + }, + "29cd39ed-3c29-4896-97eb-b5540c098c7c": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/9c2f6ccd-e3a0-451a-b2bf-c817a0e3c9d1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4c67e029-ac8a-4154-81a6-013fefdec46e", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "29cd39ed-3c29-4896-97eb-b5540c098c7c", + "Name": "Steelcase - Seating - Sylvi - Lounge - Rectangular - 66W" + }, + "d93597b7-ba5a-434d-b943-2edf5c749351": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29cd39ed-3c29-4896-97eb-b5540c098c7c", + "Transform": { + "Matrix": { + "Components": [ + 1.6212657631586967E-15, + -1.0, + 0.0, + 42.71312727910798, + 1.0, + 1.6212657631586967E-15, + 0.0, + 28.567264339246293, + 0.0, + 0.0, + 1.0, + 0.0127 + ] + } + }, + "Id": "d93597b7-ba5a-434d-b943-2edf5c749351", + "Name": "Steelcase - Seating - Sylvi - Lounge - Rectangular - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 42.71312727910798, + "Y": 28.567264339246293, + "Z": 0.0127 + }, + "gltfLocation": "https://hypar.io/user-static/9c2f6ccd-e3a0-451a-b2bf-c817a0e3c9d1.glb" + }, + "85ef46c3-b004-46ba-825c-e3ef0461ecef": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "85ef46c3-b004-46ba-825c-e3ef0461ecef", + "Name": null + }, + "84a913b0-7d69-4936-b1e9-cd21ce90ae1a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/60e363e1-5f35-4cec-a9c9-8b6acf8ffa8f.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "85ef46c3-b004-46ba-825c-e3ef0461ecef", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "84a913b0-7d69-4936-b1e9-cd21ce90ae1a", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered" + }, + "c11d904e-b892-410f-881e-c1eab14adffd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "84a913b0-7d69-4936-b1e9-cd21ce90ae1a", + "Transform": { + "Matrix": { + "Components": [ + -0.9999943585073799, + 0.0033590107790739563, + 0.0, + 47.888112005619675, + -0.0033590107790739563, + -0.9999943585073799, + 0.0, + 25.331975713434986, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c11d904e-b892-410f-881e-c1eab14adffd", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 47.888112005619675, + "Y": 25.331975713434986, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/60e363e1-5f35-4cec-a9c9-8b6acf8ffa8f.glb" + }, + "1a7f3440-6ae0-4f8f-aa79-c07421608be5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1a7f3440-6ae0-4f8f-aa79-c07421608be5", + "Name": null + }, + "bed4b13d-22ef-407b-ad33-e513181c888e": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/c075df58-838e-4069-a093-19fc21a19f27.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1a7f3440-6ae0-4f8f-aa79-c07421608be5", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bed4b13d-22ef-407b-ad33-e513181c888e", + "Name": "Steelcase - Payback - Reception Gallery Tackboards - 72W" + }, + "8e6fa2af-6d70-49e4-8234-4c3f1c8b57f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bed4b13d-22ef-407b-ad33-e513181c888e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2010499104609956E-14, + 0.0, + 47.015905425766476, + 4.2010499104609956E-14, + 1.0, + 0.0, + 26.12011271838201, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e6fa2af-6d70-49e4-8234-4c3f1c8b57f9", + "Name": "Steelcase - Payback - Reception Gallery Tackboards - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 47.015905425766476, + "Y": 26.12011271838201, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c075df58-838e-4069-a093-19fc21a19f27.glb" + }, + "76bacd98-2e39-4440-b921-c99e6a421856": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "76bacd98-2e39-4440-b921-c99e6a421856", + "Name": null + }, + "e3aedb99-4f30-4591-b4c6-a22a6a39865d": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/444b6a34-66f3-45aa-ba04-577e202fdb11.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "76bacd98-2e39-4440-b921-c99e6a421856", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e3aedb99-4f30-4591-b4c6-a22a6a39865d", + "Name": "Steelcase - Payback - Reception Desk - Classic - Right - 72W - Transaction Top - Integral Pull" + }, + "3284c6a0-49ae-4acf-a0c4-c79b0cd7cffc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3aedb99-4f30-4591-b4c6-a22a6a39865d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2010499104609956E-14, + 0.0, + 47.041305425766474, + 4.2010499104609956E-14, + 1.0, + 0.0, + 26.130704542605322, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3284c6a0-49ae-4acf-a0c4-c79b0cd7cffc", + "Name": "Steelcase - Payback - Reception Desk - Classic - Right - 72W - Transaction Top - Integral Pull", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 47.041305425766474, + "Y": 26.130704542605322, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/444b6a34-66f3-45aa-ba04-577e202fdb11.glb" + }, + "7995bad4-b357-4ff0-bfeb-267a6d54a8c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bed4b13d-22ef-407b-ad33-e513181c888e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2010499104609956E-14, + 0.0, + 45.2055816161064, + 4.2010499104609956E-14, + 1.0, + 0.0, + 26.12011271838201, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7995bad4-b357-4ff0-bfeb-267a6d54a8c7", + "Name": "Steelcase - Payback - Reception Gallery Tackboards - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.2055816161064, + "Y": 26.12011271838201, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c075df58-838e-4069-a093-19fc21a19f27.glb" + }, + "1cfe4ecc-8a9d-4a47-a9c1-49746ce473e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1cfe4ecc-8a9d-4a47-a9c1-49746ce473e5", + "Name": null + }, + "752002dd-ea94-4873-a0bc-2292974c7b83": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/6f76d83e-e840-43ed-bdf3-d4052628c358.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2cf31641-f272-459a-a382-008e3fcb448b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1cfe4ecc-8a9d-4a47-a9c1-49746ce473e5", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "752002dd-ea94-4873-a0bc-2292974c7b83", + "Name": "Steelcase - Payback - Reception Return - Classic - Left - 42W - Integral Pull" + }, + "0660c9e5-9461-4b87-97a8-7c12ee240535": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "752002dd-ea94-4873-a0bc-2292974c7b83", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2010499104609956E-14, + 0.0, + 45.230981616106426, + 4.2010499104609956E-14, + 1.0, + 0.0, + 25.38064254260526, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0660c9e5-9461-4b87-97a8-7c12ee240535", + "Name": "Steelcase - Payback - Reception Return - Classic - Left - 42W - Integral Pull", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.230981616106426, + "Y": 25.38064254260526, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6f76d83e-e840-43ed-bdf3-d4052628c358.glb" + }, + "b1b76393-8f4d-41d3-996b-87bbb28caf65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3aedb99-4f30-4591-b4c6-a22a6a39865d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2010499104609956E-14, + 0.0, + 45.23098161610639, + 4.2010499104609956E-14, + 1.0, + 0.0, + 26.130704542605322, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1b76393-8f4d-41d3-996b-87bbb28caf65", + "Name": "Steelcase - Payback - Reception Desk - Classic - Right - 72W - Transaction Top - Integral Pull", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 45.23098161610639, + "Y": 26.130704542605322, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/444b6a34-66f3-45aa-ba04-577e202fdb11.glb" + }, + "ca38aff3-d5ca-4018-ad15-514a6021d4fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "84a913b0-7d69-4936-b1e9-cd21ce90ae1a", + "Transform": { + "Matrix": { + "Components": [ + -0.906307787036616, + -0.42261826174077205, + 0.0, + 46.23685517056656, + 0.42261826174077205, + -0.906307787036616, + 0.0, + 25.2650240681526, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ca38aff3-d5ca-4018-ad15-514a6021d4fa", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 46.23685517056656, + "Y": 25.2650240681526, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/60e363e1-5f35-4cec-a9c9-8b6acf8ffa8f.glb" + }, + "cc5513ab-97b6-4d6a-ba8a-7e4e83b8c049": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "30d8fb63-6577-4a39-9dc3-ba5ccd0ac21d", + "438a0f4d-05b0-4f57-a9b5-8456ba9474f2", + "c4922e2b-b8bb-4948-90e4-090ecdf34b86", + "4b9e02f8-dbbb-4197-ac05-fb100422469c", + "01a6dbd4-41d4-459e-911b-0cef4ae48a47", + "a0201ca8-73eb-421b-9990-e230054e9385", + "554061a7-1d0e-4538-9145-8eb6824750a8", + "0fdffc6e-27ce-4e7f-997d-c1ce02eb7378", + "d93597b7-ba5a-434d-b943-2edf5c749351", + "c11d904e-b892-410f-881e-c1eab14adffd", + "8e6fa2af-6d70-49e4-8234-4c3f1c8b57f9", + "3284c6a0-49ae-4acf-a0c4-c79b0cd7cffc", + "7995bad4-b357-4ff0-bfeb-267a6d54a8c7", + "0660c9e5-9461-4b87-97a8-7c12ee240535", + "b1b76393-8f4d-41d3-996b-87bbb28caf65", + "ca38aff3-d5ca-4018-ad15-514a6021d4fa" + ], + "Id": "cc5513ab-97b6-4d6a-ba8a-7e4e83b8c049", + "Name": null + }, + "592beb48-35bd-4df5-b4ec-0ca07956dce6": { + "discriminator": "Elements.SpaceMetric", + "Space": "6347c94b-2b3d-4b3a-9536-7112796b24d7", + "Seats": 6.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "592beb48-35bd-4df5-b4ec-0ca07956dce6", + "Name": null + }, + "2e278b7e-5f25-4e57-8ef6-c819f01bb98d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Name": "Default Material" + }, + "a24b9855-8f3d-43fb-acf2-b0f4f87d05e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a24b9855-8f3d-43fb-acf2-b0f4f87d05e5", + "Name": null + }, + "5f67ebce-f6a9-4bd5-bedd-bbeedb338e34": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5f67ebce-f6a9-4bd5-bedd-bbeedb338e34", + "Name": null + }, + "2a97fd7c-f9db-4555-a841-5c38a366726f": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5f67ebce-f6a9-4bd5-bedd-bbeedb338e34", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair" + }, + "1846da67-cf82-4aca-bbcf-c96de5bbcb8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 65.8695217709214, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 11.843154003133986, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1846da67-cf82-4aca-bbcf-c96de5bbcb8a", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.8695217709214, + "Y": 11.843154003133986, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "3c0c3aa2-3934-42a8-aafb-efd0d1cbdd9e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 66.53097472086661, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 11.857740280702052, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3c0c3aa2-3934-42a8-aafb-efd0d1cbdd9e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.53097472086661, + "Y": 11.857740280702052, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "b0649d7e-b8aa-4ef7-aadb-4d3e4de399b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 65.88383736778508, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 12.527696644493869, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b0649d7e-b8aa-4ef7-aadb-4d3e4de399b3", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.88383736778508, + "Y": 12.527696644493869, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "c3a466f5-fc2f-4d65-b20e-1c620794c99e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 66.52810588665663, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 12.50386788575207, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c3a466f5-fc2f-4d65-b20e-1c620794c99e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.52810588665663, + "Y": 12.50386788575207, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "0d223e67-d5ab-49a0-82aa-42efdca29e87": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0d223e67-d5ab-49a0-82aa-42efdca29e87", + "Name": null + }, + "2d8f7a5b-9058-41ef-b926-fbd014654f0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2d8f7a5b-9058-41ef-b926-fbd014654f0b", + "Name": null + }, + "93f0721f-91eb-43aa-a7ea-95c10c73dae2": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2d8f7a5b-9058-41ef-b926-fbd014654f0b", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W" + }, + "2459192b-57c5-44c0-8da1-049dd6980983": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 66.14527073682791, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 11.537819010030724, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2459192b-57c5-44c0-8da1-049dd6980983", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.14527073682791, + "Y": 11.537819010030724, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "e8f34e9e-de74-4392-8c2c-8e9150fdb035": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 65.90158488353346, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 14.691886154115883, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8f34e9e-de74-4392-8c2c-8e9150fdb035", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.90158488353346, + "Y": 14.691886154115883, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "eafb500e-48cd-46eb-8709-649a7612b01e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 66.56303783347866, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 14.706472431683949, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eafb500e-48cd-46eb-8709-649a7612b01e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.56303783347866, + "Y": 14.706472431683949, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "89aaffce-92e1-49f1-8b66-e25c9d8ece3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 65.91590048039713, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 15.376428795475768, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "89aaffce-92e1-49f1-8b66-e25c9d8ece3b", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.91590048039713, + "Y": 15.376428795475768, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "7f64fe48-6773-409d-8991-7574797c9e04": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 66.56016899926868, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 15.352600036733971, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7f64fe48-6773-409d-8991-7574797c9e04", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.56016899926868, + "Y": 15.352600036733971, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "ea9682c0-5853-4f15-8b01-914617837cea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 66.17733384943996, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 14.38655116101262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ea9682c0-5853-4f15-8b01-914617837cea", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.17733384943996, + "Y": 14.38655116101262, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "c4837bab-d953-4baf-b018-795035945bdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 66.17733384943979, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 17.10756749837305, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c4837bab-d953-4baf-b018-795035945bdf", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.17733384943979, + "Y": 17.10756749837305, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "151b77f7-e6d1-4899-8aed-e70d2c456ac0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 66.56016899926851, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 18.0736163740944, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "151b77f7-e6d1-4899-8aed-e70d2c456ac0", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.56016899926851, + "Y": 18.0736163740944, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "f5e5eda7-9a54-4045-a4da-2b7c536afe7e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 65.91590048039696, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 18.097445132836196, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f5e5eda7-9a54-4045-a4da-2b7c536afe7e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.91590048039696, + "Y": 18.097445132836196, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "1233f82b-1201-42a2-964a-3db4f7efe5a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 66.56303783347849, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 17.42748876904438, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1233f82b-1201-42a2-964a-3db4f7efe5a3", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.56303783347849, + "Y": 17.42748876904438, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "f59b74b9-14b7-4074-9ef6-c2d0a30e2377": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 65.90158488353327, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 17.412902491476313, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f59b74b9-14b7-4074-9ef6-c2d0a30e2377", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.90158488353327, + "Y": 17.412902491476313, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "c9f88f52-977a-4d2f-972c-7f4e16f66e32": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c9f88f52-977a-4d2f-972c-7f4e16f66e32", + "Name": null + }, + "e451b647-8d31-42c8-9004-3325d05b399b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e451b647-8d31-42c8-9004-3325d05b399b", + "Name": null + }, + "dfb85ff3-31a2-43b4-9c3f-2d295fb0e93a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/8e8f5b24-3acf-461c-8523-f310f94f43c2.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e451b647-8d31-42c8-9004-3325d05b399b", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "dfb85ff3-31a2-43b4-9c3f-2d295fb0e93a", + "Name": "Steelcase Turnstone - Campfire - Big Table - 48D x 28H" + }, + "ea31c11a-0f21-4f88-bdf6-6595bb52daef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dfb85ff3-31a2-43b4-9c3f-2d295fb0e93a", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.34842411078353, + 1.0, + -6.233330164397643E-14, + 0.0, + 14.85269684295568, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ea31c11a-0f21-4f88-bdf6-6595bb52daef", + "Name": "Steelcase Turnstone - Campfire - Big Table - 48D x 28H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.34842411078353, + "Y": 14.85269684295568, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/8e8f5b24-3acf-461c-8523-f310f94f43c2.glb" + }, + "011318d7-84f4-495c-965c-83628b99a757": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "011318d7-84f4-495c-965c-83628b99a757", + "Name": null + }, + "aa618620-b387-4589-84d8-99ad5a3ca37c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "aa618620-b387-4589-84d8-99ad5a3ca37c", + "Name": null + }, + "4a31dae6-a115-4339-b33a-321daac37bd8": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/7c79ad1c-3233-4b35-a2b0-c8c80069c136.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "aa618620-b387-4589-84d8-99ad5a3ca37c", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4a31dae6-a115-4339-b33a-321daac37bd8", + "Name": "Steelcase Turnstone - Campfire - Big Table - 48D x 40H" + }, + "db01e974-2698-4347-ac58-3a600dcf7775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4a31dae6-a115-4339-b33a-321daac37bd8", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.34842411078369, + 1.0, + -6.233330164397643E-14, + 0.0, + 12.414139730124766, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "db01e974-2698-4347-ac58-3a600dcf7775", + "Name": "Steelcase Turnstone - Campfire - Big Table - 48D x 40H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.34842411078369, + "Y": 12.414139730124766, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7c79ad1c-3233-4b35-a2b0-c8c80069c136.glb" + }, + "0a19cd1c-dceb-40aa-904f-abf6002fffa8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0a19cd1c-dceb-40aa-904f-abf6002fffa8", + "Name": null + }, + "a846b311-4b27-4f8a-af0d-9f473dad424f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a846b311-4b27-4f8a-af0d-9f473dad424f", + "Name": null + }, + "efd224f9-8736-408e-ae21-f23d5a029542": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a846b311-4b27-4f8a-af0d-9f473dad424f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "efd224f9-8736-408e-ae21-f23d5a029542", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair" + }, + "4d1dc9e5-c18c-49ea-9e6d-a4dbfd5531f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.348424284554014, + 1.0, + -6.233330164397643E-14, + 0.0, + 12.81995138554809, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4d1dc9e5-c18c-49ea-9e6d-a4dbfd5531f2", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.348424284554014, + "Y": 12.81995138554809, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "d09cf54d-f6ae-47a0-b30b-d461a99f9a3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.34842428455396, + 1.0, + -6.233330164397643E-14, + 0.0, + 13.65063445124855, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d09cf54d-f6ae-47a0-b30b-d461a99f9a3a", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.34842428455396, + "Y": 13.65063445124855, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "212c50a4-18b4-4e9c-b0a9-b2f99348876c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.34842428455391, + 1.0, + -6.233330164397643E-14, + 0.0, + 14.442978298532065, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "212c50a4-18b4-4e9c-b0a9-b2f99348876c", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.34842428455391, + "Y": 14.442978298532065, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "7c882564-c0a9-438c-897f-fb0eccf5ee1a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7c882564-c0a9-438c-897f-fb0eccf5ee1a", + "Name": null + }, + "ce24c684-0a5e-4876-aea6-ae6b93fd045e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ce24c684-0a5e-4876-aea6-ae6b93fd045e", + "Name": null + }, + "739cbb99-712f-48b0-9eaf-c1c96d101ac5": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ce24c684-0a5e-4876-aea6-ae6b93fd045e", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair" + }, + "3b9b2613-3a52-490e-a863-eeae970cd532": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.347110175120406, + 1.0, + -6.233330164397643E-14, + 0.0, + 15.350269255090716, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b9b2613-3a52-490e-a863-eeae970cd532", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.347110175120406, + "Y": 15.350269255090716, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "d51016d4-75aa-4197-b7c3-93a0179840a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.347110175120314, + 1.0, + -6.233330164397643E-14, + 0.0, + 16.875318165453614, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d51016d4-75aa-4197-b7c3-93a0179840a0", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.347110175120314, + "Y": 16.875318165453614, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "eb7a4948-91a2-460e-9559-67bf475eee1a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + -6.233330164397643E-14, + -1.0, + 0.0, + 62.34711017512036, + 1.0, + -6.233330164397643E-14, + 0.0, + 16.112793710272165, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb7a4948-91a2-460e-9559-67bf475eee1a", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 62.34711017512036, + "Y": 16.112793710272165, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "92fad893-0a6b-4f6e-807c-bdfd78199752": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + 7.010486281635253E-14, + 1.0, + 0.0, + 63.5481862904531, + -1.0, + 7.010486281635253E-14, + 0.0, + 12.823125755741643, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "92fad893-0a6b-4f6e-807c-bdfd78199752", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.5481862904531, + "Y": 12.823125755741643, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "5aecd115-bb1a-4427-85b4-e773eb145458": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + 7.010486281635253E-14, + 1.0, + 0.0, + 63.548186290453046, + -1.0, + 7.010486281635253E-14, + 0.0, + 13.615469603025161, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5aecd115-bb1a-4427-85b4-e773eb145458", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.548186290453046, + "Y": 13.615469603025161, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "53b2f295-a8b2-4ba4-9604-44fb2843e5e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "efd224f9-8736-408e-ae21-f23d5a029542", + "Transform": { + "Matrix": { + "Components": [ + 7.010486281635253E-14, + 1.0, + 0.0, + 63.54818629045299, + -1.0, + 7.010486281635253E-14, + 0.0, + 14.44615266872562, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "53b2f295-a8b2-4ba4-9604-44fb2843e5e4", + "Name": "Steelcase Turnstone - Shortcut X Base - Stool - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.54818629045299, + "Y": 14.44615266872562, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a272e06a-f7c8-4b37-9ce1-0f925749c651.glb" + }, + "0a7b8593-4e47-4a0f-a11e-88ba953c61a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + 6.227779049274517E-14, + 1.0, + 0.0, + 63.54944469841447, + -1.0, + 6.227779049274517E-14, + 0.0, + 16.11596880716555, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0a7b8593-4e47-4a0f-a11e-88ba953c61a8", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.54944469841447, + "Y": 16.11596880716555, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "fd2d5d6c-edb3-4ac8-8d47-baf48faaccdd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + 6.227779049274517E-14, + 1.0, + 0.0, + 63.54944469841452, + -1.0, + 6.227779049274517E-14, + 0.0, + 15.353444351984102, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd2d5d6c-edb3-4ac8-8d47-baf48faaccdd", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.54944469841452, + "Y": 15.353444351984102, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "6c8eef2c-3f0d-4e2d-8663-f76bdcf1de93": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "739cbb99-712f-48b0-9eaf-c1c96d101ac5", + "Transform": { + "Matrix": { + "Components": [ + 6.227779049274517E-14, + 1.0, + 0.0, + 63.54944469841442, + -1.0, + 6.227779049274517E-14, + 0.0, + 16.878493262346996, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6c8eef2c-3f0d-4e2d-8663-f76bdcf1de93", + "Name": "Steelcase Turnstone - Shortcut X Base - Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 63.54944469841442, + "Y": 16.878493262346996, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2d3eda9f-77ac-47e6-b8ca-2277935ad492.glb" + }, + "990960d8-46ac-4630-ae8c-76407f866add": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "990960d8-46ac-4630-ae8c-76407f866add", + "Name": null + }, + "56138742-69d9-4edf-b1e6-3a266a153cef": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "56138742-69d9-4edf-b1e6-3a266a153cef", + "Name": null + }, + "e75d07b9-9221-42b8-8c66-b01050013b34": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/33ea89c1-7aa2-4c21-b43b-217a569c9895.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "56138742-69d9-4edf-b1e6-3a266a153cef", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e75d07b9-9221-42b8-8c66-b01050013b34", + "Name": "Kitchen_Cabinets_FINSA_Pro-Larder-unit-600 - Opening Type - (Two right hinged doors) Height - (2000 mm)" + }, + "8b734ab2-265a-44f2-89a9-1c39c89ed46d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e75d07b9-9221-42b8-8c66-b01050013b34", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.476660267303004, + 1.0, + -5.878058796517593E-14, + 0.0, + 14.96948719207395, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "8b734ab2-265a-44f2-89a9-1c39c89ed46d", + "Name": "Kitchen_Cabinets_FINSA_Pro-Larder-unit-600 - Opening Type - (Two right hinged doors) Height - (2000 mm)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.476660267303004, + "Y": 14.96948719207395, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/33ea89c1-7aa2-4c21-b43b-217a569c9895.glb" + }, + "50409b02-c209-4136-944d-2aab3acc1493": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "50409b02-c209-4136-944d-2aab3acc1493", + "Name": null + }, + "fc25cbe5-92e3-41e1-9f0d-0300289682fe": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc25cbe5-92e3-41e1-9f0d-0300289682fe", + "Name": null + }, + "e7bcef3b-e446-4b44-9833-786baddd8fbf": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/6e6f104d-235a-4a90-8666-81d75a63cb69.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fc25cbe5-92e3-41e1-9f0d-0300289682fe", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e7bcef3b-e446-4b44-9833-786baddd8fbf", + "Name": "Kitchen_Cabinets_FINSA_Pro-Larder-unit-600 - Opening Type - (Two left hinged doors) Height - (2000 mm)" + }, + "d57ea752-b512-4c05-8a2c-313848915e93": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e7bcef3b-e446-4b44-9833-786baddd8fbf", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.476660267303046, + 1.0, + -5.878058796517593E-14, + 0.0, + 14.369596990306784, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "d57ea752-b512-4c05-8a2c-313848915e93", + "Name": "Kitchen_Cabinets_FINSA_Pro-Larder-unit-600 - Opening Type - (Two left hinged doors) Height - (2000 mm)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.476660267303046, + "Y": 14.369596990306784, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/6e6f104d-235a-4a90-8666-81d75a63cb69.glb" + }, + "209b1ca8-8988-4119-9b6a-82e1e868597e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "209b1ca8-8988-4119-9b6a-82e1e868597e", + "Name": null + }, + "3aadad78-9dc8-42fc-ac6d-a1f28bc4dd52": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3aadad78-9dc8-42fc-ac6d-a1f28bc4dd52", + "Name": null + }, + "14a9ead3-41ae-41b8-986b-8e1fb941ac0f": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/fd24d620-adc1-4dc8-af5f-6ed35289f857.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3aadad78-9dc8-42fc-ac6d-a1f28bc4dd52", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "14a9ead3-41ae-41b8-986b-8e1fb941ac0f", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-Drawer-unit-600 - Front variables - (Two drawers)" + }, + "e9cba00f-2851-4dda-b528-96858eec613e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "14a9ead3-41ae-41b8-986b-8e1fb941ac0f", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.47657128096046, + 1.0, + -5.878058796517593E-14, + 0.0, + 13.769356426766564, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "e9cba00f-2851-4dda-b528-96858eec613e", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-Drawer-unit-600 - Front variables - (Two drawers)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47657128096046, + "Y": 13.769356426766564, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/fd24d620-adc1-4dc8-af5f-6ed35289f857.glb" + }, + "fc9b4c83-a1ad-4e2f-b8bd-ef48f0771fee": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc9b4c83-a1ad-4e2f-b8bd-ef48f0771fee", + "Name": null + }, + "e3234a52-0c4c-47cc-823f-d55a82c7c32f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e3234a52-0c4c-47cc-823f-d55a82c7c32f", + "Name": null + }, + "43f89e45-5b76-4668-93a6-f48303675051": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/7a21d5bc-d79e-4cba-9d23-27bc08852b75.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e3234a52-0c4c-47cc-823f-d55a82c7c32f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "43f89e45-5b76-4668-93a6-f48303675051", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-Sink-unit-700 - Opening Type - (Two hinged doors) Height - (700 mm)" + }, + "1bf74e2f-4352-4435-b0ac-8328e95d9293": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43f89e45-5b76-4668-93a6-f48303675051", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.47666026730315, + 1.0, + -5.878058796517593E-14, + 0.0, + 12.519487612637029, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "1bf74e2f-4352-4435-b0ac-8328e95d9293", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-Sink-unit-700 - Opening Type - (Two hinged doors) Height - (700 mm)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47666026730315, + "Y": 12.519487612637029, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/7a21d5bc-d79e-4cba-9d23-27bc08852b75.glb" + }, + "3980ecc8-ac59-42d1-826f-1f1448a7cd4e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3980ecc8-ac59-42d1-826f-1f1448a7cd4e", + "Name": null + }, + "d96ac147-1d59-483e-a0d7-551b5cc12287": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d96ac147-1d59-483e-a0d7-551b5cc12287", + "Name": null + }, + "d1cfaf2f-f9f0-449e-a0f9-0a0fbed72286": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f93c5fd3-360c-422a-b704-9d5b161e1463.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d96ac147-1d59-483e-a0d7-551b5cc12287", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d1cfaf2f-f9f0-449e-a0f9-0a0fbed72286", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-unit-500 - Opening Type - (One left hinged door) Height - (700 mm)" + }, + "d6493faa-f53c-43f4-8495-4a40fabf13fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d1cfaf2f-f9f0-449e-a0f9-0a0fbed72286", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.47666026730319, + 1.0, + -5.878058796517593E-14, + 0.0, + 11.919487049444655, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "d6493faa-f53c-43f4-8495-4a40fabf13fc", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-unit-500 - Opening Type - (One left hinged door) Height - (700 mm)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47666026730319, + "Y": 11.919487049444655, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/f93c5fd3-360c-422a-b704-9d5b161e1463.glb" + }, + "5c5c532f-4015-4681-81d7-c9b062878b56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "14a9ead3-41ae-41b8-986b-8e1fb941ac0f", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 59.47657128096049, + 1.0, + -5.878058796517593E-14, + 0.0, + 13.169356273901982, + 0.0, + 0.0, + 1.0, + -2.707167823245982E-16 + ] + } + }, + "Id": "5c5c532f-4015-4681-81d7-c9b062878b56", + "Name": "Kitchen_Cabinets_FINSA_Pro-Base-Drawer-unit-600 - Front variables - (Two drawers)", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47657128096049, + "Y": 13.169356273901982, + "Z": -2.707167823245982E-16 + }, + "gltfLocation": "https://hypar.io/user-static/fd24d620-adc1-4dc8-af5f-6ed35289f857.glb" + }, + "11ee5d87-df5a-49d4-8070-24c915954d60": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "11ee5d87-df5a-49d4-8070-24c915954d60", + "Name": null + }, + "68ecf229-f931-45c5-b3c7-ef09986c406e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "68ecf229-f931-45c5-b3c7-ef09986c406e", + "Name": null + }, + "f4e99c07-d2e9-4a58-b6f4-0dc377ffa298": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/4e07f177-5c5c-41b0-8492-c0e96a4b4b3c.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "68ecf229-f931-45c5-b3c7-ef09986c406e", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f4e99c07-d2e9-4a58-b6f4-0dc377ffa298", + "Name": "Kitchen_Counter-tops_FINSA_Fintop-Kitchen-worktop - Thickness 20mm" + }, + "c89d9f5c-71d7-48a8-ad3c-3ab4f967b318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f4e99c07-d2e9-4a58-b6f4-0dc377ffa298", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -5.805894299916958E-14, + 0.0, + 59.47666038641712, + 5.805894299916958E-14, + 1.0, + 0.0, + 11.669487161049442, + 0.0, + 0.0, + 1.0, + 0.845 + ] + } + }, + "Id": "c89d9f5c-71d7-48a8-ad3c-3ab4f967b318", + "Name": "Kitchen_Counter-tops_FINSA_Fintop-Kitchen-worktop - Thickness 20mm", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47666038641712, + "Y": 11.669487161049442, + "Z": 0.845 + }, + "gltfLocation": "https://hypar.io/user-static/4e07f177-5c5c-41b0-8492-c0e96a4b4b3c.glb" + }, + "db878087-7529-4333-87a8-a60c31d5ae9a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "db878087-7529-4333-87a8-a60c31d5ae9a", + "Name": null + }, + "6a7f2e15-e70c-4ee2-87d9-3b5959e00ff3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6a7f2e15-e70c-4ee2-87d9-3b5959e00ff3", + "Name": null + }, + "8dc9e74f-c4b4-4474-9cc9-17ee40510448": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/882fb748-9d34-401c-96d3-72f5c678df0b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6a7f2e15-e70c-4ee2-87d9-3b5959e00ff3", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8dc9e74f-c4b4-4474-9cc9-17ee40510448", + "Name": "Sink - Island - Single - 455 mmx455 mm - Public" + }, + "e795419c-c049-49ba-a186-cc83cdb8fc69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8dc9e74f-c4b4-4474-9cc9-17ee40510448", + "Transform": { + "Matrix": { + "Components": [ + -5.805894299916958E-14, + -1.0, + 0.0, + 59.80351673252906, + 1.0, + -5.805894299916958E-14, + 0.0, + 12.51564476680719, + 0.0, + 0.0, + 1.0, + 0.865 + ] + } + }, + "Id": "e795419c-c049-49ba-a186-cc83cdb8fc69", + "Name": "Sink - Island - Single - 455 mmx455 mm - Public", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.80351673252906, + "Y": 12.51564476680719, + "Z": 0.865 + }, + "gltfLocation": "https://hypar.io/user-static/882fb748-9d34-401c-96d3-72f5c678df0b.glb" + }, + "8386b6c0-9037-4c46-8d99-b3c2287c663e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8386b6c0-9037-4c46-8d99-b3c2287c663e", + "Name": null + }, + "61d711b9-62b7-497b-b00b-c33094d8c542": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "61d711b9-62b7-497b-b00b-c33094d8c542", + "Name": null + }, + "f697dee6-96a8-4626-a818-d13c5ce1789d": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/419f7d51-1733-41ad-a29c-1dec70a616b4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "61d711b9-62b7-497b-b00b-c33094d8c542", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f697dee6-96a8-4626-a818-d13c5ce1789d", + "Name": "skirt_01 - skirt_01" + }, + "13a47187-e16c-493f-bf38-a1515f898468": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f697dee6-96a8-4626-a818-d13c5ce1789d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -5.700423112577568E-14, + 0.0, + 59.47666034974814, + 5.700423112577568E-14, + 1.0, + 0.0, + 15.242977448273917, + 0.0, + 0.0, + 1.0, + 0.0002500000000029369 + ] + } + }, + "Id": "13a47187-e16c-493f-bf38-a1515f898468", + "Name": "skirt_01 - skirt_01", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47666034974814, + "Y": 15.242977448273917, + "Z": 0.0002500000000029369 + }, + "gltfLocation": "https://hypar.io/user-static/419f7d51-1733-41ad-a29c-1dec70a616b4.glb" + }, + "1fb8c36e-7df2-4ae1-a836-a18676cdb025": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f697dee6-96a8-4626-a818-d13c5ce1789d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -5.700423112577568E-14, + 0.0, + 59.47666034974834, + 5.700423112577568E-14, + 1.0, + 0.0, + 11.675562934491797, + 0.0, + 0.0, + 1.0, + -7.137775680072549E-16 + ] + } + }, + "Id": "1fb8c36e-7df2-4ae1-a836-a18676cdb025", + "Name": "skirt_01 - skirt_01", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.47666034974834, + "Y": 11.675562934491797, + "Z": -7.137775680072549E-16 + }, + "gltfLocation": "https://hypar.io/user-static/419f7d51-1733-41ad-a29c-1dec70a616b4.glb" + }, + "81952bbd-6899-44fa-8dff-352ff0437b8a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "81952bbd-6899-44fa-8dff-352ff0437b8a", + "Name": null + }, + "7e44e65c-241a-46f6-90ae-7d0426ae1fc6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7e44e65c-241a-46f6-90ae-7d0426ae1fc6", + "Name": null + }, + "af34ad03-98c4-4706-8ea7-94145f533563": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/c913fda5-2812-4443-9474-6cd34f672869.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7e44e65c-241a-46f6-90ae-7d0426ae1fc6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "af34ad03-98c4-4706-8ea7-94145f533563", + "Name": "skirt_04 - skirt_04" + }, + "6efa49af-d384-481c-b709-5d06b04417ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "af34ad03-98c4-4706-8ea7-94145f533563", + "Transform": { + "Matrix": { + "Components": [ + -5.878058796517593E-14, + -1.0, + 0.0, + 60.0296603687518, + 1.0, + -5.878058796517593E-14, + 0.0, + 11.675644814392381, + 0.0, + 0.0, + 1.0, + 1.7139756280926122E-14 + ] + } + }, + "Id": "6efa49af-d384-481c-b709-5d06b04417ca", + "Name": "skirt_04 - skirt_04", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.0296603687518, + "Y": 11.675644814392381, + "Z": 1.7139756280926122E-14 + }, + "gltfLocation": "https://hypar.io/user-static/c913fda5-2812-4443-9474-6cd34f672869.glb" + }, + "6d63a442-50d4-4cf6-b9bd-e3579d1bedcc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6d63a442-50d4-4cf6-b9bd-e3579d1bedcc", + "Name": null + }, + "219691a5-c671-42ea-9d32-8078bb5f34bd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "219691a5-c671-42ea-9d32-8078bb5f34bd", + "Name": null + }, + "da919f27-3faa-4c22-884d-c9898b9f691d": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/c09888a7-d4b6-4e3c-b36b-1f8adfb10472.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "219691a5-c671-42ea-9d32-8078bb5f34bd", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "da919f27-3faa-4c22-884d-c9898b9f691d", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Cafe - Bar Height - 30W" + }, + "5324eb85-7dcc-4dcf-aafb-f45f99b4658b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da919f27-3faa-4c22-884d-c9898b9f691d", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.005734444349486E-14, + 0.0, + 60.28143041123378, + -6.005734444349486E-14, + -1.0, + 0.0, + 17.176035817092718, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5324eb85-7dcc-4dcf-aafb-f45f99b4658b", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Cafe - Bar Height - 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.28143041123378, + "Y": 17.176035817092718, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c09888a7-d4b6-4e3c-b36b-1f8adfb10472.glb" + }, + "c10cdfa1-a3a2-4d80-a38c-022996c54873": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c10cdfa1-a3a2-4d80-a38c-022996c54873", + "Name": null + }, + "b77b920a-bf6d-4e85-8316-b133df2e1267": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b77b920a-bf6d-4e85-8316-b133df2e1267", + "Name": null + }, + "8a0ec237-1313-4284-9de7-f21365616788": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/bfba33bc-cfc3-4b66-8584-adef614ccf8c.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e278b7e-5f25-4e57-8ef6-c819f01bb98d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b77b920a-bf6d-4e85-8316-b133df2e1267", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8a0ec237-1313-4284-9de7-f21365616788", + "Name": "Steelcase - Seating - Nooi - Stool - Bar Height" + }, + "fdac9ea7-eeae-4884-837a-11e25505f9df": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8a0ec237-1313-4284-9de7-f21365616788", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.005734444349486E-14, + 0.0, + 59.90483216680193, + -6.005734444349486E-14, + -1.0, + 0.0, + 17.136543734176804, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fdac9ea7-eeae-4884-837a-11e25505f9df", + "Name": "Steelcase - Seating - Nooi - Stool - Bar Height", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.90483216680193, + "Y": 17.136543734176804, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/bfba33bc-cfc3-4b66-8584-adef614ccf8c.glb" + }, + "a6ffff2b-14f7-4513-98ec-e8977589bf1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8a0ec237-1313-4284-9de7-f21365616788", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -5.689320882331316E-14, + 0.0, + 59.90483227580683, + 5.689320882331316E-14, + 1.0, + 0.0, + 17.96900494971382, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6ffff2b-14f7-4513-98ec-e8977589bf1d", + "Name": "Steelcase - Seating - Nooi - Stool - Bar Height", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.90483227580683, + "Y": 17.96900494971382, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/bfba33bc-cfc3-4b66-8584-adef614ccf8c.glb" + }, + "61c08159-0b32-45be-a5b1-3442167aca5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 69.90886183880278, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 17.41290249147656, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "61c08159-0b32-45be-a5b1-3442167aca5e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.90886183880278, + "Y": 17.41290249147656, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "e42c21c4-563d-4c32-8e51-363cb84110a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 70.57031478874798, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 17.427488769044626, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e42c21c4-563d-4c32-8e51-363cb84110a5", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.57031478874798, + "Y": 17.427488769044626, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "09a3de6f-8107-483a-9f0d-03581b88640a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 69.92317743566645, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 18.097445132836445, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "09a3de6f-8107-483a-9f0d-03581b88640a", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.92317743566645, + "Y": 18.097445132836445, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "ae0d80eb-adcc-4cc2-a56b-9d91c6eb3151": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 70.567445954538, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 18.073616374094644, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae0d80eb-adcc-4cc2-a56b-9d91c6eb3151", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.567445954538, + "Y": 18.073616374094644, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "ea01e74f-ab9e-4552-89de-49de70f2517b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 70.1846108047093, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 17.1075674983733, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ea01e74f-ab9e-4552-89de-49de70f2517b", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.1846108047093, + "Y": 17.1075674983733, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "6b86ccc8-c878-4712-9816-4d460ef1c29f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 70.18461080470945, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 14.386551161012868, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6b86ccc8-c878-4712-9816-4d460ef1c29f", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.18461080470945, + "Y": 14.386551161012868, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "aa2477d3-d98f-4127-889e-06ca169f6cef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 70.56744595453816, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 15.352600036734218, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aa2477d3-d98f-4127-889e-06ca169f6cef", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.56744595453816, + "Y": 15.352600036734218, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "3f497fec-4f79-45dc-ab9a-7c3e081dd1e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 69.92317743566662, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 15.376428795476015, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3f497fec-4f79-45dc-ab9a-7c3e081dd1e1", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.92317743566662, + "Y": 15.376428795476015, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "deae5f16-1f23-4879-a05f-065bad237392": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 70.57031478874815, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 14.706472431684196, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "deae5f16-1f23-4879-a05f-065bad237392", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.57031478874815, + "Y": 14.706472431684196, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "17a30e92-c5ab-4b0d-bf3e-9051ab2f909b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 69.90886183880293, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 14.69188615411613, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "17a30e92-c5ab-4b0d-bf3e-9051ab2f909b", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.90886183880293, + "Y": 14.69188615411613, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "be2f43d7-4362-4a81-a15b-367e591875b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "93f0721f-91eb-43aa-a7ea-95c10c73dae2", + "Transform": { + "Matrix": { + "Components": [ + -0.68046442413116, + -0.7327811184056592, + 0.0, + 70.15254769209741, + 0.7327811184056592, + -0.68046442413116, + 0.0, + 11.53781901003097, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "be2f43d7-4362-4a81-a15b-367e591875b4", + "Name": "Steelcase Coalesse - Enea Lottus - Table - Square - Conference - 36W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.15254769209741, + "Y": 11.53781901003097, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/96db22e3-6e86-475b-9306-d32175dae219.glb" + }, + "de176afe-ca84-40b7-ab3e-024972f724c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811871127, + 0.7071067811859825, + 0.0, + 70.53538284192612, + -0.7071067811859825, + 0.7071067811871127, + 0.0, + 12.503867885752317, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "de176afe-ca84-40b7-ab3e-024972f724c2", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.53538284192612, + "Y": 12.503867885752317, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "7db98d43-8d4d-4e7d-af5f-d3d1b853a40e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + 0.7443459612085376, + -0.6677941973636327, + 0.0, + 69.89111432305458, + 0.6677941973636327, + 0.7443459612085376, + 0.0, + 12.527696644494117, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7db98d43-8d4d-4e7d-af5f-d3d1b853a40e", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.89111432305458, + "Y": 12.527696644494117, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "2341cbc0-0588-4967-bd29-6e113df66f9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864942, + 0.7071067811866009, + 0.0, + 70.53825167613611, + -0.7071067811866009, + -0.7071067811864942, + 0.0, + 11.857740280702298, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2341cbc0-0588-4967-bd29-6e113df66f9d", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.53825167613611, + "Y": 11.857740280702298, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "e8a9be14-75e4-4e09-9900-e76ad2243695": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a97fd7c-f9db-4555-a841-5c38a366726f", + "Transform": { + "Matrix": { + "Components": [ + -0.6815562254572706, + -0.7317657490894461, + 0.0, + 69.8767987261909, + 0.7317657490894461, + -0.6815562254572706, + 0.0, + 11.843154003134233, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8a9be14-75e4-4e09-9900-e76ad2243695", + "Name": "Steelcase - Seating - Nooi - Cafeteria Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.8767987261909, + "Y": 11.843154003134233, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cf26c29e-627a-4044-8795-24ac502bc0e1.glb" + }, + "9be6d380-b2ce-4652-a3b9-9f8ec5c61b71": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "1846da67-cf82-4aca-bbcf-c96de5bbcb8a", + "3c0c3aa2-3934-42a8-aafb-efd0d1cbdd9e", + "b0649d7e-b8aa-4ef7-aadb-4d3e4de399b3", + "c3a466f5-fc2f-4d65-b20e-1c620794c99e", + "2459192b-57c5-44c0-8da1-049dd6980983", + "e8f34e9e-de74-4392-8c2c-8e9150fdb035", + "eafb500e-48cd-46eb-8709-649a7612b01e", + "89aaffce-92e1-49f1-8b66-e25c9d8ece3b", + "7f64fe48-6773-409d-8991-7574797c9e04", + "ea9682c0-5853-4f15-8b01-914617837cea", + "c4837bab-d953-4baf-b018-795035945bdf", + "151b77f7-e6d1-4899-8aed-e70d2c456ac0", + "f5e5eda7-9a54-4045-a4da-2b7c536afe7e", + "1233f82b-1201-42a2-964a-3db4f7efe5a3", + "f59b74b9-14b7-4074-9ef6-c2d0a30e2377", + "ea31c11a-0f21-4f88-bdf6-6595bb52daef", + "db01e974-2698-4347-ac58-3a600dcf7775", + "4d1dc9e5-c18c-49ea-9e6d-a4dbfd5531f2", + "d09cf54d-f6ae-47a0-b30b-d461a99f9a3a", + "212c50a4-18b4-4e9c-b0a9-b2f99348876c", + "3b9b2613-3a52-490e-a863-eeae970cd532", + "d51016d4-75aa-4197-b7c3-93a0179840a0", + "eb7a4948-91a2-460e-9559-67bf475eee1a", + "92fad893-0a6b-4f6e-807c-bdfd78199752", + "5aecd115-bb1a-4427-85b4-e773eb145458", + "53b2f295-a8b2-4ba4-9604-44fb2843e5e4", + "0a7b8593-4e47-4a0f-a11e-88ba953c61a8", + "fd2d5d6c-edb3-4ac8-8d47-baf48faaccdd", + "6c8eef2c-3f0d-4e2d-8663-f76bdcf1de93", + "8b734ab2-265a-44f2-89a9-1c39c89ed46d", + "d57ea752-b512-4c05-8a2c-313848915e93", + "e9cba00f-2851-4dda-b528-96858eec613e", + "1bf74e2f-4352-4435-b0ac-8328e95d9293", + "d6493faa-f53c-43f4-8495-4a40fabf13fc", + "5c5c532f-4015-4681-81d7-c9b062878b56", + "c89d9f5c-71d7-48a8-ad3c-3ab4f967b318", + "e795419c-c049-49ba-a186-cc83cdb8fc69", + "13a47187-e16c-493f-bf38-a1515f898468", + "1fb8c36e-7df2-4ae1-a836-a18676cdb025", + "6efa49af-d384-481c-b709-5d06b04417ca", + "5324eb85-7dcc-4dcf-aafb-f45f99b4658b", + "fdac9ea7-eeae-4884-837a-11e25505f9df", + "a6ffff2b-14f7-4513-98ec-e8977589bf1d", + "61c08159-0b32-45be-a5b1-3442167aca5e", + "e42c21c4-563d-4c32-8e51-363cb84110a5", + "09a3de6f-8107-483a-9f0d-03581b88640a", + "ae0d80eb-adcc-4cc2-a56b-9d91c6eb3151", + "ea01e74f-ab9e-4552-89de-49de70f2517b", + "6b86ccc8-c878-4712-9816-4d460ef1c29f", + "aa2477d3-d98f-4127-889e-06ca169f6cef", + "3f497fec-4f79-45dc-ab9a-7c3e081dd1e1", + "deae5f16-1f23-4879-a05f-065bad237392", + "17a30e92-c5ab-4b0d-bf3e-9051ab2f909b", + "be2f43d7-4362-4a81-a15b-367e591875b4", + "de176afe-ca84-40b7-ab3e-024972f724c2", + "7db98d43-8d4d-4e7d-af5f-d3d1b853a40e", + "2341cbc0-0588-4967-bd29-6e113df66f9d", + "e8a9be14-75e4-4e09-9900-e76ad2243695" + ], + "Id": "9be6d380-b2ce-4652-a3b9-9f8ec5c61b71", + "Name": null + }, + "1be5e452-af8c-4176-ade2-da25159878ef": { + "discriminator": "Elements.SpaceMetric", + "Space": "a9553044-54e7-45e7-b6c6-da68c9e34c92", + "Seats": 38.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "1be5e452-af8c-4176-ade2-da25159878ef", + "Name": null + }, + "8b1a7e59-d27e-4065-bb80-0d1073f506ea": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Name": "Default Material" + }, + "3c545178-e7d9-45a4-b636-babb4912776f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3c545178-e7d9-45a4-b636-babb4912776f", + "Name": null + }, + "a1184bd6-abbe-4834-bdfc-dec227172d7f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a1184bd6-abbe-4834-bdfc-dec227172d7f", + "Name": null + }, + "2ad2509f-de7f-49e7-83bb-afa887c98d09": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/2ce4e505-143d-4b5c-8b0d-09885998da61.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a1184bd6-abbe-4834-bdfc-dec227172d7f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2ad2509f-de7f-49e7-83bb-afa887c98d09", + "Name": "Blu Dot - Right On Rug - 1.829 m x 2.743 m" + }, + "9202b973-43c4-481d-9d38-6c3ac5b6f06d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2ad2509f-de7f-49e7-83bb-afa887c98d09", + "Transform": { + "Matrix": { + "Components": [ + 0.7660461917639415, + 0.6427855257268653, + 0.0, + 35.67370119343777, + -0.6427855257268653, + 0.7660461917639415, + 0.0, + 26.31433418820015, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9202b973-43c4-481d-9d38-6c3ac5b6f06d", + "Name": "Blu Dot - Right On Rug - 1.829 m x 2.743 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.67370119343777, + "Y": 26.31433418820015, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/2ce4e505-143d-4b5c-8b0d-09885998da61.glb" + }, + "7c55d070-1c49-4e34-8f05-9262756578e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7c55d070-1c49-4e34-8f05-9262756578e7", + "Name": null + }, + "1720d7b8-3cab-40fc-9608-c271d6a354f1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1720d7b8-3cab-40fc-9608-c271d6a354f1", + "Name": null + }, + "7c9397e7-a3de-458a-ac9f-8beeb14c4c08": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f7ca9d12-290b-444d-900a-6a1d37af4a11.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1720d7b8-3cab-40fc-9608-c271d6a354f1", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7c9397e7-a3de-458a-ac9f-8beeb14c4c08", + "Name": "Blu Dot - Right On Rug - 1.829 m x 2.743 m 2" + }, + "ed1914d7-b0a2-4d59-810e-eba6df74c19e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c9397e7-a3de-458a-ac9f-8beeb14c4c08", + "Transform": { + "Matrix": { + "Components": [ + -0.7660446835233143, + -0.6427873231836991, + 0.0, + 35.660163114951374, + 0.6427873231836991, + -0.7660446835233143, + 0.0, + 29.06725826100496, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ed1914d7-b0a2-4d59-810e-eba6df74c19e", + "Name": "Blu Dot - Right On Rug - 1.829 m x 2.743 m 2", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.660163114951374, + "Y": 29.06725826100496, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f7ca9d12-290b-444d-900a-6a1d37af4a11.glb" + }, + "ca1d68fc-90f8-4e84-9f1a-3b0a900a4f38": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ca1d68fc-90f8-4e84-9f1a-3b0a900a4f38", + "Name": null + }, + "e2b34cd7-f3f7-440b-baf5-9f1840866ed0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e2b34cd7-f3f7-440b-baf5-9f1840866ed0", + "Name": null + }, + "e66e7e74-8f0b-433c-8dbc-fa8bdd90434e": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/141cd9de-7a39-4e4a-9207-fe261cbaef0e.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e2b34cd7-f3f7-440b-baf5-9f1840866ed0", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e66e7e74-8f0b-433c-8dbc-fa8bdd90434e", + "Name": "Extremis - Sticks - Space Divider 60x30 - Accessories" + }, + "b9ec8a57-e256-468b-b633-a0d850e3c9c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e66e7e74-8f0b-433c-8dbc-fa8bdd90434e", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 33.71061435346362, + 1.0, + 3.286600300096432E-15, + 0.0, + 29.848966415348876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b9ec8a57-e256-468b-b633-a0d850e3c9c8", + "Name": "Extremis - Sticks - Space Divider 60x30 - Accessories", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.71061435346362, + "Y": 29.848966415348876, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/141cd9de-7a39-4e4a-9207-fe261cbaef0e.glb" + }, + "c84df0aa-75e5-4e1e-9495-544337145e97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e66e7e74-8f0b-433c-8dbc-fa8bdd90434e", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 33.71061435346362, + 1.0, + 3.286600300096432E-15, + 0.0, + 29.233477055436488, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c84df0aa-75e5-4e1e-9495-544337145e97", + "Name": "Extremis - Sticks - Space Divider 60x30 - Accessories", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.71061435346362, + "Y": 29.233477055436488, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/141cd9de-7a39-4e4a-9207-fe261cbaef0e.glb" + }, + "d7e350fa-62cf-41df-a737-7dbb2c46da88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e66e7e74-8f0b-433c-8dbc-fa8bdd90434e", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 33.71061435346361, + 1.0, + 3.286600300096432E-15, + 0.0, + 28.609677142694444, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7e350fa-62cf-41df-a737-7dbb2c46da88", + "Name": "Extremis - Sticks - Space Divider 60x30 - Accessories", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 33.71061435346361, + "Y": 28.609677142694444, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/141cd9de-7a39-4e4a-9207-fe261cbaef0e.glb" + }, + "c826daa9-834f-4147-a81b-9066c3075946": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c826daa9-834f-4147-a81b-9066c3075946", + "Name": null + }, + "08244823-6ad1-47b4-abbe-dcb7eb5896f4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "08244823-6ad1-47b4-abbe-dcb7eb5896f4", + "Name": null + }, + "1b4173d0-5534-4d94-9f46-a92244c685b6": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/c84d0092-962f-497e-ba1a-d5b25b61d1f4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "08244823-6ad1-47b4-abbe-dcb7eb5896f4", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1b4173d0-5534-4d94-9f46-a92244c685b6", + "Name": "Steelcase - B-Free - Seating - Cube - Small - Glide" + }, + "fa7c6e76-5b76-414f-85b1-144031a0c06a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1b4173d0-5534-4d94-9f46-a92244c685b6", + "Transform": { + "Matrix": { + "Components": [ + -0.9659258262890608, + -0.25881904510254927, + 0.0, + 36.31339060169818, + 0.25881904510254927, + -0.9659258262890608, + 0.0, + 26.861198731581826, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fa7c6e76-5b76-414f-85b1-144031a0c06a", + "Name": "Steelcase - B-Free - Seating - Cube - Small - Glide", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 36.31339060169818, + "Y": 26.861198731581826, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c84d0092-962f-497e-ba1a-d5b25b61d1f4.glb" + }, + "704b9a29-822e-426a-ab86-3b51eac7c41f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "704b9a29-822e-426a-ab86-3b51eac7c41f", + "Name": null + }, + "c3b89edb-f898-4e43-89ac-34424a533f4d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c3b89edb-f898-4e43-89ac-34424a533f4d", + "Name": null + }, + "da57204e-e44a-4e9c-b5ee-97b626aa8ceb": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d323eb73-c585-4ed2-a162-aab7b777ae31.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c3b89edb-f898-4e43-89ac-34424a533f4d", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "da57204e-e44a-4e9c-b5ee-97b626aa8ceb", + "Name": "Steelcase - Seating - Sylvi - Table - Occasional - Round - 30dia" + }, + "fb885637-caef-4c61-89eb-34c9347e133a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da57204e-e44a-4e9c-b5ee-97b626aa8ceb", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 35.52313510246514, + 1.0, + 3.286600300096432E-15, + 0.0, + 29.106709080434875, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fb885637-caef-4c61-89eb-34c9347e133a", + "Name": "Steelcase - Seating - Sylvi - Table - Occasional - Round - 30dia", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.52313510246514, + "Y": 29.106709080434875, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d323eb73-c585-4ed2-a162-aab7b777ae31.glb" + }, + "e0a05e9a-37ee-4b4e-af81-ba41897ff0a7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da57204e-e44a-4e9c-b5ee-97b626aa8ceb", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 35.52313510246513, + 1.0, + 3.286600300096432E-15, + 0.0, + 26.20212770543752, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e0a05e9a-37ee-4b4e-af81-ba41897ff0a7", + "Name": "Steelcase - Seating - Sylvi - Table - Occasional - Round - 30dia", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.52313510246513, + "Y": 26.20212770543752, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d323eb73-c585-4ed2-a162-aab7b777ae31.glb" + }, + "ea7a1331-ce62-417b-a414-a3f18baea6f8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ea7a1331-ce62-417b-a414-a3f18baea6f8", + "Name": null + }, + "34b38970-2073-4494-9ce6-9b56a9c9709a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "34b38970-2073-4494-9ce6-9b56a9c9709a", + "Name": null + }, + "2d8ab5b7-3e28-4eee-bb07-ac8c472dc6de": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/5b857918-47c5-4498-86bb-997405e1e111.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "34b38970-2073-4494-9ce6-9b56a9c9709a", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2d8ab5b7-3e28-4eee-bb07-ac8c472dc6de", + "Name": "Steelcase Coalesse - Lagunitas - Table - Personal - 13D x 24W" + }, + "589e7c9c-f732-4038-8b52-656b6d91e413": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8ab5b7-3e28-4eee-bb07-ac8c472dc6de", + "Transform": { + "Matrix": { + "Components": [ + -0.17364817766712773, + 0.9848077530121733, + 0.0, + 34.97057894044702, + -0.9848077530121733, + -0.17364817766712773, + 0.0, + 28.443988688407092, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "589e7c9c-f732-4038-8b52-656b6d91e413", + "Name": "Steelcase Coalesse - Lagunitas - Table - Personal - 13D x 24W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.97057894044702, + "Y": 28.443988688407092, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/5b857918-47c5-4498-86bb-997405e1e111.glb" + }, + "ab7e7945-0803-4f35-804a-474720be445b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8ab5b7-3e28-4eee-bb07-ac8c472dc6de", + "Transform": { + "Matrix": { + "Components": [ + 0.49999999999984546, + 0.866025403784528, + 0.0, + 34.763284552456064, + -0.866025403784528, + 0.49999999999984546, + 0.0, + 27.252076460349272, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ab7e7945-0803-4f35-804a-474720be445b", + "Name": "Steelcase Coalesse - Lagunitas - Table - Personal - 13D x 24W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.763284552456064, + "Y": 27.252076460349272, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/5b857918-47c5-4498-86bb-997405e1e111.glb" + }, + "6b4b6211-40ba-4675-bebd-41716c4bc24d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b4b6211-40ba-4675-bebd-41716c4bc24d", + "Name": null + }, + "d94e54cf-738a-4261-9d97-89536c3e42f0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d94e54cf-738a-4261-9d97-89536c3e42f0", + "Name": null + }, + "38e99332-0b25-4b3e-9027-0b9c0b09c457": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/242013db-7623-4cae-b39d-2c32d85ef15b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d94e54cf-738a-4261-9d97-89536c3e42f0", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "38e99332-0b25-4b3e-9027-0b9c0b09c457", + "Name": "Steelcase - Thread - Power Hub - NEMA - 30H" + }, + "938c9980-7428-4847-ad88-98225e5bea9c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "38e99332-0b25-4b3e-9027-0b9c0b09c457", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 34.615607613422746, + 1.0, + 3.286600300096432E-15, + 0.0, + 24.744909646783384, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "938c9980-7428-4847-ad88-98225e5bea9c", + "Name": "Steelcase - Thread - Power Hub - NEMA - 30H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.615607613422746, + "Y": 24.744909646783384, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/242013db-7623-4cae-b39d-2c32d85ef15b.glb" + }, + "197a74a9-1295-4cc5-9df6-429d1945484e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "197a74a9-1295-4cc5-9df6-429d1945484e", + "Name": null + }, + "909cc358-3e52-4578-aea0-bd7a97eb0013": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "909cc358-3e52-4578-aea0-bd7a97eb0013", + "Name": null + }, + "d07a3fea-dd0a-4df5-b3af-383398a60a86": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/8e4191a7-a78e-470b-96f3-cb2b61b33b23.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "909cc358-3e52-4578-aea0-bd7a97eb0013", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d07a3fea-dd0a-4df5-b3af-383398a60a86", + "Name": "Flos - Tatou F - Lighting" + }, + "88e40835-d780-44e7-aad2-db6cdc4aa053": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d07a3fea-dd0a-4df5-b3af-383398a60a86", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 34.96756194369436, + 1.0, + 3.286600300096432E-15, + 0.0, + 24.744910383459708, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "88e40835-d780-44e7-aad2-db6cdc4aa053", + "Name": "Flos - Tatou F - Lighting", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.96756194369436, + "Y": 24.744910383459708, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/8e4191a7-a78e-470b-96f3-cb2b61b33b23.glb" + }, + "a363db95-6ffd-4e6b-a474-529cccbac02d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a363db95-6ffd-4e6b-a474-529cccbac02d", + "Name": null + }, + "1b71a336-58bf-4ef8-b915-b6d28d31810f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1b71a336-58bf-4ef8-b915-b6d28d31810f", + "Name": null + }, + "59f464eb-ef22-4799-a7bd-b8700a15608a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f64bc3cf-7421-4b53-9fbc-92c95ac672cb.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1b71a336-58bf-4ef8-b915-b6d28d31810f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "59f464eb-ef22-4799-a7bd-b8700a15608a", + "Name": "West Elm Work Collection - Metal Frame Chair - Chair" + }, + "84348a43-8fa1-4c76-b424-815806b7b15f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "59f464eb-ef22-4799-a7bd-b8700a15608a", + "Transform": { + "Matrix": { + "Components": [ + -0.9659258262891496, + 0.25881904510221726, + 0.0, + 35.62537473275523, + -0.25881904510221726, + -0.9659258262891496, + 0.0, + 24.92363795906543, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "84348a43-8fa1-4c76-b424-815806b7b15f", + "Name": "West Elm Work Collection - Metal Frame Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.62537473275523, + "Y": 24.92363795906543, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f64bc3cf-7421-4b53-9fbc-92c95ac672cb.glb" + }, + "a7406b2f-5e87-492a-be04-4f7a587f4b70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "59f464eb-ef22-4799-a7bd-b8700a15608a", + "Transform": { + "Matrix": { + "Components": [ + 0.9063077870364536, + 0.42261826174112055, + 0.0, + 35.84328270516582, + -0.42261826174112055, + 0.9063077870364536, + 0.0, + 30.285053127615022, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a7406b2f-5e87-492a-be04-4f7a587f4b70", + "Name": "West Elm Work Collection - Metal Frame Chair - Chair", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 35.84328270516582, + "Y": 30.285053127615022, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f64bc3cf-7421-4b53-9fbc-92c95ac672cb.glb" + }, + "5de35697-6a8d-49a8-b5af-64702c36226d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5de35697-6a8d-49a8-b5af-64702c36226d", + "Name": null + }, + "29b0a616-702e-416a-a1d0-5b3348c3f255": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "29b0a616-702e-416a-a1d0-5b3348c3f255", + "Name": null + }, + "c56f5b4a-cc68-42cc-a627-1be931251c26": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/b1e7fd86-3124-4f9d-9e0d-650f453df774.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "29b0a616-702e-416a-a1d0-5b3348c3f255", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c56f5b4a-cc68-42cc-a627-1be931251c26", + "Name": "Steelcase - Media Scape - Lounge - Corner Left - Same Upholstery" + }, + "f16a1b88-d4f9-4396-bd0e-0cc7cbe3f784": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c56f5b4a-cc68-42cc-a627-1be931251c26", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 34.73118930723047, + 1.0, + 3.286600300096432E-15, + 0.0, + 28.6887518341731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f16a1b88-d4f9-4396-bd0e-0cc7cbe3f784", + "Name": "Steelcase - Media Scape - Lounge - Corner Left - Same Upholstery", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.73118930723047, + "Y": 28.6887518341731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b1e7fd86-3124-4f9d-9e0d-650f453df774.glb" + }, + "8bf75bfc-b30e-4794-b042-0de14dee03b2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8bf75bfc-b30e-4794-b042-0de14dee03b2", + "Name": null + }, + "40d43df7-0fe7-4237-b716-b35538c09c50": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "40d43df7-0fe7-4237-b716-b35538c09c50", + "Name": null + }, + "0b0b8350-10b9-4546-a5b5-f221cee5112a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/537d3aad-7cb1-4a4c-af8f-3889e9becce7.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "40d43df7-0fe7-4237-b716-b35538c09c50", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0b0b8350-10b9-4546-a5b5-f221cee5112a", + "Name": "Steelcase - Media Scape - Lounge - Straight Inverted - Same Upholstery" + }, + "51a984a0-1575-43f3-ba60-bfadd0090113": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b0b8350-10b9-4546-a5b5-f221cee5112a", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 34.731189307230466, + 1.0, + 3.286600300096432E-15, + 0.0, + 26.65799052197927, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51a984a0-1575-43f3-ba60-bfadd0090113", + "Name": "Steelcase - Media Scape - Lounge - Straight Inverted - Same Upholstery", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.731189307230466, + "Y": 26.65799052197927, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/537d3aad-7cb1-4a4c-af8f-3889e9becce7.glb" + }, + "1eefe18e-9aa3-4b0d-85e8-701cfa24923f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1eefe18e-9aa3-4b0d-85e8-701cfa24923f", + "Name": null + }, + "656fbc33-a7a7-4476-95f0-ed060c188cb6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "656fbc33-a7a7-4476-95f0-ed060c188cb6", + "Name": null + }, + "c803f0bf-48e4-4268-a838-f79c5b645118": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/cdc18dac-396b-474d-a20b-2b1670a22a1a.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8b1a7e59-d27e-4065-bb80-0d1073f506ea", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "656fbc33-a7a7-4476-95f0-ed060c188cb6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c803f0bf-48e4-4268-a838-f79c5b645118", + "Name": "Steelcase - Media Scape - Lounge - Corner Right - Same Upholstery" + }, + "8e22be4b-44a7-4c6c-9e41-4c13311a2cfe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c803f0bf-48e4-4268-a838-f79c5b645118", + "Transform": { + "Matrix": { + "Components": [ + 3.286600300096432E-15, + -1.0, + 0.0, + 34.731189307230466, + 1.0, + 3.286600300096432E-15, + 0.0, + 26.657990631210012, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e22be4b-44a7-4c6c-9e41-4c13311a2cfe", + "Name": "Steelcase - Media Scape - Lounge - Corner Right - Same Upholstery", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 34.731189307230466, + "Y": 26.657990631210012, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/cdc18dac-396b-474d-a20b-2b1670a22a1a.glb" + }, + "934e96d9-541e-4a9e-86c9-29613fe807b6": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "9202b973-43c4-481d-9d38-6c3ac5b6f06d", + "ed1914d7-b0a2-4d59-810e-eba6df74c19e", + "b9ec8a57-e256-468b-b633-a0d850e3c9c8", + "c84df0aa-75e5-4e1e-9495-544337145e97", + "d7e350fa-62cf-41df-a737-7dbb2c46da88", + "fa7c6e76-5b76-414f-85b1-144031a0c06a", + "fb885637-caef-4c61-89eb-34c9347e133a", + "e0a05e9a-37ee-4b4e-af81-ba41897ff0a7", + "589e7c9c-f732-4038-8b52-656b6d91e413", + "ab7e7945-0803-4f35-804a-474720be445b", + "938c9980-7428-4847-ad88-98225e5bea9c", + "88e40835-d780-44e7-aad2-db6cdc4aa053", + "84348a43-8fa1-4c76-b424-815806b7b15f", + "a7406b2f-5e87-492a-be04-4f7a587f4b70", + "f16a1b88-d4f9-4396-bd0e-0cc7cbe3f784", + "51a984a0-1575-43f3-ba60-bfadd0090113", + "8e22be4b-44a7-4c6c-9e41-4c13311a2cfe" + ], + "Id": "934e96d9-541e-4a9e-86c9-29613fe807b6", + "Name": null + }, + "42ae8477-a2b0-4217-abc3-6de7cc610ea2": { + "discriminator": "Elements.SpaceMetric", + "Space": "7e71d06e-b9c6-4bd0-a319-1b1c1bc68105", + "Seats": 9.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "42ae8477-a2b0-4217-abc3-6de7cc610ea2", + "Name": null + }, + "063df4a7-6a5a-42af-b2f5-35b32cdea9ae": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Name": "Default Material" + }, + "c1814b8d-a528-4a71-bb48-4517e18d3436": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c1814b8d-a528-4a71-bb48-4517e18d3436", + "Name": null + }, + "86cc2f4e-96f5-470d-a764-0de9805dc716": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "86cc2f4e-96f5-470d-a764-0de9805dc716", + "Name": null + }, + "230816dc-fd50-43f4-ace7-d8bd179f536e": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/066f3860-6c4f-439f-8d32-8767b5dfd43d.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "86cc2f4e-96f5-470d-a764-0de9805dc716", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "230816dc-fd50-43f4-ace7-d8bd179f536e", + "Name": "Steelcase - B-Free - Table - Rectangle - 32D x 60W" + }, + "c1a8cdc3-1373-4cda-ae99-b00f960bcca1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "230816dc-fd50-43f4-ace7-d8bd179f536e", + "Transform": { + "Matrix": { + "Components": [ + 9.322471934791634E-16, + 1.0, + 0.0, + 20.2417234501999, + -1.0, + 9.322471934791634E-16, + 0.0, + 30.686810030794266, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c1a8cdc3-1373-4cda-ae99-b00f960bcca1", + "Name": "Steelcase - B-Free - Table - Rectangle - 32D x 60W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.2417234501999, + "Y": 30.686810030794266, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/066f3860-6c4f-439f-8d32-8767b5dfd43d.glb" + }, + "29e3ab18-cced-4ce4-8c66-d6cfa2bde8c8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "29e3ab18-cced-4ce4-8c66-d6cfa2bde8c8", + "Name": null + }, + "617d1e12-edad-4729-93cc-6c46666aab50": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "617d1e12-edad-4729-93cc-6c46666aab50", + "Name": null + }, + "d6d83ff1-c601-4619-a8ce-dc179d8dc122": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/bf02443f-6276-4d67-a3b5-7ad14206b0e4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "617d1e12-edad-4729-93cc-6c46666aab50", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d6d83ff1-c601-4619-a8ce-dc179d8dc122", + "Name": "Steelcase - Seating - SILQ - Stool - Stool" + }, + "44968eda-15e6-4274-9e05-ff6d0ff976bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d6d83ff1-c601-4619-a8ce-dc179d8dc122", + "Transform": { + "Matrix": { + "Components": [ + 9.322471934791634E-16, + 1.0, + 0.0, + 20.183340680800733, + -1.0, + 9.322471934791634E-16, + 0.0, + 29.831812307724288, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "44968eda-15e6-4274-9e05-ff6d0ff976bd", + "Name": "Steelcase - Seating - SILQ - Stool - Stool", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.183340680800733, + "Y": 29.831812307724288, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/bf02443f-6276-4d67-a3b5-7ad14206b0e4.glb" + }, + "aae16af9-e8dd-4f2a-8afa-8d9588a80e14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "aae16af9-e8dd-4f2a-8afa-8d9588a80e14", + "Name": null + }, + "1c7704ef-53bc-4383-b0c4-aaa2f74b7847": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1c7704ef-53bc-4383-b0c4-aaa2f74b7847", + "Name": null + }, + "f09f1e34-722b-4989-aeb7-ee6514a0178b": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/8ad5d4b5-0921-4400-b3cf-9d819d0d6519.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1c7704ef-53bc-4383-b0c4-aaa2f74b7847", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f09f1e34-722b-4989-aeb7-ee6514a0178b", + "Name": "AllInOneComputer - 0.743 m x 0.481 m" + }, + "9fc22e8d-ff57-47a5-9621-7dcaa4743e5f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f09f1e34-722b-4989-aeb7-ee6514a0178b", + "Transform": { + "Matrix": { + "Components": [ + 2.6204664853213374E-15, + -1.0, + 0.0, + 19.749696931820377, + 1.0, + 2.6204664853213374E-15, + 0.0, + 29.828157949600513, + 0.0, + 0.0, + 1.0, + 0.9991328125000041 + ] + } + }, + "Id": "9fc22e8d-ff57-47a5-9621-7dcaa4743e5f", + "Name": "AllInOneComputer - 0.743 m x 0.481 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.749696931820377, + "Y": 29.828157949600513, + "Z": 0.9991328125000041 + }, + "gltfLocation": "https://hypar.io/user-static/8ad5d4b5-0921-4400-b3cf-9d819d0d6519.glb" + }, + "205d2d6c-aa21-48de-8ddc-d8af04d0470f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "205d2d6c-aa21-48de-8ddc-d8af04d0470f", + "Name": null + }, + "9cec524e-ff74-468f-b928-4182d91deb4d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9cec524e-ff74-468f-b928-4182d91deb4d", + "Name": null + }, + "e61425d7-c567-446d-90f7-09955ba4306c": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/c3385cd1-6f90-4da1-871d-8514b0d71022.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9cec524e-ff74-468f-b928-4182d91deb4d", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e61425d7-c567-446d-90f7-09955ba4306c", + "Name": "Laptop1 - 0.37 m x 0.35 m" + }, + "c592e74d-710f-4e0b-aa00-35a5b19e5b7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e61425d7-c567-446d-90f7-09955ba4306c", + "Transform": { + "Matrix": { + "Components": [ + 0.5735764363518838, + -0.8191520442884053, + 0.0, + 19.7704566524092, + 0.8191520442884053, + 0.5735764363518838, + 0.0, + 30.420643828837544, + 0.0, + 0.0, + 1.0, + 0.999728124999992 + ] + } + }, + "Id": "c592e74d-710f-4e0b-aa00-35a5b19e5b7c", + "Name": "Laptop1 - 0.37 m x 0.35 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.7704566524092, + "Y": 30.420643828837544, + "Z": 0.999728124999992 + }, + "gltfLocation": "https://hypar.io/user-static/c3385cd1-6f90-4da1-871d-8514b0d71022.glb" + }, + "07dfad81-f736-43e2-b70a-f265c2dc5d8c": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "c1a8cdc3-1373-4cda-ae99-b00f960bcca1", + "44968eda-15e6-4274-9e05-ff6d0ff976bd", + "9fc22e8d-ff57-47a5-9621-7dcaa4743e5f", + "c592e74d-710f-4e0b-aa00-35a5b19e5b7c" + ], + "Id": "07dfad81-f736-43e2-b70a-f265c2dc5d8c", + "Name": null + }, + "0bdf0e62-b5b4-4609-a04b-bb6643fe977f": { + "discriminator": "Elements.SpaceMetric", + "Space": "ce6ced40-1692-45ae-9e44-3d2aa68fb8b2", + "Seats": 1.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "0bdf0e62-b5b4-4609-a04b-bb6643fe977f", + "Name": null + }, + "bfd0bf1a-47bb-410b-98b9-433493134784": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bfd0bf1a-47bb-410b-98b9-433493134784", + "Name": null + }, + "742e27af-b1d1-4758-a2de-675490440e3a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/1958892e-ee36-4035-9063-e4e01e36d725.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "bfd0bf1a-47bb-410b-98b9-433493134784", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "742e27af-b1d1-4758-a2de-675490440e3a", + "Name": "Mouse - 0.053 m x 0.095 m" + }, + "2a59ec44-92c3-4e91-9ad7-1862be291ab4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "742e27af-b1d1-4758-a2de-675490440e3a", + "Transform": { + "Matrix": { + "Components": [ + 0.3420180974319452, + 0.939693365427804, + 0.0, + 70.60334289440071, + -0.939693365427804, + 0.3420180974319452, + 0.0, + 29.6554152515924, + 0.0, + 0.0, + 1.0, + 0.7604760012192 + ] + } + }, + "Id": "2a59ec44-92c3-4e91-9ad7-1862be291ab4", + "Name": "Mouse - 0.053 m x 0.095 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.60334289440071, + "Y": 29.6554152515924, + "Z": 0.7604760012192 + }, + "gltfLocation": "https://hypar.io/user-static/1958892e-ee36-4035-9063-e4e01e36d725.glb" + }, + "9109fa9c-c9f5-4361-b062-6f7521c364c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9109fa9c-c9f5-4361-b062-6f7521c364c6", + "Name": null + }, + "b58f3bd5-6ab5-4406-a835-ffaec17a80e1": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/98f87c85-e1c2-43da-9628-4d2e9b2c8e47.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9109fa9c-c9f5-4361-b062-6f7521c364c6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b58f3bd5-6ab5-4406-a835-ffaec17a80e1", + "Name": "Keyboard - 0.421 m x 0.125 m" + }, + "e9ee2f5b-09d1-4001-9d06-6322f8bf4dd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b58f3bd5-6ab5-4406-a835-ffaec17a80e1", + "Transform": { + "Matrix": { + "Components": [ + 3.6732051031825795E-06, + 0.9999999999932538, + 0.0, + 70.6084938818127, + -0.9999999999932538, + 3.6732051031825795E-06, + 0.0, + 29.967680812175576, + 0.0, + 0.0, + 1.0, + 0.7604760012192 + ] + } + }, + "Id": "e9ee2f5b-09d1-4001-9d06-6322f8bf4dd0", + "Name": "Keyboard - 0.421 m x 0.125 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.6084938818127, + "Y": 29.967680812175576, + "Z": 0.7604760012192 + }, + "gltfLocation": "https://hypar.io/user-static/98f87c85-e1c2-43da-9628-4d2e9b2c8e47.glb" + }, + "7e83157e-0992-4a73-a976-36968eec71d5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7e83157e-0992-4a73-a976-36968eec71d5", + "Name": null + }, + "94d58830-e1d7-472d-8481-8326fee07656": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/30935fe4-1921-4f46-a94f-47351e4da771.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7e83157e-0992-4a73-a976-36968eec71d5", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "94d58830-e1d7-472d-8481-8326fee07656", + "Name": "Laptop - 0.37 m x 0.35 m" + }, + "a4532f43-4973-486d-bf25-baa6f926a6ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "94d58830-e1d7-472d-8481-8326fee07656", + "Transform": { + "Matrix": { + "Components": [ + 0.4226194945060705, + 0.9063072121876959, + 0.0, + 70.86498499047032, + -0.9063072121876959, + 0.4226194945060705, + 0.0, + 30.422150333003597, + 0.0, + 0.0, + 1.0, + 0.7604760012192 + ] + } + }, + "Id": "a4532f43-4973-486d-bf25-baa6f926a6ce", + "Name": "Laptop - 0.37 m x 0.35 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.86498499047032, + "Y": 30.422150333003597, + "Z": 0.7604760012192 + }, + "gltfLocation": "https://hypar.io/user-static/30935fe4-1921-4f46-a94f-47351e4da771.glb" + }, + "880e703a-5ba4-4605-bcc4-b893a5c6f277": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "880e703a-5ba4-4605-bcc4-b893a5c6f277", + "Name": null + }, + "531f43d9-71b2-46e8-8d9a-7ec98bfdb434": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/dd864c69-7aa8-4533-8fd5-80e2c72937ef.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "880e703a-5ba4-4605-bcc4-b893a5c6f277", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "531f43d9-71b2-46e8-8d9a-7ec98bfdb434", + "Name": "USB Powerstrip - 0.14 m x 0.084 m" + }, + "66ea9f97-5b0f-49f6-a788-a18135fae9aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "531f43d9-71b2-46e8-8d9a-7ec98bfdb434", + "Transform": { + "Matrix": { + "Components": [ + 3.6732051031825795E-06, + 0.9999999999932538, + 0.0, + 71.18645318695351, + -0.9999999999932538, + 3.6732051031825795E-06, + 0.0, + 29.48001105741798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66ea9f97-5b0f-49f6-a788-a18135fae9aa", + "Name": "USB Powerstrip - 0.14 m x 0.084 m", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 71.18645318695351, + "Y": 29.48001105741798, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/dd864c69-7aa8-4533-8fd5-80e2c72937ef.glb" + }, + "7d86648c-ae1f-4ffc-895d-85560e0819fd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7d86648c-ae1f-4ffc-895d-85560e0819fd", + "Name": null + }, + "003f04a3-3173-4445-8a41-b986e25b3544": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/902fae3e-821d-4724-b74a-c2f9f5cf6f80.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7d86648c-ae1f-4ffc-895d-85560e0819fd", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "003f04a3-3173-4445-8a41-b986e25b3544", + "Name": "Steelcase - Worktool - Computer Support - CF Series - Evolution Single Arm - Single Arm" + }, + "ff3055da-66ea-44ca-958b-88217d7ab752": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "003f04a3-3173-4445-8a41-b986e25b3544", + "Transform": { + "Matrix": { + "Components": [ + -1.8988215193149856E-15, + 1.0, + 0.0, + 71.18581635335428, + -1.0, + -1.8988215193149856E-15, + 0.0, + 29.878969970337376, + 0.0, + 0.0, + 1.0, + 0.025400000000000138 + ] + } + }, + "Id": "ff3055da-66ea-44ca-958b-88217d7ab752", + "Name": "Steelcase - Worktool - Computer Support - CF Series - Evolution Single Arm - Single Arm", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 71.18581635335428, + "Y": 29.878969970337376, + "Z": 0.025400000000000138 + }, + "gltfLocation": "https://hypar.io/user-static/902fae3e-821d-4724-b74a-c2f9f5cf6f80.glb" + }, + "8d2d5e4e-2b5f-40a4-84c4-c6c6e1a6d034": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8d2d5e4e-2b5f-40a4-84c4-c6c6e1a6d034", + "Name": null + }, + "47970fc9-4d76-48be-b2c6-667301f365ec": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/388c2e15-9c16-44b3-9aed-22ddcdcc7084.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8d2d5e4e-2b5f-40a4-84c4-c6c6e1a6d034", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "47970fc9-4d76-48be-b2c6-667301f365ec", + "Name": "Bolia - Trapeze Hook - Hook" + }, + "e8700057-1dcc-4173-b8d2-ac1fb0798256": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "47970fc9-4d76-48be-b2c6-667301f365ec", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.2246467991473532E-16, + 0.0, + 69.626170697035, + 1.2246467991473532E-16, + -1.0, + 0.0, + 29.204417538745293, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8700057-1dcc-4173-b8d2-ac1fb0798256", + "Name": "Bolia - Trapeze Hook - Hook", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.626170697035, + "Y": 29.204417538745293, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/388c2e15-9c16-44b3-9aed-22ddcdcc7084.glb" + }, + "483947eb-8b47-497a-b764-6b462379735a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "47970fc9-4d76-48be-b2c6-667301f365ec", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.2246467991473532E-16, + 0.0, + 69.38193416935466, + 1.2246467991473532E-16, + -1.0, + 0.0, + 29.20203985099386, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "483947eb-8b47-497a-b764-6b462379735a", + "Name": "Bolia - Trapeze Hook - Hook", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.38193416935466, + "Y": 29.20203985099386, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/388c2e15-9c16-44b3-9aed-22ddcdcc7084.glb" + }, + "8ebb94bf-192f-4a84-8a8c-e1069e621f5e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8ebb94bf-192f-4a84-8a8c-e1069e621f5e", + "Name": null + }, + "e064fb43-e1b9-4e4f-b587-094d234c4ad6": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/b608f512-a675-4468-a166-c9e3a08b0ac4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8ebb94bf-192f-4a84-8a8c-e1069e621f5e", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e064fb43-e1b9-4e4f-b587-094d234c4ad6", + "Name": "Blu Dot - Welf - Wall Shelf - Small" + }, + "d69c5c99-2edc-4c36-8a6a-955cec0ff58a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e064fb43-e1b9-4e4f-b587-094d234c4ad6", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.2246467991473532E-16, + 0.0, + 70.10976844687313, + 1.2246467991473532E-16, + -1.0, + 0.0, + 29.279360148081786, + 0.0, + 0.0, + 1.0, + 1.1430000000000002 + ] + } + }, + "Id": "d69c5c99-2edc-4c36-8a6a-955cec0ff58a", + "Name": "Blu Dot - Welf - Wall Shelf - Small", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.10976844687313, + "Y": 29.279360148081786, + "Z": 1.1430000000000002 + }, + "gltfLocation": "https://hypar.io/user-static/b608f512-a675-4468-a166-c9e3a08b0ac4.glb" + }, + "55dc1924-b54e-4da6-a8e5-a41d43953ba7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e064fb43-e1b9-4e4f-b587-094d234c4ad6", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.2246467991473532E-16, + 0.0, + 69.49590316543105, + 1.2246467991473532E-16, + -1.0, + 0.0, + 29.279360148081786, + 0.0, + 0.0, + 1.0, + 1.3779500000000002 + ] + } + }, + "Id": "55dc1924-b54e-4da6-a8e5-a41d43953ba7", + "Name": "Blu Dot - Welf - Wall Shelf - Small", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.49590316543105, + "Y": 29.279360148081786, + "Z": 1.3779500000000002 + }, + "gltfLocation": "https://hypar.io/user-static/b608f512-a675-4468-a166-c9e3a08b0ac4.glb" + }, + "4b38a3ce-679c-4643-a9a0-e9ea25cbd1e0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4b38a3ce-679c-4643-a9a0-e9ea25cbd1e0", + "Name": null + }, + "cf6356f0-3712-4a97-95da-3a0b0b1f0493": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/0c5348ca-84e1-4681-8776-8645917776cc.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4b38a3ce-679c-4643-a9a0-e9ea25cbd1e0", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "cf6356f0-3712-4a97-95da-3a0b0b1f0493", + "Name": "Steelcase - Worktool - SOTO II - Mobile Caddy - Mobile Caddy" + }, + "c433fb3a-601d-4214-ada1-e134ce2d64cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cf6356f0-3712-4a97-95da-3a0b0b1f0493", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.2246467991473532E-16, + 0.0, + 71.15079707740142, + 1.2246467991473532E-16, + -1.0, + 0.0, + 29.30876352457849, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c433fb3a-601d-4214-ada1-e134ce2d64cc", + "Name": "Steelcase - Worktool - SOTO II - Mobile Caddy - Mobile Caddy", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 71.15079707740142, + "Y": 29.30876352457849, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c5348ca-84e1-4681-8776-8645917776cc.glb" + }, + "8e78cf62-1398-46f4-84f4-9d96023510ca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8e78cf62-1398-46f4-84f4-9d96023510ca", + "Name": null + }, + "e36ce389-efc6-4b6e-aeb6-5c322378311b": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/07a87d37-929d-4e0e-a779-cd4cfc3920cd.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8e78cf62-1398-46f4-84f4-9d96023510ca", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e36ce389-efc6-4b6e-aeb6-5c322378311b", + "Name": "Steelcase - Migration SE - Desk - Rectangular - T Leg - 29D x 58W" + }, + "04ef6c2c-0931-4dd6-af15-2725506c5838": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e36ce389-efc6-4b6e-aeb6-5c322378311b", + "Transform": { + "Matrix": { + "Components": [ + -1.8988215193149856E-15, + 1.0, + 0.0, + 71.21030949273585, + -1.0, + -1.8988215193149856E-15, + 0.0, + 30.700014384220495, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "04ef6c2c-0931-4dd6-af15-2725506c5838", + "Name": "Steelcase - Migration SE - Desk - Rectangular - T Leg - 29D x 58W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 71.21030949273585, + "Y": 30.700014384220495, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/07a87d37-929d-4e0e-a779-cd4cfc3920cd.glb" + }, + "33b0df65-35b9-4155-a1b8-bfa0c953ca3a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "33b0df65-35b9-4155-a1b8-bfa0c953ca3a", + "Name": null + }, + "aa7228e9-d81c-43fe-87be-79858238bfb0": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f76b5de4-3eef-411d-b077-82664b2a844e.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "063df4a7-6a5a-42af-b2f5-35b32cdea9ae", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "33b0df65-35b9-4155-a1b8-bfa0c953ca3a", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "aa7228e9-d81c-43fe-87be-79858238bfb0", + "Name": "Steelcase - Seating - Think 465 Series - Chair (1) - Upholstery Back_Adjustable Arm_Caster" + }, + "a1a5cbf8-1655-4d59-b1c8-ce62ef813756": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "aa7228e9-d81c-43fe-87be-79858238bfb0", + "Transform": { + "Matrix": { + "Components": [ + -2.934773133841313E-07, + -0.9999999999999569, + 0.0, + 70.3963876377747, + 0.9999999999999569, + -2.934773133841313E-07, + 0.0, + 29.99901341509302, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a1a5cbf8-1655-4d59-b1c8-ce62ef813756", + "Name": "Steelcase - Seating - Think 465 Series - Chair (1) - Upholstery Back_Adjustable Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 70.3963876377747, + "Y": 29.99901341509302, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f76b5de4-3eef-411d-b077-82664b2a844e.glb" + }, + "006eef23-88c1-41a6-8cae-2ae12c5a3398": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "2a59ec44-92c3-4e91-9ad7-1862be291ab4", + "e9ee2f5b-09d1-4001-9d06-6322f8bf4dd0", + "a4532f43-4973-486d-bf25-baa6f926a6ce", + "66ea9f97-5b0f-49f6-a788-a18135fae9aa", + "ff3055da-66ea-44ca-958b-88217d7ab752", + "e8700057-1dcc-4173-b8d2-ac1fb0798256", + "483947eb-8b47-497a-b764-6b462379735a", + "d69c5c99-2edc-4c36-8a6a-955cec0ff58a", + "55dc1924-b54e-4da6-a8e5-a41d43953ba7", + "c433fb3a-601d-4214-ada1-e134ce2d64cc", + "04ef6c2c-0931-4dd6-af15-2725506c5838", + "a1a5cbf8-1655-4d59-b1c8-ce62ef813756" + ], + "Id": "006eef23-88c1-41a6-8cae-2ae12c5a3398", + "Name": null + }, + "48e955b9-e8c9-4834-bb6b-64b0af1f68f9": { + "discriminator": "Elements.SpaceMetric", + "Space": "02fc148c-6590-4570-a236-a258f348d23d", + "Seats": 1.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "48e955b9-e8c9-4834-bb6b-64b0af1f68f9", + "Name": null + }, + "fbc72749-d312-4d1a-8ccb-a52a6d4cf093": { + "discriminator": "Elements.InteriorPartitionCandidate", + "WallCandidateLines": [ + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.6963748441328192, + "Direction": { + "X": -1.0, + "Y": 5.190126725370972E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.0892026231269547, + "Direction": { + "X": -3.0609212103465293E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.0892026231271466, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6963748441334587, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413357, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872663, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 2.0892026231271466, + "Direction": { + "X": -5.2715865289296494E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999989, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 2.0892026231271466, + "Direction": { + "X": -5.2715865289296494E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.696379999999998, + "Direction": { + "X": -1.0, + "Y": 5.190119485962676E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.4872693208642858, + "Direction": { + "X": -1.0, + "Y": 4.665951250611633E-13, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.14979072478906, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 2.1497907247906873, + "Direction": { + "X": -7.271377630603647E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.487269320865849, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037000000101, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.826239275209314, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 2.1497907247906873, + "Direction": { + "X": -4.693343743389626E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913516, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 2.1497907247906873, + "Direction": { + "X": -4.693343743389626E-13, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.487259999999992, + "Direction": { + "X": -1.0, + "Y": 4.66596372192103E-13, + "Z": 0.0 + } + } + ], + "Height": 4.0, + "LevelTransform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fbc72749-d312-4d1a-8ccb-a52a6d4cf093", + "Name": null + }, + "273ef664-66e6-4a1b-8cc5-ccabc5ad5477": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Name": "Default Material" + }, + "07dceeb5-20b1-4010-b685-28a1a75bc256": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.18999990334510805, + "Y": -0.23000009622573853, + "Z": -5.755614929971176E-15 + }, + { + "X": -0.18999990334510805, + "Y": 0.18999990334510805, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.1900000123500824, + "Y": 0.18999990334510805, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.1900000123500824, + "Y": -0.23000009622573853, + "Z": -5.755614929971176E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "07dceeb5-20b1-4010-b685-28a1a75bc256", + "Name": null + }, + "fb1e6296-0213-41d7-82af-cc8709f5ce50": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.18999990334510805, + "Y": -0.23000009622573853, + "Z": -5.755614929971176E-15 + }, + { + "X": -0.18999990334510805, + "Y": 0.18999990334510805, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.1900000123500824, + "Y": 0.18999990334510805, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.1900000123500824, + "Y": -0.23000009622573853, + "Z": -5.755614929971176E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fb1e6296-0213-41d7-82af-cc8709f5ce50", + "Name": null + }, + "518fcf74-b60f-46f0-a026-6bfb81358a72": { + "gltfLocation": "https://hypar.io/user-static/c4f88693-ec95-4d74-8173-376bbfe5b903.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.18999990334510805, + "Y": -0.23000009622573853, + "Z": -5.755614929971176E-15 + }, + "Max": { + "X": 0.1900000123500824, + "Y": 0.18999990334510805, + "Z": 1.85000001411438 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fb1e6296-0213-41d7-82af-cc8709f5ce50", + "Height": 1.8500000141143857, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "518fcf74-b60f-46f0-a026-6bfb81358a72", + "Name": "Flos - IC Lights F - F2", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1 + }, + "245fd802-3a88-4009-9061-ac5149ca2f4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "518fcf74-b60f-46f0-a026-6bfb81358a72", + "Transform": { + "Matrix": { + "Components": [ + -0.7071067811864664, + -0.7071067811866285, + 0.0, + 68.19491583331171, + 0.7071067811866285, + -0.7071067811864664, + 0.0, + 19.755036972902595, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "245fd802-3a88-4009-9061-ac5149ca2f4c", + "Name": "https://hypar.io/user-static/c4f88693-ec95-4d74-8173-376bbfe5b903.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.19491583331171, + "Y": 19.755036972902595, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c4f88693-ec95-4d74-8173-376bbfe5b903.glb" + }, + "ab8a59e3-b6c4-48d1-ba58-c798c31ae50c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.5645151065826416, + "Y": -0.36440777149200443, + "Z": 0.0006733434554189444 + }, + { + "X": -0.5645151065826416, + "Y": 0.3644079168319702, + "Z": 0.0006733434554189444 + }, + { + "X": 0.5470525096893311, + "Y": 0.3644079168319702, + "Z": 0.0006733434554189444 + }, + { + "X": 0.5470525096893311, + "Y": -0.36440777149200443, + "Z": 0.0006733434554189444 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ab8a59e3-b6c4-48d1-ba58-c798c31ae50c", + "Name": null + }, + "480ce720-5dbc-403f-b44b-8a0cda1185c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.5645151065826416, + "Y": -0.36440777149200443, + "Z": 0.0006733434554189444 + }, + { + "X": -0.5645151065826416, + "Y": 0.3644079168319702, + "Z": 0.0006733434554189444 + }, + { + "X": 0.5470525096893311, + "Y": 0.3644079168319702, + "Z": 0.0006733434554189444 + }, + { + "X": 0.5470525096893311, + "Y": -0.36440777149200443, + "Z": 0.0006733434554189444 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "480ce720-5dbc-403f-b44b-8a0cda1185c6", + "Name": null + }, + "b7d7a596-22ee-4a51-9f7a-d3d8f1c381d1": { + "gltfLocation": "https://hypar.io/user-static/592c6927-89cc-4a5b-8692-3d67c096de76.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.5645151065826416, + "Y": -0.36440777149200443, + "Z": 0.0006733434554189444 + }, + "Max": { + "X": 0.5470525096893311, + "Y": 0.3644079168319702, + "Z": 1.6631788593292238 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "480ce720-5dbc-403f-b44b-8a0cda1185c6", + "Height": 1.662505515873805, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b7d7a596-22ee-4a51-9f7a-d3d8f1c381d1", + "Name": "Steelcase - Roam - Mobile Stand", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "0198a105-5f53-45f9-a47c-0817f3afd6e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b7d7a596-22ee-4a51-9f7a-d3d8f1c381d1", + "Transform": { + "Matrix": { + "Components": [ + 1.2201923159503083E-13, + -1.0, + 0.0, + 64.1867740891269, + 1.0, + 1.2201923159503083E-13, + 0.0, + 20.95300943973631, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0198a105-5f53-45f9-a47c-0817f3afd6e0", + "Name": "https://hypar.io/user-static/592c6927-89cc-4a5b-8692-3d67c096de76.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.1867740891269, + "Y": 20.95300943973631, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/592c6927-89cc-4a5b-8692-3d67c096de76.glb" + }, + "c4c65b77-aeed-449e-ba42-d0ac55073f45": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.20263432474136353, + "Y": -0.2032000605583191, + "Z": -3.6817482396145354E-14 + }, + { + "X": -0.20263432474136353, + "Y": 0.20212260088920594, + "Z": -3.6817482396145354E-14 + }, + { + "X": 0.202634161233902, + "Y": 0.20212260088920594, + "Z": -3.6817482396145354E-14 + }, + { + "X": 0.202634161233902, + "Y": -0.2032000605583191, + "Z": -3.6817482396145354E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c4c65b77-aeed-449e-ba42-d0ac55073f45", + "Name": null + }, + "658277c3-3123-4fae-a634-1af727e4a312": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.20263432474136353, + "Y": -0.2032000605583191, + "Z": -3.6817482396145354E-14 + }, + { + "X": -0.20263432474136353, + "Y": 0.20212260088920594, + "Z": -3.6817482396145354E-14 + }, + { + "X": 0.202634161233902, + "Y": 0.20212260088920594, + "Z": -3.6817482396145354E-14 + }, + { + "X": 0.202634161233902, + "Y": -0.2032000605583191, + "Z": -3.6817482396145354E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "658277c3-3123-4fae-a634-1af727e4a312", + "Name": null + }, + "4255beb0-2897-4a44-926d-fdbb7fc1fcac": { + "gltfLocation": "https://hypar.io/user-static/bf555d65-7d6d-46e3-bce4-24c5ac9cf718.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.20263432474136353, + "Y": -0.2032000605583191, + "Z": -3.6817482396145354E-14 + }, + "Max": { + "X": 0.202634161233902, + "Y": 0.20212260088920594, + "Z": 0.9652000242233277 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "658277c3-3123-4fae-a634-1af727e4a312", + "Height": 0.9652000242233646, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4255beb0-2897-4a44-926d-fdbb7fc1fcac", + "Name": "Steelcase - Flex - Table - Transition - 16Dia x 38H", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1 + }, + "14bb0300-da79-4768-9057-c8994572e72e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4255beb0-2897-4a44-926d-fdbb7fc1fcac", + "Transform": { + "Matrix": { + "Components": [ + -0.5735764363509486, + -0.8191520442890603, + 0.0, + 64.47477006294196, + 0.8191520442890603, + -0.5735764363509486, + 0.0, + 20.079868194227906, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "14bb0300-da79-4768-9057-c8994572e72e", + "Name": "https://hypar.io/user-static/bf555d65-7d6d-46e3-bce4-24c5ac9cf718.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 64.47477006294196, + "Y": 20.079868194227906, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/bf555d65-7d6d-46e3-bce4-24c5ac9cf718.glb" + }, + "894e34c6-d237-4607-af06-6ea3b9a17d99": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -4.9834329286113645E-08, + "Y": -0.01269595583975315, + "Z": -5.921929613350586E-16 + }, + { + "X": -4.9834329286113645E-08, + "Y": 1.9026072486667545E-07, + "Z": -5.921929613350586E-16 + }, + { + "X": 0.9017000484466553, + "Y": 1.9026072486667545E-07, + "Z": -5.921929613350586E-16 + }, + { + "X": 0.9017000484466553, + "Y": -0.01269595583975315, + "Z": -5.921929613350586E-16 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "894e34c6-d237-4607-af06-6ea3b9a17d99", + "Name": null + }, + "4e7da674-be9e-4007-8a91-3a0e58c8e98c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -4.9834329286113645E-08, + "Y": -0.01269595583975315, + "Z": -5.921929613350586E-16 + }, + { + "X": -4.9834329286113645E-08, + "Y": 1.9026072486667545E-07, + "Z": -5.921929613350586E-16 + }, + { + "X": 0.9017000484466553, + "Y": 1.9026072486667545E-07, + "Z": -5.921929613350586E-16 + }, + { + "X": 0.9017000484466553, + "Y": -0.01269595583975315, + "Z": -5.921929613350586E-16 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4e7da674-be9e-4007-8a91-3a0e58c8e98c", + "Name": null + }, + "8bbb20ae-53fd-4b7c-81b2-4b95e29492ed": { + "gltfLocation": "https://hypar.io/user-static/a52107f6-e495-4b24-a271-a774b6971d1b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -4.9834329286113645E-08, + "Y": -0.01269595583975315, + "Z": -5.921929613350586E-16 + }, + "Max": { + "X": 0.9017000484466553, + "Y": 1.9026072486667545E-07, + "Z": 1.8033999515533448 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4e7da674-be9e-4007-8a91-3a0e58c8e98c", + "Height": 1.8033999515533454, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8bbb20ae-53fd-4b7c-81b2-4b95e29492ed", + "Name": "Steelcase - Flex - Markerboard - 71H", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1 + }, + "248efeb5-4160-4a44-98e8-006252766640": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8bbb20ae-53fd-4b7c-81b2-4b95e29492ed", + "Transform": { + "Matrix": { + "Components": [ + -0.5735764363509471, + -0.8191520442890612, + 0.0, + 65.02318610623036, + 0.8191520442890612, + -0.5735764363509471, + 0.0, + 19.28558160874103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "248efeb5-4160-4a44-98e8-006252766640", + "Name": "https://hypar.io/user-static/a52107f6-e495-4b24-a271-a774b6971d1b.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.02318610623036, + "Y": 19.28558160874103, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a52107f6-e495-4b24-a271-a774b6971d1b.glb" + }, + "75e714ed-b66d-4a5a-8799-9d6fcfb764a1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.38104381999969483, + "Y": -0.3810437836647034, + "Z": 5.924044588212496E-15 + }, + { + "X": -0.38104381999969483, + "Y": 0.38104400167465213, + "Z": 5.924044588212496E-15 + }, + { + "X": 0.3810439653396607, + "Y": 0.38104400167465213, + "Z": 5.924044588212496E-15 + }, + { + "X": 0.3810439653396607, + "Y": -0.3810437836647034, + "Z": 5.924044588212496E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "75e714ed-b66d-4a5a-8799-9d6fcfb764a1", + "Name": null + }, + "ba914423-5913-44dd-9398-e505a7c33022": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.38104381999969483, + "Y": -0.3810437836647034, + "Z": 5.924044588212496E-15 + }, + { + "X": -0.38104381999969483, + "Y": 0.38104400167465213, + "Z": 5.924044588212496E-15 + }, + { + "X": 0.3810439653396607, + "Y": 0.38104400167465213, + "Z": 5.924044588212496E-15 + }, + { + "X": 0.3810439653396607, + "Y": -0.3810437836647034, + "Z": 5.924044588212496E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ba914423-5913-44dd-9398-e505a7c33022", + "Name": null + }, + "e1ea0b4b-170d-4da9-a0a7-ac5e5117ca64": { + "gltfLocation": "https://hypar.io/user-static/373f7a04-827b-4c91-8edd-39d2676734d3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.38104381999969483, + "Y": -0.3810437836647034, + "Z": 5.924044588212496E-15 + }, + "Max": { + "X": 0.3810439653396607, + "Y": 0.38104400167465213, + "Z": 1.0668 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ba914423-5913-44dd-9398-e505a7c33022", + "Height": 1.066799999999994, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e1ea0b4b-170d-4da9-a0a7-ac5e5117ca64", + "Name": "Steelcase Coalesse - Montara650 - Table - Cafe Height - Round - Bar Height - 30Dia", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1, + "With Grommet": 0, + "With Grommet(Control)": 0, + "Grommet Void Height": 3.083333333333334 + }, + "f55454f8-5e8a-41b6-9dab-9cf5a1fa6fa4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e1ea0b4b-170d-4da9-a0a7-ac5e5117ca64", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 65.89189836621384, + 1.1557993805220492E-13, + -1.0, + 0.0, + 20.078098537586087, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f55454f8-5e8a-41b6-9dab-9cf5a1fa6fa4", + "Name": "https://hypar.io/user-static/373f7a04-827b-4c91-8edd-39d2676734d3.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.89189836621384, + "Y": 20.078098537586087, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/373f7a04-827b-4c91-8edd-39d2676734d3.glb" + }, + "1a356d28-bb5c-48e7-8a95-76bee85e2584": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e1ea0b4b-170d-4da9-a0a7-ac5e5117ca64", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 66.03219506058466, + 1.1557993805220492E-13, + -1.0, + 0.0, + 21.458611724878224, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1a356d28-bb5c-48e7-8a95-76bee85e2584", + "Name": "https://hypar.io/user-static/373f7a04-827b-4c91-8edd-39d2676734d3.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.03219506058466, + "Y": 21.458611724878224, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/373f7a04-827b-4c91-8edd-39d2676734d3.glb" + }, + "895f6187-4d1a-4104-9f6f-7271767cada8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.2697011976242066, + "Y": -0.2253507797241211, + "Z": 1.3710969328531064E-05 + }, + { + "X": -0.2697011976242066, + "Y": 0.2915509540557861, + "Z": 1.3710969328531064E-05 + }, + { + "X": 0.26907625393867496, + "Y": 0.2915509540557861, + "Z": 1.3710969328531064E-05 + }, + { + "X": 0.26907625393867496, + "Y": -0.2253507797241211, + "Z": 1.3710969328531064E-05 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "895f6187-4d1a-4104-9f6f-7271767cada8", + "Name": null + }, + "f67280ae-7d33-46da-bf9a-8cbc228dc20b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.2697011976242066, + "Y": -0.2253507797241211, + "Z": 1.3710969328531064E-05 + }, + { + "X": -0.2697011976242066, + "Y": 0.2915509540557861, + "Z": 1.3710969328531064E-05 + }, + { + "X": 0.26907625393867496, + "Y": 0.2915509540557861, + "Z": 1.3710969328531064E-05 + }, + { + "X": 0.26907625393867496, + "Y": -0.2253507797241211, + "Z": 1.3710969328531064E-05 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f67280ae-7d33-46da-bf9a-8cbc228dc20b", + "Name": null + }, + "d65544e9-e3df-41a7-8667-008a21411533": { + "gltfLocation": "https://hypar.io/user-static/9cb9555b-5c8a-4289-8dd1-662a0d355c40.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.2697011976242066, + "Y": -0.2253507797241211, + "Z": 1.3710969328531064E-05 + }, + "Max": { + "X": 0.26907625393867496, + "Y": 0.2915509540557861, + "Z": 0.9924542472839356 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f67280ae-7d33-46da-bf9a-8cbc228dc20b", + "Height": 0.992440536314607, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d65544e9-e3df-41a7-8667-008a21411533", + "Name": "Orangebox_Seating_Stool_Cubb_Bar - Wire Base", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "3592c56e-791d-4e96-a0f6-52991a2a5e48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d65544e9-e3df-41a7-8667-008a21411533", + "Transform": { + "Matrix": { + "Components": [ + -0.42261826174080275, + 0.9063077870366018, + 0.0, + 66.52706064988736, + -0.9063077870366018, + -0.42261826174080275, + 0.0, + 19.991276926864888, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3592c56e-791d-4e96-a0f6-52991a2a5e48", + "Name": "https://hypar.io/user-static/9cb9555b-5c8a-4289-8dd1-662a0d355c40.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.52706064988736, + "Y": 19.991276926864888, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/9cb9555b-5c8a-4289-8dd1-662a0d355c40.glb" + }, + "6dc48912-1410-44dd-aa6f-56bef7576799": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d65544e9-e3df-41a7-8667-008a21411533", + "Transform": { + "Matrix": { + "Components": [ + 0.17364817766681806, + 0.9848077530122279, + 0.0, + 66.63738723756961, + -0.9848077530122279, + 0.17364817766681806, + 0.0, + 21.563326457007392, + 0.0, + 0.0, + 1.0, + 2.1149748619109233E-18 + ] + } + }, + "Id": "6dc48912-1410-44dd-aa6f-56bef7576799", + "Name": "https://hypar.io/user-static/9cb9555b-5c8a-4289-8dd1-662a0d355c40.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 66.63738723756961, + "Y": 21.563326457007392, + "Z": 2.1149748619109233E-18 + }, + "gltfLocation": "https://hypar.io/user-static/9cb9555b-5c8a-4289-8dd1-662a0d355c40.glb" + }, + "8584ed31-4d84-4892-baf1-4f72df399b22": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 1.8679882810829441E-06, + "Y": -0.33020008478164675, + "Z": -3.677114296645606E-14 + }, + { + "X": 1.8679882810829441E-06, + "Y": 8.103284446860926E-08, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.6079461401939392, + "Y": 8.103284446860926E-08, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.6079461401939392, + "Y": -0.33020008478164675, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8584ed31-4d84-4892-baf1-4f72df399b22", + "Name": null + }, + "6a7d30e2-1653-4d5c-992e-3601f21c54b0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 1.8679882810829441E-06, + "Y": -0.33020008478164675, + "Z": -3.677114296645606E-14 + }, + { + "X": 1.8679882810829441E-06, + "Y": 8.103284446860926E-08, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.6079461401939392, + "Y": 8.103284446860926E-08, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.6079461401939392, + "Y": -0.33020008478164675, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6a7d30e2-1653-4d5c-992e-3601f21c54b0", + "Name": null + }, + "7bc2f6a2-7cec-4770-9321-4f6383b29bff": { + "gltfLocation": "https://hypar.io/user-static/3e0daefc-8e0c-48e1-9bc1-68412bdd61a1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 1.8679882810829441E-06, + "Y": -0.33020008478164675, + "Z": -3.677114296645606E-14 + }, + "Max": { + "X": 0.6079461401939392, + "Y": 8.103284446860926E-08, + "Z": 0.635031805229187 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6a7d30e2-1653-4d5c-992e-3601f21c54b0", + "Height": 0.6350318052292238, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7bc2f6a2-7cec-4770-9321-4f6383b29bff", + "Name": "Steelcase Coalesse - Lagunitas - Table - Personal - 13D x 24W", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Laminate Top": 1, + "Fabric Top": 0 + }, + "beea273c-a5fe-4dcd-bf4f-54c1b7032b6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7bc2f6a2-7cec-4770-9321-4f6383b29bff", + "Transform": { + "Matrix": { + "Components": [ + 0.7659415573542571, + 0.642910204241413, + 0.0, + 69.03856809036007, + -0.642910204241413, + 0.7659415573542571, + 0.0, + 20.764217244003408, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "beea273c-a5fe-4dcd-bf4f-54c1b7032b6d", + "Name": "https://hypar.io/user-static/3e0daefc-8e0c-48e1-9bc1-68412bdd61a1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.03856809036007, + "Y": 20.764217244003408, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/3e0daefc-8e0c-48e1-9bc1-68412bdd61a1.glb" + }, + "4de7f75a-348c-4066-9e3c-790a5c0a5b5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7bc2f6a2-7cec-4770-9321-4f6383b29bff", + "Transform": { + "Matrix": { + "Components": [ + -0.9999945702525692, + -0.00329537029477312, + 0.0, + 69.87555705991585, + 0.00329537029477312, + -0.9999945702525692, + 0.0, + 21.58499775991316, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4de7f75a-348c-4066-9e3c-790a5c0a5b5a", + "Name": "https://hypar.io/user-static/3e0daefc-8e0c-48e1-9bc1-68412bdd61a1.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.87555705991585, + "Y": 21.58499775991316, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/3e0daefc-8e0c-48e1-9bc1-68412bdd61a1.glb" + }, + "05f0d191-425b-496b-a124-81e6fcb86bbc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.13749997379779816, + "Y": -0.17750008492469788, + "Z": -5.755614929971176E-15 + }, + { + "X": -0.13749997379779816, + "Y": 0.13749997379779816, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.13750005555152894, + "Y": 0.13749997379779816, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.13750005555152894, + "Y": -0.17750008492469788, + "Z": -5.755614929971176E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "05f0d191-425b-496b-a124-81e6fcb86bbc", + "Name": null + }, + "dca6af1d-0c59-405e-8231-13ed4bba414f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.13749997379779816, + "Y": -0.17750008492469788, + "Z": -5.755614929971176E-15 + }, + { + "X": -0.13749997379779816, + "Y": 0.13749997379779816, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.13750005555152894, + "Y": 0.13749997379779816, + "Z": -5.755614929971176E-15 + }, + { + "X": 0.13750005555152894, + "Y": -0.17750008492469788, + "Z": -5.755614929971176E-15 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dca6af1d-0c59-405e-8231-13ed4bba414f", + "Name": null + }, + "30c80ee5-3737-452f-a98f-67dc9100a8d9": { + "gltfLocation": "https://hypar.io/user-static/b346d4d2-265a-4060-8622-99024ced5f48.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.13749997379779816, + "Y": -0.17750008492469788, + "Z": -5.755614929971176E-15 + }, + "Max": { + "X": 0.13750005555152894, + "Y": 0.13749997379779816, + "Z": 1.3500000102996828 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dca6af1d-0c59-405e-8231-13ed4bba414f", + "Height": 1.3500000102996885, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "30c80ee5-3737-452f-a98f-67dc9100a8d9", + "Name": "Flos - IC Lights F - F1", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0, + "Opaque": 1 + }, + "52e3b941-e576-421b-a270-c9f400a4dc58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "30c80ee5-3737-452f-a98f-67dc9100a8d9", + "Transform": { + "Matrix": { + "Components": [ + 0.7071067811864639, + 0.7071067811866313, + 0.0, + 68.18839121417173, + -0.7071067811866313, + 0.7071067811864639, + 0.0, + 20.145013308132683, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "52e3b941-e576-421b-a270-c9f400a4dc58", + "Name": "https://hypar.io/user-static/b346d4d2-265a-4060-8622-99024ced5f48.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.18839121417173, + "Y": 20.145013308132683, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b346d4d2-265a-4060-8622-99024ced5f48.glb" + }, + "070ea702-258e-491a-834f-451dbf9d1912": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.6498320646286011, + "Y": -0.0005562341457232833, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.6498320646286011, + "Y": 0.8637482952117921, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542938577651978, + "Y": 0.8637482952117921, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542938577651978, + "Y": -0.0005562341457232833, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "070ea702-258e-491a-834f-451dbf9d1912", + "Name": null + }, + "38ce11f7-8752-4e69-83d4-725a80fab560": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.6498320646286011, + "Y": -0.0005562341457232833, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.6498320646286011, + "Y": 0.8637482952117921, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542938577651978, + "Y": 0.8637482952117921, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542938577651978, + "Y": -0.0005562341457232833, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "38ce11f7-8752-4e69-83d4-725a80fab560", + "Name": null + }, + "ab4f8da2-c0be-4e21-ab12-c30331a9d78c": { + "gltfLocation": "https://hypar.io/user-static/68eb4511-28fb-4184-b295-7efbfe4155c4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.6498320646286011, + "Y": -0.0005562341457232833, + "Z": -3.677114296645606E-14 + }, + "Max": { + "X": 0.8542938577651978, + "Y": 0.8637482952117921, + "Z": 0.8107805980682373 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "38ce11f7-8752-4e69-83d4-725a80fab560", + "Height": 0.8107805980682741, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ab4f8da2-c0be-4e21-ab12-c30331a9d78c", + "Name": "Steelcase Coalesse - Lagunitas - Seating - Chaise - Two Seat - Low Back Screen - Left Corner Cushion", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "eae42d81-3c40-468e-bed9-d6079f46da3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ab4f8da2-c0be-4e21-ab12-c30331a9d78c", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 69.25057095308537, + 1.1557993805220492E-13, + -1.0, + 0.0, + 20.397478203491715, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eae42d81-3c40-468e-bed9-d6079f46da3c", + "Name": "https://hypar.io/user-static/68eb4511-28fb-4184-b295-7efbfe4155c4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.25057095308537, + "Y": 20.397478203491715, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68eb4511-28fb-4184-b295-7efbfe4155c4.glb" + }, + "795c4fe6-ead7-4d34-a4f1-1709dc933fe0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.6498320646286011, + "Y": -0.0005564305817708374, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.6498320646286011, + "Y": 0.8637482225418092, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542939304351808, + "Y": 0.8637482225418092, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542939304351808, + "Y": -0.0005564305817708374, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "795c4fe6-ead7-4d34-a4f1-1709dc933fe0", + "Name": null + }, + "038a0356-38dd-48f4-9b83-950850f9e40d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.6498320646286011, + "Y": -0.0005564305817708374, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.6498320646286011, + "Y": 0.8637482225418092, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542939304351808, + "Y": 0.8637482225418092, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.8542939304351808, + "Y": -0.0005564305817708374, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "038a0356-38dd-48f4-9b83-950850f9e40d", + "Name": null + }, + "77567d8f-6473-4c4d-8274-0c14a5d7d6d4": { + "gltfLocation": "https://hypar.io/user-static/e1efca70-d21e-4262-baf2-da34626ca568.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.6498320646286011, + "Y": -0.0005564305817708374, + "Z": -3.677114296645606E-14 + }, + "Max": { + "X": 0.8542939304351808, + "Y": 0.8637482225418092, + "Z": 1.2708623989105226 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "038a0356-38dd-48f4-9b83-950850f9e40d", + "Height": 1.2708623989105594, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "77567d8f-6473-4c4d-8274-0c14a5d7d6d4", + "Name": "Steelcase Coalesse - Lagunitas - Seating - Chaise - Two Seat - High Back Screen - Left Corner Cushion", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "234c6d68-6f41-4eae-9cfa-855c02e66e70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "77567d8f-6473-4c4d-8274-0c14a5d7d6d4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.188110272010701E-13, + 0.0, + 69.47196989158485, + -1.188110272010701E-13, + 1.0, + 0.0, + 21.700837833996573, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "234c6d68-6f41-4eae-9cfa-855c02e66e70", + "Name": "https://hypar.io/user-static/e1efca70-d21e-4262-baf2-da34626ca568.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.47196989158485, + "Y": 21.700837833996573, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e1efca70-d21e-4262-baf2-da34626ca568.glb" + }, + "97e03f9c-512b-4c20-9daa-45a2764b58f7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013873169892467558, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013873169892467558, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213495254517, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213495254517, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "97e03f9c-512b-4c20-9daa-45a2764b58f7", + "Name": null + }, + "7e8f642a-d9b1-4859-affb-722ca5adbf92": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013873169892467558, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013873169892467558, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213495254517, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213495254517, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7e8f642a-d9b1-4859-affb-722ca5adbf92", + "Name": null + }, + "e42f0618-1071-4895-b11a-f90270b9c23c": { + "gltfLocation": "https://hypar.io/user-static/59967640-0e5c-42fd-95de-ba1074d93195.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.00013873169892467558, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.4134213495254517, + "Y": 0.019389916115999224, + "Z": 2.116710333251953 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7e8f642a-d9b1-4859-affb-722ca5adbf92", + "Height": 2.1167103332520267, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e42f0618-1071-4895-b11a-f90270b9c23c", + "Name": "Steelcase - Flex Active Frames - Extension - 1 Wide - 5 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": -5.169878828456423E-26, + "Host": "Level : Level 1", + "Offset from Host": -5.169878828456423E-26, + "Moves With Nearby Elements": 0 + }, + "2b0cf972-e8fa-43ec-ae23-ab1593b01b8c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e42f0618-1071-4895-b11a-f90270b9c23c", + "Transform": { + "Matrix": { + "Components": [ + 1.200763413019368E-13, + -1.0, + 0.0, + 67.58688592073354, + 1.0, + 1.200763413019368E-13, + 0.0, + 21.89020259169463, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "2b0cf972-e8fa-43ec-ae23-ab1593b01b8c", + "Name": "https://hypar.io/user-static/59967640-0e5c-42fd-95de-ba1074d93195.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58688592073354, + "Y": 21.89020259169463, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/59967640-0e5c-42fd-95de-ba1074d93195.glb" + }, + "c9e2bef9-6446-4a38-97ea-6a156e7b70c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013883828215766698, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013883828215766698, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119016778945923, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119016778945923, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c9e2bef9-6446-4a38-97ea-6a156e7b70c5", + "Name": null + }, + "3d8280ad-49de-42cc-92fe-4c5bc84ff445": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013883828215766698, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013883828215766698, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119016778945923, + "Y": 0.019389916115999224, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119016778945923, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3d8280ad-49de-42cc-92fe-4c5bc84ff445", + "Name": null + }, + "dd1b60a3-cacd-4ef9-a476-6a11dfe70ba2": { + "gltfLocation": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.00013883828215766698, + "Y": -0.41334388332366945, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.8119016778945923, + "Y": 0.019389916115999224, + "Z": 2.116710333251953 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3d8280ad-49de-42cc-92fe-4c5bc84ff445", + "Height": 2.1167103332520267, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "dd1b60a3-cacd-4ef9-a476-6a11dfe70ba2", + "Name": "Steelcase - Flex Active Frames - Extension - 2 Wide - 5 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": -5.169878828456423E-26, + "Host": "Level : Level 1", + "Offset from Host": -5.169878828456423E-26, + "Moves With Nearby Elements": 0 + }, + "cd6c5ce2-ed4b-4ef6-adb4-b69ce772c80f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd1b60a3-cacd-4ef9-a476-6a11dfe70ba2", + "Transform": { + "Matrix": { + "Components": [ + 1.1329253847427113E-13, + -1.0, + 0.0, + 67.58688592073327, + 1.0, + 1.1329253847427113E-13, + 0.0, + 19.512485186146947, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "cd6c5ce2-ed4b-4ef6-adb4-b69ce772c80f", + "Name": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58688592073327, + "Y": 19.512485186146947, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb" + }, + "d4b59261-21c5-45e7-b068-41d39e71e250": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd1b60a3-cacd-4ef9-a476-6a11dfe70ba2", + "Transform": { + "Matrix": { + "Components": [ + 1.1329253847427113E-13, + -1.0, + 0.0, + 67.58688592073335, + 1.0, + 1.1329253847427113E-13, + 0.0, + 20.305103888920787, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "d4b59261-21c5-45e7-b068-41d39e71e250", + "Name": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58688592073335, + "Y": 20.305103888920787, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb" + }, + "0c34479e-361f-4c26-893f-06a0bbeedcfb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd1b60a3-cacd-4ef9-a476-6a11dfe70ba2", + "Transform": { + "Matrix": { + "Components": [ + 1.1329253847427113E-13, + -1.0, + 0.0, + 67.58688592073344, + 1.0, + 1.1329253847427113E-13, + 0.0, + 21.09772259169463, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "0c34479e-361f-4c26-893f-06a0bbeedcfb", + "Name": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58688592073344, + "Y": 21.09772259169463, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/2292f7c8-9068-41cc-a111-21fb671559fc.glb" + }, + "f33b29ff-b663-4733-a1ee-d9c61ca3d12b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.0001387056008912623, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.0001387056008912623, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.41342127685546876, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.41342127685546876, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f33b29ff-b663-4733-a1ee-d9c61ca3d12b", + "Name": null + }, + "7f755edc-5a07-4b9f-b720-2a60ef5461e9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.0001387056008912623, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.0001387056008912623, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.41342127685546876, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.41342127685546876, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7f755edc-5a07-4b9f-b720-2a60ef5461e9", + "Name": null + }, + "0f04e152-c9c3-4432-a67b-c05e6516a438": { + "gltfLocation": "https://hypar.io/user-static/5b4c7d38-3724-484c-8eff-80c751b5f0d3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.0001387056008912623, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.41342127685546876, + "Y": 0.019389782130718233, + "Z": 1.7167103302001954 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7f755edc-5a07-4b9f-b720-2a60ef5461e9", + "Height": 1.716710330200269, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0f04e152-c9c3-4432-a67b-c05e6516a438", + "Name": "Steelcase - Flex Active Frames - Extension - 1 Wide - 4 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": -5.169878828456423E-26, + "Host": "Level : Level 1", + "Offset from Host": -5.169878828456423E-26, + "Moves With Nearby Elements": 0 + }, + "43af30e3-732b-4d34-b2da-3b81930b7169": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0f04e152-c9c3-4432-a67b-c05e6516a438", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.1969920562077022E-13, + 0.0, + 67.98083992073325, + -1.1969920562077022E-13, + 1.0, + 0.0, + 19.512185044099418, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "43af30e3-732b-4d34-b2da-3b81930b7169", + "Name": "https://hypar.io/user-static/5b4c7d38-3724-484c-8eff-80c751b5f0d3.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.98083992073325, + "Y": 19.512185044099418, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/5b4c7d38-3724-484c-8eff-80c751b5f0d3.glb" + }, + "a4d0e989-8b99-4acd-a715-379c138bb280": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013870256706140937, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013870256706140937, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119017505645753, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119017505645753, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a4d0e989-8b99-4acd-a715-379c138bb280", + "Name": null + }, + "6e224dbd-01b5-4301-b483-7ca6ad18ddc4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013870256706140937, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013870256706140937, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119017505645753, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.8119017505645753, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6e224dbd-01b5-4301-b483-7ca6ad18ddc4", + "Name": null + }, + "9ca8b7d4-8a98-434d-9530-e050512ed24b": { + "gltfLocation": "https://hypar.io/user-static/af82eec3-3dd4-41f3-a178-eb7cbb2409e2.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.00013870256706140937, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.8119017505645753, + "Y": 0.019389782130718233, + "Z": 1.7167103302001954 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6e224dbd-01b5-4301-b483-7ca6ad18ddc4", + "Height": 1.716710330200269, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9ca8b7d4-8a98-434d-9530-e050512ed24b", + "Name": "Steelcase - Flex Active Frames - Extension - 2 Wide - 4 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": -5.169878828456423E-26, + "Host": "Level : Level 1", + "Offset from Host": -5.169878828456423E-26, + "Moves With Nearby Elements": 0 + }, + "b61a9e05-48fd-462c-8d95-7675e26fd817": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9ca8b7d4-8a98-434d-9530-e050512ed24b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.1925511641092015E-13, + 0.0, + 68.37497809650665, + -1.1925511641092015E-13, + 1.0, + 0.0, + 19.51218504409937, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "b61a9e05-48fd-462c-8d95-7675e26fd817", + "Name": "https://hypar.io/user-static/af82eec3-3dd4-41f3-a178-eb7cbb2409e2.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.37497809650665, + "Y": 19.51218504409937, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/af82eec3-3dd4-41f3-a178-eb7cbb2409e2.glb" + }, + "e9dfbc9c-0a04-4937-811d-3184de9f60c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9ca8b7d4-8a98-434d-9530-e050512ed24b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.1925511641092015E-13, + 0.0, + 69.16745809650665, + -1.1925511641092015E-13, + 1.0, + 0.0, + 19.51218504409928, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "e9dfbc9c-0a04-4937-811d-3184de9f60c1", + "Name": "https://hypar.io/user-static/af82eec3-3dd4-41f3-a178-eb7cbb2409e2.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.16745809650665, + "Y": 19.51218504409928, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/af82eec3-3dd4-41f3-a178-eb7cbb2409e2.glb" + }, + "1b410d5d-a169-4e07-8a7d-70f410589dcd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013874556405935436, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013874556405935436, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1b410d5d-a169-4e07-8a7d-70f410589dcd", + "Name": null + }, + "e6e21e77-3427-4b6b-8c91-7132b63a7d98": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.00013874556405935436, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.00013874556405935436, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": 0.019389782130718233, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e6e21e77-3427-4b6b-8c91-7132b63a7d98", + "Name": null + }, + "0dc43f40-a6b5-4029-a7ea-ed441c3b25c9": { + "gltfLocation": "https://hypar.io/user-static/04abc228-1bae-4808-a6b1-7cd2ae919627.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.00013874556405935436, + "Y": -0.4133437016487122, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.4134213131904602, + "Y": 0.019389782130718233, + "Z": 1.3167103271484375 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e6e21e77-3427-4b6b-8c91-7132b63a7d98", + "Height": 1.3167103271485112, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0dc43f40-a6b5-4029-a7ea-ed441c3b25c9", + "Name": "Steelcase - Flex Active Frames - Extension - 1 Wide - 3 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": -5.169878828456423E-26, + "Host": "Level : Level 1", + "Offset from Host": -5.169878828456423E-26, + "Moves With Nearby Elements": 0 + }, + "f3feb245-278c-4f27-8824-e0b882cafef5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0dc43f40-a6b5-4029-a7ea-ed441c3b25c9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.1925511641092015E-13, + 0.0, + 69.96007679928043, + -1.1925511641092015E-13, + 1.0, + 0.0, + 19.512185044099187, + 0.0, + 0.0, + 1.0, + -1.5757790669135178E-26 + ] + } + }, + "Id": "f3feb245-278c-4f27-8824-e0b882cafef5", + "Name": "https://hypar.io/user-static/04abc228-1bae-4808-a6b1-7cd2ae919627.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.96007679928043, + "Y": 19.512185044099187, + "Z": -1.5757790669135178E-26 + }, + "gltfLocation": "https://hypar.io/user-static/04abc228-1bae-4808-a6b1-7cd2ae919627.glb" + }, + "058541c8-c4bd-4c0d-a679-c38e6192c550": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.014113756290078164, + "Y": -0.019701670342683792, + "Z": -1.2111664179315085E-08 + }, + { + "X": -0.014113756290078164, + "Y": 0.011202693289518357, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.7700177518844605, + "Y": 0.011202693289518357, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.7700177518844605, + "Y": -0.019701670342683792, + "Z": -1.2111664179315085E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "058541c8-c4bd-4c0d-a679-c38e6192c550", + "Name": null + }, + "92738001-379f-476a-89df-8a06b62fcaa0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.014113756290078164, + "Y": -0.019701670342683792, + "Z": -1.2111664179315085E-08 + }, + { + "X": -0.014113756290078164, + "Y": 0.011202693289518357, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.7700177518844605, + "Y": 0.011202693289518357, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.7700177518844605, + "Y": -0.019701670342683792, + "Z": -1.2111664179315085E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "92738001-379f-476a-89df-8a06b62fcaa0", + "Name": null + }, + "6f15e041-e078-477b-aa2d-868548b34c17": { + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.014113756290078164, + "Y": -0.019701670342683792, + "Z": -1.2111664179315085E-08 + }, + "Max": { + "X": 0.7700177518844605, + "Y": 0.011202693289518357, + "Z": 1.1999999364852907 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "92738001-379f-476a-89df-8a06b62fcaa0", + "Height": 1.1999999485969548, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "6f15e041-e078-477b-aa2d-868548b34c17", + "Name": "Steelcase - Flex Active Frames - Fixed Board - 2 Wide - 3 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 1.6666666666666665, + "Host": "Level : Level 1", + "Offset from Host": 1.6666666666666665, + "Moves With Nearby Elements": 0 + }, + "e8fe182e-3477-430f-8c73-389d72729879": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + -1.1696771683298636E-13, + 1.0, + 0.0, + 67.58629060823353, + -1.0, + -1.1696771683298636E-13, + 0.0, + 21.87408989755557, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "e8fe182e-3477-430f-8c73-389d72729879", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58629060823353, + "Y": 21.87408989755557, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "6dd58355-727c-4f20-bc3b-c94cbb81e91f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + -1.1696771683298636E-13, + 1.0, + 0.0, + 67.58629060823344, + -1.0, + -1.1696771683298636E-13, + 0.0, + 21.08147119478173, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "6dd58355-727c-4f20-bc3b-c94cbb81e91f", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58629060823344, + "Y": 21.08147119478173, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "e9002b06-e010-4faa-8359-4685239a8924": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + -1.1696771683298636E-13, + 1.0, + 0.0, + 67.58629060823334, + -1.0, + -1.1696771683298636E-13, + 0.0, + 20.28885249200789, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "e9002b06-e010-4faa-8359-4685239a8924", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.58629060823334, + "Y": 20.28885249200789, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "c20628ce-30ba-4a38-a69d-dc1a07d5de99": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.01411378581225872, + "Y": -0.019701681697368623, + "Z": -1.2111664179315085E-08 + }, + { + "X": -0.01411378581225872, + "Y": 0.01120282841026783, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.3701090223312378, + "Y": 0.01120282841026783, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.3701090223312378, + "Y": -0.019701681697368623, + "Z": -1.2111664179315085E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c20628ce-30ba-4a38-a69d-dc1a07d5de99", + "Name": null + }, + "5bd7ead1-2cf1-4fce-ac24-9c22f404acab": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.01411378581225872, + "Y": -0.019701681697368623, + "Z": -1.2111664179315085E-08 + }, + { + "X": -0.01411378581225872, + "Y": 0.01120282841026783, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.3701090223312378, + "Y": 0.01120282841026783, + "Z": -1.2111664179315085E-08 + }, + { + "X": 0.3701090223312378, + "Y": -0.019701681697368623, + "Z": -1.2111664179315085E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5bd7ead1-2cf1-4fce-ac24-9c22f404acab", + "Name": null + }, + "1415ee86-6c00-42db-b008-6aae29683cc3": { + "gltfLocation": "https://hypar.io/user-static/c7a1bd77-f4d8-4ce7-96e2-079caec45e54.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.01411378581225872, + "Y": -0.019701681697368623, + "Z": -1.2111664179315085E-08 + }, + "Max": { + "X": 0.3701090223312378, + "Y": 0.01120282841026783, + "Z": 1.1999999364852907 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5bd7ead1-2cf1-4fce-ac24-9c22f404acab", + "Height": 1.1999999485969548, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1415ee86-6c00-42db-b008-6aae29683cc3", + "Name": "Steelcase - Flex Active Frames - Fixed Board - 1 Wide - 3 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 1.666666666666667, + "Host": "Level : Level 1", + "Offset from Host": 1.666666666666667, + "Moves With Nearby Elements": 0 + }, + "42d6756e-8126-47bd-83f3-b7c82e0d8812": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1415ee86-6c00-42db-b008-6aae29683cc3", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 68.36005173064999, + 1.1557993805220492E-13, + -1.0, + 0.0, + 19.512185044099372, + 0.0, + 0.0, + 1.0, + 0.5080000000000001 + ] + } + }, + "Id": "42d6756e-8126-47bd-83f3-b7c82e0d8812", + "Name": "https://hypar.io/user-static/c7a1bd77-f4d8-4ce7-96e2-079caec45e54.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 68.36005173064999, + "Y": 19.512185044099372, + "Z": 0.5080000000000001 + }, + "gltfLocation": "https://hypar.io/user-static/c7a1bd77-f4d8-4ce7-96e2-079caec45e54.glb" + }, + "3bc11c79-ad97-4dfe-a63e-25880ac1c94e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.019421809154748917, + "Y": -0.413343846988678, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.019421809154748917, + "Y": 0.019389625436067582, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": 0.019389625436067582, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": -0.413343846988678, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3bc11c79-ad97-4dfe-a63e-25880ac1c94e", + "Name": null + }, + "35e03978-db07-4da7-b88d-92ebf1705ff8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.019421809154748917, + "Y": -0.413343846988678, + "Z": -7.361949903861299E-14 + }, + { + "X": -0.019421809154748917, + "Y": 0.019389625436067582, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": 0.019389625436067582, + "Z": -7.361949903861299E-14 + }, + { + "X": 0.4134213131904602, + "Y": -0.413343846988678, + "Z": -7.361949903861299E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "35e03978-db07-4da7-b88d-92ebf1705ff8", + "Name": null + }, + "7432f52b-2955-41c1-b927-75b3378dad3c": { + "gltfLocation": "https://hypar.io/user-static/fe870ba1-5565-416f-b360-1e56320c3f3e.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.019421809154748917, + "Y": -0.413343846988678, + "Z": -7.361949903861299E-14 + }, + "Max": { + "X": 0.4134213131904602, + "Y": 0.019389625436067582, + "Z": 2.116710333251953 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "35e03978-db07-4da7-b88d-92ebf1705ff8", + "Height": 2.1167103332520267, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7432f52b-2955-41c1-b927-75b3378dad3c", + "Name": "Steelcase - Flex Active Frames - Frame - 1 Wide - 5 High", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "d0454133-423b-4954-b2e4-f363f26c9316": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7432f52b-2955-41c1-b927-75b3378dad3c", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 67.98086265723302, + 1.1557993805220492E-13, + -1.0, + 0.0, + 19.118208307599623, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0454133-423b-4954-b2e4-f363f26c9316", + "Name": "https://hypar.io/user-static/fe870ba1-5565-416f-b360-1e56320c3f3e.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.98086265723302, + "Y": 19.118208307599623, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/fe870ba1-5565-416f-b360-1e56320c3f3e.glb" + }, + "fb19b86e-8b95-4c90-ac8b-e5751419e440": { + "gltfLocation": "https://hypar.io/user-static/6589880d-2e03-477d-8fa9-43868d17c8ca.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.741576399612427, + "Y": -1.741576254272461, + "Z": -5.755614929971176E-15 + }, + "Max": { + "X": 1.7415765449523926, + "Y": 1.7415765449523926, + "Z": -5.755614929971176E-15 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": null, + "IsElementDefinition": true, + "Id": "fb19b86e-8b95-4c90-ac8b-e5751419e440", + "Name": "rug2 - 3.483 m x 3.483 m", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 4.440892098500626E-16, + "Host": "Level : Level 1", + "Offset from Host": 4.440892098500626E-16, + "Moves With Nearby Elements": 0 + }, + "00ca5465-07de-4050-9538-c638f71492aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "fb19b86e-8b95-4c90-ac8b-e5751419e440", + "Transform": { + "Matrix": { + "Components": [ + -0.7660442507955073, + 0.642787838888657, + 0.0, + 65.72829429912115, + -0.642787838888657, + -0.7660442507955073, + 0.0, + 20.828268569236656, + 0.0, + 0.0, + 1.0, + 1.353583911622991E-16 + ] + } + }, + "Id": "00ca5465-07de-4050-9538-c638f71492aa", + "Name": "https://hypar.io/user-static/6589880d-2e03-477d-8fa9-43868d17c8ca.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.72829429912115, + "Y": 20.828268569236656, + "Z": 1.353583911622991E-16 + }, + "gltfLocation": "https://hypar.io/user-static/6589880d-2e03-477d-8fa9-43868d17c8ca.glb" + }, + "feb52b49-c23b-4cc6-b34f-46baff6d9f7a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.25140474901199344, + "Y": -0.06376843231916428, + "Z": -2.4087963470265097E-08 + }, + { + "X": -0.25140474901199344, + "Y": 0.06376840506792068, + "Z": -2.4087963470265097E-08 + }, + { + "X": 0.2514046763420105, + "Y": 0.06376840506792068, + "Z": -2.4087963470265097E-08 + }, + { + "X": 0.2514046763420105, + "Y": -0.06376843231916428, + "Z": -2.4087963470265097E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "feb52b49-c23b-4cc6-b34f-46baff6d9f7a", + "Name": null + }, + "d2ef33c8-006c-4c45-aaad-1fa7351df3cf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.25140474901199344, + "Y": -0.06376843231916428, + "Z": -2.4087963470265097E-08 + }, + { + "X": -0.25140474901199344, + "Y": 0.06376840506792068, + "Z": -2.4087963470265097E-08 + }, + { + "X": 0.2514046763420105, + "Y": 0.06376840506792068, + "Z": -2.4087963470265097E-08 + }, + { + "X": 0.2514046763420105, + "Y": -0.06376843231916428, + "Z": -2.4087963470265097E-08 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d2ef33c8-006c-4c45-aaad-1fa7351df3cf", + "Name": null + }, + "fe797a26-5871-4e0b-ad37-c9b0b8aedc47": { + "gltfLocation": "https://hypar.io/user-static/ed25b82b-42f4-4f01-958d-2cc709cf456b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.25140474901199344, + "Y": -0.06376843231916428, + "Z": -2.4087963470265097E-08 + }, + "Max": { + "X": 0.2514046763420105, + "Y": 0.06376840506792068, + "Z": 0.29904099469184875 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d2ef33c8-006c-4c45-aaad-1fa7351df3cf", + "Height": 0.2990410187798122, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "fe797a26-5871-4e0b-ad37-c9b0b8aedc47", + "Name": "SAH43 - 0.503 m x 0.128 m", + "discriminator": "Elements.ContentElement", + "Part List": "1 x SAH43", + "Elevation from Level": 1.3882891730000004, + "Host": "Level : Level 1", + "Offset from Host": 1.3882891730000004, + "Moves With Nearby Elements": 0 + }, + "86887743-4a19-42ba-bced-973571e142c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "fe797a26-5871-4e0b-ad37-c9b0b8aedc47", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1557993805220492E-13, + 0.0, + 69.81208105822691, + 1.1557993805220492E-13, + -1.0, + 0.0, + 22.230232983284978, + 0.0, + 0.0, + 1.0, + 0.42315053993040014 + ] + } + }, + "Id": "86887743-4a19-42ba-bced-973571e142c8", + "Name": "https://hypar.io/user-static/ed25b82b-42f4-4f01-958d-2cc709cf456b.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.81208105822691, + "Y": 22.230232983284978, + "Z": 0.42315053993040014 + }, + "gltfLocation": "https://hypar.io/user-static/ed25b82b-42f4-4f01-958d-2cc709cf456b.glb" + }, + "addb9c85-1b1f-4bf4-99ca-ce227abcc785": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.06354547626972198, + "Y": -0.05091550136804581, + "Z": 0.0020389367680996658 + }, + { + "X": -0.06354547626972198, + "Y": 0.050915492284297946, + "Z": 0.0020389367680996658 + }, + { + "X": 0.06354560344219208, + "Y": 0.050915492284297946, + "Z": 0.0020389367680996658 + }, + { + "X": 0.06354560344219208, + "Y": -0.05091550136804581, + "Z": 0.0020389367680996658 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "addb9c85-1b1f-4bf4-99ca-ce227abcc785", + "Name": null + }, + "a1663d02-083c-4569-856a-c3c993d148bb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.06354547626972198, + "Y": -0.05091550136804581, + "Z": 0.0020389367680996658 + }, + { + "X": -0.06354547626972198, + "Y": 0.050915492284297946, + "Z": 0.0020389367680996658 + }, + { + "X": 0.06354560344219208, + "Y": 0.050915492284297946, + "Z": 0.0020389367680996658 + }, + { + "X": 0.06354560344219208, + "Y": -0.05091550136804581, + "Z": 0.0020389367680996658 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a1663d02-083c-4569-856a-c3c993d148bb", + "Name": null + }, + "6a7d5b2b-44aa-4a60-82bc-11ce65905ea2": { + "gltfLocation": "https://hypar.io/user-static/54c80389-74c3-44b8-8bc3-0dc16fad07a8.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.06354547626972198, + "Y": -0.05091550136804581, + "Z": 0.0020389367680996658 + }, + "Max": { + "X": 0.06354560344219208, + "Y": 0.050915492284297946, + "Z": 0.28498874559402465 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a1663d02-083c-4569-856a-c3c993d148bb", + "Height": 0.28294980882592496, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "6a7d5b2b-44aa-4a60-82bc-11ce65905ea2", + "Name": "Block Mobile Battery Package @ 125541 PM - 0.127 m x 0.102 m", + "discriminator": "Elements.ContentElement", + "Part List": "1 x FLXMBATPKG", + "Elevation from Level": 3.4953235430000005, + "Host": "Level : Level 1", + "Offset from Host": 3.4953235430000005, + "Moves With Nearby Elements": 0 + }, + "444eadb2-c644-4761-ac58-ad3d057a44fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6a7d5b2b-44aa-4a60-82bc-11ce65905ea2", + "Transform": { + "Matrix": { + "Components": [ + -1.019615194713771E-06, + -0.9999999999994802, + 0.0, + 65.85430376658361, + 0.9999999999994802, + -1.019615194713771E-06, + 0.0, + 21.47993083664864, + 0.0, + 0.0, + 1.0, + 1.0653746159064001 + ] + } + }, + "Id": "444eadb2-c644-4761-ac58-ad3d057a44fc", + "Name": "https://hypar.io/user-static/54c80389-74c3-44b8-8bc3-0dc16fad07a8.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 65.85430376658361, + "Y": 21.47993083664864, + "Z": 1.0653746159064001 + }, + "gltfLocation": "https://hypar.io/user-static/54c80389-74c3-44b8-8bc3-0dc16fad07a8.glb" + }, + "bfa45f68-d88c-4821-8da4-300ff4f7d184": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + 1.2553819319627978E-13, + -1.0, + 0.0, + 67.98143523323326, + 1.0, + 1.2553819319627978E-13, + 0.0, + 19.554990893417145, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "bfa45f68-d88c-4821-8da4-300ff4f7d184", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.98143523323326, + "Y": 19.554990893417145, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "2c68212c-23b5-4f70-b472-0b41396f07f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + 1.2553819319627978E-13, + -1.0, + 0.0, + 67.98143523323336, + 1.0, + 1.2553819319627978E-13, + 0.0, + 20.347609596190985, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "2c68212c-23b5-4f70-b472-0b41396f07f3", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 67.98143523323336, + "Y": 20.347609596190985, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "7e5a7628-d5cb-430f-a364-51be466f5839": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.173111004366014E-13, + 0.0, + 69.94461957048817, + 1.173111004366014E-13, + -1.0, + 0.0, + 19.51577806726838, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "7e5a7628-d5cb-430f-a364-51be466f5839", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.94461957048817, + "Y": 19.51577806726838, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "dc880af2-923c-4c01-81bb-9103a737d536": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "6f15e041-e078-477b-aa2d-868548b34c17", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.173111004366014E-13, + 0.0, + 69.15200086771434, + 1.173111004366014E-13, + -1.0, + 0.0, + 19.515778067268467, + 0.0, + 0.0, + 1.0, + 0.508 + ] + } + }, + "Id": "dc880af2-923c-4c01-81bb-9103a737d536", + "Name": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 69.15200086771434, + "Y": 19.515778067268467, + "Z": 0.508 + }, + "gltfLocation": "https://hypar.io/user-static/c78c3fc9-d83e-4a86-87ef-c59453ae2a61.glb" + }, + "39fbd5bb-662f-4ee1-86d9-39851ae1acf5": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "245fd802-3a88-4009-9061-ac5149ca2f4c", + "0198a105-5f53-45f9-a47c-0817f3afd6e0", + "14bb0300-da79-4768-9057-c8994572e72e", + "248efeb5-4160-4a44-98e8-006252766640", + "f55454f8-5e8a-41b6-9dab-9cf5a1fa6fa4", + "1a356d28-bb5c-48e7-8a95-76bee85e2584", + "3592c56e-791d-4e96-a0f6-52991a2a5e48", + "6dc48912-1410-44dd-aa6f-56bef7576799", + "beea273c-a5fe-4dcd-bf4f-54c1b7032b6d", + "4de7f75a-348c-4066-9e3c-790a5c0a5b5a", + "52e3b941-e576-421b-a270-c9f400a4dc58", + "eae42d81-3c40-468e-bed9-d6079f46da3c", + "234c6d68-6f41-4eae-9cfa-855c02e66e70", + "2b0cf972-e8fa-43ec-ae23-ab1593b01b8c", + "cd6c5ce2-ed4b-4ef6-adb4-b69ce772c80f", + "d4b59261-21c5-45e7-b068-41d39e71e250", + "0c34479e-361f-4c26-893f-06a0bbeedcfb", + "43af30e3-732b-4d34-b2da-3b81930b7169", + "b61a9e05-48fd-462c-8d95-7675e26fd817", + "e9dfbc9c-0a04-4937-811d-3184de9f60c1", + "f3feb245-278c-4f27-8824-e0b882cafef5", + "e8fe182e-3477-430f-8c73-389d72729879", + "6dd58355-727c-4f20-bc3b-c94cbb81e91f", + "e9002b06-e010-4faa-8359-4685239a8924", + "42d6756e-8126-47bd-83f3-b7c82e0d8812", + "d0454133-423b-4954-b2e4-f363f26c9316", + "00ca5465-07de-4050-9538-c638f71492aa", + "86887743-4a19-42ba-bced-973571e142c8", + "444eadb2-c644-4761-ac58-ad3d057a44fc", + "bfa45f68-d88c-4821-8da4-300ff4f7d184", + "2c68212c-23b5-4f70-b472-0b41396f07f3", + "7e5a7628-d5cb-430f-a364-51be466f5839", + "dc880af2-923c-4c01-81bb-9103a737d536" + ], + "Id": "39fbd5bb-662f-4ee1-86d9-39851ae1acf5", + "Name": null + }, + "a1383cbf-506e-458b-ba0a-6dfa8c84bbbf": { + "discriminator": "Elements.SpaceMetric", + "Space": "70654dc9-eef1-446e-a79c-0c4d50b298ee", + "Seats": 6.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 6.0, + "Id": "a1383cbf-506e-458b-ba0a-6dfa8c84bbbf", + "Name": null + }, + "5537f696-e36a-48a7-9b4b-ac7d470f8ae0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.377189949131012, + "Y": -0.38353999757766727, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.377189949131012, + "Y": 0.37084000968933106, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.3771898764610291, + "Y": 0.37084000968933106, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.3771898764610291, + "Y": -0.38353999757766727, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5537f696-e36a-48a7-9b4b-ac7d470f8ae0", + "Name": null + }, + "20723599-128c-4b41-8e1c-d7221a0ba6c0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.377189949131012, + "Y": -0.38353999757766727, + "Z": -3.677114296645606E-14 + }, + { + "X": -0.377189949131012, + "Y": 0.37084000968933106, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.3771898764610291, + "Y": 0.37084000968933106, + "Z": -3.677114296645606E-14 + }, + { + "X": 0.3771898764610291, + "Y": -0.38353999757766727, + "Z": -3.677114296645606E-14 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "20723599-128c-4b41-8e1c-d7221a0ba6c0", + "Name": null + }, + "ec71ddf3-262e-4daa-aa15-fb0affd3b52b": { + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.377189949131012, + "Y": -0.38353999757766727, + "Z": -3.677114296645606E-14 + }, + "Max": { + "X": 0.3771898764610291, + "Y": 0.37084000968933106, + "Z": 1.0668 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "20723599-128c-4b41-8e1c-d7221a0ba6c0", + "Height": 1.0668000000000368, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Name": "Steelcase Turnstone - Simple Tables - Pedestal Table - Round Stand Up", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "3830524d-8627-41ff-99b4-10e368978c0b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + -0.5973870315501403, + -0.8019530750210461, + 0.0, + 84.21123698312216, + 0.8019530750210461, + -0.5973870315501403, + 0.0, + 41.50811815636639, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3830524d-8627-41ff-99b4-10e368978c0b", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.21123698312216, + "Y": 41.50811815636639, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "719e5adb-3413-4916-bb85-0eae208a6918": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.26001129126548767, + "Y": -0.022826917898654937, + "Z": 0.00010048591804224998 + }, + { + "X": -0.26001129126548767, + "Y": 0.4915795148849488, + "Z": 0.00010048591804224998 + }, + { + "X": 0.26001129126548767, + "Y": 0.4915795148849488, + "Z": 0.00010048591804224998 + }, + { + "X": 0.26001129126548767, + "Y": -0.022826917898654937, + "Z": 0.00010048591804224998 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "719e5adb-3413-4916-bb85-0eae208a6918", + "Name": null + }, + "cb1055df-7e22-40f3-b9cc-b87af4e541cf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.26001129126548767, + "Y": -0.022826917898654937, + "Z": 0.00010048591804224998 + }, + { + "X": -0.26001129126548767, + "Y": 0.4915795148849488, + "Z": 0.00010048591804224998 + }, + { + "X": 0.26001129126548767, + "Y": 0.4915795148849488, + "Z": 0.00010048591804224998 + }, + { + "X": 0.26001129126548767, + "Y": -0.022826917898654937, + "Z": 0.00010048591804224998 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cb1055df-7e22-40f3-b9cc-b87af4e541cf", + "Name": null + }, + "b91121a8-271a-400f-b4bc-80794ea6af56": { + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -0.26001129126548767, + "Y": -0.022826917898654937, + "Z": 0.00010048591804224998 + }, + "Max": { + "X": 0.26001129126548767, + "Y": 0.4915795148849488, + "Z": 1.027884642791748 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "273ef664-66e6-4a1b-8cc5-ccabc5ad5477", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cb1055df-7e22-40f3-b9cc-b87af4e541cf", + "Height": 1.0277841568737058, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Name": "Steelcase Turnstone - Simple - Stool - Seat with Cushion", + "discriminator": "Elements.ContentElement", + "Elevation from Level": 0.0, + "Host": "Level : Level 1", + "Offset from Host": 0.0, + "Moves With Nearby Elements": 0 + }, + "e0851dac-f456-44c6-aa3d-6d7f3dcd11c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 2.4537001513299027E-05, + -0.9999999996989679, + 0.0, + 83.82780990107273, + 0.9999999996989679, + 2.4537001513299027E-05, + 0.0, + 41.52469506164895, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e0851dac-f456-44c6-aa3d-6d7f3dcd11c8", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 83.82780990107273, + "Y": 41.52469506164895, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "abe57f25-1744-4fb0-9423-5ad2143fbf28": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -2.4537001513299027E-05, + 0.9999999996989679, + 0.0, + 84.59236115222537, + -0.9999999996989679, + -2.4537001513299027E-05, + 0.0, + 41.52138244818954, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "abe57f25-1744-4fb0-9423-5ad2143fbf28", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 84.59236115222537, + "Y": 41.52138244818954, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "131d78a8-d8ea-49fe-8a2e-d59c4a69bbe6": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "3830524d-8627-41ff-99b4-10e368978c0b", + "e0851dac-f456-44c6-aa3d-6d7f3dcd11c8", + "abe57f25-1744-4fb0-9423-5ad2143fbf28" + ], + "Id": "131d78a8-d8ea-49fe-8a2e-d59c4a69bbe6", + "Name": null + }, + "92a6cb5c-b198-4743-840a-5ba7865ffe9b": { + "discriminator": "Elements.SpaceMetric", + "Space": "5a127ddf-8a9e-4691-9546-59964fdf9afd", + "Seats": 2.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 2.0, + "Id": "92a6cb5c-b198-4743-840a-5ba7865ffe9b", + "Name": null + }, + "146b00ac-6840-413f-ad2b-75587213c7d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + -0.5973870315501403, + -0.8019530750210461, + 0.0, + 37.94935198312136, + 0.8019530750210461, + -0.5973870315501403, + 0.0, + 21.628688083197787, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "146b00ac-6840-413f-ad2b-75587213c7d6", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.94935198312136, + "Y": 21.628688083197787, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "e0fdff56-d858-4f72-b56f-0d9f6fdfd4a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 2.4537001513299027E-05, + -0.9999999996989679, + 0.0, + 37.565924901071924, + 0.9999999996989679, + 2.4537001513299027E-05, + 0.0, + 21.645264988480342, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "e0fdff56-d858-4f72-b56f-0d9f6fdfd4a1", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 37.565924901071924, + "Y": 21.645264988480342, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "6b870f09-3369-4630-b11c-135008af4a49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -2.4537001513299027E-05, + 0.9999999996989679, + 0.0, + 38.33047615222456, + -0.9999999996989679, + -2.4537001513299027E-05, + 0.0, + 21.64195237502093, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "6b870f09-3369-4630-b11c-135008af4a49", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 38.33047615222456, + "Y": 21.64195237502093, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "3c9df5a4-eb9d-4dc8-a8af-accbb0c41f2c": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "146b00ac-6840-413f-ad2b-75587213c7d6", + "e0fdff56-d858-4f72-b56f-0d9f6fdfd4a1", + "6b870f09-3369-4630-b11c-135008af4a49" + ], + "Id": "3c9df5a4-eb9d-4dc8-a8af-accbb0c41f2c", + "Name": null + }, + "bf22d597-2fa8-41b3-80f9-54c4823ff08a": { + "discriminator": "Elements.SpaceMetric", + "Space": "89d5d5e6-df75-460f-9d9d-1f70f189cc7c", + "Seats": 2.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 2.0, + "Id": "bf22d597-2fa8-41b3-80f9-54c4823ff08a", + "Name": null + }, + "e2354b0f-d2d9-4768-83e0-117620b89b78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.6156614753256588, + 0.7880107536067216, + 0.0, + 57.171240359406504, + -0.7880107536067216, + -0.6156614753256588, + 0.0, + 48.79948100131805, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "e2354b0f-d2d9-4768-83e0-117620b89b78", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 57.171240359406504, + "Y": 48.79948100131805, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "1f3d934c-c623-4f9b-9965-30aad0919fae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.7880107536067216, + -0.6156614753256588, + 0.0, + 56.555789099941315, + 0.6156614753256588, + -0.7880107536067216, + 0.0, + 48.60600421483424, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "1f3d934c-c623-4f9b-9965-30aad0919fae", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.555789099941315, + "Y": 48.60600421483424, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "691ccaea-7bc1-4ce8-8739-a2eba7a64602": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 56.80828206717814, + -1.0, + -1.7225464241988372E-16, + 0.0, + 48.978379033893816, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "691ccaea-7bc1-4ce8-8739-a2eba7a64602", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.80828206717814, + "Y": 48.978379033893816, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "7a7c5061-1b7f-4252-8bde-528ded7cb3c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 0.24192189559967012, + -0.970295726275996, + 0.0, + 56.43310283926483, + 0.970295726275996, + 0.24192189559967012, + 0.0, + 49.080424341944436, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "7a7c5061-1b7f-4252-8bde-528ded7cb3c8", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 56.43310283926483, + "Y": 49.080424341944436, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "4f03ad93-6a69-4e57-95f5-7f71503a6ed5": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "e2354b0f-d2d9-4768-83e0-117620b89b78", + "1f3d934c-c623-4f9b-9965-30aad0919fae", + "691ccaea-7bc1-4ce8-8739-a2eba7a64602", + "7a7c5061-1b7f-4252-8bde-528ded7cb3c8" + ], + "Id": "4f03ad93-6a69-4e57-95f5-7f71503a6ed5", + "Name": null + }, + "518293ce-8bf6-468e-b63d-018097d75362": { + "discriminator": "Elements.SpaceMetric", + "Space": "5d7a9d56-6b81-4ed4-b3e7-0a3eb368cb90", + "Seats": 3.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 3.0, + "Id": "518293ce-8bf6-468e-b63d-018097d75362", + "Name": null + }, + "85c3f471-f38f-4cc4-bdc6-cdf0cebe0f7b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.9999999996989679, + -2.4537001507359334E-05, + 0.0, + 10.055134004570073, + 2.4537001507359334E-05, + -0.9999999996989679, + 0.0, + 33.25742885590079, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "85c3f471-f38f-4cc4-bdc6-cdf0cebe0f7b", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.055134004570073, + "Y": 33.25742885590079, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "a56963d7-7183-4ec8-a0f2-16d5c1253f46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 0.9999999996989679, + 2.4537001507359334E-05, + 0.0, + 10.05844661802948, + -2.4537001507359334E-05, + 0.9999999996989679, + 0.0, + 34.02198010705343, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "a56963d7-7183-4ec8-a0f2-16d5c1253f46", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.05844661802948, + "Y": 34.02198010705343, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "76c6dbe0-6262-4625-814b-59bb02e022c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + 0.8019530750210427, + -0.5973870315501452, + 0.0, + 10.041869712746925, + 0.5973870315501452, + 0.8019530750210427, + 0.0, + 33.63855302500399, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "76c6dbe0-6262-4625-814b-59bb02e022c4", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 10.041869712746925, + "Y": 33.63855302500399, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "ffadcc09-edfe-4b47-b723-8697aff414ca": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "85c3f471-f38f-4cc4-bdc6-cdf0cebe0f7b", + "a56963d7-7183-4ec8-a0f2-16d5c1253f46", + "76c6dbe0-6262-4625-814b-59bb02e022c4" + ], + "Id": "ffadcc09-edfe-4b47-b723-8697aff414ca", + "Name": null + }, + "6725fabb-c965-4c6f-9bda-c39e20f8ce9a": { + "discriminator": "Elements.SpaceMetric", + "Space": "dbb61606-4945-4829-92a6-303925addf9f", + "Seats": 2.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 2.0, + "Id": "6725fabb-c965-4c6f-9bda-c39e20f8ce9a", + "Name": null + }, + "34273f58-b681-47f4-95b7-f836adae1659": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 0.7880107536067215, + 0.615661475325659, + 0.0, + 16.48034899867996, + -0.615661475325659, + 0.7880107536067215, + 0.0, + 34.12824535940885, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "34273f58-b681-47f4-95b7-f836adae1659", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.48034899867996, + "Y": 34.12824535940885, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "13c11ea3-7866-494a-9e9b-40b52e318a96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.615661475325659, + 0.7880107536067215, + 0.0, + 16.673825785163768, + -0.7880107536067215, + -0.615661475325659, + 0.0, + 33.51279409994366, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "13c11ea3-7866-494a-9e9b-40b52e318a96", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.673825785163768, + "Y": 33.51279409994366, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "f94226bd-880f-4eea-9e8c-fdf14aa5578c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 2.334869823772514E-16, + 0.0, + 16.301450966104195, + -2.334869823772514E-16, + 1.0, + 0.0, + 33.76528706718049, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "f94226bd-880f-4eea-9e8c-fdf14aa5578c", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.301450966104195, + "Y": 33.76528706718049, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "d417e5c4-f6e1-498b-8bf8-fb84277e12cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.970295726275996, + -0.24192189559967017, + 0.0, + 16.199405658053575, + 0.24192189559967017, + -0.970295726275996, + 0.0, + 33.39010783926718, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "d417e5c4-f6e1-498b-8bf8-fb84277e12cf", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 16.199405658053575, + "Y": 33.39010783926718, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "b5d88d0f-b291-48dc-bcc0-e2176c01bcfa": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "34273f58-b681-47f4-95b7-f836adae1659", + "13c11ea3-7866-494a-9e9b-40b52e318a96", + "f94226bd-880f-4eea-9e8c-fdf14aa5578c", + "d417e5c4-f6e1-498b-8bf8-fb84277e12cf" + ], + "Id": "b5d88d0f-b291-48dc-bcc0-e2176c01bcfa", + "Name": null + }, + "3dc2e698-1bce-40a2-99d7-1a54f74cba1c": { + "discriminator": "Elements.SpaceMetric", + "Space": "e991e070-8fb7-4d17-a0ca-6d64b838c2bd", + "Seats": 3.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 3.0, + "Id": "3dc2e698-1bce-40a2-99d7-1a54f74cba1c", + "Name": null + }, + "7f3b755f-712b-4ff4-9643-f3028960b7f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec71ddf3-262e-4daa-aa15-fb0affd3b52b", + "Transform": { + "Matrix": { + "Components": [ + -0.8019530750210461, + 0.5973870315501403, + 0.0, + 73.81874691680254, + -0.5973870315501403, + -0.8019530750210461, + 0.0, + 16.626236983121437, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "7f3b755f-712b-4ff4-9643-f3028960b7f3", + "Name": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.81874691680254, + "Y": 16.626236983121437, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/c878acae-4c67-4d3e-ac91-aa71b5df9034.glb" + }, + "3009b685-7e0f-4d90-82e6-adef47ca68b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + -0.9999999996989679, + -2.453700151336026E-05, + 0.0, + 73.80217001151998, + 2.453700151336026E-05, + -0.9999999996989679, + 0.0, + 16.242809901072004, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "3009b685-7e0f-4d90-82e6-adef47ca68b7", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.80217001151998, + "Y": 16.242809901072004, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "3abab04c-0f00-4245-ae7f-5740205b8476": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b91121a8-271a-400f-b4bc-80794ea6af56", + "Transform": { + "Matrix": { + "Components": [ + 0.9999999996989679, + 2.453700151336026E-05, + 0.0, + 73.80548262497939, + -2.453700151336026E-05, + 0.9999999996989679, + 0.0, + 17.007361152224643, + 0.0, + 0.0, + 1.0, + -0.03 + ] + } + }, + "Id": "3abab04c-0f00-4245-ae7f-5740205b8476", + "Name": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 73.80548262497939, + "Y": 17.007361152224643, + "Z": -0.03 + }, + "gltfLocation": "https://hypar.io/user-static/4fa3af1f-55fe-4f25-9979-60b288a2b9f4.glb" + }, + "538c8342-9ecb-4f25-85f2-2a781e8ff1ee": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "7f3b755f-712b-4ff4-9643-f3028960b7f3", + "3009b685-7e0f-4d90-82e6-adef47ca68b7", + "3abab04c-0f00-4245-ae7f-5740205b8476" + ], + "Id": "538c8342-9ecb-4f25-85f2-2a781e8ff1ee", + "Name": null + }, + "1d8d941c-3f46-45c5-84b2-4c3fbfd1c83f": { + "discriminator": "Elements.SpaceMetric", + "Space": "1961ccb5-ed3a-4477-a946-bbb243e9e432", + "Seats": 2.0, + "Headcount": 0.0, + "Desks": 0.0, + "Collaboration Seats": 2.0, + "Id": "1d8d941c-3f46-45c5-84b2-4c3fbfd1c83f", + "Name": null + }, + "5423115c-afaa-49ed-b752-34c78cdb1bcc": { + "discriminator": "Elements.InteriorPartitionCandidate", + "WallCandidateLines": [], + "Height": 3.0, + "LevelTransform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5423115c-afaa-49ed-b752-34c78cdb1bcc", + "Name": null + }, + "e0280659-6abc-4976-80e4-33d1f4502365": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "e0280659-6abc-4976-80e4-33d1f4502365", + "Name": "Default Material" + }, + "d889bee4-25ef-4025-b99a-5b5ef1b7cef5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d889bee4-25ef-4025-b99a-5b5ef1b7cef5", + "Name": null + }, + "e98ee5f5-9255-4dfd-97f9-ff19fcf462a7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e98ee5f5-9255-4dfd-97f9-ff19fcf462a7", + "Name": null + }, + "8e173f5a-4283-4846-8fb1-e6a5a0244e0d": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/e31ce80b-9b51-463a-83f4-078a4a8b73af.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e98ee5f5-9255-4dfd-97f9-ff19fcf462a7", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8e173f5a-4283-4846-8fb1-e6a5a0244e0d", + "Name": "Steelcase - Elective Elements - Leg Base - Credenza - 27.5H x 24D x 60W - Two 15W Box_File, 30W Box_File" + }, + "d936cf04-5d94-4771-b0ef-8b83ed77c659": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8e173f5a-4283-4846-8fb1-e6a5a0244e0d", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 25.799718965070564, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.59046308301216, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "d936cf04-5d94-4771-b0ef-8b83ed77c659", + "Name": "Steelcase - Elective Elements - Leg Base - Credenza - 27.5H x 24D x 60W - Two 15W Box_File, 30W Box_File", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.799718965070564, + "Y": 54.59046308301216, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/e31ce80b-9b51-463a-83f4-078a4a8b73af.glb" + }, + "6cfa423c-fa38-419d-8e33-f5afcc803e6b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6cfa423c-fa38-419d-8e33-f5afcc803e6b", + "Name": null + }, + "902b51fb-0ef4-46af-9610-87805ea829e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "902b51fb-0ef4-46af-9610-87805ea829e7", + "Name": null + }, + "e5bbab7d-472e-46c3-94bc-d0afadeb303c": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/1970e6eb-6287-4131-9828-09a343315f5f.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "902b51fb-0ef4-46af-9610-87805ea829e7", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e5bbab7d-472e-46c3-94bc-d0afadeb303c", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 60W" + }, + "f0508323-8b1e-4416-a2d2-815b448c5179": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5bbab7d-472e-46c3-94bc-d0afadeb303c", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 25.190118965070564, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.59046308301216, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f0508323-8b1e-4416-a2d2-815b448c5179", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 60W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.190118965070564, + "Y": 54.59046308301216, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1970e6eb-6287-4131-9828-09a343315f5f.glb" + }, + "f8984345-c9e3-447f-83c6-d8238a54eccd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f8984345-c9e3-447f-83c6-d8238a54eccd", + "Name": null + }, + "b77a6369-3a64-4493-93c7-b02ea169d985": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b77a6369-3a64-4493-93c7-b02ea169d985", + "Name": null + }, + "ff1c7321-1bf5-4857-8564-1a69900fe261": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b77a6369-3a64-4493-93c7-b02ea169d985", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W" + }, + "97f4b4a7-22b8-4f72-aa8b-11af1fcab703": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 30.623811248502477, + 9.436895709313829E-16, + -1.0, + 0.0, + 52.10436968306896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "97f4b4a7-22b8-4f72-aa8b-11af1fcab703", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.623811248502477, + "Y": 52.10436968306896, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "53717476-ccc9-4beb-a4a8-1c6c60309165": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 30.642611448984145, + 9.436895709313829E-16, + -1.0, + 0.0, + 55.8929615515149, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "53717476-ccc9-4beb-a4a8-1c6c60309165", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.642611448984145, + "Y": 55.8929615515149, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "24af0778-51e0-47e9-9f3b-a27243b6287c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "24af0778-51e0-47e9-9f3b-a27243b6287c", + "Name": null + }, + "a4ce319a-b9ee-4ce2-8f1a-33389fd5f15c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a4ce319a-b9ee-4ce2-8f1a-33389fd5f15c", + "Name": null + }, + "5e671f14-c403-438d-a6e5-c42ff814b695": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a4ce319a-b9ee-4ce2-8f1a-33389fd5f15c", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W" + }, + "ea25146a-7a33-4882-b56f-10d8362eb597": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.0167039823316345E-15, + 0.0, + 29.891525699961083, + -7.0167039823316345E-15, + 1.0, + 0.0, + 54.119928646122275, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ea25146a-7a33-4882-b56f-10d8362eb597", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.891525699961083, + "Y": 54.119928646122275, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "b80c126c-ebc0-4508-8d48-912bfa0a610a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.7192471324942744E-15, + 0.0, + 29.89292696055899, + -3.7192471324942744E-15, + 1.0, + 0.0, + 55.8332025884616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b80c126c-ebc0-4508-8d48-912bfa0a610a", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.89292696055899, + "Y": 55.8332025884616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "a229745b-cfde-4307-a2fb-a917b9b88804": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a229745b-cfde-4307-a2fb-a917b9b88804", + "Name": null + }, + "90d70641-b7b1-4612-a5cc-4da5b6022bd3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "90d70641-b7b1-4612-a5cc-4da5b6022bd3", + "Name": null + }, + "bdda829c-42d3-4be9-bed2-91138c232522": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "90d70641-b7b1-4612-a5cc-4da5b6022bd3", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bdda829c-42d3-4be9-bed2-91138c232522", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest" + }, + "b8c1fcbb-46b0-4b24-9819-432e8c0a45c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 29.854472930691795, + 1.0, + -8.326672684688676E-16, + 0.0, + 55.18278116547534, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b8c1fcbb-46b0-4b24-9819-432e8c0a45c2", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.854472930691795, + "Y": 55.18278116547534, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "644a163b-0135-4bf0-aa97-53e09373f16f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 29.82120676113099, + 1.0, + -8.326672684688676E-16, + 0.0, + 53.229753907492174, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "644a163b-0135-4bf0-aa97-53e09373f16f", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.82120676113099, + "Y": 53.229753907492174, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "261bf366-bdce-4415-8005-ffac4bfd5c64": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "261bf366-bdce-4415-8005-ffac4bfd5c64", + "Name": null + }, + "280ca287-22f6-4377-b156-594712f71398": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "280ca287-22f6-4377-b156-594712f71398", + "Name": null + }, + "dd5f6a3c-e070-436d-b048-98e69557d8b8": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "280ca287-22f6-4377-b156-594712f71398", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H" + }, + "bda95d47-ab7b-41fd-abf4-aca66b96dae5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -0.9271753181742616, + 0.3746277210357728, + 0.0, + 29.735317846614873, + -0.3746277210357728, + -0.9271753181742616, + 0.0, + 54.15167217072947, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bda95d47-ab7b-41fd-abf4-aca66b96dae5", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.735317846614873, + "Y": 54.15167217072947, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "894e4d77-72f4-46ee-bf42-d385c346b369": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 30.634092805297644, + 9.436895709313829E-16, + -1.0, + 0.0, + 54.15853017072947, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "894e4d77-72f4-46ee-bf42-d385c346b369", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.634092805297644, + "Y": 54.15853017072947, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "6b1e4885-b670-4e06-a913-ca76895a8505": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b1e4885-b670-4e06-a913-ca76895a8505", + "Name": null + }, + "d1bf4065-7ef6-4944-a168-2226d8d61b29": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d1bf4065-7ef6-4944-a168-2226d8d61b29", + "Name": null + }, + "a4812f53-eb7f-4a55-9d75-3d6e6770fa25": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/7d04b9ac-5718-4003-8d5e-4457c349af78.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d1bf4065-7ef6-4944-a168-2226d8d61b29", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "a4812f53-eb7f-4a55-9d75-3d6e6770fa25", + "Name": "Steelcase - Elective Elements - Shelf - Floating with Back Panel - 12D - 96W x 7H" + }, + "92067db8-b25d-4bfc-880a-f3461aa02f6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a4812f53-eb7f-4a55-9d75-3d6e6770fa25", + "Transform": { + "Matrix": { + "Components": [ + -2.3314683517128287E-15, + 1.0, + 0.0, + 30.634092805297644, + -1.0, + -2.3314683517128287E-15, + 0.0, + 55.29303126102183, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "92067db8-b25d-4bfc-880a-f3461aa02f6b", + "Name": "Steelcase - Elective Elements - Shelf - Floating with Back Panel - 12D - 96W x 7H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.634092805297644, + "Y": 55.29303126102183, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7d04b9ac-5718-4003-8d5e-4457c349af78.glb" + }, + "ca879aed-38b3-446d-b132-a75d45b039fe": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "d936cf04-5d94-4771-b0ef-8b83ed77c659", + "f0508323-8b1e-4416-a2d2-815b448c5179", + "97f4b4a7-22b8-4f72-aa8b-11af1fcab703", + "53717476-ccc9-4beb-a4a8-1c6c60309165", + "ea25146a-7a33-4882-b56f-10d8362eb597", + "b80c126c-ebc0-4508-8d48-912bfa0a610a", + "b8c1fcbb-46b0-4b24-9819-432e8c0a45c2", + "644a163b-0135-4bf0-aa97-53e09373f16f", + "bda95d47-ab7b-41fd-abf4-aca66b96dae5", + "894e4d77-72f4-46ee-bf42-d385c346b369", + "92067db8-b25d-4bfc-880a-f3461aa02f6b" + ], + "Id": "ca879aed-38b3-446d-b132-a75d45b039fe", + "Name": null + }, + "0be4aad1-ba73-4738-8c1e-274cefdbf4bd": { + "discriminator": "Elements.SpaceMetric", + "Space": "579c6410-2916-486d-a8a3-4df1146df0e0", + "Seats": 2.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "0be4aad1-ba73-4738-8c1e-274cefdbf4bd", + "Name": null + }, + "6025e34e-b214-4dba-8730-615732082c0e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6025e34e-b214-4dba-8730-615732082c0e", + "Name": null + }, + "6b9e3bf6-fca6-4782-aadb-1c741e61bf75": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b9e3bf6-fca6-4782-aadb-1c741e61bf75", + "Name": null + }, + "9f11fae1-972d-4623-b817-99d55feed31f": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6b9e3bf6-fca6-4782-aadb-1c741e61bf75", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9f11fae1-972d-4623-b817-99d55feed31f", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W" + }, + "0b16f482-4f90-44d7-b257-6b747df7e4a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 23.220119786576504, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.64246182817091, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0b16f482-4f90-44d7-b257-6b747df7e4a0", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.220119786576504, + "Y": 53.64246182817091, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "45053947-ecc5-4e9a-a39f-8af90067f626": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "45053947-ecc5-4e9a-a39f-8af90067f626", + "Name": null + }, + "7ad705ac-4e24-4892-ae3c-f74cb3347706": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7ad705ac-4e24-4892-ae3c-f74cb3347706", + "Name": null + }, + "1728fad7-9bbe-4052-b2ed-370a96cd7aad": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7ad705ac-4e24-4892-ae3c-f74cb3347706", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W" + }, + "3987572c-6104-4675-b94a-32a539006c38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 21.39157378708469, + -6.716849298982197E-15, + 1.0, + 0.0, + 55.62366182817092, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3987572c-6104-4675-b94a-32a539006c38", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.39157378708469, + "Y": 55.62366182817092, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "7fa6ac0a-81ba-4984-9c58-7c3cfeb54b8c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7fa6ac0a-81ba-4984-9c58-7c3cfeb54b8c", + "Name": null + }, + "23e330a4-2a8a-46a3-adc2-90040783c444": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "23e330a4-2a8a-46a3-adc2-90040783c444", + "Name": null + }, + "8313ce3f-b8f0-4abf-bb7c-b963781ce586": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "23e330a4-2a8a-46a3-adc2-90040783c444", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W" + }, + "69b9febd-0617-4680-b830-87c0ec49be55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 21.391573787084692, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23326182867911, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "69b9febd-0617-4680-b830-87c0ec49be55", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.391573787084692, + "Y": 56.23326182867911, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "6cac5255-d3ec-445b-a75a-4ee510397e23": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6cac5255-d3ec-445b-a75a-4ee510397e23", + "Name": null + }, + "e3598f4f-3fbf-48a7-ade2-1fd62128b043": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e3598f4f-3fbf-48a7-ade2-1fd62128b043", + "Name": null + }, + "e3127177-07f4-4eee-99a1-7df1b2b08c74": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e3598f4f-3fbf-48a7-ade2-1fd62128b043", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right" + }, + "c7dc33d5-1064-4946-9691-b46dcbf168a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 23.22011978708464, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25296999999966, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c7dc33d5-1064-4946-9691-b46dcbf168a1", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.22011978708464, + "Y": 56.25296999999966, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "da7c75bd-4f48-4c34-81c1-81d25a7d9784": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "da7c75bd-4f48-4c34-81c1-81d25a7d9784", + "Name": null + }, + "ad544f9d-5db5-4a6d-85cd-41ac5c43a626": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ad544f9d-5db5-4a6d-85cd-41ac5c43a626", + "Name": null + }, + "1e07cb98-b538-4dfa-9673-7d4c6934f63f": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ad544f9d-5db5-4a6d-85cd-41ac5c43a626", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W" + }, + "3cc6599d-7539-43d4-90f8-c670d435db77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.0269562977782695E-13, + 0.0, + 22.45837378708469, + -1.0269562977782695E-13, + 1.0, + 0.0, + 55.623661828679104, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "3cc6599d-7539-43d4-90f8-c670d435db77", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.45837378708469, + "Y": 55.623661828679104, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "4e6299a4-5945-440c-8f2c-8a4f9294ed26": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4e6299a4-5945-440c-8f2c-8a4f9294ed26", + "Name": null + }, + "0eb56593-bc35-4afb-a880-93ae5a9f500a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0eb56593-bc35-4afb-a880-93ae5a9f500a", + "Name": null + }, + "98d5abbb-72f7-4cd1-aa2e-3ff415954f38": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0eb56593-bc35-4afb-a880-93ae5a9f500a", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top" + }, + "76a866a3-5052-4050-bffd-bf6124c9446e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + 0.9961946980917343, + -0.08715574274778633, + 0.0, + 21.866501294307575, + 0.08715574274778633, + 0.9961946980917343, + 0.0, + 55.62366182817092, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "76a866a3-5052-4050-bffd-bf6124c9446e", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.866501294307575, + "Y": 55.62366182817092, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "f0c93dfd-ac20-4b81-8c62-9e81b50f34c8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f0c93dfd-ac20-4b81-8c62-9e81b50f34c8", + "Name": null + }, + "b7a517ff-0537-40ff-8233-f8a605185a5c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b7a517ff-0537-40ff-8233-f8a605185a5c", + "Name": null + }, + "cb64aae9-a100-4761-b16b-b790c20c95c9": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b7a517ff-0537-40ff-8233-f8a605185a5c", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster" + }, + "88fdb951-899c-4e0f-9992-f56f9ff83540": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.438494264988549E-15, + 0.0, + 22.554071951554132, + -7.438494264988549E-15, + 1.0, + 0.0, + 54.40446182817086, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "88fdb951-899c-4e0f-9992-f56f9ff83540", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.554071951554132, + "Y": 54.40446182817086, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "c8fffe02-ef2f-49f4-b37d-3ec8a51ca81e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8fffe02-ef2f-49f4-b37d-3ec8a51ca81e", + "Name": null + }, + "0be71b63-cf42-463e-b054-f1baf3fed7fd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0be71b63-cf42-463e-b054-f1baf3fed7fd", + "Name": null + }, + "8255569a-ec78-4a83-b3c8-a1d63821f8b4": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0be71b63-cf42-463e-b054-f1baf3fed7fd", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D" + }, + "184c8802-0062-45f1-8433-858d755bdd25": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 21.39157378708469, + -6.716849298982197E-15, + 1.0, + 0.0, + 54.42470562893301, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "184c8802-0062-45f1-8433-858d755bdd25", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.39157378708469, + "Y": 54.42470562893301, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "4183332c-cd45-4c57-b4a5-335845fb4451": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4183332c-cd45-4c57-b4a5-335845fb4451", + "Name": null + }, + "1c535be1-1aa9-4596-b727-ad4b8409ab1f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1c535be1-1aa9-4596-b727-ad4b8409ab1f", + "Name": null + }, + "23bb0371-bebe-474a-a155-a044ad6cf0f1": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1c535be1-1aa9-4596-b727-ad4b8409ab1f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W" + }, + "c2d30ab1-a3f8-4942-b504-9d0c2242e3e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 22.885543466421723, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.878739783325585, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c2d30ab1-a3f8-4942-b504-9d0c2242e3e8", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.885543466421723, + "Y": 53.878739783325585, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "7d08cebb-b344-4c7c-bd4f-c9d0ac8a4b05": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7d08cebb-b344-4c7c-bd4f-c9d0ac8a4b05", + "Name": null + }, + "2296863d-d5ba-4813-a8bc-f552b7b6d267": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2296863d-d5ba-4813-a8bc-f552b7b6d267", + "Name": null + }, + "4c45c1f3-b1ed-443e-adf4-3cc4c612864d": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2296863d-d5ba-4813-a8bc-f552b7b6d267", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D" + }, + "9f02be70-286c-4225-b516-da6f5fd84231": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 21.391573787084692, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.231991828679114, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f02be70-286c-4225-b516-da6f5fd84231", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.391573787084692, + "Y": 56.231991828679114, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "a79d5245-6e29-45f1-ae53-5846f3684d17": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a79d5245-6e29-45f1-ae53-5846f3684d17", + "Name": null + }, + "f1f4f466-10d2-471c-b410-1a9f7d7a50fe": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f1f4f466-10d2-471c-b410-1a9f7d7a50fe", + "Name": null + }, + "da77d5eb-3373-41d1-9d29-8e3ef206dbc8": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f1f4f466-10d2-471c-b410-1a9f7d7a50fe", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W" + }, + "2ac53627-11fb-4680-9401-e3a6a0032a43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.827871601444713E-15, + 0.0, + 21.39131978708464, + -6.827871601444713E-15, + 1.0, + 0.0, + 56.25296999999967, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2ac53627-11fb-4680-9401-e3a6a0032a43", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.39131978708464, + "Y": 56.25296999999967, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "8eebd05c-29bc-4ed5-a9fd-7a2eb3ab60fd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8eebd05c-29bc-4ed5-a9fd-7a2eb3ab60fd", + "Name": null + }, + "123ca997-e7b0-4b72-811f-19f48cea9349": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "123ca997-e7b0-4b72-811f-19f48cea9349", + "Name": null + }, + "67523bb3-48da-4c26-8841-4940287a6ff9": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "123ca997-e7b0-4b72-811f-19f48cea9349", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W" + }, + "c0743fe5-56a1-41d2-81a1-616eb90edfa7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 21.391573787084692, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25296999999964, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c0743fe5-56a1-41d2-81a1-616eb90edfa7", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.391573787084692, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "87592709-0ba3-4a4c-ad54-fc9e55a8d08b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "87592709-0ba3-4a4c-ad54-fc9e55a8d08b", + "Name": null + }, + "eb196e0b-bbc6-49f3-90bb-edb8bd9da50a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "eb196e0b-bbc6-49f3-90bb-edb8bd9da50a", + "Name": null + }, + "8c33259c-1161-4a63-9e9e-2412a5bff9a6": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "eb196e0b-bbc6-49f3-90bb-edb8bd9da50a", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding" + }, + "c7a15329-ffe2-40e2-af49-355d1cf6af40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + 2.1649348980190553E-15, + -1.0, + 0.0, + 21.499408062536975, + 1.0, + 2.1649348980190553E-15, + 0.0, + 54.10165572888807, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "c7a15329-ffe2-40e2-af49-355d1cf6af40", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.499408062536975, + "Y": 54.10165572888807, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "ce4f92e4-fc2d-4201-9b7b-363d6b112119": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ce4f92e4-fc2d-4201-9b7b-363d6b112119", + "Name": null + }, + "ad13fe3b-bac3-4732-9745-05d9082c9d0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ad13fe3b-bac3-4732-9745-05d9082c9d0b", + "Name": null + }, + "42ebdbcf-6936-4f2b-bd8b-342c0167f962": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ad13fe3b-bac3-4732-9745-05d9082c9d0b", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base" + }, + "5f44643b-e87a-4176-942b-7ae2bc0785bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 23.083229536598534, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.878739783325585, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5f44643b-e87a-4176-942b-7ae2bc0785bc", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.083229536598534, + "Y": 53.878739783325585, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "bcc4c4ac-2f90-4a48-8b70-7fbe3185adbe": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bcc4c4ac-2f90-4a48-8b70-7fbe3185adbe", + "Name": null + }, + "40b7f331-b63e-4e05-a146-6754c4d1fd87": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "40b7f331-b63e-4e05-a146-6754c4d1fd87", + "Name": null + }, + "5086ec57-60fb-4d58-9748-4ecfedc41a01": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "40b7f331-b63e-4e05-a146-6754c4d1fd87", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat" + }, + "f2ce9a30-2b5b-4bbc-abe4-28b349b54af1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 22.678021289297078, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.64246182817091, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f2ce9a30-2b5b-4bbc-abe4-28b349b54af1", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.678021289297078, + "Y": 53.64246182817091, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "026fa510-7846-4ec1-98c4-79b0f7d0137e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 21.83751351804971, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.64246182817091, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "026fa510-7846-4ec1-98c4-79b0f7d0137e", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.83751351804971, + "Y": 53.64246182817091, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "3c6c501d-a55b-4153-8dc2-934e86f5cfd3": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "0b16f482-4f90-44d7-b257-6b747df7e4a0", + "3987572c-6104-4675-b94a-32a539006c38", + "69b9febd-0617-4680-b830-87c0ec49be55", + "c7dc33d5-1064-4946-9691-b46dcbf168a1", + "3cc6599d-7539-43d4-90f8-c670d435db77", + "76a866a3-5052-4050-bffd-bf6124c9446e", + "88fdb951-899c-4e0f-9992-f56f9ff83540", + "184c8802-0062-45f1-8433-858d755bdd25", + "c2d30ab1-a3f8-4942-b504-9d0c2242e3e8", + "9f02be70-286c-4225-b516-da6f5fd84231", + "2ac53627-11fb-4680-9401-e3a6a0032a43", + "c0743fe5-56a1-41d2-81a1-616eb90edfa7", + "c7a15329-ffe2-40e2-af49-355d1cf6af40", + "5f44643b-e87a-4176-942b-7ae2bc0785bc", + "f2ce9a30-2b5b-4bbc-abe4-28b349b54af1", + "026fa510-7846-4ec1-98c4-79b0f7d0137e" + ], + "Id": "3c6c501d-a55b-4153-8dc2-934e86f5cfd3", + "Name": null + }, + "078ce4a6-0305-451c-a3b6-b31c5a1ff52d": { + "discriminator": "Elements.SpaceMetric", + "Space": "3cb023ef-2fa6-42ca-a6d1-a182735248d0", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "078ce4a6-0305-451c-a3b6-b31c5a1ff52d", + "Name": null + }, + "0ac70e00-8617-418a-b4da-eeefb3c49876": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 19.67668599949181, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0ac70e00-8617-418a-b4da-eeefb3c49876", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.67668599949181, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "0ddd942a-482b-4fa9-88aa-c8417f9186f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 17.84814, + -6.716849298982197E-15, + 1.0, + 0.0, + 55.623661828172644, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0ddd942a-482b-4fa9-88aa-c8417f9186f7", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.84814, + "Y": 55.623661828172644, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "db2e8471-78f1-4360-a4e4-134cabd0c1d0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 17.84814, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23326182868084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "db2e8471-78f1-4360-a4e4-134cabd0c1d0", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.84814, + "Y": 56.23326182868084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "4f6eca18-42b2-463c-b8c7-186e93bf3fa5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 19.676685999999947, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000138, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4f6eca18-42b2-463c-b8c7-186e93bf3fa5", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.676685999999947, + "Y": 56.25297000000138, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "4b3b91d1-8aff-4525-b68a-48cdaae2a8ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.0269562977782695E-13, + 0.0, + 18.914939999999998, + -1.0269562977782695E-13, + 1.0, + 0.0, + 55.62366182868083, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "4b3b91d1-8aff-4525-b68a-48cdaae2a8ee", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 18.914939999999998, + "Y": 55.62366182868083, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "ceac955e-5bf8-48c9-93b8-b984368490ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + 0.9961946980917343, + -0.08715574274778633, + 0.0, + 18.323067507222884, + 0.08715574274778633, + 0.9961946980917343, + 0.0, + 55.623661828172644, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "ceac955e-5bf8-48c9-93b8-b984368490ed", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 18.323067507222884, + "Y": 55.623661828172644, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "943ff051-0190-4946-b0f1-6a231d245c4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.438494264988549E-15, + 0.0, + 19.01063816446944, + -7.438494264988549E-15, + 1.0, + 0.0, + 54.404461828172586, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "943ff051-0190-4946-b0f1-6a231d245c4f", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.01063816446944, + "Y": 54.404461828172586, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "3f23a58b-4e5c-42f8-8668-4fb514080670": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 17.848139999999994, + -6.716849298982197E-15, + 1.0, + 0.0, + 54.42470562893474, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3f23a58b-4e5c-42f8-8668-4fb514080670", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.848139999999994, + "Y": 54.42470562893474, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "fb5710c4-b0ca-47f5-a1f8-ba71ede645ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 19.342109679337028, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fb5710c4-b0ca-47f5-a1f8-ba71ede645ed", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.342109679337028, + "Y": 53.87873978332731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "b592a8e3-ea01-4da0-8e96-2d839274b29c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 17.84814, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23199182868084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b592a8e3-ea01-4da0-8e96-2d839274b29c", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.84814, + "Y": 56.23199182868084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "d76bb8a7-69d1-430a-983c-6861a71f83a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.827871601444713E-15, + 0.0, + 17.84788599999995, + -6.827871601444713E-15, + 1.0, + 0.0, + 56.2529700000014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d76bb8a7-69d1-430a-983c-6861a71f83a9", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.84788599999995, + "Y": 56.2529700000014, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "edcf5986-8415-4a10-9892-62bf1f056686": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 17.84814, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000137, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "edcf5986-8415-4a10-9892-62bf1f056686", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.84814, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "bcdd54b4-eb3f-4a19-980e-2713767c55ae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + 2.1649348980190553E-15, + -1.0, + 0.0, + 17.955974275452284, + 1.0, + 2.1649348980190553E-15, + 0.0, + 54.101655728889796, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "bcdd54b4-eb3f-4a19-980e-2713767c55ae", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 17.955974275452284, + "Y": 54.101655728889796, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "57fe3ed2-ef9a-448f-adba-6134778cdbe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 19.539795749513843, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "57fe3ed2-ef9a-448f-adba-6134778cdbe7", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.539795749513843, + "Y": 53.87873978332731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "2aa13848-bda9-489b-8b77-1d83763ac18b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 19.134587502212387, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2aa13848-bda9-489b-8b77-1d83763ac18b", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.134587502212387, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "17fc6ed3-8ac7-4491-8627-7b048dd3579a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 18.29407973096502, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "17fc6ed3-8ac7-4491-8627-7b048dd3579a", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 18.29407973096502, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "9246f7ad-7fff-4530-a9a3-67a54e62cded": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "0ac70e00-8617-418a-b4da-eeefb3c49876", + "0ddd942a-482b-4fa9-88aa-c8417f9186f7", + "db2e8471-78f1-4360-a4e4-134cabd0c1d0", + "4f6eca18-42b2-463c-b8c7-186e93bf3fa5", + "4b3b91d1-8aff-4525-b68a-48cdaae2a8ee", + "ceac955e-5bf8-48c9-93b8-b984368490ed", + "943ff051-0190-4946-b0f1-6a231d245c4f", + "3f23a58b-4e5c-42f8-8668-4fb514080670", + "fb5710c4-b0ca-47f5-a1f8-ba71ede645ed", + "b592a8e3-ea01-4da0-8e96-2d839274b29c", + "d76bb8a7-69d1-430a-983c-6861a71f83a9", + "edcf5986-8415-4a10-9892-62bf1f056686", + "bcdd54b4-eb3f-4a19-980e-2713767c55ae", + "57fe3ed2-ef9a-448f-adba-6134778cdbe7", + "2aa13848-bda9-489b-8b77-1d83763ac18b", + "17fc6ed3-8ac7-4491-8627-7b048dd3579a" + ], + "Id": "9246f7ad-7fff-4530-a9a3-67a54e62cded", + "Name": null + }, + "c9fe716e-61b7-4ac1-a78d-2d9ec491ba1f": { + "discriminator": "Elements.SpaceMetric", + "Space": "6b6f4dfd-8e82-4266-88f3-38549f6db7db", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "c9fe716e-61b7-4ac1-a78d-2d9ec491ba1f", + "Name": null + }, + "b70d5fca-cba6-4ca8-83ad-b4dc3beb1479": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 15.824060757219389, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b70d5fca-cba6-4ca8-83ad-b4dc3beb1479", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.824060757219389, + "Y": 53.642461828172685, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "2ec4ee6d-850d-4fe4-8419-2402879eb8e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 13.995514757727577, + -6.716849298982197E-15, + 1.0, + 0.0, + 55.62366182817269, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2ec4ee6d-850d-4fe4-8419-2402879eb8e9", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995514757727577, + "Y": 55.62366182817269, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "e6e2cd4d-1b2d-4bd8-9487-9f162ec006ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 13.995514757727578, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23326182868089, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e6e2cd4d-1b2d-4bd8-9487-9f162ec006ee", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995514757727578, + "Y": 56.23326182868089, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "2e072bfc-ec8c-4e2b-b749-ee7fbb74f10d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 15.824060757727526, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000143, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2e072bfc-ec8c-4e2b-b749-ee7fbb74f10d", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.824060757727526, + "Y": 56.25297000000143, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "012612cf-7edd-4420-81f4-0e1779012735": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.0269562977782695E-13, + 0.0, + 15.062314757727576, + -1.0269562977782695E-13, + 1.0, + 0.0, + 55.62366182868088, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "012612cf-7edd-4420-81f4-0e1779012735", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.062314757727576, + "Y": 55.62366182868088, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "903cce1e-9bac-451f-8e1d-6af71d7bde07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + 0.9961946980917343, + -0.08715574274778633, + 0.0, + 14.470442264950462, + 0.08715574274778633, + 0.9961946980917343, + 0.0, + 55.62366182817269, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "903cce1e-9bac-451f-8e1d-6af71d7bde07", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.470442264950462, + "Y": 55.62366182817269, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "8041c241-c955-4dc5-b4a8-d2b99f09efb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.438494264988549E-15, + 0.0, + 15.158012922197019, + -7.438494264988549E-15, + 1.0, + 0.0, + 54.404461828172636, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8041c241-c955-4dc5-b4a8-d2b99f09efb7", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.158012922197019, + "Y": 54.404461828172636, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "c72b8376-46b5-4903-a511-7aa414d32d13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 13.995514757727573, + -6.716849298982197E-15, + 1.0, + 0.0, + 54.42470562893479, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c72b8376-46b5-4903-a511-7aa414d32d13", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995514757727573, + "Y": 54.42470562893479, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "0a0245db-9fcc-421a-b901-377c2684deaa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 15.489484437064608, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0a0245db-9fcc-421a-b901-377c2684deaa", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.489484437064608, + "Y": 53.87873978332736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "f04ee106-365a-4697-82ba-b246412922dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 13.995514757727578, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23199182868089, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f04ee106-365a-4697-82ba-b246412922dc", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995514757727578, + "Y": 56.23199182868089, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "ec085c23-2131-48d3-a993-3e8bb39af9e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.827871601444713E-15, + 0.0, + 13.995260757727527, + -6.827871601444713E-15, + 1.0, + 0.0, + 56.25297000000145, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec085c23-2131-48d3-a993-3e8bb39af9e4", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995260757727527, + "Y": 56.25297000000145, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "bbaca49b-cba2-4375-8609-1bb3ddd1f369": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 13.995514757727578, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000142, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bbaca49b-cba2-4375-8609-1bb3ddd1f369", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.995514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "459f40e8-09ec-4caf-b448-9ed63faf5513": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + 2.1649348980190553E-15, + -1.0, + 0.0, + 14.103349033179862, + 1.0, + 2.1649348980190553E-15, + 0.0, + 54.101655728889845, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "459f40e8-09ec-4caf-b448-9ed63faf5513", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.103349033179862, + "Y": 54.101655728889845, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "f0ed4096-24c9-448c-a1d1-42c6e05f942c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 15.68717050724142, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f0ed4096-24c9-448c-a1d1-42c6e05f942c", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.68717050724142, + "Y": 53.87873978332736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "dba50762-a663-4d10-b020-adadd66c2c0d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 15.281962259939965, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dba50762-a663-4d10-b020-adadd66c2c0d", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 15.281962259939965, + "Y": 53.642461828172685, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "1b157ab3-c2f9-4625-afae-4f6084f30c66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 14.441454488692598, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1b157ab3-c2f9-4625-afae-4f6084f30c66", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.441454488692598, + "Y": 53.642461828172685, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "bb863599-92a1-49ba-b3ef-109b18d3a408": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "b70d5fca-cba6-4ca8-83ad-b4dc3beb1479", + "2ec4ee6d-850d-4fe4-8419-2402879eb8e9", + "e6e2cd4d-1b2d-4bd8-9487-9f162ec006ee", + "2e072bfc-ec8c-4e2b-b749-ee7fbb74f10d", + "012612cf-7edd-4420-81f4-0e1779012735", + "903cce1e-9bac-451f-8e1d-6af71d7bde07", + "8041c241-c955-4dc5-b4a8-d2b99f09efb7", + "c72b8376-46b5-4903-a511-7aa414d32d13", + "0a0245db-9fcc-421a-b901-377c2684deaa", + "f04ee106-365a-4697-82ba-b246412922dc", + "ec085c23-2131-48d3-a993-3e8bb39af9e4", + "bbaca49b-cba2-4375-8609-1bb3ddd1f369", + "459f40e8-09ec-4caf-b448-9ed63faf5513", + "f0ed4096-24c9-448c-a1d1-42c6e05f942c", + "dba50762-a663-4d10-b020-adadd66c2c0d", + "1b157ab3-c2f9-4625-afae-4f6084f30c66" + ], + "Id": "bb863599-92a1-49ba-b3ef-109b18d3a408", + "Name": null + }, + "988e2242-e035-4e53-9abe-9d1199269870": { + "discriminator": "Elements.SpaceMetric", + "Space": "db000d67-8e60-4ae8-aae2-1b4e1deb12d1", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "988e2242-e035-4e53-9abe-9d1199269870", + "Name": null + }, + "a35ff965-6a74-44f8-84d5-94d97111e63b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8e173f5a-4283-4846-8fb1-e6a5a0244e0d", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 8.827702828588887, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.590463083013624, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "a35ff965-6a74-44f8-84d5-94d97111e63b", + "Name": "Steelcase - Elective Elements - Leg Base - Credenza - 27.5H x 24D x 60W - Two 15W Box_File, 30W Box_File", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.827702828588887, + "Y": 54.590463083013624, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/e31ce80b-9b51-463a-83f4-078a4a8b73af.glb" + }, + "44c5cd64-2b49-4cb4-a40e-91192d84aa53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5bbab7d-472e-46c3-94bc-d0afadeb303c", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 8.218102828588886, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.590463083013624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "44c5cd64-2b49-4cb4-a40e-91192d84aa53", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 60W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 8.218102828588886, + "Y": 54.590463083013624, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1970e6eb-6287-4131-9828-09a343315f5f.glb" + }, + "b675d15d-40a6-4a12-84be-78cf353a1480": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 13.992596006230002, + 9.436895709313829E-16, + -1.0, + 0.0, + 52.104369683068875, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b675d15d-40a6-4a12-84be-78cf353a1480", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.992596006230002, + "Y": 52.104369683068875, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "8fcc6764-8860-450c-a263-6a91899a37d4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 14.011396206711732, + 9.436895709313829E-16, + -1.0, + 0.0, + 55.89296155151628, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8fcc6764-8860-450c-a263-6a91899a37d4", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.011396206711732, + "Y": 55.89296155151628, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "7b64dcb2-f1e3-4391-9668-287c2de41c43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.0167039823316345E-15, + 0.0, + 13.26031045768864, + -7.0167039823316345E-15, + 1.0, + 0.0, + 54.11992864612292, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7b64dcb2-f1e3-4391-9668-287c2de41c43", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.26031045768864, + "Y": 54.11992864612292, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "bea6882b-33ea-45c8-8f13-747fb3fa0cb2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.7192471324942744E-15, + 0.0, + 13.261711718286548, + -3.7192471324942744E-15, + 1.0, + 0.0, + 55.83320258846225, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bea6882b-33ea-45c8-8f13-747fb3fa0cb2", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.261711718286548, + "Y": 55.83320258846225, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "51048dc3-3ed1-4016-a4e9-f6662f77acaa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 13.223257688419352, + 1.0, + -8.326672684688676E-16, + 0.0, + 55.18278116547599, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51048dc3-3ed1-4016-a4e9-f6662f77acaa", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.223257688419352, + "Y": 55.18278116547599, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "75afd4f9-53ce-4d94-9df9-d21f2b23dc0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 13.189991518858548, + 1.0, + -8.326672684688676E-16, + 0.0, + 53.22975390749282, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "75afd4f9-53ce-4d94-9df9-d21f2b23dc0f", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.189991518858548, + "Y": 53.22975390749282, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "7324c100-6431-4e42-a55f-e3094084938e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -0.9271753181742616, + 0.3746277210357728, + 0.0, + 13.10410260434243, + -0.3746277210357728, + -0.9271753181742616, + 0.0, + 54.151672170730116, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7324c100-6431-4e42-a55f-e3094084938e", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 13.10410260434243, + "Y": 54.151672170730116, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "df1cd48c-1df1-48c0-ba46-94b7376a91b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 14.002877563025201, + 9.436895709313829E-16, + -1.0, + 0.0, + 54.15853017073012, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "df1cd48c-1df1-48c0-ba46-94b7376a91b7", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.002877563025201, + "Y": 54.15853017073012, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "d49ead4e-cbc2-4980-acc6-d30a071f1272": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a4812f53-eb7f-4a55-9d75-3d6e6770fa25", + "Transform": { + "Matrix": { + "Components": [ + -2.3314683517128287E-15, + 1.0, + 0.0, + 14.002877563025201, + -1.0, + -2.3314683517128287E-15, + 0.0, + 55.29303126102248, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d49ead4e-cbc2-4980-acc6-d30a071f1272", + "Name": "Steelcase - Elective Elements - Shelf - Floating with Back Panel - 12D - 96W x 7H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 14.002877563025201, + "Y": 55.29303126102248, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7d04b9ac-5718-4003-8d5e-4457c349af78.glb" + }, + "c5ec625b-fc64-4757-b61d-199cb7d52a40": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "a35ff965-6a74-44f8-84d5-94d97111e63b", + "44c5cd64-2b49-4cb4-a40e-91192d84aa53", + "b675d15d-40a6-4a12-84be-78cf353a1480", + "8fcc6764-8860-450c-a263-6a91899a37d4", + "7b64dcb2-f1e3-4391-9668-287c2de41c43", + "bea6882b-33ea-45c8-8f13-747fb3fa0cb2", + "51048dc3-3ed1-4016-a4e9-f6662f77acaa", + "75afd4f9-53ce-4d94-9df9-d21f2b23dc0f", + "7324c100-6431-4e42-a55f-e3094084938e", + "df1cd48c-1df1-48c0-ba46-94b7376a91b7", + "d49ead4e-cbc2-4980-acc6-d30a071f1272" + ], + "Id": "c5ec625b-fc64-4757-b61d-199cb7d52a40", + "Name": null + }, + "a41137ad-fc56-47af-899e-93cb7df3cd85": { + "discriminator": "Elements.SpaceMetric", + "Space": "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1", + "Seats": 2.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "a41137ad-fc56-47af-899e-93cb7df3cd85", + "Name": null + }, + "319bf7ad-8cd6-404d-a66f-428abd1fa921": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 52.56101916580881, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "319bf7ad-8cd6-404d-a66f-428abd1fa921", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.56101916580881, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "d3e66ad0-acba-4355-93c9-4d333b18e76e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 50.732473166317, + -6.716849298982197E-15, + 1.0, + 0.0, + 55.623661828172644, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d3e66ad0-acba-4355-93c9-4d333b18e76e", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.732473166317, + "Y": 55.623661828172644, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "d94ca380-047e-41e1-94d0-260fdf45ff1c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 50.732473166317, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23326182868084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d94ca380-047e-41e1-94d0-260fdf45ff1c", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.732473166317, + "Y": 56.23326182868084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "acc452d3-1073-4e3e-a43c-5172c0406acc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 52.561019166316946, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000138, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "acc452d3-1073-4e3e-a43c-5172c0406acc", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.561019166316946, + "Y": 56.25297000000138, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "7cf1f38c-a41b-49da-a80b-a2271a68b7ea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.0269562977782695E-13, + 0.0, + 51.79927316631699, + -1.0269562977782695E-13, + 1.0, + 0.0, + 55.62366182868083, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "7cf1f38c-a41b-49da-a80b-a2271a68b7ea", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.79927316631699, + "Y": 55.62366182868083, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "d68b6789-704c-4a40-bb14-7edca09cca98": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + 0.9961946980917343, + -0.08715574274778633, + 0.0, + 51.20740067353988, + 0.08715574274778633, + 0.9961946980917343, + 0.0, + 55.623661828172644, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "d68b6789-704c-4a40-bb14-7edca09cca98", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.20740067353988, + "Y": 55.623661828172644, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "ad7b000c-1478-4802-ba29-96c3f59ec4e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.438494264988549E-15, + 0.0, + 51.89497133078644, + -7.438494264988549E-15, + 1.0, + 0.0, + 54.404461828172586, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ad7b000c-1478-4802-ba29-96c3f59ec4e8", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.89497133078644, + "Y": 54.404461828172586, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "82cab5ea-dbd5-43c6-bc27-08a7e312aae3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 50.73247316631699, + -6.716849298982197E-15, + 1.0, + 0.0, + 54.42470562893474, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "82cab5ea-dbd5-43c6-bc27-08a7e312aae3", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.73247316631699, + "Y": 54.42470562893474, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "c42c2360-f3b9-4917-981c-9e5edfd11326": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 52.22644284565403, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c42c2360-f3b9-4917-981c-9e5edfd11326", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.22644284565403, + "Y": 53.87873978332731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "eacb309d-a3cf-48ec-993b-cbf3813446f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 50.732473166317, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.23199182868084, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eacb309d-a3cf-48ec-993b-cbf3813446f7", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.732473166317, + "Y": 56.23199182868084, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "c03fd60f-79b4-4df7-ae8c-8ef7174b8cbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.827871601444713E-15, + 0.0, + 50.73221916631695, + -6.827871601444713E-15, + 1.0, + 0.0, + 56.2529700000014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c03fd60f-79b4-4df7-ae8c-8ef7174b8cbd", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.73221916631695, + "Y": 56.2529700000014, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "0b0a6176-82bc-41de-b7c9-84dbb57074fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.716849298982197E-15, + 0.0, + 50.732473166317, + -6.716849298982197E-15, + 1.0, + 0.0, + 56.25297000000137, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0b0a6176-82bc-41de-b7c9-84dbb57074fb", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "96abd8b3-705b-4a23-bb4d-8b5de81f3c95": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + 2.1649348980190553E-15, + -1.0, + 0.0, + 50.84030744176928, + 1.0, + 2.1649348980190553E-15, + 0.0, + 54.101655728889796, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "96abd8b3-705b-4a23-bb4d-8b5de81f3c95", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.84030744176928, + "Y": 54.101655728889796, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "fdf1996d-9273-48ff-a536-f1c7b47cd3e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 52.42412891583084, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.87873978332731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fdf1996d-9273-48ff-a536-f1c7b47cd3e6", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.42412891583084, + "Y": 53.87873978332731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "7f3d3289-63b0-4156-b633-cbe8b0558e8b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 52.01892066852939, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7f3d3289-63b0-4156-b633-cbe8b0558e8b", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 52.01892066852939, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "afee4160-e0a8-4d4d-97b9-fe1cf29a9a8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -3.941291737419306E-15, + 0.0, + 51.178412897282016, + 3.941291737419306E-15, + -1.0, + 0.0, + 53.642461828172635, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "afee4160-e0a8-4d4d-97b9-fe1cf29a9a8e", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 51.178412897282016, + "Y": 53.642461828172635, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "e501439e-0e54-47f6-8af2-1d2933479152": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "319bf7ad-8cd6-404d-a66f-428abd1fa921", + "d3e66ad0-acba-4355-93c9-4d333b18e76e", + "d94ca380-047e-41e1-94d0-260fdf45ff1c", + "acc452d3-1073-4e3e-a43c-5172c0406acc", + "7cf1f38c-a41b-49da-a80b-a2271a68b7ea", + "d68b6789-704c-4a40-bb14-7edca09cca98", + "ad7b000c-1478-4802-ba29-96c3f59ec4e8", + "82cab5ea-dbd5-43c6-bc27-08a7e312aae3", + "c42c2360-f3b9-4917-981c-9e5edfd11326", + "eacb309d-a3cf-48ec-993b-cbf3813446f7", + "c03fd60f-79b4-4df7-ae8c-8ef7174b8cbd", + "0b0a6176-82bc-41de-b7c9-84dbb57074fb", + "96abd8b3-705b-4a23-bb4d-8b5de81f3c95", + "fdf1996d-9273-48ff-a536-f1c7b47cd3e6", + "7f3d3289-63b0-4156-b633-cbe8b0558e8b", + "afee4160-e0a8-4d4d-97b9-fe1cf29a9a8e" + ], + "Id": "e501439e-0e54-47f6-8af2-1d2933479152", + "Name": null + }, + "1772fe31-935b-415d-9b59-f36206a7f2c2": { + "discriminator": "Elements.SpaceMetric", + "Space": "0f4222db-b924-45ae-8646-10b838961ccd", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "1772fe31-935b-415d-9b59-f36206a7f2c2", + "Name": null + }, + "7262fc08-2397-4acb-bfef-370d0087ca3b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7262fc08-2397-4acb-bfef-370d0087ca3b", + "Name": null + }, + "61c8d985-efa0-4385-9e07-ab33ac3df71b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "61c8d985-efa0-4385-9e07-ab33ac3df71b", + "Name": null + }, + "487a11bf-1f37-4056-8e74-63dfbb9ebc5a": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/586e32fc-bf4a-4e37-a00b-c714856133b4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "61c8d985-efa0-4385-9e07-ab33ac3df71b", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "487a11bf-1f37-4056-8e74-63dfbb9ebc5a", + "Name": "West Elm Work Collection - Greenpoint - Benching - Credenza - End" + }, + "8eda2752-5577-4c37-9f89-a4e8cecacaa9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "487a11bf-1f37-4056-8e74-63dfbb9ebc5a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 48.014263950785626, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.242758918902815, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8eda2752-5577-4c37-9f89-a4e8cecacaa9", + "Name": "West Elm Work Collection - Greenpoint - Benching - Credenza - End", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.014263950785626, + "Y": 56.242758918902815, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/586e32fc-bf4a-4e37-a00b-c714856133b4.glb" + }, + "769b2997-1d61-485a-bbde-047f3be69391": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "769b2997-1d61-485a-bbde-047f3be69391", + "Name": null + }, + "3d2d48e4-97bc-4a05-889a-789e9a050c9a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3d2d48e4-97bc-4a05-889a-789e9a050c9a", + "Name": null + }, + "705d6b70-e509-4488-af46-3846478c0891": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/29551648-da3d-49cd-b767-528086c2fd08.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3d2d48e4-97bc-4a05-889a-789e9a050c9a", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "705d6b70-e509-4488-af46-3846478c0891", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Open" + }, + "039a579e-4fd3-4313-af65-d2d4702e1ef1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "705d6b70-e509-4488-af46-3846478c0891", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 47.0588854833212, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.23312916203913, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "039a579e-4fd3-4313-af65-d2d4702e1ef1", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Open", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 47.0588854833212, + "Y": 56.23312916203913, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/29551648-da3d-49cd-b767-528086c2fd08.glb" + }, + "e50f1b78-6ecc-4e61-a880-f35c43c584e8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e50f1b78-6ecc-4e61-a880-f35c43c584e8", + "Name": null + }, + "449c2a53-7098-41c0-9f02-f395965708a8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "449c2a53-7098-41c0-9f02-f395965708a8", + "Name": null + }, + "12afe145-b02f-4304-b737-c8e95052dfab": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/ecfef0a8-a6b9-431f-867f-d04016d083a4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "449c2a53-7098-41c0-9f02-f395965708a8", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "12afe145-b02f-4304-b737-c8e95052dfab", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Narrow" + }, + "d1743834-313f-4f4b-a20e-e08689a6fc4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "12afe145-b02f-4304-b737-c8e95052dfab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 50.05941426912212, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.23312916203914, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d1743834-313f-4f4b-a20e-e08689a6fc4a", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Narrow", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.05941426912212, + "Y": 56.23312916203914, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/ecfef0a8-a6b9-431f-867f-d04016d083a4.glb" + }, + "487a68c4-e2ea-4e5b-afd2-fa076101b09e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "487a68c4-e2ea-4e5b-afd2-fa076101b09e", + "Name": null + }, + "7c54da6c-cc3d-4280-bf25-095fb54af7f6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7c54da6c-cc3d-4280-bf25-095fb54af7f6", + "Name": null + }, + "233521e9-7531-42cf-87e0-98b116f110c8": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/434bb278-83ef-48e3-91d6-f170610627a2.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7c54da6c-cc3d-4280-bf25-095fb54af7f6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "233521e9-7531-42cf-87e0-98b116f110c8", + "Name": "Blu Dot - 2D3D Medium Bowl - 12.46_ x 10.97_" + }, + "3f886940-b3d3-49ec-bf25-68e0b164cb85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "233521e9-7531-42cf-87e0-98b116f110c8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 47.72964685581481, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.098169522565314, + 0.0, + 0.0, + 1.0, + 1.199936200141839 + ] + } + }, + "Id": "3f886940-b3d3-49ec-bf25-68e0b164cb85", + "Name": "Blu Dot - 2D3D Medium Bowl - 12.46_ x 10.97_", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 47.72964685581481, + "Y": 56.098169522565314, + "Z": 1.199936200141839 + }, + "gltfLocation": "https://hypar.io/user-static/434bb278-83ef-48e3-91d6-f170610627a2.glb" + }, + "0e80895f-e41e-4847-9703-7256f3946972": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0e80895f-e41e-4847-9703-7256f3946972", + "Name": null + }, + "9c425058-67b9-43f7-bbdd-68ad0a3c1293": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9c425058-67b9-43f7-bbdd-68ad0a3c1293", + "Name": null + }, + "bde47db3-e28e-4374-85d2-231720d72440": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/2a358877-e2b4-4f1f-9f5d-673c9887409d.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9c425058-67b9-43f7-bbdd-68ad0a3c1293", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bde47db3-e28e-4374-85d2-231720d72440", + "Name": "Stak Ceramics - Sprout Planter Dock - Beige" + }, + "b28f7a6c-6d79-489f-ad3f-9cb373ca5346": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bde47db3-e28e-4374-85d2-231720d72440", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 50.2050453649964, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.10888667539707, + 0.0, + 0.0, + 1.0, + 1.1999362049102449 + ] + } + }, + "Id": "b28f7a6c-6d79-489f-ad3f-9cb373ca5346", + "Name": "Stak Ceramics - Sprout Planter Dock - Beige", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.2050453649964, + "Y": 56.10888667539707, + "Z": 1.1999362049102449 + }, + "gltfLocation": "https://hypar.io/user-static/2a358877-e2b4-4f1f-9f5d-673c9887409d.glb" + }, + "d0d4e34e-d49c-486e-8c56-b35cd9ccfebe": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d0d4e34e-d49c-486e-8c56-b35cd9ccfebe", + "Name": null + }, + "b136ef89-566e-4c77-a8e6-61b684a57309": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b136ef89-566e-4c77-a8e6-61b684a57309", + "Name": null + }, + "5c44a1c0-916f-43ea-bc4f-a4a5d634eac6": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/fcfbab4d-2706-4121-9b3e-e92451412ac8.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b136ef89-566e-4c77-a8e6-61b684a57309", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "5c44a1c0-916f-43ea-bc4f-a4a5d634eac6", + "Name": "Benjamin Maier Ceramics - Footless Bowl - Accessories" + }, + "6628bc55-0d56-46b2-9994-b98ef81bbe1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5c44a1c0-916f-43ea-bc4f-a4a5d634eac6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 50.31032873600598, + 2.7583939953845617E-15, + 1.0, + 0.0, + 55.976268678516625, + 0.0, + 0.0, + 1.0, + 0.8463464566342892 + ] + } + }, + "Id": "6628bc55-0d56-46b2-9994-b98ef81bbe1d", + "Name": "Benjamin Maier Ceramics - Footless Bowl - Accessories", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.31032873600598, + "Y": 55.976268678516625, + "Z": 0.8463464566342892 + }, + "gltfLocation": "https://hypar.io/user-static/fcfbab4d-2706-4121-9b3e-e92451412ac8.glb" + }, + "db0ea440-7220-4462-be11-b2c3bd8d95e9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "db0ea440-7220-4462-be11-b2c3bd8d95e9", + "Name": null + }, + "8628041b-b0dc-4007-852c-959f873d1f25": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8628041b-b0dc-4007-852c-959f873d1f25", + "Name": null + }, + "7b10c60d-d7b4-44a2-81e4-07c50ec7b4d7": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/1ed38ba8-2794-4b17-893a-f46edea9da75.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8628041b-b0dc-4007-852c-959f873d1f25", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7b10c60d-d7b4-44a2-81e4-07c50ec7b4d7", + "Name": "Roger Stevens - Gleewood - 20.7_ x 10.51_" + }, + "6486c007-6cbf-45a4-b6c6-d647d01c5746": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7b10c60d-d7b4-44a2-81e4-07c50ec7b4d7", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 48.59731473371514, + 2.7583939953845617E-15, + 1.0, + 0.0, + 56.020259012095785, + 0.0, + 0.0, + 1.0, + 0.6908335847735443 + ] + } + }, + "Id": "6486c007-6cbf-45a4-b6c6-d647d01c5746", + "Name": "Roger Stevens - Gleewood - 20.7_ x 10.51_", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 48.59731473371514, + "Y": 56.020259012095785, + "Z": 0.6908335847735443 + }, + "gltfLocation": "https://hypar.io/user-static/1ed38ba8-2794-4b17-893a-f46edea9da75.glb" + }, + "d431d890-acd9-45be-afb3-710f57ce378a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d431d890-acd9-45be-afb3-710f57ce378a", + "Name": null + }, + "29af56b8-4aff-4d5d-834d-a20f35e251c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "29af56b8-4aff-4d5d-834d-a20f35e251c6", + "Name": null + }, + "e42b0910-83e6-423d-861c-05fa556b2d16": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/0b5a45c9-f965-45c0-9d72-b82de01b2453.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "29af56b8-4aff-4d5d-834d-a20f35e251c6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e42b0910-83e6-423d-861c-05fa556b2d16", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - Return - 18D x 42W" + }, + "b0214f03-80c1-4641-b1b4-4ae3d1292597": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e42b0910-83e6-423d-861c-05fa556b2d16", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.057416247971343E-16, + 0.0, + 50.13214828881297, + 4.057416247971343E-16, + -1.0, + 0.0, + 53.65662658201732, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b0214f03-80c1-4641-b1b4-4ae3d1292597", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - Return - 18D x 42W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.13214828881297, + "Y": 53.65662658201732, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0b5a45c9-f965-45c0-9d72-b82de01b2453.glb" + }, + "73a808cd-bb4b-4804-b36d-7d00f9c49ded": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "73a808cd-bb4b-4804-b36d-7d00f9c49ded", + "Name": null + }, + "61fe4e3c-a95e-461f-9cab-c19159dae98f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "61fe4e3c-a95e-461f-9cab-c19159dae98f", + "Name": null + }, + "1e32e7dc-cc5d-44f4-9a23-a10ddcfd9296": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/b53a76f2-b641-4744-a9b4-3b5338b3e27c.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "61fe4e3c-a95e-461f-9cab-c19159dae98f", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1e32e7dc-cc5d-44f4-9a23-a10ddcfd9296", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - 30D x 72W - Inset Modesty Panel" + }, + "b1b8fa35-f0a8-4263-9b61-16ae838e94e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e32e7dc-cc5d-44f4-9a23-a10ddcfd9296", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.057416247971343E-16, + 0.0, + 50.13214828881297, + 4.057416247971343E-16, + -1.0, + 0.0, + 52.87176658201731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1b8fa35-f0a8-4263-9b61-16ae838e94e4", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - 30D x 72W - Inset Modesty Panel", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 50.13214828881297, + "Y": 52.87176658201731, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b53a76f2-b641-4744-a9b4-3b5338b3e27c.glb" + }, + "a7d949ff-a90f-472f-95cd-9f574b4e3cbf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a7d949ff-a90f-472f-95cd-9f574b4e3cbf", + "Name": null + }, + "c00a5969-e21a-4489-b5a1-41d308743f17": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c00a5969-e21a-4489-b5a1-41d308743f17", + "Name": null + }, + "ac0b016d-9c03-467c-a932-ce7adf909761": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/abd308b1-4899-4d24-b28b-613bb9ecb97b.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c00a5969-e21a-4489-b5a1-41d308743f17", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ac0b016d-9c03-467c-a932-ce7adf909761", + "Name": "Steelcase Coalesse - Chord - Seating - Mid Back - Standard Tilt - Aluminium Arm" + }, + "092ae1f9-3fdb-4df3-94df-0af8cb5c0d45": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ac0b016d-9c03-467c-a932-ce7adf909761", + "Transform": { + "Matrix": { + "Components": [ + 0.8660254037844429, + -0.49999999999999256, + 0.0, + 49.27120689834673, + 0.49999999999999256, + 0.8660254037844429, + 0.0, + 53.80815747247533, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "092ae1f9-3fdb-4df3-94df-0af8cb5c0d45", + "Name": "Steelcase Coalesse - Chord - Seating - Mid Back - Standard Tilt - Aluminium Arm", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.27120689834673, + "Y": 53.80815747247533, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/abd308b1-4899-4d24-b28b-613bb9ecb97b.glb" + }, + "1c9029f9-0fc0-4d77-85cb-d88555b7d481": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1c9029f9-0fc0-4d77-85cb-d88555b7d481", + "Name": null + }, + "79b72d6a-0747-443e-8834-cb17235b4778": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "79b72d6a-0747-443e-8834-cb17235b4778", + "Name": null + }, + "cb416f0f-6659-4f8e-bcdb-c4534b81f291": { + "discriminator": "Elements.ContentElement", + "gltfLocation": "https://hypar.io/user-static/ec55502e-3e6c-472a-ae26-cb8eead6b4f4.glb", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 1.0, + "Y": 1.0, + "Z": 1.0 + } + }, + "Gltf Scale to Meters": 1.0, + "SourceDirection": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e0280659-6abc-4976-80e4-33d1f4502365", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "79b72d6a-0747-443e-8834-cb17235b4778", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "cb416f0f-6659-4f8e-bcdb-c4534b81f291", + "Name": "West Elm Work Collection - Sterling - Chair - Conference - Armless - Four Legs" + }, + "2164ca4f-0c3d-4805-b0f0-5f6e4aac9886": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb416f0f-6659-4f8e-bcdb-c4534b81f291", + "Transform": { + "Matrix": { + "Components": [ + -0.5158823825183421, + 0.856659423229091, + 0.0, + 49.25117669826835, + -0.856659423229091, + -0.5158823825183421, + 0.0, + 52.54110449773933, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2164ca4f-0c3d-4805-b0f0-5f6e4aac9886", + "Name": "West Elm Work Collection - Sterling - Chair - Conference - Armless - Four Legs", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 49.25117669826835, + "Y": 52.54110449773933, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/ec55502e-3e6c-472a-ae26-cb8eead6b4f4.glb" + }, + "4c159c07-87b5-4b36-bc93-819ba3525f26": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "8eda2752-5577-4c37-9f89-a4e8cecacaa9", + "039a579e-4fd3-4313-af65-d2d4702e1ef1", + "d1743834-313f-4f4b-a20e-e08689a6fc4a", + "3f886940-b3d3-49ec-bf25-68e0b164cb85", + "b28f7a6c-6d79-489f-ad3f-9cb373ca5346", + "6628bc55-0d56-46b2-9994-b98ef81bbe1d", + "6486c007-6cbf-45a4-b6c6-d647d01c5746", + "b0214f03-80c1-4641-b1b4-4ae3d1292597", + "b1b8fa35-f0a8-4263-9b61-16ae838e94e4", + "092ae1f9-3fdb-4df3-94df-0af8cb5c0d45", + "2164ca4f-0c3d-4805-b0f0-5f6e4aac9886" + ], + "Id": "4c159c07-87b5-4b36-bc93-819ba3525f26", + "Name": null + }, + "70858482-b50b-42f2-ba22-5063eec49edc": { + "discriminator": "Elements.SpaceMetric", + "Space": "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d", + "Seats": 2.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "70858482-b50b-42f2-ba22-5063eec49edc", + "Name": null + }, + "427dd51d-88b5-48da-95be-cf96131a106e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8e173f5a-4283-4846-8fb1-e6a5a0244e0d", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 55.274857611071155, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.59046308301216, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "427dd51d-88b5-48da-95be-cf96131a106e", + "Name": "Steelcase - Elective Elements - Leg Base - Credenza - 27.5H x 24D x 60W - Two 15W Box_File, 30W Box_File", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 55.274857611071155, + "Y": 54.59046308301216, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/e31ce80b-9b51-463a-83f4-078a4a8b73af.glb" + }, + "be06b864-88af-4c19-aaa6-1485b90e5f74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5bbab7d-472e-46c3-94bc-d0afadeb303c", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 54.665257611071155, + 1.0, + -8.326672684688676E-16, + 0.0, + 54.59046308301216, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "be06b864-88af-4c19-aaa6-1485b90e5f74", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 60W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 54.665257611071155, + "Y": 54.59046308301216, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1970e6eb-6287-4131-9828-09a343315f5f.glb" + }, + "d293d342-2aa6-4df1-b892-bceca8df1f66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 60.23369450203181, + 9.436895709313829E-16, + -1.0, + 0.0, + 51.804257353755354, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d293d342-2aa6-4df1-b892-bceca8df1f66", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.23369450203181, + "Y": 51.804257353755354, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "15511085-406a-4159-b498-2f90415f9088": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ff1c7321-1bf5-4857-8564-1a69900fe261", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 60.252494702513474, + 9.436895709313829E-16, + -1.0, + 0.0, + 55.8929615515149, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "15511085-406a-4159-b498-2f90415f9088", + "Name": "Steelcase - Mackinac - Foundation with Tower - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.252494702513474, + "Y": 55.8929615515149, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/68a454a0-713a-47d1-974f-95b7f67aaa84.glb" + }, + "6a3bc92c-d2fc-436b-862d-d9b1bac1eedc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.0167039823316345E-15, + 0.0, + 59.50140895349041, + -7.0167039823316345E-15, + 1.0, + 0.0, + 53.96987248146547, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6a3bc92c-d2fc-436b-862d-d9b1bac1eedc", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.50140895349041, + "Y": 53.96987248146547, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "9aded267-bfd3-4f42-9eab-dc9d7102fcc6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5e671f14-c403-438d-a6e5-c42ff814b695", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.7192471324942744E-15, + 0.0, + 59.50281021408832, + -3.7192471324942744E-15, + 1.0, + 0.0, + 55.6831464238048, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9aded267-bfd3-4f42-9eab-dc9d7102fcc6", + "Name": "Steelcase - Mackinac - Worksurface - Personal - Perpendicular - 30D - 66W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.50281021408832, + "Y": 55.6831464238048, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b443ab1d-0cf8-4813-ab6c-5996831dd3cb.glb" + }, + "5de85ae8-86f3-41e5-ab63-3de366042644": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 59.464356184221124, + 1.0, + -8.326672684688676E-16, + 0.0, + 55.03272500081854, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5de85ae8-86f3-41e5-ab63-3de366042644", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.464356184221124, + "Y": 55.03272500081854, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "60fb1205-64f6-4e3d-be58-3220a11d6139": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bdda829c-42d3-4be9-bed2-91138c232522", + "Transform": { + "Matrix": { + "Components": [ + -8.326672684688676E-16, + -1.0, + 0.0, + 59.43109001466032, + 1.0, + -8.326672684688676E-16, + 0.0, + 53.07969774283537, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "60fb1205-64f6-4e3d-be58-3220a11d6139", + "Name": "Steelcase - Seating - Series 2 - Chair - Upholstered - Headrest", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.43109001466032, + "Y": 53.07969774283537, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0c545b1a-041d-4f7a-975d-c1930df69cd3.glb" + }, + "9fa3678f-3f74-486e-8713-3100e2c05e86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -0.9271753181742616, + 0.3746277210357728, + 0.0, + 59.3452011001442, + -0.3746277210357728, + -0.9271753181742616, + 0.0, + 54.001616006072666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9fa3678f-3f74-486e-8713-3100e2c05e86", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 59.3452011001442, + "Y": 54.001616006072666, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "9d4379fd-3353-451a-9fa9-effd3dd87974": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "dd5f6a3c-e070-436d-b048-98e69557d8b8", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -9.436895709313829E-16, + 0.0, + 60.24397605882697, + 9.436895709313829E-16, + -1.0, + 0.0, + 54.00847400607267, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9d4379fd-3353-451a-9fa9-effd3dd87974", + "Name": "Steelcase - Flex - Screen - Freestanding - 47H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.24397605882697, + "Y": 54.00847400607267, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/77a303c6-041d-4bd5-81eb-c262b15ed5e3.glb" + }, + "f71782b6-5723-424b-9866-3f9abeefed03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a4812f53-eb7f-4a55-9d75-3d6e6770fa25", + "Transform": { + "Matrix": { + "Components": [ + -2.3314683517128287E-15, + 1.0, + 0.0, + 60.24397605882697, + -1.0, + -2.3314683517128287E-15, + 0.0, + 55.14297509636503, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f71782b6-5723-424b-9866-3f9abeefed03", + "Name": "Steelcase - Elective Elements - Shelf - Floating with Back Panel - 12D - 96W x 7H", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 60.24397605882697, + "Y": 55.14297509636503, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7d04b9ac-5718-4003-8d5e-4457c349af78.glb" + }, + "4f5f34f5-4cf0-40e5-b02e-bb7af7b4bf72": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "427dd51d-88b5-48da-95be-cf96131a106e", + "be06b864-88af-4c19-aaa6-1485b90e5f74", + "d293d342-2aa6-4df1-b892-bceca8df1f66", + "15511085-406a-4159-b498-2f90415f9088", + "6a3bc92c-d2fc-436b-862d-d9b1bac1eedc", + "9aded267-bfd3-4f42-9eab-dc9d7102fcc6", + "5de85ae8-86f3-41e5-ab63-3de366042644", + "60fb1205-64f6-4e3d-be58-3220a11d6139", + "9fa3678f-3f74-486e-8713-3100e2c05e86", + "9d4379fd-3353-451a-9fa9-effd3dd87974", + "f71782b6-5723-424b-9866-3f9abeefed03" + ], + "Id": "4f5f34f5-4cf0-40e5-b02e-bb7af7b4bf72", + "Name": null + }, + "1b8f9274-dddc-4422-b646-c1a6917d829c": { + "discriminator": "Elements.SpaceMetric", + "Space": "9b95c2ac-4dd8-4d33-85fc-352f4909006a", + "Seats": 2.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "1b8f9274-dddc-4422-b646-c1a6917d829c", + "Name": null + }, + "534b6908-c6bb-4e77-959f-c871478d5da3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "487a11bf-1f37-4056-8e74-63dfbb9ebc5a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 20.37942395078563, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.876616295774298, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "534b6908-c6bb-4e77-959f-c871478d5da3", + "Name": "West Elm Work Collection - Greenpoint - Benching - Credenza - End", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.37942395078563, + "Y": 28.876616295774298, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/586e32fc-bf4a-4e37-a00b-c714856133b4.glb" + }, + "250d0e4c-23f6-48b5-8140-2b94e312daf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "705d6b70-e509-4488-af46-3846478c0891", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 19.4240454833212, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.866986538910616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "250d0e4c-23f6-48b5-8140-2b94e312daf8", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Open", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 19.4240454833212, + "Y": 28.866986538910616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/29551648-da3d-49cd-b767-528086c2fd08.glb" + }, + "af6947e8-ba7c-432e-8d56-b269f1950b85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "12afe145-b02f-4304-b737-c8e95052dfab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 22.424574269122125, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.866986538910623, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "af6947e8-ba7c-432e-8d56-b269f1950b85", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Bookcase - Narrow", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.424574269122125, + "Y": 28.866986538910623, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/ecfef0a8-a6b9-431f-867f-d04016d083a4.glb" + }, + "c8d75f2d-e9c9-441b-b116-39c2e924f2b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "233521e9-7531-42cf-87e0-98b116f110c8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 20.094806855814817, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.7320268994368, + 0.0, + 0.0, + 1.0, + 1.199936200141839 + ] + } + }, + "Id": "c8d75f2d-e9c9-441b-b116-39c2e924f2b1", + "Name": "Blu Dot - 2D3D Medium Bowl - 12.46_ x 10.97_", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.094806855814817, + "Y": 28.7320268994368, + "Z": 1.199936200141839 + }, + "gltfLocation": "https://hypar.io/user-static/434bb278-83ef-48e3-91d6-f170610627a2.glb" + }, + "c042927f-28ca-4dc3-adb9-8589518cf355": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bde47db3-e28e-4374-85d2-231720d72440", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 22.570205364996404, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.74274405226856, + 0.0, + 0.0, + 1.0, + 1.1999362049102449 + ] + } + }, + "Id": "c042927f-28ca-4dc3-adb9-8589518cf355", + "Name": "Stak Ceramics - Sprout Planter Dock - Beige", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.570205364996404, + "Y": 28.74274405226856, + "Z": 1.1999362049102449 + }, + "gltfLocation": "https://hypar.io/user-static/2a358877-e2b4-4f1f-9f5d-673c9887409d.glb" + }, + "76f08d82-067e-4bdd-b8e8-5573b56f2ca7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5c44a1c0-916f-43ea-bc4f-a4a5d634eac6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 22.67548873600598, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.610126055388108, + 0.0, + 0.0, + 1.0, + 0.8463464566342892 + ] + } + }, + "Id": "76f08d82-067e-4bdd-b8e8-5573b56f2ca7", + "Name": "Benjamin Maier Ceramics - Footless Bowl - Accessories", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.67548873600598, + "Y": 28.610126055388108, + "Z": 0.8463464566342892 + }, + "gltfLocation": "https://hypar.io/user-static/fcfbab4d-2706-4121-9b3e-e92451412ac8.glb" + }, + "4987fcdc-0ad0-47c4-9cc9-9b0692bd147f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7b10c60d-d7b4-44a2-81e4-07c50ec7b4d7", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -2.7583939953845617E-15, + 0.0, + 20.96247473371514, + 2.7583939953845617E-15, + 1.0, + 0.0, + 28.65411638896727, + 0.0, + 0.0, + 1.0, + 0.6908335847735443 + ] + } + }, + "Id": "4987fcdc-0ad0-47c4-9cc9-9b0692bd147f", + "Name": "Roger Stevens - Gleewood - 20.7_ x 10.51_", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.96247473371514, + "Y": 28.65411638896727, + "Z": 0.6908335847735443 + }, + "gltfLocation": "https://hypar.io/user-static/1ed38ba8-2794-4b17-893a-f46edea9da75.glb" + }, + "b045fa9d-e0fa-4c73-b5e8-738d612a9eda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e42b0910-83e6-423d-861c-05fa556b2d16", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.057416247971343E-16, + 0.0, + 22.482749127721355, + 4.057416247971343E-16, + -1.0, + 0.0, + 26.2816714351099, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b045fa9d-e0fa-4c73-b5e8-738d612a9eda", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - Return - 18D x 42W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.482749127721355, + "Y": 26.2816714351099, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/0b5a45c9-f965-45c0-9d72-b82de01b2453.glb" + }, + "9e0bc367-d8c1-4f87-b414-d545aa275460": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e32e7dc-cc5d-44f4-9a23-a10ddcfd9296", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.057416247971343E-16, + 0.0, + 22.482749127721355, + 4.057416247971343E-16, + -1.0, + 0.0, + 25.496811435109887, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9e0bc367-d8c1-4f87-b414-d545aa275460", + "Name": "West Elm Work Collection - Greenpoint - Private Office - Desk - 30D x 72W - Inset Modesty Panel", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.482749127721355, + "Y": 25.496811435109887, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/b53a76f2-b641-4744-a9b4-3b5338b3e27c.glb" + }, + "8f8ce3b7-4c23-42bc-9abb-d702713bda4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ac0b016d-9c03-467c-a932-ce7adf909761", + "Transform": { + "Matrix": { + "Components": [ + 0.8660254037844429, + -0.49999999999999256, + 0.0, + 21.621807737255118, + 0.49999999999999256, + 0.8660254037844429, + 0.0, + 26.433202325567912, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8f8ce3b7-4c23-42bc-9abb-d702713bda4a", + "Name": "Steelcase Coalesse - Chord - Seating - Mid Back - Standard Tilt - Aluminium Arm", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.621807737255118, + "Y": 26.433202325567912, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/abd308b1-4899-4d24-b28b-613bb9ecb97b.glb" + }, + "9f011053-0b7f-4fc6-9fae-e8022237a1bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb416f0f-6659-4f8e-bcdb-c4534b81f291", + "Transform": { + "Matrix": { + "Components": [ + -0.5158823825183421, + 0.856659423229091, + 0.0, + 21.601777537176737, + -0.856659423229091, + -0.5158823825183421, + 0.0, + 25.166149350831915, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f011053-0b7f-4fc6-9fae-e8022237a1bc", + "Name": "West Elm Work Collection - Sterling - Chair - Conference - Armless - Four Legs", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.601777537176737, + "Y": 25.166149350831915, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/ec55502e-3e6c-472a-ae26-cb8eead6b4f4.glb" + }, + "2b0360ce-35b2-4980-b4fd-718b28f617f1": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "534b6908-c6bb-4e77-959f-c871478d5da3", + "250d0e4c-23f6-48b5-8140-2b94e312daf8", + "af6947e8-ba7c-432e-8d56-b269f1950b85", + "c8d75f2d-e9c9-441b-b116-39c2e924f2b1", + "c042927f-28ca-4dc3-adb9-8589518cf355", + "76f08d82-067e-4bdd-b8e8-5573b56f2ca7", + "4987fcdc-0ad0-47c4-9cc9-9b0692bd147f", + "b045fa9d-e0fa-4c73-b5e8-738d612a9eda", + "9e0bc367-d8c1-4f87-b414-d545aa275460", + "8f8ce3b7-4c23-42bc-9abb-d702713bda4a", + "9f011053-0b7f-4fc6-9fae-e8022237a1bc" + ], + "Id": "2b0360ce-35b2-4980-b4fd-718b28f617f1", + "Name": null + }, + "e7e80a23-461b-41c5-9c5d-aa774e46ffe0": { + "discriminator": "Elements.SpaceMetric", + "Space": "a185270c-97b5-4a6a-85d3-0cfcc59ab567", + "Seats": 2.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "e7e80a23-461b-41c5-9c5d-aa774e46ffe0", + "Name": null + }, + "20c3a2a8-b6cc-429a-ba95-3d8b0d4157f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + 4.1249887572914084E-15, + -1.0, + 0.0, + 20.54065000405979, + 1.0, + 4.1249887572914084E-15, + 0.0, + 20.96799400050819, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "20c3a2a8-b6cc-429a-ba95-3d8b0d4157f8", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.54065000405979, + "Y": 20.96799400050819, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "cb443882-2864-4163-b3d8-f0bf91b64a8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 22.5218500040598, + -1.0, + -6.9005463188543E-15, + 0.0, + 22.796540000000004, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cb443882-2864-4163-b3d8-f0bf91b64a8d", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.5218500040598, + "Y": 22.796540000000004, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "6b6f9888-5eae-49d9-bba7-3e4addefc3c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 23.131450004567995, + -1.0, + -6.9005463188543E-15, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6b6f9888-5eae-49d9-bba7-3e4addefc3c5", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.131450004567995, + "Y": 22.79654, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "5e38bb7f-50d0-4309-8f86-66175df62901": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 23.15115817588854, + -1.0, + -6.9005463188543E-15, + 0.0, + 20.967994000000054, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5e38bb7f-50d0-4309-8f86-66175df62901", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.15115817588854, + "Y": 20.967994000000054, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "5c41e567-b073-45bc-a114-1eb74860ff3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + -1.0287932679769906E-13, + 1.0, + 0.0, + 22.521850004567984, + -1.0, + -1.0287932679769906E-13, + 0.0, + 21.729740000000003, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "5c41e567-b073-45bc-a114-1eb74860ff3a", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.521850004567984, + "Y": 21.729740000000003, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "e70246a6-b57f-47c1-8d1e-5a28ee2accf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + 0.08715574274778615, + 0.9961946980917343, + 0.0, + 22.521850004059797, + -0.9961946980917343, + 0.08715574274778615, + 0.0, + 22.321612492777117, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "e70246a6-b57f-47c1-8d1e-5a28ee2accf8", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 22.521850004059797, + "Y": 22.321612492777117, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "7fb8399f-e0c1-46a4-9e47-fe7ee714b5ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + -7.622191284860652E-15, + 1.0, + 0.0, + 21.302650004059743, + -1.0, + -7.622191284860652E-15, + 0.0, + 21.63404183553056, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7fb8399f-e0c1-46a4-9e47-fe7ee714b5ec", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.302650004059743, + "Y": 21.63404183553056, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "9d9808c2-14f2-4907-b825-2020749b359c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 21.322893804821895, + -1.0, + -6.9005463188543E-15, + 0.0, + 22.796540000000007, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9d9808c2-14f2-4907-b825-2020749b359c", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 21.322893804821895, + "Y": 22.796540000000007, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "ab49f2f1-8d61-4f8b-8eab-c381a7cefb7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + 4.1249887572914084E-15, + -1.0, + 0.0, + 20.776927959214465, + 1.0, + 4.1249887572914084E-15, + 0.0, + 21.302570320662973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ab49f2f1-8d61-4f8b-8eab-c381a7cefb7c", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.776927959214465, + "Y": 21.302570320662973, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "205b20cc-9b32-4dfa-90ad-82af6ed8118a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 23.130180004567997, + -1.0, + -6.9005463188543E-15, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "205b20cc-9b32-4dfa-90ad-82af6ed8118a", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.130180004567997, + "Y": 22.79654, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "9441d0ca-121e-431f-b65b-3ba1b1f3b596": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + -7.0115686213168154E-15, + 1.0, + 0.0, + 23.151158175888554, + -1.0, + -7.0115686213168154E-15, + 0.0, + 22.79679400000005, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9441d0ca-121e-431f-b65b-3ba1b1f3b596", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.151158175888554, + "Y": 22.79679400000005, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "0d03ba82-8549-4a03-abeb-892c0ec1b74f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + -6.9005463188543E-15, + 1.0, + 0.0, + 23.151158175888526, + -1.0, + -6.9005463188543E-15, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0d03ba82-8549-4a03-abeb-892c0ec1b74f", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "5f7d5c8a-27ca-49d6-9c61-710ec12944c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 2.3486319178911584E-15, + 0.0, + 20.999843904776952, + -2.3486319178911584E-15, + 1.0, + 0.0, + 22.688705724547717, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "5f7d5c8a-27ca-49d6-9c61-710ec12944c5", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.999843904776952, + "Y": 22.688705724547717, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "27378761-61ab-4297-865c-631cb42f4551": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + 4.1249887572914084E-15, + -1.0, + 0.0, + 20.776927959214465, + 1.0, + 4.1249887572914084E-15, + 0.0, + 21.10488425048616, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "27378761-61ab-4297-865c-631cb42f4551", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.776927959214465, + "Y": 21.10488425048616, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "aa77cad0-8400-4b0e-a2de-174cf1eab717": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 4.1249887572914084E-15, + -1.0, + 0.0, + 20.540650004059792, + 1.0, + 4.1249887572914084E-15, + 0.0, + 21.510092497787614, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aa77cad0-8400-4b0e-a2de-174cf1eab717", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.540650004059792, + "Y": 21.510092497787614, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "8dfba242-7676-4a24-8d78-bf8bb5a5c185": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 4.1249887572914084E-15, + -1.0, + 0.0, + 20.540650004059792, + 1.0, + 4.1249887572914084E-15, + 0.0, + 22.35060026903498, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8dfba242-7676-4a24-8d78-bf8bb5a5c185", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 20.540650004059792, + "Y": 22.35060026903498, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "025c53b3-9d8e-4d3d-9564-42a1b5fe6e54": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "20c3a2a8-b6cc-429a-ba95-3d8b0d4157f8", + "cb443882-2864-4163-b3d8-f0bf91b64a8d", + "6b6f9888-5eae-49d9-bba7-3e4addefc3c5", + "5e38bb7f-50d0-4309-8f86-66175df62901", + "5c41e567-b073-45bc-a114-1eb74860ff3a", + "e70246a6-b57f-47c1-8d1e-5a28ee2accf8", + "7fb8399f-e0c1-46a4-9e47-fe7ee714b5ec", + "9d9808c2-14f2-4907-b825-2020749b359c", + "ab49f2f1-8d61-4f8b-8eab-c381a7cefb7c", + "205b20cc-9b32-4dfa-90ad-82af6ed8118a", + "9441d0ca-121e-431f-b65b-3ba1b1f3b596", + "0d03ba82-8549-4a03-abeb-892c0ec1b74f", + "5f7d5c8a-27ca-49d6-9c61-710ec12944c5", + "27378761-61ab-4297-865c-631cb42f4551", + "aa77cad0-8400-4b0e-a2de-174cf1eab717", + "8dfba242-7676-4a24-8d78-bf8bb5a5c185" + ], + "Id": "025c53b3-9d8e-4d3d-9564-42a1b5fe6e54", + "Name": null + }, + "aed1185f-dfb0-4e58-a022-075a04c3b6e9": { + "discriminator": "Elements.SpaceMetric", + "Space": "2cff036f-46a8-4d52-af21-abf5b37e827d", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "aed1185f-dfb0-4e58-a022-075a04c3b6e9", + "Name": null + }, + "b06c0194-0b32-42c2-827d-ad8678fed5a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 29.18714045502761, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.30959817182874, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b06c0194-0b32-42c2-827d-ad8678fed5a6", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.18714045502761, + "Y": 21.30959817182874, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "b4b7b8a9-1155-4c67-aa27-d12ce3d4ee35": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 31.01568645451942, + 6.839313978896932E-15, + -1.0, + 0.0, + 19.328398171828727, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b4b7b8a9-1155-4c67-aa27-d12ce3d4ee35", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.01568645451942, + "Y": 19.328398171828727, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "d21f8b3b-ff4e-4e04-938c-5501444c2214": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 31.015686454519418, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.718798171320532, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d21f8b3b-ff4e-4e04-938c-5501444c2214", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.015686454519418, + "Y": 18.718798171320532, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "92e8fe03-c444-4f30-9bab-742e660d899e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 29.187140454519472, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.699089999999988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "92e8fe03-c444-4f30-9bab-742e660d899e", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.187140454519472, + "Y": 18.699089999999988, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "5f10b654-42ba-4ef9-9172-9da1f4326e56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.0281809445774169E-13, + 0.0, + 29.94888645451942, + 1.0281809445774169E-13, + -1.0, + 0.0, + 19.328398171320543, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "5f10b654-42ba-4ef9-9172-9da1f4326e56", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.94888645451942, + "Y": 19.328398171320543, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "67558087-ec01-4bdf-81d9-cf61a0f78302": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + -0.9961946980917343, + 0.0871557427477862, + 0.0, + 30.540758947296535, + -0.0871557427477862, + -0.9961946980917343, + 0.0, + 19.32839817182873, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "67558087-ec01-4bdf-81d9-cf61a0f78302", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.540758947296535, + "Y": 19.32839817182873, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "d30c2431-5ced-4aee-a6de-b71a4deda8bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -7.560958944903284E-15, + 0.0, + 29.853188290049978, + 7.560958944903284E-15, + -1.0, + 0.0, + 20.547598171828785, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d30c2431-5ced-4aee-a6de-b71a4deda8bc", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.853188290049978, + "Y": 20.547598171828785, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "962fa234-5cf0-42e0-a1da-2f5ac7f787e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 31.015686454519425, + 6.839313978896932E-15, + -1.0, + 0.0, + 20.527354371066632, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "962fa234-5cf0-42e0-a1da-2f5ac7f787e5", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.015686454519425, + "Y": 20.527354371066632, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "28b37c2d-9e92-4921-9a4a-d4eab57c206a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 29.52171677518239, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.073320216674063, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28b37c2d-9e92-4921-9a4a-d4eab57c206a", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.52171677518239, + "Y": 21.073320216674063, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "00e2cdff-3ebb-44e7-bea7-1502edf5dc62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 31.015686454519418, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.72006817132053, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "00e2cdff-3ebb-44e7-bea7-1502edf5dc62", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.015686454519418, + "Y": 18.72006817132053, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "ee3a6958-e225-4639-ad7d-8284d6d968c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.950336281359448E-15, + 0.0, + 31.01594045451947, + 6.950336281359448E-15, + -1.0, + 0.0, + 18.699089999999977, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ee3a6958-e225-4639-ad7d-8284d6d968c8", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.01594045451947, + "Y": 18.699089999999977, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "a554671c-c25e-44e0-acfe-2bd32dbf671c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 31.015686454519418, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.699090000000005, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a554671c-c25e-44e0-acfe-2bd32dbf671c", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 31.015686454519418, + "Y": 18.699090000000005, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "f4695cfc-28f4-4876-aae9-746448f20d06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + -2.2873995779337904E-15, + 1.0, + 0.0, + 30.907852179067135, + -1.0, + -2.2873995779337904E-15, + 0.0, + 20.850404271111575, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "f4695cfc-28f4-4876-aae9-746448f20d06", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.907852179067135, + "Y": 20.850404271111575, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "163cc576-1e17-4c26-ac72-5a06b3609439": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 29.324030705005576, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.073320216674063, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "163cc576-1e17-4c26-ac72-5a06b3609439", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.324030705005576, + "Y": 21.073320216674063, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "89112c7c-c9a3-4012-823f-9208905da64c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 29.729238952307032, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.309598171828736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "89112c7c-c9a3-4012-823f-9208905da64c", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 29.729238952307032, + "Y": 21.309598171828736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "e6cf2a67-2ae4-4874-ae71-659ac1f5c466": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 30.5697467235544, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.309598171828736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e6cf2a67-2ae4-4874-ae71-659ac1f5c466", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 30.5697467235544, + "Y": 21.309598171828736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "31a93007-e6a9-42b5-99f1-2f7ffc331e54": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "b06c0194-0b32-42c2-827d-ad8678fed5a6", + "b4b7b8a9-1155-4c67-aa27-d12ce3d4ee35", + "d21f8b3b-ff4e-4e04-938c-5501444c2214", + "92e8fe03-c444-4f30-9bab-742e660d899e", + "5f10b654-42ba-4ef9-9172-9da1f4326e56", + "67558087-ec01-4bdf-81d9-cf61a0f78302", + "d30c2431-5ced-4aee-a6de-b71a4deda8bc", + "962fa234-5cf0-42e0-a1da-2f5ac7f787e5", + "28b37c2d-9e92-4921-9a4a-d4eab57c206a", + "00e2cdff-3ebb-44e7-bea7-1502edf5dc62", + "ee3a6958-e225-4639-ad7d-8284d6d968c8", + "a554671c-c25e-44e0-acfe-2bd32dbf671c", + "f4695cfc-28f4-4876-aae9-746448f20d06", + "163cc576-1e17-4c26-ac72-5a06b3609439", + "89112c7c-c9a3-4012-823f-9208905da64c", + "e6cf2a67-2ae4-4874-ae71-659ac1f5c466" + ], + "Id": "31a93007-e6a9-42b5-99f1-2f7ffc331e54", + "Name": null + }, + "79da15bb-522d-4830-b8dd-b1ed30971a9a": { + "discriminator": "Elements.SpaceMetric", + "Space": "bd5077f0-0a0a-44fe-a3f9-c74aea352d62", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "79da15bb-522d-4830-b8dd-b1ed30971a9a", + "Name": null + }, + "692541f0-39df-455d-956f-63a98dd22df0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9f11fae1-972d-4623-b817-99d55feed31f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 25.148598906541473, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.30959817182874, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "692541f0-39df-455d-956f-63a98dd22df0", + "Name": "Steelcase - Elective Elements - Worksurface - Desk - Straight - 30D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.148598906541473, + "Y": 21.30959817182874, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/aa14a5d0-1120-4d45-963a-b4f183dd789c.glb" + }, + "e9da6670-f1f9-463c-ba5f-36182f0819e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1728fad7-9bbe-4052-b2ed-370a96cd7aad", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 26.977144906033285, + 6.839313978896932E-15, + -1.0, + 0.0, + 19.328398171828727, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e9da6670-f1f9-463c-ba5f-36182f0819e7", + "Name": "Steelcase - Elective Elements - Worksurface - Bridge - 24D x 48W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.977144906033285, + "Y": 19.328398171828727, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/4ecec419-2ca8-4d3b-9725-93f4d4baebe1.glb" + }, + "7e7f803d-3e68-4315-b079-d89a9a8fbc06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8313ce3f-b8f0-4abf-bb7c-b963781ce586", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 26.97714490603328, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.718798171320532, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e7f803d-3e68-4315-b079-d89a9a8fbc06", + "Name": "Steelcase - Elective Elements - Worksurface - Straight - 24D - 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.97714490603328, + "Y": 18.718798171320532, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/d9d8ec2a-eb54-4486-93c7-e86ec757b996.glb" + }, + "bc1ecc24-458c-482c-af62-04cf814da6d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3127177-07f4-4eee-99a1-7df1b2b08c74", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 25.148598906033335, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.699089999999988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bc1ecc24-458c-482c-af62-04cf814da6d3", + "Name": "Steelcase - Elective Elements - Plinth Base - Wardrobe - 65 5_8H x 24D x 12W - Right", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.148598906033335, + "Y": 18.699089999999988, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/65839f70-e09f-4c20-b49e-97b13de83ce1.glb" + }, + "0f3b8aea-6ff9-42f7-8dec-170b027209af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1e07cb98-b538-4dfa-9673-7d4c6934f63f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.0281809445774169E-13, + 0.0, + 25.910344906033284, + 1.0281809445774169E-13, + -1.0, + 0.0, + 19.328398171320543, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "0f3b8aea-6ff9-42f7-8dec-170b027209af", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - 2 High Lateral File - 23 1_4D x 30W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.910344906033284, + "Y": 19.328398171320543, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/59b72fb4-93aa-4de9-936c-396496bee67e.glb" + }, + "5f2ad961-4c63-49ff-8f3f-69bdf024de9b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "98d5abbb-72f7-4cd1-aa2e-3ff415954f38", + "Transform": { + "Matrix": { + "Components": [ + -0.9961946980917343, + 0.0871557427477862, + 0.0, + 26.502217398810398, + -0.0871557427477862, + -0.9961946980917343, + 0.0, + 19.32839817182873, + 0.0, + 0.0, + 1.0, + -4.094591332659547E-14 + ] + } + }, + "Id": "5f2ad961-4c63-49ff-8f3f-69bdf024de9b", + "Name": "Steelcase - Elective Elements - Plinth Base - Pedestal - Mobile - Wood Top", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.502217398810398, + "Y": 19.32839817182873, + "Z": -4.094591332659547E-14 + }, + "gltfLocation": "https://hypar.io/user-static/4fa22a85-4d3f-42c2-bc35-45283d969f45.glb" + }, + "9f4506b0-3086-4caa-a8c9-613420bf1faf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cb64aae9-a100-4761-b16b-b790c20c95c9", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -7.560958944903284E-15, + 0.0, + 25.81464674156384, + 7.560958944903284E-15, + -1.0, + 0.0, + 20.547598171828785, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f4506b0-3086-4caa-a8c9-613420bf1faf", + "Name": "Steelcase - Seating - Gesture - Work Chair - Wrapp Back - 4D Arm_Caster", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.81464674156384, + "Y": 20.547598171828785, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/7ff773a3-ab62-4703-adc5-198f450be2eb.glb" + }, + "7a7d0419-7756-43f1-8156-8cfee4047669": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8255569a-ec78-4a83-b3c8-a1d63821f8b4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 26.97714490603329, + 6.839313978896932E-15, + -1.0, + 0.0, + 20.527354371066632, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7a7d0419-7756-43f1-8156-8cfee4047669", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - Free Support End Panel - 30D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.97714490603329, + "Y": 20.527354371066632, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/1e9c64a9-36ca-4e98-9ff4-395eb301c9d8.glb" + }, + "0a18a346-1029-4fe1-9607-398b4ab8d474": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23bb0371-bebe-474a-a155-a044ad6cf0f1", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 25.483175226696254, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.073320216674063, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0a18a346-1029-4fe1-9607-398b4ab8d474", + "Name": "Steelcase - Elective Elements - Worksurface Support - Modesty Panel - 12H For Desk - 54W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.483175226696254, + "Y": 21.073320216674063, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/e76e2c31-597c-434c-bc0d-18077ba42224.glb" + }, + "cf28c6b1-79ef-4b43-a01a-c5ad87c2e84c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4c45c1f3-b1ed-443e-adf4-3cc4c612864d", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 26.97714490603328, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.72006817132053, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cf28c6b1-79ef-4b43-a01a-c5ad87c2e84c", + "Name": "Steelcase - Elective Elements - Worksurface Support - Plinth Base - End Panel - L Shape - 27 1_2H - Left - 23 1_4D", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.97714490603328, + "Y": 18.72006817132053, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a97f5491-fb33-4931-8c4c-4619d32443ad.glb" + }, + "8ac7c220-57a7-4826-ad6a-4e7ef6d02905": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "da77d5eb-3373-41d1-9d29-8e3ef206dbc8", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.950336281359448E-15, + 0.0, + 26.977398906033333, + 6.950336281359448E-15, + -1.0, + 0.0, + 18.699089999999977, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ac7c220-57a7-4826-ad6a-4e7ef6d02905", + "Name": "Steelcase - Elective Elements - Storage - Overhead Cabinet - Single High 15H - Sliding Door - 15 3_4D x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.977398906033333, + "Y": 18.699089999999977, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f4b48dcc-4e0d-46d4-bc19-4d2752f93d9b.glb" + }, + "89f0ccbe-7d52-4b41-bf49-904bf2f8a790": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "67523bb3-48da-4c26-8841-4940287a6ff9", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.839313978896932E-15, + 0.0, + 26.97714490603328, + 6.839313978896932E-15, + -1.0, + 0.0, + 18.699090000000005, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "89f0ccbe-7d52-4b41-bf49-904bf2f8a790", + "Name": "Steelcase - Elective Elements - Storage - Wall Mounted - Tackboard - 21 1_2H x 72W", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.97714490603328, + "Y": 18.699090000000005, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/a0efc91e-3903-405a-a378-dbf414411b73.glb" + }, + "7be9f6fe-126a-4c09-b2ff-295a5c57e2b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8c33259c-1161-4a63-9e9e-2412a5bff9a6", + "Transform": { + "Matrix": { + "Components": [ + -2.2873995779337904E-15, + 1.0, + 0.0, + 26.869310630580998, + -1.0, + -2.2873995779337904E-15, + 0.0, + 20.850404271111575, + 0.0, + 0.0, + 1.0, + 0.7504893092470305 + ] + } + }, + "Id": "7be9f6fe-126a-4c09-b2ff-295a5c57e2b4", + "Name": "Steelcase - Worktool - Lighting - Dash Mini LED Light - Freestanding", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.869310630580998, + "Y": 20.850404271111575, + "Z": 0.7504893092470305 + }, + "gltfLocation": "https://hypar.io/user-static/4fb95696-08fb-4c83-b518-100e6067612f.glb" + }, + "2ab6fcb5-5057-4976-9b7c-aa935c3ccec9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "42ebdbcf-6936-4f2b-bd8b-342c0167f962", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 25.28548915651944, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.073320216674063, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2ab6fcb5-5057-4976-9b7c-aa935c3ccec9", + "Name": "Steelcase - Elective Elements - Worksurface Support - Column Rectangular Leg - Without Base", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.28548915651944, + "Y": 21.073320216674063, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/f569e165-5cbd-4de8-b3ee-c5848fc88ff4.glb" + }, + "d77dd75a-ef91-41e0-aad3-c7e548c60755": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 25.690697403820895, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.309598171828736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d77dd75a-ef91-41e0-aad3-c7e548c60755", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 25.690697403820895, + "Y": 21.309598171828736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "f8757748-8ce6-4b96-9d43-32af06e105d0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "5086ec57-60fb-4d58-9748-4ecfedc41a01", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.063756417334041E-15, + 0.0, + 26.531205175068262, + -4.063756417334041E-15, + 1.0, + 0.0, + 21.309598171828736, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f8757748-8ce6-4b96-9d43-32af06e105d0", + "Name": "Steelcase - Seating - QiVi 428 Series - Sled-Base Multi-Use Chairs - Upholstered Seat", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "OriginalLocation": { + "X": 26.531205175068262, + "Y": 21.309598171828736, + "Z": 0.0 + }, + "gltfLocation": "https://hypar.io/user-static/6cba217b-69cf-42b2-a5a4-a76c90b5f533.glb" + }, + "7713b9dc-e8e1-4a26-8ac1-21fba6b6c4b6": { + "discriminator": "Elements.Components.ComponentInstance", + "Instances": [ + "692541f0-39df-455d-956f-63a98dd22df0", + "e9da6670-f1f9-463c-ba5f-36182f0819e7", + "7e7f803d-3e68-4315-b079-d89a9a8fbc06", + "bc1ecc24-458c-482c-af62-04cf814da6d3", + "0f3b8aea-6ff9-42f7-8dec-170b027209af", + "5f2ad961-4c63-49ff-8f3f-69bdf024de9b", + "9f4506b0-3086-4caa-a8c9-613420bf1faf", + "7a7d0419-7756-43f1-8156-8cfee4047669", + "0a18a346-1029-4fe1-9607-398b4ab8d474", + "cf28c6b1-79ef-4b43-a01a-c5ad87c2e84c", + "8ac7c220-57a7-4826-ad6a-4e7ef6d02905", + "89f0ccbe-7d52-4b41-bf49-904bf2f8a790", + "7be9f6fe-126a-4c09-b2ff-295a5c57e2b4", + "2ab6fcb5-5057-4976-9b7c-aa935c3ccec9", + "d77dd75a-ef91-41e0-aad3-c7e548c60755", + "f8757748-8ce6-4b96-9d43-32af06e105d0" + ], + "Id": "7713b9dc-e8e1-4a26-8ac1-21fba6b6c4b6", + "Name": null + }, + "ee360543-1c3a-4cfa-a522-915cb2fa99b2": { + "discriminator": "Elements.SpaceMetric", + "Space": "9450080a-57df-4339-9b4f-8b43f3b107a9", + "Seats": 3.0, + "Headcount": 1.0, + "Desks": 0.0, + "Collaboration Seats": 0.0, + "Id": "ee360543-1c3a-4cfa-a522-915cb2fa99b2", + "Name": null + }, + "1c3e47f2-edc1-4568-ad55-910fa711a96e": { + "discriminator": "Elements.InteriorPartitionCandidate", + "WallCandidateLines": [ + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 5.637543863518321, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272549999999995, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272549999999548, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272549999999995, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272549999999995, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 5.637539999999998, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.597612349396826, + "Direction": { + "X": 1.0, + "Y": 3.7525755051695216E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272549999999548, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272549999999775, + "Direction": { + "X": -2.577714106161925E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084692, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272549999999775, + "Direction": { + "X": -3.741843057331827E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481838, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999978, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272549999999775, + "Direction": { + "X": -3.741843057331827E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.5976, + "Direction": { + "X": 1.0, + "Y": 3.752588386547116E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.543433787084851, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272549999999775, + "Direction": { + "X": 2.577714106161925E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": -2.7440182420422305E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.5434400000000004, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.8526252422724774, + "Direction": { + "X": 1.0, + "Y": -1.2910155640746665E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": 2.7440182420422305E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272550000001452, + "Direction": { + "X": -1.330433087050794E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": 1.2888570530804417E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000065, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001502, + "Direction": { + "X": 1.2472810191101048E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.85262, + "Direction": { + "X": 1.0, + "Y": -1.2910173207637145E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 5.978344757727523, + "Direction": { + "X": 1.0, + "Y": -1.426233041863294E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.272550000001452, + "Direction": { + "X": 1.330433087050794E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017169999999938, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 56.252970000001454, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001452, + "Direction": { + "X": 1.455161188961806E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727586, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.272550000001452, + "Direction": { + "X": 1.455161188961806E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 5.97836, + "Direction": { + "X": 1.0, + "Y": -1.426229405576312E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.7318516161653434, + "Direction": { + "X": 1.0, + "Y": -1.9039951446146106E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.5726623293136015, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.572662329314902, + "Direction": { + "X": -1.7092821491002438E-14, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631691, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.572662329314902, + "Direction": { + "X": 2.0200607216639244E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.46432478248236, + "Y": 56.2529700000013, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.572662329314902, + "Direction": { + "X": 2.0200607216639244E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.7318399999999983, + "Direction": { + "X": 1.0, + "Y": -1.9040010712144692E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 4.5726623293134665, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.725493166316923, + "Direction": { + "X": 1.0, + "Y": -1.7165202931141E-14, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.572662329314902, + "Direction": { + "X": 1.7092821491002438E-14, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.7254931663170012, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.7254931663170012, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.572659999999999, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 5.772288471047062, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.5726623293136015, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.5726623293136015, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.5726623293136015, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.5726623293136015, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 5.772300000000001, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 4.590287376872855, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6963748441328192, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.590287376872855, + "Direction": { + "X": 1.393133827319856E-13, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.6963748441334587, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.6963748441334587, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.6963748441334587, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.59028, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 4.0974499999999985, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 3.779018175888524, + "Direction": { + "X": -1.0, + "Y": 1.673405645046423E-13, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.779018175888524, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 3.779018175888524, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.097439999999999, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 4.038541548486137, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 4.038540000000001, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Glass-Edge", + "Thickness": null, + "Length": 3.8259867301447557, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Thickness": null, + "Length": 4.097449999999366, + "Direction": { + "X": 0.0, + "Y": -1.0, + "Z": 0.0 + } + }, + { + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Thickness": null, + "Length": 3.8259799999999977, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + ], + "Height": 4.0, + "LevelTransform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1c3e47f2-edc1-4568-ad55-910fa711a96e", + "Name": null + }, + "48e3b240-85a8-48c3-9f38-56820e4c0270": { + "discriminator": "Elements.ElementProxy", + "elementId": "579c6410-2916-486d-a8a3-4df1146df0e0", + "dependency": "Space Planning Zones", + "Id": "48e3b240-85a8-48c3-9f38-56820e4c0270", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "8124bec6-6def-44cf-890a-568de6f7b686", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "d7794072-5236-48a0-b8e3-3c93d581ab61": { + "discriminator": "Elements.ElementProxy", + "elementId": "3cb023ef-2fa6-42ca-a6d1-a182735248d0", + "dependency": "Space Planning Zones", + "Id": "d7794072-5236-48a0-b8e3-3c93d581ab61", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "abc480f5-37de-4b75-ad49-bbb73c9c8025", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "c40c0dfc-3824-4ce1-a393-056d95fe4c0c": { + "discriminator": "Elements.ElementProxy", + "elementId": "6b6f4dfd-8e82-4266-88f3-38549f6db7db", + "dependency": "Space Planning Zones", + "Id": "c40c0dfc-3824-4ce1-a393-056d95fe4c0c", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "add415c7-066e-4702-bf26-81aebb1d8e51", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "ddf95af3-37a4-4ed3-804a-8f051fcd543a": { + "discriminator": "Elements.ElementProxy", + "elementId": "db000d67-8e60-4ae8-aae2-1b4e1deb12d1", + "dependency": "Space Planning Zones", + "Id": "ddf95af3-37a4-4ed3-804a-8f051fcd543a", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "450976eb-ed99-49bc-9df7-b570661917b3", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "f24de8c2-71fd-4fe4-bbc7-e6a92300bc64": { + "discriminator": "Elements.ElementProxy", + "elementId": "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1", + "dependency": "Space Planning Zones", + "Id": "f24de8c2-71fd-4fe4-bbc7-e6a92300bc64", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "aeda78f3-1815-4f54-b03a-45829f86d4d4", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "9d5467c8-bbc0-4dc9-a9d1-a6c8e7b52e5d": { + "discriminator": "Elements.ElementProxy", + "elementId": "0f4222db-b924-45ae-8646-10b838961ccd", + "dependency": "Space Planning Zones", + "Id": "9d5467c8-bbc0-4dc9-a9d1-a6c8e7b52e5d", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "664657d3-4591-4003-b381-c0b37cb69183", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "f9638fdf-eac3-4d5f-9821-bf2411329151": { + "discriminator": "Elements.ElementProxy", + "elementId": "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d", + "dependency": "Space Planning Zones", + "Id": "f9638fdf-eac3-4d5f-9821-bf2411329151", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "ce14a8ab-83b8-4568-bbfe-28575169c24f", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "fb2af16a-2e74-4afb-a89f-f7036b06ad56": { + "discriminator": "Elements.ElementProxy", + "elementId": "9b95c2ac-4dd8-4d33-85fc-352f4909006a", + "dependency": "Space Planning Zones", + "Id": "fb2af16a-2e74-4afb-a89f-f7036b06ad56", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "92d18929-50ba-4c6b-ade9-685c18cfd954", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "de91049c-44e7-474b-af5b-f15120364e1a": { + "discriminator": "Elements.ElementProxy", + "elementId": "a185270c-97b5-4a6a-85d3-0cfcc59ab567", + "dependency": "Space Planning Zones", + "Id": "de91049c-44e7-474b-af5b-f15120364e1a", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "effe2b4b-608d-41e0-a86f-1be11ee10e55", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "7d5b9e41-8a35-4fb6-aa8e-fdf24e35b821": { + "discriminator": "Elements.ElementProxy", + "elementId": "2cff036f-46a8-4d52-af21-abf5b37e827d", + "dependency": "Space Planning Zones", + "Id": "7d5b9e41-8a35-4fb6-aa8e-fdf24e35b821", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "936035a9-a884-4945-be3e-d13641caf111", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "ecfb26d9-5337-4bd6-8a44-33da781d82a8": { + "discriminator": "Elements.ElementProxy", + "elementId": "bd5077f0-0a0a-44fe-a3f9-c74aea352d62", + "dependency": "Space Planning Zones", + "Id": "ecfb26d9-5337-4bd6-8a44-33da781d82a8", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "0b3d09b5-88e0-4311-8614-55ea6007d53e", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "de6b5902-39c3-4503-9fa7-83567401ba33": { + "discriminator": "Elements.ElementProxy", + "elementId": "9450080a-57df-4339-9b4f-8b43f3b107a9", + "dependency": "Space Planning Zones", + "Id": "de6b5902-39c3-4503-9fa7-83567401ba33", + "Name": null, + "associatedIdentities": { + "Space Settings": [ + { + "id": "a93a32d7-26af-42ef-a549-323acdc1c2a4", + "identity": null + } + ] + }, + "associatedValues": { + "Space Settings": { + "Office Sizing": { + "Automate Office Subdivisions": true, + "Office Size": 5.0 + }, + "Create Walls": true + } + } + }, + "f245acae-b8f7-4626-ba9a-c0dbd5aa0a6a": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "f245acae-b8f7-4626-ba9a-c0dbd5aa0a6a", + "Name": null + }, + "a908c464-5b78-41c9-84c8-a29e90268d27": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "a908c464-5b78-41c9-84c8-a29e90268d27", + "Name": null + }, + "0fcf0701-a290-4e73-8052-2e569da77ce8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "0fcf0701-a290-4e73-8052-2e569da77ce8", + "Name": null + }, + "5a143594-6d90-4984-aedb-eeb2750b146c": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "5a143594-6d90-4984-aedb-eeb2750b146c", + "Name": null + }, + "520762fb-cb47-4936-b671-3c2cd9568a8c": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "520762fb-cb47-4936-b671-3c2cd9568a8c", + "Name": null + }, + "05c10759-7ef8-4c8b-bf9a-637c8b3dcd5a": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "05c10759-7ef8-4c8b-bf9a-637c8b3dcd5a", + "Name": null + }, + "8cab5069-b90b-44d9-96cd-e438ae07e9e7": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "8cab5069-b90b-44d9-96cd-e438ae07e9e7", + "Name": null + }, + "490acb86-725b-47d1-b0a0-7ef1b5541f76": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084692, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "490acb86-725b-47d1-b0a0-7ef1b5541f76", + "Name": null + }, + "50f50579-bc1a-4443-81c8-3a2c7c42159d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481838, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999978, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "50f50579-bc1a-4443-81c8-3a2c7c42159d", + "Name": null + }, + "9908c767-4845-427a-bd22-708ec2a83431": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "9908c767-4845-427a-bd22-708ec2a83431", + "Name": null + }, + "696cc357-e3f9-431f-aa78-1663db2641a5": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "696cc357-e3f9-431f-aa78-1663db2641a5", + "Name": null + }, + "7379fce7-7b4b-4c39-9cee-9c8e28a6383e": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "7379fce7-7b4b-4c39-9cee-9c8e28a6383e", + "Name": null + }, + "0ecc34df-98a7-479c-82b5-f4a641f762df": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "0ecc34df-98a7-479c-82b5-f4a641f762df", + "Name": null + }, + "5a399720-5170-4f9b-a827-8f7eb0b9490f": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "5a399720-5170-4f9b-a827-8f7eb0b9490f", + "Name": null + }, + "1093dc17-8ff7-4fd7-ba28-d317d9526951": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "1093dc17-8ff7-4fd7-ba28-d317d9526951", + "Name": null + }, + "c0c89932-4155-4f0f-a29d-ee8b34174425": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "c0c89932-4155-4f0f-a29d-ee8b34174425", + "Name": null + }, + "e60e7443-f5b2-4e3f-9cf2-87f9ea185fc4": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "e60e7443-f5b2-4e3f-9cf2-87f9ea185fc4", + "Name": null + }, + "17798db1-99f8-4587-9d1d-38f3d5a4cd64": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "17798db1-99f8-4587-9d1d-38f3d5a4cd64", + "Name": null + }, + "06dbc04d-d69c-4195-ab3f-d6b147670b00": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000065, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "06dbc04d-d69c-4195-ab3f-d6b147670b00", + "Name": null + }, + "8fb2f374-f298-4808-a2c1-8610b24e9ab7": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "8fb2f374-f298-4808-a2c1-8610b24e9ab7", + "Name": null + }, + "234e0bc6-2b05-43d5-bdf7-5cff8c338daf": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "234e0bc6-2b05-43d5-bdf7-5cff8c338daf", + "Name": null + }, + "bdea23ac-24d0-4e7e-a484-d6eba0f4d350": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017169999999938, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 56.252970000001454, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "bdea23ac-24d0-4e7e-a484-d6eba0f4d350", + "Name": null + }, + "db3bfac1-b351-4426-8708-9a38bdc34fcf": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727586, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "db3bfac1-b351-4426-8708-9a38bdc34fcf", + "Name": null + }, + "8c36b6eb-7e03-4f08-a745-8f9c04ed4351": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "8c36b6eb-7e03-4f08-a745-8f9c04ed4351", + "Name": null + }, + "61deaae8-78d8-44d4-81a2-c68c1729e40e": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "61deaae8-78d8-44d4-81a2-c68c1729e40e", + "Name": null + }, + "725ad3fc-7c19-4bc2-804d-b975a4605b97": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "725ad3fc-7c19-4bc2-804d-b975a4605b97", + "Name": null + }, + "e3c3b5a2-4c68-4bf2-90e2-2792bd8c06ce": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631691, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "e3c3b5a2-4c68-4bf2-90e2-2792bd8c06ce", + "Name": null + }, + "61b872bb-25e9-41f4-8883-f3381a2596c3": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.46432478248236, + "Y": 56.2529700000013, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "61b872bb-25e9-41f4-8883-f3381a2596c3", + "Name": null + }, + "a0f9dc98-171a-4c16-a6db-5ff9a0e51fa5": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "a0f9dc98-171a-4c16-a6db-5ff9a0e51fa5", + "Name": null + }, + "9a2dd716-c42a-4616-8c52-ffb8496d8347": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "9a2dd716-c42a-4616-8c52-ffb8496d8347", + "Name": null + }, + "c0da1cad-fd1c-45f3-a618-778db13048dd": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "c0da1cad-fd1c-45f3-a618-778db13048dd", + "Name": null + }, + "c74fe6c4-31df-4850-9ec5-f432ffb1924b": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "c74fe6c4-31df-4850-9ec5-f432ffb1924b", + "Name": null + }, + "2df45aff-d4f8-4d19-b2b9-0a2d10bf6c96": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "2df45aff-d4f8-4d19-b2b9-0a2d10bf6c96", + "Name": null + }, + "0ed3344c-8913-489c-b73f-010d489234cb": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "0ed3344c-8913-489c-b73f-010d489234cb", + "Name": null + }, + "70cad932-941b-48be-9d2a-6819d4df065b": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "70cad932-941b-48be-9d2a-6819d4df065b", + "Name": null + }, + "70783860-d0ee-451b-89cb-d974d7309b23": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "70783860-d0ee-451b-89cb-d974d7309b23", + "Name": null + }, + "c05a8e3f-2db7-4e3e-9f97-ae0325c4687c": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "c05a8e3f-2db7-4e3e-9f97-ae0325c4687c", + "Name": null + }, + "7465acd2-f6e3-4878-a696-4bae83148ee4": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "7465acd2-f6e3-4878-a696-4bae83148ee4", + "Name": null + }, + "f778a483-17a1-40a6-bb78-ff80ba0bae57": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "f778a483-17a1-40a6-bb78-ff80ba0bae57", + "Name": null + }, + "52a1d82e-8b44-48be-8779-9874646df2c0": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "52a1d82e-8b44-48be-8779-9874646df2c0", + "Name": null + }, + "529f215f-6e4a-4b28-a278-6e353c9e30fe": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "529f215f-6e4a-4b28-a278-6e353c9e30fe", + "Name": null + }, + "d4aa5f92-6740-49e9-9771-7735089f5784": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "d4aa5f92-6740-49e9-9771-7735089f5784", + "Name": null + }, + "f30b211f-6dde-4300-af62-5e5d41004fce": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "f30b211f-6dde-4300-af62-5e5d41004fce", + "Name": null + }, + "4cc36c79-914e-4d1e-8d7a-5d15b1de990d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "4cc36c79-914e-4d1e-8d7a-5d15b1de990d", + "Name": null + }, + "53c79daa-f6d8-42b9-818f-a81ee724dc73": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "53c79daa-f6d8-42b9-818f-a81ee724dc73", + "Name": null + }, + "2f2c4a2f-d763-4e26-ad71-9f1e16b2d405": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "2f2c4a2f-d763-4e26-ad71-9f1e16b2d405", + "Name": null + }, + "de9ca964-56e0-4a68-a4a9-efa79fff51f2": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "de9ca964-56e0-4a68-a4a9-efa79fff51f2", + "Name": null + }, + "a607cefa-0864-4b12-89f3-0c535fa8b76e": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "a607cefa-0864-4b12-89f3-0c535fa8b76e", + "Name": null + }, + "811c8527-b3c9-4cc2-a114-d983723af601": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "811c8527-b3c9-4cc2-a114-d983723af601", + "Name": null + }, + "7623db8e-a5da-4f9a-bfdb-aebac55e55a0": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "7623db8e-a5da-4f9a-bfdb-aebac55e55a0", + "Name": null + }, + "e354794b-8e9e-40b1-924a-8d3319a7d5a9": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "e354794b-8e9e-40b1-924a-8d3319a7d5a9", + "Name": null + }, + "77bc677c-3f98-4a84-98e3-cf5f0b027fd5": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "77bc677c-3f98-4a84-98e3-cf5f0b027fd5", + "Name": null + }, + "0b8887a5-d563-4c88-be99-c408410bd8a8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "0b8887a5-d563-4c88-be99-c408410bd8a8", + "Name": null + }, + "a5626e18-0fd1-478a-81c1-cd41ccbb7053": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "a5626e18-0fd1-478a-81c1-cd41ccbb7053", + "Name": null + }, + "25e434eb-7a71-464a-945c-79af16cf39d5": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "25e434eb-7a71-464a-945c-79af16cf39d5", + "Name": null + }, + "8548c5e5-e211-45e8-aeb6-af64ac1bc4bd": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "8548c5e5-e211-45e8-aeb6-af64ac1bc4bd", + "Name": null + }, + "141e1ded-ba59-4a4f-a1f5-d4ecf840ec71": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "141e1ded-ba59-4a4f-a1f5-d4ecf840ec71", + "Name": null + }, + "863106dd-7d2c-49bc-aff8-58bc95a4e7fc": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "863106dd-7d2c-49bc-aff8-58bc95a4e7fc", + "Name": null + }, + "1f2d9b75-1108-4149-aa81-001b57519a9b": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "1f2d9b75-1108-4149-aa81-001b57519a9b", + "Name": null + }, + "1f207606-0729-4c03-baa0-95aba8645cd5": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "1f207606-0729-4c03-baa0-95aba8645cd5", + "Name": null + }, + "1e8af557-d259-4ee3-906d-00de10e88c38": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "1e8af557-d259-4ee3-906d-00de10e88c38", + "Name": null + }, + "14034819-1565-468d-995c-d2037c3e4ceb": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "14034819-1565-468d-995c-d2037c3e4ceb", + "Name": null + }, + "13c5076a-771d-406e-b2cd-bd1950e48c58": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "13c5076a-771d-406e-b2cd-bd1950e48c58", + "Name": null + }, + "c483cae6-5443-410d-b877-8f61329b7755": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413357, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872663, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "c483cae6-5443-410d-b877-8f61329b7755", + "Name": null + }, + "fed25918-d7ad-4ad6-bc0f-0570bf97467d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999989, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "fed25918-d7ad-4ad6-bc0f-0570bf97467d", + "Name": null + }, + "8a908e26-5c90-47e8-b86e-f0078cc8ddde": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "8a908e26-5c90-47e8-b86e-f0078cc8ddde", + "Name": null + }, + "4d4f9fcd-cc57-4d0a-a1d5-1296a5356bd4": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "4d4f9fcd-cc57-4d0a-a1d5-1296a5356bd4", + "Name": null + }, + "67512965-f35b-4c5d-b7db-2d78a78cbf57": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "67512965-f35b-4c5d-b7db-2d78a78cbf57", + "Name": null + }, + "b7035831-fd1a-4f0f-8273-e70a407274b3": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "b7035831-fd1a-4f0f-8273-e70a407274b3", + "Name": null + }, + "7fc7c7ed-75d5-4081-a183-0312a0d9d56d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037000000101, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.826239275209314, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "7fc7c7ed-75d5-4081-a183-0312a0d9d56d", + "Name": null + }, + "dad68044-c2a3-4d9b-a13c-c900fabdce1d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913516, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Partition", + "Space Adjacencies": [], + "Id": "dad68044-c2a3-4d9b-a13c-c900fabdce1d", + "Name": null + }, + "56e5dc07-0cde-4dd0-96e9-e05999f09737": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "56e5dc07-0cde-4dd0-96e9-e05999f09737", + "Name": null + }, + "b9222afa-4cb6-4815-983e-2b8d184737d8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "b9222afa-4cb6-4815-983e-2b8d184737d8", + "Name": null + }, + "05113dc3-b36f-43bf-a82c-6d0024ed2223": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "05113dc3-b36f-43bf-a82c-6d0024ed2223", + "Name": null + }, + "b2cbcb7c-6adb-43cb-be0c-a3aa85f2685d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "b2cbcb7c-6adb-43cb-be0c-a3aa85f2685d", + "Name": null + }, + "b2030b84-0ac8-41d1-94d8-80c8c792defe": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "b2030b84-0ac8-41d1-94d8-80c8c792defe", + "Name": null + }, + "6391c1f8-8c0a-4579-83b4-630eb6537aa6": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "6391c1f8-8c0a-4579-83b4-630eb6537aa6", + "Name": null + }, + "7c448a87-3271-4716-b24a-1bf925df39fc": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "7c448a87-3271-4716-b24a-1bf925df39fc", + "Name": null + }, + "56a859e3-018f-4375-a5b7-2429e6b69b04": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "56a859e3-018f-4375-a5b7-2429e6b69b04", + "Name": null + }, + "16f34047-af21-4c59-91a8-3f8d4badce1f": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "16f34047-af21-4c59-91a8-3f8d4badce1f", + "Name": null + }, + "385791fa-6428-4986-bc7e-7f6fb710e898": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "385791fa-6428-4986-bc7e-7f6fb710e898", + "Name": null + }, + "8436286e-3d3c-48e7-a50f-3b59b47bcc18": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "8436286e-3d3c-48e7-a50f-3b59b47bcc18", + "Name": null + }, + "754deb09-6be0-4d43-915f-87a6ff6a8c5d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "754deb09-6be0-4d43-915f-87a6ff6a8c5d", + "Name": null + }, + "d384a546-9e89-4b5b-8a33-3dc22013e51e": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "d384a546-9e89-4b5b-8a33-3dc22013e51e", + "Name": null + }, + "09983a41-57f5-4be8-b361-95842506cf0d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "09983a41-57f5-4be8-b361-95842506cf0d", + "Name": null + }, + "758ad920-14fa-4da9-95c8-d58a6e281c58": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "758ad920-14fa-4da9-95c8-d58a6e281c58", + "Name": null + }, + "8b2e70ef-45f8-4586-99a9-c45e27a55639": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "8b2e70ef-45f8-4586-99a9-c45e27a55639", + "Name": null + }, + "d9b3745e-164d-4cf0-88d0-15cff408f4e6": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "d9b3745e-164d-4cf0-88d0-15cff408f4e6", + "Name": null + }, + "77b9b02e-6ed9-44e0-9a2c-79285ac3c1a8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "77b9b02e-6ed9-44e0-9a2c-79285ac3c1a8", + "Name": null + }, + "73a5082a-179f-447e-a1ff-1c6952ee4645": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "73a5082a-179f-447e-a1ff-1c6952ee4645", + "Name": null + }, + "c88638f3-b905-4856-8b96-abc3c7c96489": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "c88638f3-b905-4856-8b96-abc3c7c96489", + "Name": null + }, + "24a2073f-ff42-4084-8a41-7129573b6be9": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "24a2073f-ff42-4084-8a41-7129573b6be9", + "Name": null + }, + "0eeeaadb-4a44-49a3-a640-701cf450a1f6": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "0eeeaadb-4a44-49a3-a640-701cf450a1f6", + "Name": null + }, + "19638855-2c2b-41d1-9039-e0c24bababa9": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "19638855-2c2b-41d1-9039-e0c24bababa9", + "Name": null + }, + "250225f9-7d79-4d57-b113-b7c643aed979": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "250225f9-7d79-4d57-b113-b7c643aed979", + "Name": null + }, + "f07e0297-5ceb-46fd-aae0-7ec7364fe8fd": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "f07e0297-5ceb-46fd-aae0-7ec7364fe8fd", + "Name": null + }, + "12fa171b-ab6d-4cda-a28f-9448af6aa25d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "12fa171b-ab6d-4cda-a28f-9448af6aa25d", + "Name": null + }, + "5cc6ebbb-5159-414c-bfdb-f51c0b61b9f9": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "5cc6ebbb-5159-414c-bfdb-f51c0b61b9f9", + "Name": null + }, + "b991558f-fc19-4106-ac03-c2df73414629": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "b991558f-fc19-4106-ac03-c2df73414629", + "Name": null + }, + "d4b0abce-7fd3-429b-abf0-0e66e8c7217f": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "d4b0abce-7fd3-429b-abf0-0e66e8c7217f", + "Name": null + }, + "ace128d1-6255-4178-9d45-6198238f2f5b": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "ace128d1-6255-4178-9d45-6198238f2f5b", + "Name": null + }, + "ddaed581-38eb-4aa8-9efe-3483f5197951": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "ddaed581-38eb-4aa8-9efe-3483f5197951", + "Name": null + }, + "71ef4784-7b41-4328-8f13-d666911bcc09": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "71ef4784-7b41-4328-8f13-d666911bcc09", + "Name": null + }, + "c5d17e00-53c4-4b60-8cbf-a0ecc8e78bc0": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "c5d17e00-53c4-4b60-8cbf-a0ecc8e78bc0", + "Name": null + }, + "cbb4a4e3-c7a4-486b-891c-e2bffbf5c413": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "cbb4a4e3-c7a4-486b-891c-e2bffbf5c413", + "Name": null + }, + "d9a3900a-2db7-4961-9012-852a81a0aa11": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "d9a3900a-2db7-4961-9012-852a81a0aa11", + "Name": null + }, + "55fcd870-c80f-464a-a18b-e8617496c4ee": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "55fcd870-c80f-464a-a18b-e8617496c4ee", + "Name": null + }, + "4cb74822-7ba5-4c60-950f-326ec9e01cc7": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "4cb74822-7ba5-4c60-950f-326ec9e01cc7", + "Name": null + }, + "e7465700-a5a6-4727-b116-3fe728c6f4eb": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "e7465700-a5a6-4727-b116-3fe728c6f4eb", + "Name": null + }, + "5e91105f-70e5-41c3-a0ae-270e2a1bcea8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "5e91105f-70e5-41c3-a0ae-270e2a1bcea8", + "Name": null + }, + "347167d3-849c-4dd0-bf73-8d8f41af58e0": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "347167d3-849c-4dd0-bf73-8d8f41af58e0", + "Name": null + }, + "ac84f516-829f-4b16-9545-1d0bfef11e8d": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "ac84f516-829f-4b16-9545-1d0bfef11e8d", + "Name": null + }, + "b837df3a-fedb-4a93-919b-e922e27d1ec3": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "b837df3a-fedb-4a93-919b-e922e27d1ec3", + "Name": null + }, + "680b7fa7-78ed-437e-84bf-29b721730757": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "680b7fa7-78ed-437e-84bf-29b721730757", + "Name": null + }, + "5ca2db35-2c28-4191-80b4-2796cd4c967e": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "5ca2db35-2c28-4191-80b4-2796cd4c967e", + "Name": null + }, + "41d253f3-78a6-44cc-b9b5-2f2391f6e6ab": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "41d253f3-78a6-44cc-b9b5-2f2391f6e6ab", + "Name": null + }, + "70d78321-87aa-4127-a676-79c021ad62d2": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "70d78321-87aa-4127-a676-79c021ad62d2", + "Name": null + }, + "d81abc6d-fffe-4a0b-adf2-2d3cacd0166f": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "d81abc6d-fffe-4a0b-adf2-2d3cacd0166f", + "Name": null + }, + "c3553659-0add-41b5-98ab-1973ec136261": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "c3553659-0add-41b5-98ab-1973ec136261", + "Name": null + }, + "a0b6f974-b3b6-4636-ae32-449adf15a061": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "a0b6f974-b3b6-4636-ae32-449adf15a061", + "Name": null + }, + "13a90852-684d-4b6b-b683-9c43e77a04b1": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Glass", + "Space Adjacencies": [], + "Id": "13a90852-684d-4b6b-b683-9c43e77a04b1", + "Name": null + }, + "8efdd4c5-d7c6-4153-9f91-9d5977521167": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "8efdd4c5-d7c6-4153-9f91-9d5977521167", + "Name": null + }, + "3a6afc33-86ae-4e1e-8704-8314e97540b8": { + "discriminator": "Elements.WallCandidate", + "Thickness": null, + "Line": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Type": "Solid", + "Space Adjacencies": [], + "Id": "3a6afc33-86ae-4e1e-8704-8314e97540b8", + "Name": null + }, + "d08ffb2c-4b58-4020-994e-922c175525c0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9, + "Green": 0.9, + "Blue": 0.9, + "Alpha": 1.0 + }, + "SpecularFactor": 0.01, + "GlossinessFactor": 0.01, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Name": "Drywall" + }, + "ce990d9f-f92c-4635-83b3-b6c825ffe8e1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.72673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.72673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.526729999999997, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.526729999999997, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ce990d9f-f92c-4635-83b3-b6c825ffe8e1", + "Name": null + }, + "244f2dbb-f7f3-4826-baf2-4117a1307234": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.72673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.72673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.526729999999997, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.526729999999997, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "244f2dbb-f7f3-4826-baf2-4117a1307234", + "Name": null + }, + "f3848c87-98ba-45f3-b36b-b3df2c0bed2f": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "244f2dbb-f7f3-4826-baf2-4117a1307234", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f3848c87-98ba-45f3-b36b-b3df2c0bed2f", + "Name": null, + "Wall Candidate": "a03719ec-d2e2-448e-ba69-945630910edd" + }, + "48751dd0-effd-4ab4-8a5e-8906d97c1fb2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.889186136481676, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 56.25296999999955, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "48751dd0-effd-4ab4-8a5e-8906d97c1fb2", + "Name": null + }, + "99f08973-516a-4cde-815b-dda324117d30": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.889186136481676, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 56.25296999999955, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "99f08973-516a-4cde-815b-dda324117d30", + "Name": null + }, + "a29fa9fb-6f1c-4be7-88ea-abdb702242ee": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "99f08973-516a-4cde-815b-dda324117d30", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a29fa9fb-6f1c-4be7-88ea-abdb702242ee", + "Name": null, + "Wall Candidate": "0904b5fe-b532-48ba-95f1-300311f3ebde" + }, + "8d9c8cf8-716c-4ce9-9bcf-5ccab0134ea3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.03918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.03918613648168, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8d9c8cf8-716c-4ce9-9bcf-5ccab0134ea3", + "Name": null + }, + "b258719d-6b7e-4ae7-a251-3b1084d4cf13": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.03918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.03918613648168, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b258719d-6b7e-4ae7-a251-3b1084d4cf13", + "Name": null + }, + "f7e3138e-2900-4a47-930b-8a7983c77445": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b258719d-6b7e-4ae7-a251-3b1084d4cf13", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f7e3138e-2900-4a47-930b-8a7983c77445", + "Name": null, + "Wall Candidate": "68a5ff8f-2a1a-4bce-93d2-4201563b13de" + }, + "d198b0d8-0486-4410-b6c3-7f490a653063": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.67673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.67673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d198b0d8-0486-4410-b6c3-7f490a653063", + "Name": null + }, + "85fbbe71-22e9-4369-b8f1-cb7ef1402b8b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.67673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.67673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "85fbbe71-22e9-4369-b8f1-cb7ef1402b8b", + "Name": null + }, + "677a40fa-9ce6-47a2-b739-c25161e00d89": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "85fbbe71-22e9-4369-b8f1-cb7ef1402b8b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "677a40fa-9ce6-47a2-b739-c25161e00d89", + "Name": null, + "Wall Candidate": "6d316499-5b22-43e8-b47d-895934a3132f" + }, + "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7, + "Green": 0.7, + "Blue": 0.7, + "Alpha": 0.3 + }, + "SpecularFactor": 0.3, + "GlossinessFactor": 0.6, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Name": "Glass" + }, + "948fcefb-b852-4503-8644-884bf171dfc9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.98918, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 52.00542, + "Z": 0.0 + }, + { + "X": 24.98918, + "Y": 52.00542, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "948fcefb-b852-4503-8644-884bf171dfc9", + "Name": null + }, + "428e8312-d9d7-4e30-b718-21ab39768786": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.98918, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 52.00542, + "Z": 0.0 + }, + { + "X": 24.98918, + "Y": 52.00542, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "428e8312-d9d7-4e30-b718-21ab39768786", + "Name": null + }, + "629fe295-fd7e-4b0d-88cb-fa6140471c42": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "428e8312-d9d7-4e30-b718-21ab39768786", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "629fe295-fd7e-4b0d-88cb-fa6140471c42", + "Name": null, + "Wall Candidate": "0bb15c32-57ed-4caa-ba60-5d07c7964457" + }, + "aed6a812-aaaa-491d-beec-467d8f006b2e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "aed6a812-aaaa-491d-beec-467d8f006b2e", + "Name": null + }, + "602f4492-d5fc-477b-a08e-025d9c0e442c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5, + "Green": 0.5, + "Blue": 0.5, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Name": "Storefront Mullions" + }, + "1762e91d-28f8-4f64-a704-2ce27e220cb8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "aed6a812-aaaa-491d-beec-467d8f006b2e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "aed6a812-aaaa-491d-beec-467d8f006b2e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1762e91d-28f8-4f64-a704-2ce27e220cb8", + "Name": null + }, + "6432423d-b7c4-497d-8831-dce41fc8818d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1762e91d-28f8-4f64-a704-2ce27e220cb8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6432423d-b7c4-497d-8831-dce41fc8818d", + "Name": "Base Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "45244cda-58c9-4467-977e-2251cfaec71a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1762e91d-28f8-4f64-a704-2ce27e220cb8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "45244cda-58c9-4467-977e-2251cfaec71a", + "Name": "Base Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "dd2297ec-95b3-46cc-88dc-5663b7cc10e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1762e91d-28f8-4f64-a704-2ce27e220cb8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "dd2297ec-95b3-46cc-88dc-5663b7cc10e2", + "Name": "Base Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "9e850f8d-b7df-4a15-b536-2040b614effd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9e850f8d-b7df-4a15-b536-2040b614effd", + "Name": null + }, + "1d77cd0a-d8d2-4ac4-822b-c250883637cf": { + "discriminator": "Elements.Mullion", + "BaseLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -0.035, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.035, + "Y": 0.0, + "Z": 0.0 + } + }, + "Width": 0.07, + "Height": 2.7, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9e850f8d-b7df-4a15-b536-2040b614effd", + "Height": 2.7, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Name": null + }, + "891d5ec7-503c-4fb2-95e0-dcc6146839f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.98918, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "891d5ec7-503c-4fb2-95e0-dcc6146839f8", + "Name": "Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "6e0e9eba-87e7-4e2e-9982-c9d550b1052a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 25.38918, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6e0e9eba-87e7-4e2e-9982-c9d550b1052a", + "Name": "Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "80532855-de9b-4e7e-9216-8177235b6aca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.28918, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80532855-de9b-4e7e-9216-8177235b6aca", + "Name": "Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "d07bd134-1227-47e1-beac-8d8ab3183e9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 28.45795, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d07bd134-1227-47e1-beac-8d8ab3183e9f", + "Name": "Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "6ca78278-af6b-4c2e-b9ac-e9939577fbea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 30.62672, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6ca78278-af6b-4c2e-b9ac-e9939577fbea", + "Name": "Mullion", + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42" + }, + "98b5a940-0c31-4425-bb8a-4b2e0d7e038a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.98918, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 52.03042, + "Z": 0.0 + }, + { + "X": 24.98918, + "Y": 52.03042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "98b5a940-0c31-4425-bb8a-4b2e0d7e038a", + "Name": null + }, + "cb57a77a-9058-4fe8-9ac7-a4c65960259e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.98918, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 30.62672, + "Y": 52.03042, + "Z": 0.0 + }, + { + "X": 24.98918, + "Y": 52.03042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cb57a77a-9058-4fe8-9ac7-a4c65960259e", + "Name": null + }, + "a8ee2089-e27a-408b-9e60-eb2c081f3055": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.98918, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62672, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cb57a77a-9058-4fe8-9ac7-a4c65960259e", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a8ee2089-e27a-408b-9e60-eb2c081f3055", + "Name": null, + "Wall": "629fe295-fd7e-4b0d-88cb-fa6140471c42", + "Wall Candidate": "0bb15c32-57ed-4caa-ba60-5d07c7964457" + }, + "82626d60-1670-4990-8392-021a49ac7ba0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.08918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "82626d60-1670-4990-8392-021a49ac7ba0", + "Name": null + }, + "a2ac59cb-5512-48be-84d6-675e55a9cdce": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.08918613648168, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.08918613648168, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 24.889186136481676, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a2ac59cb-5512-48be-84d6-675e55a9cdce", + "Name": null + }, + "cbfb719c-ab43-48b8-8fe3-92f7074a1a40": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a2ac59cb-5512-48be-84d6-675e55a9cdce", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cbfb719c-ab43-48b8-8fe3-92f7074a1a40", + "Name": null, + "Wall Candidate": "49f514c4-26fc-406e-9de2-e2276a2b754e" + }, + "88a084fe-85b6-4465-ba21-b6b5b91190dc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.29157378708496, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084853, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084963, + "Y": 56.25296999999964, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "88a084fe-85b6-4465-ba21-b6b5b91190dc", + "Name": null + }, + "9241e485-55a2-4b0b-b5ae-e156e9afd163": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.29157378708496, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084853, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084963, + "Y": 56.25296999999964, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9241e485-55a2-4b0b-b5ae-e156e9afd163", + "Name": null + }, + "c9e0f9f7-8f12-4031-8f0b-372d549e31ad": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9241e485-55a2-4b0b-b5ae-e156e9afd163", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c9e0f9f7-8f12-4031-8f0b-372d549e31ad", + "Name": null, + "Wall Candidate": "2beab37d-6596-4d22-8436-f72193c95162" + }, + "4644e7ba-83dc-43f6-a14f-cbdfe55b450e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.441573787084852, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.441573787084693, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.34157378708469, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.34157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4644e7ba-83dc-43f6-a14f-cbdfe55b450e", + "Name": null + }, + "cfd47771-2467-4db8-abef-b72b846aedb3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.441573787084852, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.441573787084693, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.34157378708469, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.34157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cfd47771-2467-4db8-abef-b72b846aedb3", + "Name": null + }, + "923d9ed2-d94b-4129-8ff0-9d16dab9b859": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084692, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cfd47771-2467-4db8-abef-b72b846aedb3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "923d9ed2-d94b-4129-8ff0-9d16dab9b859", + "Name": null, + "Wall Candidate": "fe719983-fa21-4006-abca-6a41ffc9dde0" + }, + "1cdbc680-d744-4cbe-9641-c278f511fd77": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.039186136481838, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.03918613648168, + "Y": 56.25296999999978, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 56.25296999999978, + "Z": 0.0 + }, + { + "X": 24.939186136481837, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1cdbc680-d744-4cbe-9641-c278f511fd77", + "Name": null + }, + "a320ab39-62d2-4b4b-ae23-581b172c0e95": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.039186136481838, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 25.03918613648168, + "Y": 56.25296999999978, + "Z": 0.0 + }, + { + "X": 24.939186136481677, + "Y": 56.25296999999978, + "Z": 0.0 + }, + { + "X": 24.939186136481837, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a320ab39-62d2-4b4b-ae23-581b172c0e95", + "Name": null + }, + "76bd4c42-2034-4ff0-81ff-73013a66d76f": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481838, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999978, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a320ab39-62d2-4b4b-ae23-581b172c0e95", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "76bd4c42-2034-4ff0-81ff-73013a66d76f", + "Name": null, + "Wall Candidate": "4cf8ae6f-28fd-461f-9e8c-8c55b948f6f9" + }, + "0efe173d-5258-4d2c-932d-261cc70f4368": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157999999805, + "Y": 51.95542000000081, + "Z": 0.0 + }, + { + "X": 24.98917999999805, + "Y": 51.95542000000094, + "Z": 0.0 + }, + { + "X": 24.98917999999805, + "Y": 52.00542000000094, + "Z": 0.0 + }, + { + "X": 21.39157999999805, + "Y": 52.005420000000804, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0efe173d-5258-4d2c-932d-261cc70f4368", + "Name": null + }, + "8e94cf98-d166-4357-8f2f-bb120d8828e8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157999999805, + "Y": 51.95542000000081, + "Z": 0.0 + }, + { + "X": 24.98917999999805, + "Y": 51.95542000000094, + "Z": 0.0 + }, + { + "X": 24.98917999999805, + "Y": 52.00542000000094, + "Z": 0.0 + }, + { + "X": 21.39157999999805, + "Y": 52.005420000000804, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8e94cf98-d166-4357-8f2f-bb120d8828e8", + "Name": null + }, + "17d26d27-b42a-432c-9751-3aa61f76f79d": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8e94cf98-d166-4357-8f2f-bb120d8828e8", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "17d26d27-b42a-432c-9751-3aa61f76f79d", + "Name": null, + "Wall Candidate": "85a2a1b4-0009-4b11-bf7b-bbb64be51c12" + }, + "885b7a11-8c5e-49e8-9705-947619c9d796": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "885b7a11-8c5e-49e8-9705-947619c9d796", + "Name": null + }, + "914db255-5785-4266-8db4-22bcef6adbb5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "885b7a11-8c5e-49e8-9705-947619c9d796", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "885b7a11-8c5e-49e8-9705-947619c9d796", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "914db255-5785-4266-8db4-22bcef6adbb5", + "Name": null + }, + "b9c7aec6-dbf0-4120-8f9b-d9c8b551d845": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "914db255-5785-4266-8db4-22bcef6adbb5", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b9c7aec6-dbf0-4120-8f9b-d9c8b551d845", + "Name": "Base Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "42bf9082-132a-4b98-98db-df5b4f007765": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "914db255-5785-4266-8db4-22bcef6adbb5", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "42bf9082-132a-4b98-98db-df5b4f007765", + "Name": "Base Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "9c4b1de8-dbf1-4b67-9ca4-daa0044075aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "914db255-5785-4266-8db4-22bcef6adbb5", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "9c4b1de8-dbf1-4b67-9ca4-daa0044075aa", + "Name": "Base Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "d12d7cea-5d5b-4ad5-bb65-770ff7eced83": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -3.752588386547116E-14, + 0.0, + 21.39157999999805, + 3.752588386547116E-14, + 1.0, + 0.0, + 51.980420000000805, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d12d7cea-5d5b-4ad5-bb65-770ff7eced83", + "Name": "Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "46f236e2-f26c-4590-aa87-6a3151670c9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -3.752588386547116E-14, + 0.0, + 21.79157999999805, + 3.752588386547116E-14, + 1.0, + 0.0, + 51.98042000000082, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "46f236e2-f26c-4590-aa87-6a3151670c9d", + "Name": "Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "29aa1c61-3cc3-4287-a87f-21c768ecf6b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -3.752588386547116E-14, + 0.0, + 22.69157999999805, + 3.752588386547116E-14, + 1.0, + 0.0, + 51.980420000000855, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "29aa1c61-3cc3-4287-a87f-21c768ecf6b0", + "Name": "Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "f702b131-e7ae-4e73-887a-04237dc9274a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -3.752588386547116E-14, + 0.0, + 24.98917999999805, + 3.752588386547116E-14, + 1.0, + 0.0, + 51.98042000000094, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f702b131-e7ae-4e73-887a-04237dc9274a", + "Name": "Mullion", + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d" + }, + "cfbf05be-1a1f-480c-be1b-34e8eb39f790": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.391579999998054, + "Y": 51.93042000000081, + "Z": 0.0 + }, + { + "X": 24.989179999998054, + "Y": 51.93042000000094, + "Z": 0.0 + }, + { + "X": 24.989179999998047, + "Y": 52.03042000000094, + "Z": 0.0 + }, + { + "X": 21.391579999998047, + "Y": 52.0304200000008, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cfbf05be-1a1f-480c-be1b-34e8eb39f790", + "Name": null + }, + "e7b3ff28-30d5-4f0c-acd0-1c3f62035ab7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.391579999998054, + "Y": 51.93042000000081, + "Z": 0.0 + }, + { + "X": 24.989179999998054, + "Y": 51.93042000000094, + "Z": 0.0 + }, + { + "X": 24.989179999998047, + "Y": 52.03042000000094, + "Z": 0.0 + }, + { + "X": 21.391579999998047, + "Y": 52.0304200000008, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e7b3ff28-30d5-4f0c-acd0-1c3f62035ab7", + "Name": null + }, + "37b95885-d402-4152-9e4f-c4451e9a29e6": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157999999805, + "Y": 51.980420000000805, + "Z": 0.0 + }, + "End": { + "X": 24.98917999999805, + "Y": 51.98042000000094, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e7b3ff28-30d5-4f0c-acd0-1c3f62035ab7", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "37b95885-d402-4152-9e4f-c4451e9a29e6", + "Name": null, + "Wall": "17d26d27-b42a-432c-9751-3aa61f76f79d", + "Wall Candidate": "85a2a1b4-0009-4b11-bf7b-bbb64be51c12" + }, + "07bd7594-d21b-48ce-9937-7f44f636beba": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.491573787084853, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084963, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708496, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "07bd7594-d21b-48ce-9937-7f44f636beba", + "Name": null + }, + "37065a92-0f47-498f-93c8-e726908922bc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.491573787084853, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.491573787084963, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708496, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 21.29157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "37065a92-0f47-498f-93c8-e726908922bc", + "Name": null + }, + "773cf239-02de-44f2-bbd1-3006fcb7b4a2": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "37065a92-0f47-498f-93c8-e726908922bc", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "773cf239-02de-44f2-bbd1-3006fcb7b4a2", + "Name": null, + "Wall Candidate": "ec5e0936-6656-4f73-9b86-8b18d916f1b3" + }, + "fb678077-1eeb-4187-8c49-2282bf824811": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.748140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.74814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.948140000000002, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.94814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fb678077-1eeb-4187-8c49-2282bf824811", + "Name": null + }, + "6865b6b5-76d2-48a5-8b67-dce8f06d37bc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.748140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.74814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.948140000000002, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.94814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6865b6b5-76d2-48a5-8b67-dce8f06d37bc", + "Name": null + }, + "594ca16c-5a79-432e-b427-ffc04bbd6769": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6865b6b5-76d2-48a5-8b67-dce8f06d37bc", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "594ca16c-5a79-432e-b427-ffc04bbd6769", + "Name": null, + "Wall Candidate": "267eecd7-9670-41de-b41d-d5fc63ee1176" + }, + "fa50b7f6-1639-4011-8547-13d8ae2c28a6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.89814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.89814, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.79814, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.79814, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fa50b7f6-1639-4011-8547-13d8ae2c28a6", + "Name": null + }, + "fb0349ea-1484-425b-83bd-1cc505c7c331": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.89814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.89814, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.79814, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.79814, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fb0349ea-1484-425b-83bd-1cc505c7c331", + "Name": null + }, + "c6bce519-fd37-48f5-9910-393602eb5d5e": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fb0349ea-1484-425b-83bd-1cc505c7c331", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6bce519-fd37-48f5-9910-393602eb5d5e", + "Name": null, + "Wall Candidate": "68fce0f2-a0e7-4605-bff5-da910be72105" + }, + "f2d745f0-c948-4848-bc5a-6060a21b2112": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.441573787084963, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.441573787084963, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 21.34157378708496, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 21.34157378708496, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f2d745f0-c948-4848-bc5a-6060a21b2112", + "Name": null + }, + "99015a84-4b6d-488b-8c2f-0b1397b477d3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.441573787084963, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.441573787084963, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 21.34157378708496, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 21.34157378708496, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "99015a84-4b6d-488b-8c2f-0b1397b477d3", + "Name": null + }, + "27ade59a-2ca3-425b-b1e3-f6f9ccfa211d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "99015a84-4b6d-488b-8c2f-0b1397b477d3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "27ade59a-2ca3-425b-b1e3-f6f9ccfa211d", + "Name": null, + "Wall Candidate": "a3e52cf0-6f9d-4310-8776-2053c8c64298" + }, + "da0cd2ea-9042-414c-b788-9cbde23fb0c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 52.00542, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 52.00542, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "da0cd2ea-9042-414c-b788-9cbde23fb0c6", + "Name": null + }, + "14513889-cd46-4dc7-846e-16d8e19ec18c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 51.955420000000004, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 52.00542, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 52.00542, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "14513889-cd46-4dc7-846e-16d8e19ec18c", + "Name": null + }, + "fd5d1b31-e5e3-49d2-9191-1bbda718819a": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "14513889-cd46-4dc7-846e-16d8e19ec18c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fd5d1b31-e5e3-49d2-9191-1bbda718819a", + "Name": null, + "Wall Candidate": "785199f3-6579-4912-987a-5f65fede90d0" + }, + "7534ba4f-6e0b-420c-8eff-4d8077e4695f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7534ba4f-6e0b-420c-8eff-4d8077e4695f", + "Name": null + }, + "b7e967c5-6c0f-4797-843a-69eda546d68f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7534ba4f-6e0b-420c-8eff-4d8077e4695f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7534ba4f-6e0b-420c-8eff-4d8077e4695f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b7e967c5-6c0f-4797-843a-69eda546d68f", + "Name": null + }, + "60c734dc-18fe-42b2-8361-83a0caa4a043": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b7e967c5-6c0f-4797-843a-69eda546d68f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "60c734dc-18fe-42b2-8361-83a0caa4a043", + "Name": "Base Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "46ef74f1-1816-4e1c-b0ca-55fb4d5906c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b7e967c5-6c0f-4797-843a-69eda546d68f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "46ef74f1-1816-4e1c-b0ca-55fb4d5906c3", + "Name": "Base Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "d3565076-8f70-43fc-87b6-ddd5e417b9af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b7e967c5-6c0f-4797-843a-69eda546d68f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "d3565076-8f70-43fc-87b6-ddd5e417b9af", + "Name": "Base Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "71d7bd9d-0a77-4b9b-8768-db154210a20b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.84814, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "71d7bd9d-0a77-4b9b-8768-db154210a20b", + "Name": "Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "5980b38a-0142-4a42-b78d-9acbe3dd57fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 18.24814, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5980b38a-0142-4a42-b78d-9acbe3dd57fa", + "Name": "Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "e32bbb8a-891f-4895-9a83-071fe672a2cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.14814, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e32bbb8a-891f-4895-9a83-071fe672a2cb", + "Name": "Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "a4ff6a9e-4cc5-46c2-b84a-02880f2e49ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 21.39158, + 0.0, + 1.0, + 0.0, + 51.98042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a4ff6a9e-4cc5-46c2-b84a-02880f2e49ef", + "Name": "Mullion", + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a" + }, + "d4972c8d-661f-4c53-a1d1-a99b788962d9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 52.03042, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 52.03042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d4972c8d-661f-4c53-a1d1-a99b788962d9", + "Name": null + }, + "7257891c-f187-4425-acc7-74942dc455eb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 51.930420000000005, + "Z": 0.0 + }, + { + "X": 21.39158, + "Y": 52.03042, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 52.03042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7257891c-f187-4425-acc7-74942dc455eb", + "Name": null + }, + "9b0b6646-027a-4a0b-ae47-8ab3c4501fc6": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 21.39158, + "Y": 51.98042, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7257891c-f187-4425-acc7-74942dc455eb", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9b0b6646-027a-4a0b-ae47-8ab3c4501fc6", + "Name": null, + "Wall": "fd5d1b31-e5e3-49d2-9191-1bbda718819a", + "Wall Candidate": "785199f3-6579-4912-987a-5f65fede90d0" + }, + "42b743e7-fc2c-468c-9eb3-7e3f8742f9a3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.948140000000002, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.94814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.748140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.74814, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "42b743e7-fc2c-468c-9eb3-7e3f8742f9a3", + "Name": null + }, + "17916851-f291-4e25-b739-0c47320af3ef": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.948140000000002, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.94814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.748140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.74814, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "17916851-f291-4e25-b739-0c47320af3ef", + "Name": null + }, + "2055ff0f-8535-4e7d-9792-6c3f08160253": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "17916851-f291-4e25-b739-0c47320af3ef", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2055ff0f-8535-4e7d-9792-6c3f08160253", + "Name": null, + "Wall Candidate": "d7d69c34-dd3b-41b5-b5a9-16b59b87afbc" + }, + "c8a4067c-99d7-4393-aab8-c089f0281971": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.89551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.895514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.095514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.09551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8a4067c-99d7-4393-aab8-c089f0281971", + "Name": null + }, + "c9d38e7c-8281-4d2f-b71d-d0bf8c32ccad": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.89551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.895514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.095514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.09551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c9d38e7c-8281-4d2f-b71d-d0bf8c32ccad", + "Name": null + }, + "15860c7f-50c3-4c82-9d44-a81d5cd09c0d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c9d38e7c-8281-4d2f-b71d-d0bf8c32ccad", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "15860c7f-50c3-4c82-9d44-a81d5cd09c0d", + "Name": null, + "Wall Candidate": "e0dedb58-3a57-4cbf-a70c-da35855b9bb0" + }, + "0a1d9aca-b24c-430c-adce-ce614c048257": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.045514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.04551475772758, + "Y": 56.25297000000142, + "Z": 0.0 + }, + { + "X": 13.945514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + }, + { + "X": 13.945514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0a1d9aca-b24c-430c-adce-ce614c048257", + "Name": null + }, + "e7e314d1-687d-48f3-b928-c60431e89ff0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.045514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.04551475772758, + "Y": 56.25297000000142, + "Z": 0.0 + }, + { + "X": 13.945514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + }, + { + "X": 13.945514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e7e314d1-687d-48f3-b928-c60431e89ff0", + "Name": null + }, + "9fbcdcdb-2195-49bb-b784-c7b3d45bff52": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727578, + "Y": 56.25297000000142, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e7e314d1-687d-48f3-b928-c60431e89ff0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9fbcdcdb-2195-49bb-b784-c7b3d45bff52", + "Name": null, + "Wall Candidate": "2b79558e-9e76-4bc0-b068-f692d22600d5" + }, + "0d3b52fe-462c-4cfa-b3f4-17310ff099ea": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.898140000000065, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.89814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.798140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.798140000000064, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0d3b52fe-462c-4cfa-b3f4-17310ff099ea", + "Name": null + }, + "6699fd9b-b530-43bb-a36e-48637675007c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.898140000000065, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.89814000000012, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.798140000000117, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 17.798140000000064, + "Y": 51.98041999999987, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6699fd9b-b530-43bb-a36e-48637675007c", + "Name": null + }, + "18f5da0c-b6c7-4db8-8910-36b0b157c8e7": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000065, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6699fd9b-b530-43bb-a36e-48637675007c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "18f5da0c-b6c7-4db8-8910-36b0b157c8e7", + "Name": null, + "Wall Candidate": "ff1c93f1-66b9-434b-94c7-4536c450c24c" + }, + "e2413bf2-b7f3-4e05-b1ed-4580d52f6495": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995520000000672, + "Y": 51.955419999999826, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 51.955419999999776, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 52.00541999999977, + "Z": 0.0 + }, + { + "X": 13.995520000000672, + "Y": 52.00541999999982, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e2413bf2-b7f3-4e05-b1ed-4580d52f6495", + "Name": null + }, + "a950efc0-4d1a-43ab-a66b-8ff91d417114": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995520000000672, + "Y": 51.955419999999826, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 51.955419999999776, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 52.00541999999977, + "Z": 0.0 + }, + { + "X": 13.995520000000672, + "Y": 52.00541999999982, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a950efc0-4d1a-43ab-a66b-8ff91d417114", + "Name": null + }, + "811e45d5-00f6-4c4e-82db-c8b0824a6b19": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a950efc0-4d1a-43ab-a66b-8ff91d417114", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "811e45d5-00f6-4c4e-82db-c8b0824a6b19", + "Name": null, + "Wall Candidate": "3c9d10e7-8e9a-482c-962d-a162b88278d9" + }, + "9329a6bc-e140-4d3f-87e6-a523c71c9975": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9329a6bc-e140-4d3f-87e6-a523c71c9975", + "Name": null + }, + "9176e661-fd8f-4614-8569-dc4573cc2d24": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "9329a6bc-e140-4d3f-87e6-a523c71c9975", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "9329a6bc-e140-4d3f-87e6-a523c71c9975", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9176e661-fd8f-4614-8569-dc4573cc2d24", + "Name": null + }, + "0afc8462-ad24-42c6-957b-a51534f97b31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9176e661-fd8f-4614-8569-dc4573cc2d24", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0afc8462-ad24-42c6-957b-a51534f97b31", + "Name": "Base Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "2ca122b2-e737-48c0-b5fc-4659e8d5a967": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9176e661-fd8f-4614-8569-dc4573cc2d24", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "2ca122b2-e737-48c0-b5fc-4659e8d5a967", + "Name": "Base Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "19a4d91b-f230-4aea-b750-0d29d7c32e16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9176e661-fd8f-4614-8569-dc4573cc2d24", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "19a4d91b-f230-4aea-b750-0d29d7c32e16", + "Name": "Base Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "289c6ca7-cf13-475e-a786-62c3fdcfd031": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.2910173207637145E-14, + 0.0, + 13.995520000000672, + -1.2910173207637145E-14, + 1.0, + 0.0, + 51.980419999999825, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "289c6ca7-cf13-475e-a786-62c3fdcfd031", + "Name": "Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "47db8076-f64b-448c-bd20-48f7342c93a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.2910173207637145E-14, + 0.0, + 14.395520000000673, + -1.2910173207637145E-14, + 1.0, + 0.0, + 51.98041999999982, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "47db8076-f64b-448c-bd20-48f7342c93a3", + "Name": "Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "665767ba-e394-4038-9174-f2d2d529545b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.2910173207637145E-14, + 0.0, + 15.295520000000673, + -1.2910173207637145E-14, + 1.0, + 0.0, + 51.98041999999981, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "665767ba-e394-4038-9174-f2d2d529545b", + "Name": "Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "03812b2a-635b-4bbb-9493-21a252fdb629": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.2910173207637145E-14, + 0.0, + 17.848140000000672, + -1.2910173207637145E-14, + 1.0, + 0.0, + 51.980419999999775, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "03812b2a-635b-4bbb-9493-21a252fdb629", + "Name": "Mullion", + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19" + }, + "8be2aeb6-e2da-472c-af9b-50c510a336cb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995520000000672, + "Y": 51.93041999999983, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 51.93041999999978, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 52.03041999999977, + "Z": 0.0 + }, + { + "X": 13.995520000000672, + "Y": 52.03041999999982, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8be2aeb6-e2da-472c-af9b-50c510a336cb", + "Name": null + }, + "90e06d57-8146-4d63-8acb-3b7ea1b86af5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995520000000672, + "Y": 51.93041999999983, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 51.93041999999978, + "Z": 0.0 + }, + { + "X": 17.848140000000672, + "Y": 52.03041999999977, + "Z": 0.0 + }, + { + "X": 13.995520000000672, + "Y": 52.03041999999982, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "90e06d57-8146-4d63-8acb-3b7ea1b86af5", + "Name": null + }, + "080e59ab-ac43-492a-a635-d0d37612664e": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995520000000672, + "Y": 51.980419999999825, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000672, + "Y": 51.980419999999775, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "90e06d57-8146-4d63-8acb-3b7ea1b86af5", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "080e59ab-ac43-492a-a635-d0d37612664e", + "Name": null, + "Wall": "811e45d5-00f6-4c4e-82db-c8b0824a6b19", + "Wall Candidate": "3c9d10e7-8e9a-482c-962d-a162b88278d9" + }, + "bf6a231f-cd8d-41a7-afde-bb34174189c9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.095514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.09551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.89551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.895514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bf6a231f-cd8d-41a7-afde-bb34174189c9", + "Name": null + }, + "3862545c-2702-4f02-96e5-698f06ab6ee3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.095514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.09551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.89551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.895514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3862545c-2702-4f02-96e5-698f06ab6ee3", + "Name": null + }, + "403d27bb-b844-443d-a4ad-e70b038eb7b1": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3862545c-2702-4f02-96e5-698f06ab6ee3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "403d27bb-b844-443d-a4ad-e70b038eb7b1", + "Name": null, + "Wall Candidate": "9f4f4091-77aa-4826-8804-d851fdff5c8e" + }, + "6bbf09b6-e92b-4ab0-a5bd-5daabed999cb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.067169999999939, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 8.06717, + "Y": 56.252970000001454, + "Z": 0.0 + }, + { + "X": 7.96717, + "Y": 56.252970000001454, + "Z": 0.0 + }, + { + "X": 7.967169999999938, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6bbf09b6-e92b-4ab0-a5bd-5daabed999cb", + "Name": null + }, + "9f7467d4-ac58-4e2b-9160-a12b5545a545": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.067169999999939, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 8.06717, + "Y": 56.252970000001454, + "Z": 0.0 + }, + { + "X": 7.96717, + "Y": 56.252970000001454, + "Z": 0.0 + }, + { + "X": 7.967169999999938, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9f7467d4-ac58-4e2b-9160-a12b5545a545", + "Name": null + }, + "3d19c08b-158f-44dd-b464-fd706f5c92d8": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017169999999938, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 56.252970000001454, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9f7467d4-ac58-4e2b-9160-a12b5545a545", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d19c08b-158f-44dd-b464-fd706f5c92d8", + "Name": null, + "Wall Candidate": "9543f6fe-ff94-4923-86f3-81e051f91400" + }, + "d7ba63b5-3e7b-4d61-a24a-47c40849e00f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.045514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.045514757727586, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.945514757727585, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.945514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d7ba63b5-3e7b-4d61-a24a-47c40849e00f", + "Name": null + }, + "e4d769dc-c597-41f7-823c-451307348b1a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 14.045514757727524, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 14.045514757727586, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.945514757727585, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.945514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e4d769dc-c597-41f7-823c-451307348b1a", + "Name": null + }, + "13b19439-aa78-459c-ac13-95e24c39c1a8": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727586, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e4d769dc-c597-41f7-823c-451307348b1a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "13b19439-aa78-459c-ac13-95e24c39c1a8", + "Name": null, + "Wall Candidate": "b34f8c95-720a-4835-83ab-d95c9d5f9697" + }, + "2b326dbd-deb9-4b80-9bcb-d547451c7eb7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017160000000741, + "Y": 51.95541999999989, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 51.955419999999805, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 52.0054199999998, + "Z": 0.0 + }, + { + "X": 8.017160000000741, + "Y": 52.00541999999989, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2b326dbd-deb9-4b80-9bcb-d547451c7eb7", + "Name": null + }, + "a6725c79-7c05-4ab4-bcb3-6fc4a8bbf93b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017160000000741, + "Y": 51.95541999999989, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 51.955419999999805, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 52.0054199999998, + "Z": 0.0 + }, + { + "X": 8.017160000000741, + "Y": 52.00541999999989, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a6725c79-7c05-4ab4-bcb3-6fc4a8bbf93b", + "Name": null + }, + "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a6725c79-7c05-4ab4-bcb3-6fc4a8bbf93b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d", + "Name": null, + "Wall Candidate": "421b1cd0-9a54-4800-a4b7-b7d9b5caafa7" + }, + "b522fb3a-7c60-4c29-9f77-35fa1f2970eb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b522fb3a-7c60-4c29-9f77-35fa1f2970eb", + "Name": null + }, + "ba5197ea-7e3e-4e09-84f1-41c660478f43": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b522fb3a-7c60-4c29-9f77-35fa1f2970eb", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b522fb3a-7c60-4c29-9f77-35fa1f2970eb", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ba5197ea-7e3e-4e09-84f1-41c660478f43", + "Name": null + }, + "5e1ee2b4-01ee-4ca1-80cd-ff5a67ba98af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ba5197ea-7e3e-4e09-84f1-41c660478f43", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5e1ee2b4-01ee-4ca1-80cd-ff5a67ba98af", + "Name": "Base Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "80db31ad-bbd5-41ba-9cf8-9cd7e953ad3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ba5197ea-7e3e-4e09-84f1-41c660478f43", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "80db31ad-bbd5-41ba-9cf8-9cd7e953ad3c", + "Name": "Base Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "b85ce300-2225-4580-9bfb-0aed4cc34be0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ba5197ea-7e3e-4e09-84f1-41c660478f43", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "b85ce300-2225-4580-9bfb-0aed4cc34be0", + "Name": "Base Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "588dfe12-76b2-476f-9c9b-7cbe8e38ee11": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.426229405576312E-14, + 0.0, + 8.017160000000741, + -1.426229405576312E-14, + 1.0, + 0.0, + 51.98041999999989, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "588dfe12-76b2-476f-9c9b-7cbe8e38ee11", + "Name": "Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "d3794938-35b3-485a-8304-3489efa5d3ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.426229405576312E-14, + 0.0, + 8.417160000000742, + -1.426229405576312E-14, + 1.0, + 0.0, + 51.98041999999988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d3794938-35b3-485a-8304-3489efa5d3ce", + "Name": "Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "f9d89acb-d7d6-4da8-b05d-c087515e6782": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.426229405576312E-14, + 0.0, + 9.317160000000742, + -1.426229405576312E-14, + 1.0, + 0.0, + 51.98041999999987, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f9d89acb-d7d6-4da8-b05d-c087515e6782", + "Name": "Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "6624bab1-168a-4eb3-a188-d0e9a8ce0985": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.426229405576312E-14, + 0.0, + 11.656340000000743, + -1.426229405576312E-14, + 1.0, + 0.0, + 51.98041999999984, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6624bab1-168a-4eb3-a188-d0e9a8ce0985", + "Name": "Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "9e598a68-1784-4fbb-9eb9-7b55d7171c97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.426229405576312E-14, + 0.0, + 13.995520000000742, + -1.426229405576312E-14, + 1.0, + 0.0, + 51.9804199999998, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9e598a68-1784-4fbb-9eb9-7b55d7171c97", + "Name": "Mullion", + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d" + }, + "e50369b0-61d2-4ebf-a807-ee74bcf1f955": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017160000000741, + "Y": 51.93041999999989, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 51.930419999999806, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 52.0304199999998, + "Z": 0.0 + }, + { + "X": 8.017160000000741, + "Y": 52.030419999999886, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e50369b0-61d2-4ebf-a807-ee74bcf1f955", + "Name": null + }, + "6ef1c467-1566-4f13-9d12-422b03e98770": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017160000000741, + "Y": 51.93041999999989, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 51.930419999999806, + "Z": 0.0 + }, + { + "X": 13.995520000000742, + "Y": 52.0304199999998, + "Z": 0.0 + }, + { + "X": 8.017160000000741, + "Y": 52.030419999999886, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6ef1c467-1566-4f13-9d12-422b03e98770", + "Name": null + }, + "2adc0670-1002-4189-88a2-fb1a6d8b4d63": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.017160000000741, + "Y": 51.98041999999989, + "Z": 0.0 + }, + "End": { + "X": 13.995520000000742, + "Y": 51.9804199999998, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6ef1c467-1566-4f13-9d12-422b03e98770", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2adc0670-1002-4189-88a2-fb1a6d8b4d63", + "Name": null, + "Wall": "7ec6074e-9ab3-4a95-9b81-24495d1a4e6d", + "Wall Candidate": "421b1cd0-9a54-4800-a4b7-b7d9b5caafa7" + }, + "ea342799-676d-4bc5-a688-e2a6e5df2e36": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.56432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ea342799-676d-4bc5-a688-e2a6e5df2e36", + "Name": null + }, + "c8a211df-1b3c-41de-b412-459b2c4e745b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.56432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8a211df-1b3c-41de-b412-459b2c4e745b", + "Name": null + }, + "5a8a06cd-e732-4ca9-a94f-24d13c45083d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c8a211df-1b3c-41de-b412-459b2c4e745b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a8a06cd-e732-4ca9-a94f-24d13c45083d", + "Name": null, + "Wall Candidate": "354629a2-d8d3-4317-9fdd-bae4e68f9cd9" + }, + "71143b61-817c-4be0-8d17-5dad49f8fc75": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.632473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.63247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.83247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.832473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "71143b61-817c-4be0-8d17-5dad49f8fc75", + "Name": null + }, + "b4d2a5fc-f31d-4aad-8b55-cf510ecf3448": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.632473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.63247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.83247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.832473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b4d2a5fc-f31d-4aad-8b55-cf510ecf3448", + "Name": null + }, + "cd85d1ea-6d67-4dee-8229-30cbd24a94c6": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b4d2a5fc-f31d-4aad-8b55-cf510ecf3448", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cd85d1ea-6d67-4dee-8229-30cbd24a94c6", + "Name": null, + "Wall Candidate": "bfbb8c64-d611-489a-a1f2-78d797e4e217" + }, + "e60022c5-d897-472e-bc62-45b5f160ea59": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.782473166316905, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.782473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.682473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.68247316631691, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e60022c5-d897-472e-bc62-45b5f160ea59", + "Name": null + }, + "da373158-976d-4254-900a-d05f88d79932": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.782473166316905, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.782473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.682473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.68247316631691, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "da373158-976d-4254-900a-d05f88d79932", + "Name": null + }, + "a63505d0-04b5-4d09-9fd8-61cd4b86ef01": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631691, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "da373158-976d-4254-900a-d05f88d79932", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a63505d0-04b5-4d09-9fd8-61cd4b86ef01", + "Name": null, + "Wall Candidate": "54c03b4d-7a0a-4eb3-882d-41642919b65e" + }, + "2be65c86-1eeb-4494-b382-56dced78f669": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.51432478248226, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.514324782482355, + "Y": 56.2529700000013, + "Z": 0.0 + }, + { + "X": 54.41432478248236, + "Y": 56.2529700000013, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2be65c86-1eeb-4494-b382-56dced78f669", + "Name": null + }, + "d27933c6-232d-4ecd-9f52-6f72c36fe06d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.51432478248226, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.514324782482355, + "Y": 56.2529700000013, + "Z": 0.0 + }, + { + "X": 54.41432478248236, + "Y": 56.2529700000013, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d27933c6-232d-4ecd-9f52-6f72c36fe06d", + "Name": null + }, + "3e7253da-e0c5-48db-8252-a2a66f5ee83b": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.46432478248236, + "Y": 56.2529700000013, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d27933c6-232d-4ecd-9f52-6f72c36fe06d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3e7253da-e0c5-48db-8252-a2a66f5ee83b", + "Name": null, + "Wall Candidate": "007f398e-87f2-435c-bd20-5b3f59416713" + }, + "1b37e29f-d175-40f0-b395-2f4ab112483c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73248000000098, + "Y": 51.65529999999904, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.65529999999897, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.705299999998964, + "Z": 0.0 + }, + { + "X": 50.73248000000098, + "Y": 51.705299999999035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1b37e29f-d175-40f0-b395-2f4ab112483c", + "Name": null + }, + "b998667c-93f0-4acb-af8f-1ab8c34bc542": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73248000000098, + "Y": 51.65529999999904, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.65529999999897, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.705299999998964, + "Z": 0.0 + }, + { + "X": 50.73248000000098, + "Y": 51.705299999999035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b998667c-93f0-4acb-af8f-1ab8c34bc542", + "Name": null + }, + "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b998667c-93f0-4acb-af8f-1ab8c34bc542", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2", + "Name": null, + "Wall Candidate": "2309341d-ba52-4bee-be06-56f64a3fb76c" + }, + "f32c903b-9376-4c6f-8fa9-9b59f12337bd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f32c903b-9376-4c6f-8fa9-9b59f12337bd", + "Name": null + }, + "43644c53-3b92-45e7-98e3-51dae2c80cde": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f32c903b-9376-4c6f-8fa9-9b59f12337bd", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f32c903b-9376-4c6f-8fa9-9b59f12337bd", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "43644c53-3b92-45e7-98e3-51dae2c80cde", + "Name": null + }, + "a9cf2fdb-ccd8-49a4-8de0-c37093b4b951": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43644c53-3b92-45e7-98e3-51dae2c80cde", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9cf2fdb-ccd8-49a4-8de0-c37093b4b951", + "Name": "Base Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "80d96fef-8a23-4586-a089-1d06973bb3a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43644c53-3b92-45e7-98e3-51dae2c80cde", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "80d96fef-8a23-4586-a089-1d06973bb3a4", + "Name": "Base Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "4d00a4d9-663a-4b8f-a371-fda1485f22a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43644c53-3b92-45e7-98e3-51dae2c80cde", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "4d00a4d9-663a-4b8f-a371-fda1485f22a3", + "Name": "Base Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "dd209f8f-5e3f-4bbe-b736-291c5f7a8732": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.9040010712144692E-14, + 0.0, + 50.73248000000098, + -1.9040010712144692E-14, + 1.0, + 0.0, + 51.680299999999036, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dd209f8f-5e3f-4bbe-b736-291c5f7a8732", + "Name": "Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "1061c694-9461-4d79-a259-c890e65e4b5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.9040010712144692E-14, + 0.0, + 51.13248000000098, + -1.9040010712144692E-14, + 1.0, + 0.0, + 51.68029999999903, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1061c694-9461-4d79-a259-c890e65e4b5a", + "Name": "Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "f8ee813a-3703-4859-9eaf-87977151f590": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.9040010712144692E-14, + 0.0, + 52.03248000000098, + -1.9040010712144692E-14, + 1.0, + 0.0, + 51.680299999999015, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f8ee813a-3703-4859-9eaf-87977151f590", + "Name": "Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "1e683bc2-38ad-43f4-a55a-be5b18f0ae50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.9040010712144692E-14, + 0.0, + 54.46432000000098, + -1.9040010712144692E-14, + 1.0, + 0.0, + 51.680299999998965, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1e683bc2-38ad-43f4-a55a-be5b18f0ae50", + "Name": "Mullion", + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2" + }, + "af3919aa-39ef-4831-880a-0c8a72cedf4a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73248000000098, + "Y": 51.63029999999904, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.63029999999897, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.73029999999896, + "Z": 0.0 + }, + { + "X": 50.73248000000098, + "Y": 51.73029999999903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "af3919aa-39ef-4831-880a-0c8a72cedf4a", + "Name": null + }, + "be79f4b9-9d50-4771-be8d-719fc54c6c16": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73248000000098, + "Y": 51.63029999999904, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.63029999999897, + "Z": 0.0 + }, + { + "X": 54.46432000000098, + "Y": 51.73029999999896, + "Z": 0.0 + }, + { + "X": 50.73248000000098, + "Y": 51.73029999999903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "be79f4b9-9d50-4771-be8d-719fc54c6c16", + "Name": null + }, + "dd81f131-4493-4631-9315-6fac78ec4ce3": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73248000000098, + "Y": 51.680299999999036, + "Z": 0.0 + }, + "End": { + "X": 54.46432000000098, + "Y": 51.680299999998965, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "be79f4b9-9d50-4771-be8d-719fc54c6c16", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dd81f131-4493-4631-9315-6fac78ec4ce3", + "Name": null, + "Wall": "3bc9ced1-94e0-49b2-9aa6-3eb038751aa2", + "Wall Candidate": "2309341d-ba52-4bee-be06-56f64a3fb76c" + }, + "37f04c58-bb49-4f25-ac90-48fc6f2b1345": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 51.58030767068653, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.580307670686466, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.78030767068647, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.78030767068653, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "37f04c58-bb49-4f25-ac90-48fc6f2b1345", + "Name": null + }, + "400fa567-6234-4fae-9a3c-235517bf5e35": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 51.58030767068653, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.580307670686466, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.78030767068647, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.78030767068653, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "400fa567-6234-4fae-9a3c-235517bf5e35", + "Name": null + }, + "32830cfd-e2dc-43bc-a493-bf5fdc823675": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "400fa567-6234-4fae-9a3c-235517bf5e35", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "32830cfd-e2dc-43bc-a493-bf5fdc823675", + "Name": null, + "Wall Candidate": "86b78cdb-5ef3-423d-852e-f456f8c289a9" + }, + "f0acadb7-8bbd-4722-b508-ca667240a1a4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.83247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.832473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.632473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.63247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f0acadb7-8bbd-4722-b508-ca667240a1a4", + "Name": null + }, + "817e16bc-d85f-409c-879d-a69356fab506": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.83247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 50.832473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.632473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 50.63247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "817e16bc-d85f-409c-879d-a69356fab506", + "Name": null + }, + "034c75e3-289a-4a36-b9f2-d582cf00610a": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "817e16bc-d85f-409c-879d-a69356fab506", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "034c75e3-289a-4a36-b9f2-d582cf00610a", + "Name": null, + "Wall Candidate": "4f3426ee-336d-45bf-9cb4-b3c32fda2d20" + }, + "b9e207ab-a2d6-4304-8796-ccab5a4348de": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 56.20297000000137, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.20297000000137, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.302970000001366, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 56.302970000001366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b9e207ab-a2d6-4304-8796-ccab5a4348de", + "Name": null + }, + "65ab3b82-a79d-47a1-bae1-d0e442177807": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 56.20297000000137, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.20297000000137, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.302970000001366, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 56.302970000001366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "65ab3b82-a79d-47a1-bae1-d0e442177807", + "Name": null + }, + "84b252be-e658-4455-ae62-56bcf28eada3": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "65ab3b82-a79d-47a1-bae1-d0e442177807", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "84b252be-e658-4455-ae62-56bcf28eada3", + "Name": null, + "Wall Candidate": "05d96557-99e9-41d4-bde2-21f27408009d" + }, + "36c43bf6-5ca1-4db2-a1d5-0b43952cf16c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 51.63030767068647, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 51.63030767068647, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 51.730307670686464, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.730307670686464, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "36c43bf6-5ca1-4db2-a1d5-0b43952cf16c", + "Name": null + }, + "ef94e946-6459-4e6f-99ca-3a2c832089c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 51.63030767068647, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 51.63030767068647, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 51.730307670686464, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.730307670686464, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ef94e946-6459-4e6f-99ca-3a2c832089c5", + "Name": null + }, + "3a050314-d11b-41d6-80e4-652bf40bc7d0": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ef94e946-6459-4e6f-99ca-3a2c832089c5", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3a050314-d11b-41d6-80e4-652bf40bc7d0", + "Name": null, + "Wall Candidate": "682da743-0c5e-4b89-ba1a-f62a1a02db54" + }, + "15c9491a-0c7e-4545-8ef5-f826007b8223": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 46.98198, + "Y": 56.25296, + "Z": 0.0 + }, + { + "X": 46.98198, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.03198, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.03198, + "Y": 56.25296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "15c9491a-0c7e-4545-8ef5-f826007b8223", + "Name": null + }, + "133aa143-b7d6-469c-be0c-e1bcc246cf64": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 46.98198, + "Y": 56.25296, + "Z": 0.0 + }, + { + "X": 46.98198, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.03198, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.03198, + "Y": 56.25296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "133aa143-b7d6-469c-be0c-e1bcc246cf64", + "Name": null + }, + "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "133aa143-b7d6-469c-be0c-e1bcc246cf64", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96", + "Name": null, + "Wall Candidate": "b17d5d72-1f2d-4491-8ea5-1fa55fa69fbc" + }, + "7acc995e-465f-4453-84ad-a964658b8613": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7acc995e-465f-4453-84ad-a964658b8613", + "Name": null + }, + "cbe78746-8650-4d36-8196-3f6218e117f2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7acc995e-465f-4453-84ad-a964658b8613", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7acc995e-465f-4453-84ad-a964658b8613", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "cbe78746-8650-4d36-8196-3f6218e117f2", + "Name": null + }, + "d9166e00-52d8-4662-a9a1-df16c896a1fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cbe78746-8650-4d36-8196-3f6218e117f2", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d9166e00-52d8-4662-a9a1-df16c896a1fd", + "Name": "Base Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "d62bc5e5-27fe-48bd-b451-56a30e29f1b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cbe78746-8650-4d36-8196-3f6218e117f2", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "d62bc5e5-27fe-48bd-b451-56a30e29f1b4", + "Name": "Base Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "ff7711b4-e69d-4e3a-8fee-a7c8dc970af2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "cbe78746-8650-4d36-8196-3f6218e117f2", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "ff7711b4-e69d-4e3a-8fee-a7c8dc970af2", + "Name": "Base Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "6d488ab1-a177-468a-9024-2236b3ae8d4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 47.00698, + -1.0, + 0.0, + 0.0, + 56.25296, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6d488ab1-a177-468a-9024-2236b3ae8d4d", + "Name": "Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "441623f6-77f3-4816-8e10-ff565e766b1a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 47.00698, + -1.0, + 0.0, + 0.0, + 55.85296, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "441623f6-77f3-4816-8e10-ff565e766b1a", + "Name": "Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "21bc320c-4f2a-47ac-b6b8-3c5f04affcf6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 47.00698, + -1.0, + 0.0, + 0.0, + 54.952960000000004, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "21bc320c-4f2a-47ac-b6b8-3c5f04affcf6", + "Name": "Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "2a9dda38-6918-45df-8f02-3e52b57cb84a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 47.00698, + -1.0, + 0.0, + 0.0, + 53.31663, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2a9dda38-6918-45df-8f02-3e52b57cb84a", + "Name": "Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "fc03f9b4-25dc-45c9-8407-8c3e9b4a744f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 47.00698, + -1.0, + 0.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fc03f9b4-25dc-45c9-8407-8c3e9b4a744f", + "Name": "Mullion", + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96" + }, + "507a8ef5-c942-47f4-9349-50747a94ac1b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 46.95698, + "Y": 56.25296, + "Z": 0.0 + }, + { + "X": 46.95698, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.056979999999996, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.056979999999996, + "Y": 56.25296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "507a8ef5-c942-47f4-9349-50747a94ac1b", + "Name": null + }, + "a69a01c4-5ba6-456e-90b1-e3da09f803f8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 46.95698, + "Y": 56.25296, + "Z": 0.0 + }, + { + "X": 46.95698, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.056979999999996, + "Y": 51.6803, + "Z": 0.0 + }, + { + "X": 47.056979999999996, + "Y": 56.25296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a69a01c4-5ba6-456e-90b1-e3da09f803f8", + "Name": null + }, + "f71347ca-ec7f-424f-9480-81694e9eaec1": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25296, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a69a01c4-5ba6-456e-90b1-e3da09f803f8", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f71347ca-ec7f-424f-9480-81694e9eaec1", + "Name": null, + "Wall": "f58d8347-8ac9-42a7-a4b9-33f0d1b70f96", + "Wall Candidate": "b17d5d72-1f2d-4491-8ea5-1fa55fa69fbc" + }, + "6937319e-283c-45da-bca7-ef18528ab3d9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.364324782482264, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 56.25297, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6937319e-283c-45da-bca7-ef18528ab3d9", + "Name": null + }, + "20cd07e9-89f6-4541-80ef-fe9e9aa49a87": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.364324782482264, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.364324782482264, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.56432478248227, + "Y": 56.25297, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "20cd07e9-89f6-4541-80ef-fe9e9aa49a87", + "Name": null + }, + "028e0b80-6879-4e4d-a3d8-cb2a87fcd36a": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "20cd07e9-89f6-4541-80ef-fe9e9aa49a87", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "028e0b80-6879-4e4d-a3d8-cb2a87fcd36a", + "Name": null, + "Wall Candidate": "402c30f7-496d-49ce-bab4-994889b65092" + }, + "5ba20051-476f-421a-8780-d19ba537df57": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.33661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.33661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.136613253529326, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.136613253529326, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5ba20051-476f-421a-8780-d19ba537df57", + "Name": null + }, + "de6b13a5-ebae-4c67-b2b0-7ebbee996f0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.33661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.33661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.136613253529326, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.136613253529326, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "de6b13a5-ebae-4c67-b2b0-7ebbee996f0b", + "Name": null + }, + "9860c2cc-e2a3-40cc-9dde-c6b271b8debf": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "de6b13a5-ebae-4c67-b2b0-7ebbee996f0b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9860c2cc-e2a3-40cc-9dde-c6b271b8debf", + "Name": null, + "Wall Candidate": "f17cde83-0545-4c80-81b8-26bf5b4191f7" + }, + "c171e9bc-4efa-40d2-9afa-9f99fde97202": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.51432478248226, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.51432478248226, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c171e9bc-4efa-40d2-9afa-9f99fde97202", + "Name": null + }, + "d84f9f35-3b93-4411-b33f-2eece2980a91": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.51432478248226, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.51432478248226, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.41432478248227, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d84f9f35-3b93-4411-b33f-2eece2980a91", + "Name": null + }, + "e55afba5-db07-443a-9304-2f6552cda6ac": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d84f9f35-3b93-4411-b33f-2eece2980a91", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e55afba5-db07-443a-9304-2f6552cda6ac", + "Name": null, + "Wall Candidate": "0a5407a7-75d7-45a6-8a20-7ecad4109922" + }, + "b7dadaeb-8fa1-4a84-aed2-c9efb9f01f18": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.286613253529325, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.286613253529325, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.18661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.18661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b7dadaeb-8fa1-4a84-aed2-c9efb9f01f18", + "Name": null + }, + "6e3c77d2-5f61-4928-bc8a-7418dd4fb484": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.286613253529325, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.286613253529325, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.18661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.18661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6e3c77d2-5f61-4928-bc8a-7418dd4fb484", + "Name": null + }, + "febf37ec-eb14-49e1-b35e-2ee16a5c164d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6e3c77d2-5f61-4928-bc8a-7418dd4fb484", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "febf37ec-eb14-49e1-b35e-2ee16a5c164d", + "Name": null, + "Wall Candidate": "2a37a250-90a1-4e2e-84c2-83e8d248fc93" + }, + "6efd8930-e151-4979-9b9e-62c209d1d89c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.46432, + "Y": 51.655300000000004, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.655300000000004, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.7053, + "Z": 0.0 + }, + { + "X": 54.46432, + "Y": 51.7053, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6efd8930-e151-4979-9b9e-62c209d1d89c", + "Name": null + }, + "1938786e-181a-4157-86cf-310a3092f5be": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.46432, + "Y": 51.655300000000004, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.655300000000004, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.7053, + "Z": 0.0 + }, + { + "X": 54.46432, + "Y": 51.7053, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1938786e-181a-4157-86cf-310a3092f5be", + "Name": null + }, + "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1938786e-181a-4157-86cf-310a3092f5be", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a", + "Name": null, + "Wall Candidate": "05e3004f-074d-4b77-8aa0-b09c1a824fbb" + }, + "f6bba101-e4ce-4277-a3a3-405669de883a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f6bba101-e4ce-4277-a3a3-405669de883a", + "Name": null + }, + "b8a5b549-04eb-45ce-9501-90dcbaaa4ebe": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f6bba101-e4ce-4277-a3a3-405669de883a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f6bba101-e4ce-4277-a3a3-405669de883a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b8a5b549-04eb-45ce-9501-90dcbaaa4ebe", + "Name": null + }, + "e7e9da1f-bd54-405c-a416-632ff549ed39": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8a5b549-04eb-45ce-9501-90dcbaaa4ebe", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e7e9da1f-bd54-405c-a416-632ff549ed39", + "Name": "Base Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "f1e13793-9cc7-4cfd-b672-9b38c8d0295e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8a5b549-04eb-45ce-9501-90dcbaaa4ebe", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "f1e13793-9cc7-4cfd-b672-9b38c8d0295e", + "Name": "Base Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "2cda21fa-4a71-4fc3-a76b-2c5b7a18fb24": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8a5b549-04eb-45ce-9501-90dcbaaa4ebe", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "2cda21fa-4a71-4fc3-a76b-2c5b7a18fb24", + "Name": "Base Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "cf0312b3-d688-4430-b4c7-835c11d08880": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 54.46432, + 0.0, + 1.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cf0312b3-d688-4430-b4c7-835c11d08880", + "Name": "Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "028d05d1-0cd9-4481-8fce-e746c3a33454": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 54.86432, + 0.0, + 1.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "028d05d1-0cd9-4481-8fce-e746c3a33454", + "Name": "Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "3668c96c-190e-4147-b76c-e480323856de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 55.76432, + 0.0, + 1.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3668c96c-190e-4147-b76c-e480323856de", + "Name": "Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "99aea14a-2fba-4393-bcc1-bc8cbaaff9e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 58.00047, + 0.0, + 1.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "99aea14a-2fba-4393-bcc1-bc8cbaaff9e3", + "Name": "Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "4af599c9-e41c-4ed3-b6f5-a3b9b361641f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 60.23662, + 0.0, + 1.0, + 0.0, + 51.6803, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4af599c9-e41c-4ed3-b6f5-a3b9b361641f", + "Name": "Mullion", + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a" + }, + "8fa5b043-66fb-438e-ada7-e2c3d8015dab": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.46432, + "Y": 51.630300000000005, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.630300000000005, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.7303, + "Z": 0.0 + }, + { + "X": 54.46432, + "Y": 51.7303, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8fa5b043-66fb-438e-ada7-e2c3d8015dab", + "Name": null + }, + "72c8b509-d161-4712-855e-f7c773afe0f6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 54.46432, + "Y": 51.630300000000005, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.630300000000005, + "Z": 0.0 + }, + { + "X": 60.23662, + "Y": 51.7303, + "Z": 0.0 + }, + { + "X": 54.46432, + "Y": 51.7303, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "72c8b509-d161-4712-855e-f7c773afe0f6", + "Name": null + }, + "af12e39f-3734-402b-84f1-ff82362278dd": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.46432, + "Y": 51.6803, + "Z": 0.0 + }, + "End": { + "X": 60.23662, + "Y": 51.6803, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "72c8b509-d161-4712-855e-f7c773afe0f6", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "af12e39f-3734-402b-84f1-ff82362278dd", + "Name": null, + "Wall": "5a1fcb97-4d9b-41cf-a4ed-0dad0fd99e0a", + "Wall Candidate": "05e3004f-074d-4b77-8aa0-b09c1a824fbb" + }, + "0f3be900-be3c-46f5-b7c3-3dc84d2f0d29": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 24.19654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.19654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.39654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.39654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0f3be900-be3c-46f5-b7c3-3dc84d2f0d29", + "Name": null + }, + "1070170c-64ac-4d1c-bee7-252eb49365b9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 24.19654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.19654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.39654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.39654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1070170c-64ac-4d1c-bee7-252eb49365b9", + "Name": null + }, + "59b61a8e-a50a-4e49-98c1-1b6fb4e644f9": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1070170c-64ac-4d1c-bee7-252eb49365b9", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "59b61a8e-a50a-4e49-98c1-1b6fb4e644f9", + "Name": null, + "Wall Candidate": "d0935e1e-5985-4c58-a4d8-09a72c98bdd0" + }, + "87538b40-65f9-481d-8637-394c4c2a3be6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.168514844132822, + "Y": 24.296539999999986, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.88682737687284, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.88682737687287, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 24.296540000000014, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "87538b40-65f9-481d-8637-394c4c2a3be6", + "Name": null + }, + "cc0c29f0-cd48-4070-a2dd-0869b2ad4528": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.168514844132822, + "Y": 24.296539999999986, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.88682737687284, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.88682737687287, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 24.296540000000014, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cc0c29f0-cd48-4070-a2dd-0869b2ad4528", + "Name": null + }, + "6bb9181f-0029-462b-8502-eac22e8e0760": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cc0c29f0-cd48-4070-a2dd-0869b2ad4528", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6bb9181f-0029-462b-8502-eac22e8e0760", + "Name": null, + "Wall Candidate": "03c4392f-b2ab-4dd1-8ecf-75c8de92d712" + }, + "6cae5927-1e69-4f18-adca-5d9a307f4e52": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.786827376872854, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6cae5927-1e69-4f18-adca-5d9a307f4e52", + "Name": null + }, + "d800f7ed-1444-4cea-9e8a-aa20e76c9192": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.786827376872854, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d800f7ed-1444-4cea-9e8a-aa20e76c9192", + "Name": null + }, + "260a4093-a3d0-4502-a553-e1537fdf812c": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d800f7ed-1444-4cea-9e8a-aa20e76c9192", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "260a4093-a3d0-4502-a553-e1537fdf812c", + "Name": null, + "Wall Candidate": "8fa244ab-3b1e-417e-b3c2-38d5b2fd3c79" + }, + "a89842a3-3e15-4f77-80b7-38f7239395f4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.836827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.836827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.936827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.936827376872856, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a89842a3-3e15-4f77-80b7-38f7239395f4", + "Name": null + }, + "2038ad5f-fdd2-49b5-b35a-76070aeaa23b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.836827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.836827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.936827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.936827376872856, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2038ad5f-fdd2-49b5-b35a-76070aeaa23b", + "Name": null + }, + "ec7d7d22-2f17-446e-b036-39b7ce379365": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2038ad5f-fdd2-49b5-b35a-76070aeaa23b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ec7d7d22-2f17-446e-b036-39b7ce379365", + "Name": null, + "Wall Candidate": "15826310-93fe-4b1f-9a39-64ebadc1b48c" + }, + "59582a4e-c83c-4c38-8b68-4af6dc6ad237": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 24.34654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.34654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "59582a4e-c83c-4c38-8b68-4af6dc6ad237", + "Name": null + }, + "2b3cf54c-3cf6-420c-9d86-b588137b46a2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 24.34654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.34654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2b3cf54c-3cf6-420c-9d86-b588137b46a2", + "Name": null + }, + "27946f6b-1bd3-4065-96a4-45f315108651": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2b3cf54c-3cf6-420c-9d86-b588137b46a2", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "27946f6b-1bd3-4065-96a4-45f315108651", + "Name": null, + "Wall Candidate": "205e6ae8-af55-438a-84de-51f89587e7b8" + }, + "ab891a57-0129-437d-98e4-c072139a5b76": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.347140000000003, + "Y": 28.88682, + "Z": 0.0 + }, + { + "X": 19.347140000000003, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 28.88682, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ab891a57-0129-437d-98e4-c072139a5b76", + "Name": null + }, + "1ac6d9ec-7c40-4f7e-8950-0b398016382e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.347140000000003, + "Y": 28.88682, + "Z": 0.0 + }, + { + "X": 19.347140000000003, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 28.88682, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1ac6d9ec-7c40-4f7e-8950-0b398016382e", + "Name": null + }, + "6836e9e9-7caf-4684-9b2c-c8013ac82d9a": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1ac6d9ec-7c40-4f7e-8950-0b398016382e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a", + "Name": null, + "Wall Candidate": "684f79dc-1f71-4f50-a2d5-9b147f3458ce" + }, + "247a4419-4c48-42cd-9ee0-2737871cf1fa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "247a4419-4c48-42cd-9ee0-2737871cf1fa", + "Name": null + }, + "9acce0d3-b208-467e-9f8a-bef36fa8cdfa": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "247a4419-4c48-42cd-9ee0-2737871cf1fa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "247a4419-4c48-42cd-9ee0-2737871cf1fa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9acce0d3-b208-467e-9f8a-bef36fa8cdfa", + "Name": null + }, + "5c978aac-54d6-447e-a502-83df684f3a03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9acce0d3-b208-467e-9f8a-bef36fa8cdfa", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5c978aac-54d6-447e-a502-83df684f3a03", + "Name": "Base Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "e5bc4cb8-730d-4658-8180-c1cbb7fb56fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9acce0d3-b208-467e-9f8a-bef36fa8cdfa", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "e5bc4cb8-730d-4658-8180-c1cbb7fb56fc", + "Name": "Base Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "ff256b13-cb96-4d89-ba1f-766884b69e1f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9acce0d3-b208-467e-9f8a-bef36fa8cdfa", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "ff256b13-cb96-4d89-ba1f-766884b69e1f", + "Name": "Base Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "13ae23a7-e0ca-4ccc-a9a5-63f8aafc4967": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 28.88682, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "13ae23a7-e0ca-4ccc-a9a5-63f8aafc4967", + "Name": "Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "8f6256e0-b6ae-4e14-9f96-abbb9ed082a7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 28.48682, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8f6256e0-b6ae-4e14-9f96-abbb9ed082a7", + "Name": "Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "1777b0cb-639a-4059-b21f-14d40eef18b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 27.58682, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1777b0cb-639a-4059-b21f-14d40eef18b9", + "Name": "Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "3a4744f3-c217-4962-849a-7f557110e2f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 25.941679999999998, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3a4744f3-c217-4962-849a-7f557110e2f1", + "Name": "Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "278dff5c-3a77-4213-8aa8-f9df03c1c356": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "278dff5c-3a77-4213-8aa8-f9df03c1c356", + "Name": "Mullion", + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a" + }, + "7fcd76f7-8566-4077-b722-c7d51bf10ccd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 28.88682, + "Z": 0.0 + }, + { + "X": 19.32214, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 28.88682, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7fcd76f7-8566-4077-b722-c7d51bf10ccd", + "Name": null + }, + "cce16435-de99-496b-949e-9b327ad30cb8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 28.88682, + "Z": 0.0 + }, + { + "X": 19.32214, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 28.88682, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cce16435-de99-496b-949e-9b327ad30cb8", + "Name": null + }, + "77f9ad3f-4187-455a-8efa-dc91c3411dd0": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.88682, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cce16435-de99-496b-949e-9b327ad30cb8", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "77f9ad3f-4187-455a-8efa-dc91c3411dd0", + "Name": null, + "Wall": "6836e9e9-7caf-4684-9b2c-c8013ac82d9a", + "Wall Candidate": "684f79dc-1f71-4f50-a2d5-9b147f3458ce" + }, + "b20d75fb-8c82-4fbe-ad65-14d35a497259": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888543, + "Y": 22.89653999999937, + "Z": 0.0 + }, + { + "X": 19.37214000000002, + "Y": 22.89654, + "Z": 0.0 + }, + { + "X": 19.372139999999984, + "Y": 22.69654, + "Z": 0.0 + }, + { + "X": 23.151158175888508, + "Y": 22.696539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b20d75fb-8c82-4fbe-ad65-14d35a497259", + "Name": null + }, + "a04e0c15-4f6f-4fe2-b932-a4eb09961d20": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888543, + "Y": 22.89653999999937, + "Z": 0.0 + }, + { + "X": 19.37214000000002, + "Y": 22.89654, + "Z": 0.0 + }, + { + "X": 19.372139999999984, + "Y": 22.69654, + "Z": 0.0 + }, + { + "X": 23.151158175888508, + "Y": 22.696539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a04e0c15-4f6f-4fe2-b932-a4eb09961d20", + "Name": null + }, + "85a7fc9c-1e86-456f-aace-2df53153ce08": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a04e0c15-4f6f-4fe2-b932-a4eb09961d20", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "85a7fc9c-1e86-456f-aace-2df53153ce08", + "Name": null, + "Wall Candidate": "b56fe97e-510e-492b-a6ce-03750d4c691b" + }, + "bec47888-4ffd-4110-88b8-219cd9856ab9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.251158175888527, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bec47888-4ffd-4110-88b8-219cd9856ab9", + "Name": null + }, + "5956c5c1-a3bd-42a3-8ba6-12c1cf680c03": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.251158175888527, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5956c5c1-a3bd-42a3-8ba6-12c1cf680c03", + "Name": null + }, + "1b91884b-821f-4279-91a1-4218a6d89377": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5956c5c1-a3bd-42a3-8ba6-12c1cf680c03", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1b91884b-821f-4279-91a1-4218a6d89377", + "Name": null, + "Wall Candidate": "a40adf41-9870-48c8-98b7-3018e69eb631" + }, + "320eea0b-ae00-4137-932c-a657aa5fc06b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 22.84654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "320eea0b-ae00-4137-932c-a657aa5fc06b", + "Name": null + }, + "699366e0-d000-4a26-8c01-fd1a44c0003f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 22.84654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "699366e0-d000-4a26-8c01-fd1a44c0003f", + "Name": null + }, + "6347bcf4-f488-412b-9460-64ff25cc836d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "699366e0-d000-4a26-8c01-fd1a44c0003f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6347bcf4-f488-412b-9460-64ff25cc836d", + "Name": null, + "Wall Candidate": "af7d48dd-9ede-4bc3-aa1c-52e46ac1c360" + }, + "2fdac46c-5f10-4824-bcc2-585dc039c458": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 18.64909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.64909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.749090000000002, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 18.749090000000002, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2fdac46c-5f10-4824-bcc2-585dc039c458", + "Name": null + }, + "6195854e-29fc-4b57-8583-e7656d24401a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 18.64909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.64909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.749090000000002, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 18.749090000000002, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6195854e-29fc-4b57-8583-e7656d24401a", + "Name": null + }, + "26d8dd24-70e4-4c99-a468-0327e026faab": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6195854e-29fc-4b57-8583-e7656d24401a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "26d8dd24-70e4-4c99-a468-0327e026faab", + "Name": null, + "Wall Candidate": "d9baef5c-7f1c-4477-957e-6ce361ea22ea" + }, + "e030502a-e550-4b0d-bed4-18ba51a48cd8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.347140000000003, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.347140000000003, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 22.79654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e030502a-e550-4b0d-bed4-18ba51a48cd8", + "Name": null + }, + "7b122270-fc0a-4d5a-a508-46e67f0de97a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.347140000000003, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.347140000000003, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.39714, + "Y": 22.79654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7b122270-fc0a-4d5a-a508-46e67f0de97a", + "Name": null + }, + "fbdb8208-6cfc-462d-a47d-c854d230aa40": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7b122270-fc0a-4d5a-a508-46e67f0de97a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fbdb8208-6cfc-462d-a47d-c854d230aa40", + "Name": null, + "Wall Candidate": "b631b067-4769-4d22-88ea-a704d7ec73a6" + }, + "1cef40a6-b512-4c7a-8c16-d4ad101944a6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1cef40a6-b512-4c7a-8c16-d4ad101944a6", + "Name": null + }, + "250836da-ff49-49bb-8eb7-440fe1b6465a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1cef40a6-b512-4c7a-8c16-d4ad101944a6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1cef40a6-b512-4c7a-8c16-d4ad101944a6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "250836da-ff49-49bb-8eb7-440fe1b6465a", + "Name": null + }, + "b48fbb9e-660d-4a1f-acd1-c91186f0e400": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "250836da-ff49-49bb-8eb7-440fe1b6465a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b48fbb9e-660d-4a1f-acd1-c91186f0e400", + "Name": "Base Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "ffa17320-d59d-4f18-b37e-75c48f2cb83f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "250836da-ff49-49bb-8eb7-440fe1b6465a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "ffa17320-d59d-4f18-b37e-75c48f2cb83f", + "Name": "Base Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "ba6401dc-9da8-4f03-adb2-cce8a0df0870": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "250836da-ff49-49bb-8eb7-440fe1b6465a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "ba6401dc-9da8-4f03-adb2-cce8a0df0870", + "Name": "Base Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "6c033ebf-7d0f-4e90-b277-9ccad5bffc26": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6c033ebf-7d0f-4e90-b277-9ccad5bffc26", + "Name": "Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "1a05b408-5ec8-4707-ba8e-adfda523860e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 22.39654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1a05b408-5ec8-4707-ba8e-adfda523860e", + "Name": "Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "e1c48243-6ea5-47d4-8f03-8e0a020863b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 21.49654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e1c48243-6ea5-47d4-8f03-8e0a020863b7", + "Name": "Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "025b82c4-bc3b-439b-ac4c-6e20647a191a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 19.37214, + -1.0, + 0.0, + 0.0, + 18.6991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "025b82c4-bc3b-439b-ac4c-6e20647a191a", + "Name": "Mullion", + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40" + }, + "b7973317-4117-41ca-b530-ef8762a81c35": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.32214, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 22.79654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b7973317-4117-41ca-b530-ef8762a81c35", + "Name": null + }, + "36741c7f-3710-4e6c-9c88-b9bbed1d4fa6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.32214, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 18.6991, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 22.79654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "36741c7f-3710-4e6c-9c88-b9bbed1d4fa6", + "Name": null + }, + "81acd04d-8abe-4680-986d-f176c93671ac": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.6991, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "36741c7f-3710-4e6c-9c88-b9bbed1d4fa6", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "81acd04d-8abe-4680-986d-f176c93671ac", + "Name": null, + "Wall": "fbdb8208-6cfc-462d-a47d-c854d230aa40", + "Wall Candidate": "b631b067-4769-4d22-88ea-a704d7ec73a6" + }, + "f42708d2-fb24-4412-85f3-10ab2b53446d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.11568645451942, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.11568645451942, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.915686454519417, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.915686454519417, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f42708d2-fb24-4412-85f3-10ab2b53446d", + "Name": null + }, + "24518b4d-9eeb-47c5-87b3-c64666e5637b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.11568645451942, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.11568645451942, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.915686454519417, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.915686454519417, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "24518b4d-9eeb-47c5-87b3-c64666e5637b", + "Name": null + }, + "4cf255d8-4c84-4015-9eca-5f56165cc0f4": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "24518b4d-9eeb-47c5-87b3-c64666e5637b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4cf255d8-4c84-4015-9eca-5f56165cc0f4", + "Name": null, + "Wall Candidate": "bc256caa-8624-43d1-a440-cb783e711c62" + }, + "e956712c-8191-42c4-ba96-27dd10470ed3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.87714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e956712c-8191-42c4-ba96-27dd10470ed3", + "Name": null + }, + "08de7081-4fea-46b3-8ba3-fd84135cb54f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.87714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "08de7081-4fea-46b3-8ba3-fd84135cb54f", + "Name": null + }, + "96a683ef-2cd5-49d0-b88a-7b7f5edfefb5": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "08de7081-4fea-46b3-8ba3-fd84135cb54f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "96a683ef-2cd5-49d0-b88a-7b7f5edfefb5", + "Name": null, + "Wall Candidate": "48c91591-bb5a-4141-bb79-c849d70b32eb" + }, + "d90e28c4-343d-4b48-8ba1-1768a3887f15": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.965686454519417, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.965686454519417, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.06568645451942, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.06568645451942, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d90e28c4-343d-4b48-8ba1-1768a3887f15", + "Name": null + }, + "e779d194-fc7a-4706-ad49-a266b1f0d57e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.965686454519417, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 30.965686454519417, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.06568645451942, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.06568645451942, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e779d194-fc7a-4706-ad49-a266b1f0d57e", + "Name": null + }, + "a7d12060-6f7a-465e-bee9-8c79978cda8d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e779d194-fc7a-4706-ad49-a266b1f0d57e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a7d12060-6f7a-465e-bee9-8c79978cda8d", + "Name": null, + "Wall Candidate": "20f02a9d-7b77-49ce-9e72-eaf7a4457c3d" + }, + "a87eaed5-2bfa-4cf6-b197-d529ae87a9da": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.92714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.92714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a87eaed5-2bfa-4cf6-b197-d529ae87a9da", + "Name": null + }, + "1c5d2d35-aad6-44af-b741-05102f8d20d7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.92714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.92714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1c5d2d35-aad6-44af-b741-05102f8d20d7", + "Name": null + }, + "46aaf4ac-afd3-4e82-b45a-add8118ba3f7": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1c5d2d35-aad6-44af-b741-05102f8d20d7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "46aaf4ac-afd3-4e82-b45a-add8118ba3f7", + "Name": null, + "Wall Candidate": "ec0ade37-5b19-482a-b792-c69635ffae19" + }, + "65292249-485f-46ea-b217-7637a6d6abca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.01568, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.77154, + "Z": 0.0 + }, + { + "X": 31.01568, + "Y": 22.77154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "65292249-485f-46ea-b217-7637a6d6abca", + "Name": null + }, + "212b9eaf-eab2-4dea-89bf-2be6ce0fe754": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.01568, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.77154, + "Z": 0.0 + }, + { + "X": 31.01568, + "Y": 22.77154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "212b9eaf-eab2-4dea-89bf-2be6ce0fe754", + "Name": null + }, + "450dde92-799f-42e2-a1b9-683bde19ba30": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "212b9eaf-eab2-4dea-89bf-2be6ce0fe754", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "450dde92-799f-42e2-a1b9-683bde19ba30", + "Name": null, + "Wall Candidate": "4dadcc49-cb04-4df4-9b1d-afae11210990" + }, + "dcb9ab14-5293-4276-b3bb-c49df82f8059": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dcb9ab14-5293-4276-b3bb-c49df82f8059", + "Name": null + }, + "0213d040-4da1-4f51-8f72-3df4c1e4d377": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "dcb9ab14-5293-4276-b3bb-c49df82f8059", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "dcb9ab14-5293-4276-b3bb-c49df82f8059", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0213d040-4da1-4f51-8f72-3df4c1e4d377", + "Name": null + }, + "c37127f2-20fe-4ec5-897d-b4da606330e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0213d040-4da1-4f51-8f72-3df4c1e4d377", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c37127f2-20fe-4ec5-897d-b4da606330e5", + "Name": "Base Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "924667e9-94ed-4629-b079-8178e3c0cd19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0213d040-4da1-4f51-8f72-3df4c1e4d377", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "924667e9-94ed-4629-b079-8178e3c0cd19", + "Name": "Base Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "b2519e60-16eb-4546-a689-6d55647af007": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0213d040-4da1-4f51-8f72-3df4c1e4d377", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "b2519e60-16eb-4546-a689-6d55647af007", + "Name": "Base Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "a5300e93-c40b-4bd3-9fef-5e866a797520": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 31.01568, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a5300e93-c40b-4bd3-9fef-5e866a797520", + "Name": "Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "cd04c635-0162-44ed-8060-10f25d4f0b2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 30.61568, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cd04c635-0162-44ed-8060-10f25d4f0b2c", + "Name": "Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "f3f8044d-204b-42ea-b83b-83633fe6030d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 29.71568, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3f8044d-204b-42ea-b83b-83633fe6030d", + "Name": "Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "7d07a3bf-ba05-46bb-a1be-b1c813316458": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 26.97714, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7d07a3bf-ba05-46bb-a1be-b1c813316458", + "Name": "Mullion", + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30" + }, + "76b3dce3-8de2-499a-9c7d-8211191ed9b8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.01568, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 31.01568, + "Y": 22.74654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "76b3dce3-8de2-499a-9c7d-8211191ed9b8", + "Name": null + }, + "c588810d-1680-4d26-b986-e954cff8ec71": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.01568, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 31.01568, + "Y": 22.74654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c588810d-1680-4d26-b986-e954cff8ec71", + "Name": null + }, + "deff0bbb-60d5-40f8-b70a-ccbd0a09e8ca": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.01568, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c588810d-1680-4d26-b986-e954cff8ec71", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "deff0bbb-60d5-40f8-b70a-ccbd0a09e8ca", + "Name": null, + "Wall": "450dde92-799f-42e2-a1b9-683bde19ba30", + "Wall Candidate": "4dadcc49-cb04-4df4-9b1d-afae11210990" + }, + "7db2bc01-de18-47e2-8d58-4104a91f1575": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.051158175888524, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7db2bc01-de18-47e2-8d58-4104a91f1575", + "Name": null + }, + "d9fb3d32-5029-43f1-be48-d13782fec9cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.051158175888524, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.051158175888524, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.251158175888527, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d9fb3d32-5029-43f1-be48-d13782fec9cc", + "Name": null + }, + "57e03971-af5e-4036-8556-c660ea3529bb": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d9fb3d32-5029-43f1-be48-d13782fec9cc", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "57e03971-af5e-4036-8556-c660ea3529bb", + "Name": null, + "Wall Candidate": "367ba672-7e59-4ca1-ba24-70a0f9013d3c" + }, + "fb6e62b4-3098-4040-b23d-7d5cd94618b8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.077144906033283, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fb6e62b4-3098-4040-b23d-7d5cd94618b8", + "Name": null + }, + "8027e55f-5851-4a0f-982a-9a70c9cd54de": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.077144906033283, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.077144906033283, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.87714490603328, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8027e55f-5851-4a0f-982a-9a70c9cd54de", + "Name": null + }, + "83d19982-f63e-453b-88d5-f120513380a0": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8027e55f-5851-4a0f-982a-9a70c9cd54de", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "83d19982-f63e-453b-88d5-f120513380a0", + "Name": null, + "Wall Candidate": "979f34f3-62db-43c8-9699-3ef41a7b2aa6" + }, + "d852d2cf-420e-4ced-990c-4bba0684100c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.92714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.92714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d852d2cf-420e-4ced-990c-4bba0684100c", + "Name": null + }, + "b27a4e33-6858-4bd8-997f-b896689bb7e9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.92714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.92714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 27.027144906033282, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b27a4e33-6858-4bd8-997f-b896689bb7e9", + "Name": null + }, + "4c50918f-23f2-4699-baff-f050e91ccdff": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b27a4e33-6858-4bd8-997f-b896689bb7e9", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4c50918f-23f2-4699-baff-f050e91ccdff", + "Name": null, + "Wall Candidate": "8dd2240f-b6f9-406c-b428-f6204ec80c0b" + }, + "1a3a016e-cdb8-4ef7-ae68-da9c4969b070": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.101158175888525, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.101158175888525, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.201158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.201158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1a3a016e-cdb8-4ef7-ae68-da9c4969b070", + "Name": null + }, + "88d3b9e9-4c08-441f-9e51-05376cd8353d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.101158175888525, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.101158175888525, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.201158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.201158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "88d3b9e9-4c08-441f-9e51-05376cd8353d", + "Name": null + }, + "74aff557-336a-4741-b6d6-404904192567": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "88d3b9e9-4c08-441f-9e51-05376cd8353d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "74aff557-336a-4741-b6d6-404904192567", + "Name": null, + "Wall Candidate": "cb8c7d26-3f5f-46df-8caf-6246aafaad73" + }, + "92eb9890-eda9-4492-a1ef-dc6d075cfc76": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.77154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.77154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "92eb9890-eda9-4492-a1ef-dc6d075cfc76", + "Name": null + }, + "cdd927ad-337e-4f16-87a6-4281a963f676": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.82154, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.77154, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.77154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cdd927ad-337e-4f16-87a6-4281a963f676", + "Name": null + }, + "0938cac0-e64f-43d7-8a34-e700e0f4bf26": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cdd927ad-337e-4f16-87a6-4281a963f676", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0938cac0-e64f-43d7-8a34-e700e0f4bf26", + "Name": null, + "Wall Candidate": "c8cf25d6-9e0b-4d0b-9c03-346cd1f614c5" + }, + "6b1a769d-9b87-40ee-b7da-a215254630d8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b1a769d-9b87-40ee-b7da-a215254630d8", + "Name": null + }, + "f0ba520c-a0ea-43ec-b74d-08a153321cdd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6b1a769d-9b87-40ee-b7da-a215254630d8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6b1a769d-9b87-40ee-b7da-a215254630d8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f0ba520c-a0ea-43ec-b74d-08a153321cdd", + "Name": null + }, + "3bc650e9-76ca-4aec-80e2-eb5fcdde66f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f0ba520c-a0ea-43ec-b74d-08a153321cdd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3bc650e9-76ca-4aec-80e2-eb5fcdde66f9", + "Name": "Base Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "387fcbdb-2267-4047-8d7c-1828958b253b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f0ba520c-a0ea-43ec-b74d-08a153321cdd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "387fcbdb-2267-4047-8d7c-1828958b253b", + "Name": "Base Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "6650609b-2dfd-4669-b8f8-5dbd7bcc01b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f0ba520c-a0ea-43ec-b74d-08a153321cdd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "6650609b-2dfd-4669-b8f8-5dbd7bcc01b2", + "Name": "Base Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "c806f93b-ed05-4956-8baf-8d2a28198aa4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 26.97714, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c806f93b-ed05-4956-8baf-8d2a28198aa4", + "Name": "Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "5c67c3f1-c80f-418c-ad01-a781d28733f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 26.57714, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5c67c3f1-c80f-418c-ad01-a781d28733f1", + "Name": "Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "70df2d3c-aa50-40d5-9d03-bbc0fe4703fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 25.677139999999998, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "70df2d3c-aa50-40d5-9d03-bbc0fe4703fa", + "Name": "Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "64d1854c-aaef-4733-835c-532d5cf8acae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.15116, + 0.0, + -1.0, + 0.0, + 22.79654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "64d1854c-aaef-4733-835c-532d5cf8acae", + "Name": "Mullion", + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26" + }, + "73e7347f-55eb-4a8d-b07b-c00602bbb177": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.74654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "73e7347f-55eb-4a8d-b07b-c00602bbb177", + "Name": null + }, + "2cea16d8-e02b-461b-a967-c238f61b1b40": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.84654, + "Z": 0.0 + }, + { + "X": 23.15116, + "Y": 22.74654, + "Z": 0.0 + }, + { + "X": 26.97714, + "Y": 22.74654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2cea16d8-e02b-461b-a967-c238f61b1b40", + "Name": null + }, + "b1561e55-a9eb-4da2-a22d-315b6ae0b4e3": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 23.15116, + "Y": 22.79654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2cea16d8-e02b-461b-a967-c238f61b1b40", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b1561e55-a9eb-4da2-a22d-315b6ae0b4e3", + "Name": null, + "Wall": "0938cac0-e64f-43d7-8a34-e700e0f4bf26", + "Wall Candidate": "c8cf25d6-9e0b-4d0b-9c03-346cd1f614c5" + }, + "f0b2d081-89be-48bd-b563-d94cd2f2b19e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.168514844133462, + "Y": 28.886827376872887, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 30.97602999999984, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 30.976029999999778, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.886827376872823, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f0b2d081-89be-48bd-b563-d94cd2f2b19e", + "Name": null + }, + "521df57e-1ca0-4dd8-acb5-ebf87f417e87": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.168514844133462, + "Y": 28.886827376872887, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 30.97602999999984, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 30.976029999999778, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.886827376872823, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "521df57e-1ca0-4dd8-acb5-ebf87f417e87", + "Name": null + }, + "08138aa7-de96-46b8-ae52-addf42d10dae": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "521df57e-1ca0-4dd8-acb5-ebf87f417e87", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "08138aa7-de96-46b8-ae52-addf42d10dae", + "Name": null, + "Wall Candidate": "5068e55b-fcee-48a9-8a4e-d8d25ea98fa5" + }, + "d6babd93-6efc-4085-8c50-23fc458005f2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.27214, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.27214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.472140000000003, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.472140000000003, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d6babd93-6efc-4085-8c50-23fc458005f2", + "Name": null + }, + "0dface85-a6f7-4d25-b4cc-d61d79ed49e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.27214, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.27214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.472140000000003, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.472140000000003, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0dface85-a6f7-4d25-b4cc-d61d79ed49e5", + "Name": null + }, + "3cbd50c6-8f77-4f29-9677-47a6e4e6caa1": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0dface85-a6f7-4d25-b4cc-d61d79ed49e5", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3cbd50c6-8f77-4f29-9677-47a6e4e6caa1", + "Name": null, + "Wall Candidate": "76c5830b-2f99-4b79-a62a-c0e76d2d5695" + }, + "58a602a6-525a-4c22-91ff-cc7b7e6bc346": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.986827376872856, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "58a602a6-525a-4c22-91ff-cc7b7e6bc346", + "Name": null + }, + "e625a865-c8fb-4a4f-861f-b20427705ef2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.786827376872854, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.986827376872856, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.986827376872856, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e625a865-c8fb-4a4f-861f-b20427705ef2", + "Name": null + }, + "7214c1be-97fb-416d-a8c3-cdcbff94b510": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e625a865-c8fb-4a4f-861f-b20427705ef2", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7214c1be-97fb-416d-a8c3-cdcbff94b510", + "Name": null, + "Wall Candidate": "a2bad3c8-32dd-45e5-b3b5-6f08e83f4df0" + }, + "3a3e75a6-4e53-405e-9b67-ef08bbc3e6a9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.01851484413357, + "Y": 30.976029999999813, + "Z": 0.0 + }, + { + "X": 23.01851484413346, + "Y": 28.886827376872667, + "Z": 0.0 + }, + { + "X": 23.11851484413346, + "Y": 28.88682737687266, + "Z": 0.0 + }, + { + "X": 23.11851484413357, + "Y": 30.976029999999806, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3a3e75a6-4e53-405e-9b67-ef08bbc3e6a9", + "Name": null + }, + "9110c2ef-4302-4cf4-a832-e97593dc8612": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.01851484413357, + "Y": 30.976029999999813, + "Z": 0.0 + }, + { + "X": 23.01851484413346, + "Y": 28.886827376872667, + "Z": 0.0 + }, + { + "X": 23.11851484413346, + "Y": 28.88682737687266, + "Z": 0.0 + }, + { + "X": 23.11851484413357, + "Y": 30.976029999999806, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9110c2ef-4302-4cf4-a832-e97593dc8612", + "Name": null + }, + "1504a68b-ce78-49c6-8adb-08adf75227db": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413357, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872663, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9110c2ef-4302-4cf4-a832-e97593dc8612", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1504a68b-ce78-49c6-8adb-08adf75227db", + "Name": null, + "Wall Candidate": "43979d0a-0d5c-4353-a05b-4c625655456d" + }, + "ff65ceab-1350-4177-a55f-599f09255458": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 30.976030000000005, + "Z": 0.0 + }, + { + "X": 19.32213999999989, + "Y": 28.88682737687286, + "Z": 0.0 + }, + { + "X": 19.422139999999892, + "Y": 28.88682737687285, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 30.976029999999998, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ff65ceab-1350-4177-a55f-599f09255458", + "Name": null + }, + "5ba997c9-b166-4bc5-85cd-119639208e0c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.32214, + "Y": 30.976030000000005, + "Z": 0.0 + }, + { + "X": 19.32213999999989, + "Y": 28.88682737687286, + "Z": 0.0 + }, + { + "X": 19.422139999999892, + "Y": 28.88682737687285, + "Z": 0.0 + }, + { + "X": 19.422140000000002, + "Y": 30.976029999999998, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5ba997c9-b166-4bc5-85cd-119639208e0c", + "Name": null + }, + "d888d232-c051-4646-a6e5-efd3a23248cf": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999989, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5ba997c9-b166-4bc5-85cd-119639208e0c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d888d232-c051-4646-a6e5-efd3a23248cf", + "Name": null, + "Wall Candidate": "77d88794-4222-4a74-ba55-c317f7f92d03" + }, + "6f6b9771-5255-461c-8961-505e7b63936c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06852000000161, + "Y": 31.001039999998802, + "Z": 0.0 + }, + { + "X": 19.37214000000161, + "Y": 31.001039999998994, + "Z": 0.0 + }, + { + "X": 19.37214000000161, + "Y": 30.951039999998997, + "Z": 0.0 + }, + { + "X": 23.06852000000161, + "Y": 30.951039999998805, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6f6b9771-5255-461c-8961-505e7b63936c", + "Name": null + }, + "d5b81bd2-d8bc-448a-9a57-34cf4805ff13": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06852000000161, + "Y": 31.001039999998802, + "Z": 0.0 + }, + { + "X": 19.37214000000161, + "Y": 31.001039999998994, + "Z": 0.0 + }, + { + "X": 19.37214000000161, + "Y": 30.951039999998997, + "Z": 0.0 + }, + { + "X": 23.06852000000161, + "Y": 30.951039999998805, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d5b81bd2-d8bc-448a-9a57-34cf4805ff13", + "Name": null + }, + "2226d9f3-8ad3-4567-a8e2-c116b65dc47d": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d5b81bd2-d8bc-448a-9a57-34cf4805ff13", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d", + "Name": null, + "Wall Candidate": "a9ad5cb7-c552-4923-9a7b-5a1ef65a67bc" + }, + "1ab080fe-7fe8-4f57-94c2-34c4556b79c7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1ab080fe-7fe8-4f57-94c2-34c4556b79c7", + "Name": null + }, + "e7410fbe-7351-4563-b257-dc557d28ec51": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1ab080fe-7fe8-4f57-94c2-34c4556b79c7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1ab080fe-7fe8-4f57-94c2-34c4556b79c7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e7410fbe-7351-4563-b257-dc557d28ec51", + "Name": null + }, + "241e862c-c3f6-40b2-ac8b-dc2731e58dc7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e7410fbe-7351-4563-b257-dc557d28ec51", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "241e862c-c3f6-40b2-ac8b-dc2731e58dc7", + "Name": "Base Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "5fd6e68f-ef2c-4ca0-890c-45adef6540e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e7410fbe-7351-4563-b257-dc557d28ec51", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "5fd6e68f-ef2c-4ca0-890c-45adef6540e8", + "Name": "Base Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "0a6da7f0-64dd-42b5-8ec7-e5117b03cc78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e7410fbe-7351-4563-b257-dc557d28ec51", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "0a6da7f0-64dd-42b5-8ec7-e5117b03cc78", + "Name": "Base Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "75f6b5cc-b543-4640-af89-0bb176442b77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.190119485962676E-14, + 0.0, + 23.06852000000161, + 5.190119485962676E-14, + -1.0, + 0.0, + 30.976039999998804, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "75f6b5cc-b543-4640-af89-0bb176442b77", + "Name": "Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "3946ed7b-f8bf-4aa5-934d-4baa12f219b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.190119485962676E-14, + 0.0, + 22.66852000000161, + 5.190119485962676E-14, + -1.0, + 0.0, + 30.976039999998825, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3946ed7b-f8bf-4aa5-934d-4baa12f219b2", + "Name": "Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "63de3c9c-1bfd-4f36-94ba-90606e551c68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.190119485962676E-14, + 0.0, + 21.768520000001608, + 5.190119485962676E-14, + -1.0, + 0.0, + 30.97603999999887, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "63de3c9c-1bfd-4f36-94ba-90606e551c68", + "Name": "Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "ceeae2c7-0437-460c-88da-e69e05aa6f3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.190119485962676E-14, + 0.0, + 19.37214000000161, + 5.190119485962676E-14, + -1.0, + 0.0, + 30.976039999998996, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ceeae2c7-0437-460c-88da-e69e05aa6f3a", + "Name": "Mullion", + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d" + }, + "448e28a3-6ee8-4888-a63e-e794fe70558a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.068520000001612, + "Y": 31.026039999998805, + "Z": 0.0 + }, + { + "X": 19.372140000001615, + "Y": 31.026039999998996, + "Z": 0.0 + }, + { + "X": 19.372140000001608, + "Y": 30.926039999998995, + "Z": 0.0 + }, + { + "X": 23.068520000001605, + "Y": 30.926039999998803, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "448e28a3-6ee8-4888-a63e-e794fe70558a", + "Name": null + }, + "03545f65-53bc-4c2e-958f-d965475fd99b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.068520000001612, + "Y": 31.026039999998805, + "Z": 0.0 + }, + { + "X": 19.372140000001615, + "Y": 31.026039999998996, + "Z": 0.0 + }, + { + "X": 19.372140000001608, + "Y": 30.926039999998995, + "Z": 0.0 + }, + { + "X": 23.068520000001605, + "Y": 30.926039999998803, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "03545f65-53bc-4c2e-958f-d965475fd99b", + "Name": null + }, + "c7abaf96-dba5-4429-8b6a-fd0f638aa508": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06852000000161, + "Y": 30.976039999998804, + "Z": 0.0 + }, + "End": { + "X": 19.37214000000161, + "Y": 30.976039999998996, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "03545f65-53bc-4c2e-958f-d965475fd99b", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c7abaf96-dba5-4429-8b6a-fd0f638aa508", + "Name": null, + "Wall": "2226d9f3-8ad3-4567-a8e2-c116b65dc47d", + "Wall Candidate": "a9ad5cb7-c552-4923-9a7b-5a1ef65a67bc" + }, + "b7238259-f007-4d76-8ad6-c3ab7d317b1c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.34037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 71.34037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.14037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.14037, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b7238259-f007-4d76-8ad6-c3ab7d317b1c", + "Name": null + }, + "cba208cc-a27b-45c8-8754-09a6cbde4559": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.34037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 71.34037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.14037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.14037, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cba208cc-a27b-45c8-8754-09a6cbde4559", + "Name": null + }, + "ec7130de-9caf-4bf1-93eb-948fc7830763": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cba208cc-a27b-45c8-8754-09a6cbde4559", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ec7130de-9caf-4bf1-93eb-948fc7830763", + "Name": null, + "Wall Candidate": "b7775c40-b4af-4088-a4f5-60bd81724b53" + }, + "a760d940-ed65-44e8-8187-39ad71d9d7a8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.65310067913572, + "Y": 30.9760300000017, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.826239275211012, + "Z": 0.0 + }, + { + "X": 67.85310067913414, + "Y": 28.82623927521087, + "Z": 0.0 + }, + { + "X": 67.85310067913571, + "Y": 30.976030000001558, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a760d940-ed65-44e8-8187-39ad71d9d7a8", + "Name": null + }, + "854ad9af-997d-40bf-9c60-5e92457928dd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.65310067913572, + "Y": 30.9760300000017, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.826239275211012, + "Z": 0.0 + }, + { + "X": 67.85310067913414, + "Y": 28.82623927521087, + "Z": 0.0 + }, + { + "X": 67.85310067913571, + "Y": 30.976030000001558, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "854ad9af-997d-40bf-9c60-5e92457928dd", + "Name": null + }, + "8a015483-56ec-47c1-abfe-d45b45fc2b1d": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "854ad9af-997d-40bf-9c60-5e92457928dd", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8a015483-56ec-47c1-abfe-d45b45fc2b1d", + "Name": null, + "Wall Candidate": "f1c36cde-69a5-47b7-b6e7-09ee799ee316" + }, + "eb0d7a11-a9e2-468f-b0e9-dc47db6d3f3a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.72623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.72623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.926239275210943, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.926239275210943, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "eb0d7a11-a9e2-468f-b0e9-dc47db6d3f3a", + "Name": null + }, + "a570faaa-445e-4cda-ab9a-139ce9eed48f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.72623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.72623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.926239275210943, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.926239275210943, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a570faaa-445e-4cda-ab9a-139ce9eed48f", + "Name": null + }, + "da5fb630-174e-470a-836f-aba597904657": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a570faaa-445e-4cda-ab9a-139ce9eed48f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "da5fb630-174e-470a-836f-aba597904657", + "Name": null, + "Wall Candidate": "b93dce16-7927-4a97-9de6-c2ce3bc2ff20" + }, + "cca22742-7b58-4cf1-ad03-11ab78793053": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.19037000000101, + "Y": 30.976030000000026, + "Z": 0.0 + }, + { + "X": 71.19037, + "Y": 28.82623927520934, + "Z": 0.0 + }, + { + "X": 71.29037, + "Y": 28.82623927520929, + "Z": 0.0 + }, + { + "X": 71.290370000001, + "Y": 30.976029999999977, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cca22742-7b58-4cf1-ad03-11ab78793053", + "Name": null + }, + "9c9d169b-9915-4c2b-b237-a189188ed9e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.19037000000101, + "Y": 30.976030000000026, + "Z": 0.0 + }, + { + "X": 71.19037, + "Y": 28.82623927520934, + "Z": 0.0 + }, + { + "X": 71.29037, + "Y": 28.82623927520929, + "Z": 0.0 + }, + { + "X": 71.290370000001, + "Y": 30.976029999999977, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9c9d169b-9915-4c2b-b237-a189188ed9e5", + "Name": null + }, + "4efb2554-f814-4b34-af0b-0f91c61f2cea": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037000000101, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.826239275209314, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9c9d169b-9915-4c2b-b237-a189188ed9e5", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4efb2554-f814-4b34-af0b-0f91c61f2cea", + "Name": null, + "Wall Candidate": "0d6730ec-1d67-4014-a31a-b33015bcd76f" + }, + "20f3ecf5-4262-4a7e-82b9-107fbad8edda": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.70310067913516, + "Y": 30.976030000001654, + "Z": 0.0 + }, + { + "X": 67.70310067913415, + "Y": 28.826239275210966, + "Z": 0.0 + }, + { + "X": 67.80310067913415, + "Y": 28.826239275210916, + "Z": 0.0 + }, + { + "X": 67.80310067913516, + "Y": 30.976030000001604, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "20f3ecf5-4262-4a7e-82b9-107fbad8edda", + "Name": null + }, + "17e0f632-1987-422e-818d-815e733a7057": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.70310067913516, + "Y": 30.976030000001654, + "Z": 0.0 + }, + { + "X": 67.70310067913415, + "Y": 28.826239275210966, + "Z": 0.0 + }, + { + "X": 67.80310067913415, + "Y": 28.826239275210916, + "Z": 0.0 + }, + { + "X": 67.80310067913516, + "Y": 30.976030000001604, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "17e0f632-1987-422e-818d-815e733a7057", + "Name": null + }, + "1f149a24-c400-4601-bfda-76dfab509f3b": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913516, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "17e0f632-1987-422e-818d-815e733a7057", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1f149a24-c400-4601-bfda-76dfab509f3b", + "Name": null, + "Wall Candidate": "660804c5-90e3-4f35-8e9e-2bbaba9c9e00" + }, + "441f74cb-3ac1-4820-a2e8-bcf9f8bba7ed": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24036000001446, + "Y": 31.00103999996676, + "Z": 0.0 + }, + { + "X": 67.75310000001447, + "Y": 31.001039999968388, + "Z": 0.0 + }, + { + "X": 67.75310000001444, + "Y": 30.95103999996839, + "Z": 0.0 + }, + { + "X": 71.24036000001443, + "Y": 30.951039999966763, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "441f74cb-3ac1-4820-a2e8-bcf9f8bba7ed", + "Name": null + }, + "f133b001-e762-48ad-ac0c-f5a6df8642d6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24036000001446, + "Y": 31.00103999996676, + "Z": 0.0 + }, + { + "X": 67.75310000001447, + "Y": 31.001039999968388, + "Z": 0.0 + }, + { + "X": 67.75310000001444, + "Y": 30.95103999996839, + "Z": 0.0 + }, + { + "X": 71.24036000001443, + "Y": 30.951039999966763, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f133b001-e762-48ad-ac0c-f5a6df8642d6", + "Name": null + }, + "a685c198-48d1-409f-aff2-098bdda65ed8": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f133b001-e762-48ad-ac0c-f5a6df8642d6", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a685c198-48d1-409f-aff2-098bdda65ed8", + "Name": null, + "Wall Candidate": "42aeff98-7b58-421b-9456-051ed888ad6d" + }, + "20005a3d-cef3-4058-9fd9-6709b79ecf65": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "20005a3d-cef3-4058-9fd9-6709b79ecf65", + "Name": null + }, + "8fead0d6-81ba-4883-afb6-404293e98f49": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "20005a3d-cef3-4058-9fd9-6709b79ecf65", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "20005a3d-cef3-4058-9fd9-6709b79ecf65", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "8fead0d6-81ba-4883-afb6-404293e98f49", + "Name": null + }, + "de81868d-d421-4670-8233-23cff5c5fd85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8fead0d6-81ba-4883-afb6-404293e98f49", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "de81868d-d421-4670-8233-23cff5c5fd85", + "Name": "Base Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "f41c5310-f995-4ce0-b93c-65ba68a2fc1c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8fead0d6-81ba-4883-afb6-404293e98f49", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "f41c5310-f995-4ce0-b93c-65ba68a2fc1c", + "Name": "Base Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "fb9fddf4-a95d-4600-a653-a081171ca63c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "8fead0d6-81ba-4883-afb6-404293e98f49", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "fb9fddf4-a95d-4600-a653-a081171ca63c", + "Name": "Base Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "655beaac-ef1a-4c69-a881-833ea953f156": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.66596372192103E-13, + 0.0, + 71.24036000001445, + 4.66596372192103E-13, + -1.0, + 0.0, + 30.976039999966762, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "655beaac-ef1a-4c69-a881-833ea953f156", + "Name": "Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "82d1a649-3bf7-4f9c-a410-b79b7a37696c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.66596372192103E-13, + 0.0, + 70.84036000001444, + 4.66596372192103E-13, + -1.0, + 0.0, + 30.97603999996695, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "82d1a649-3bf7-4f9c-a410-b79b7a37696c", + "Name": "Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "8e966680-2223-464c-add7-70fd71e1668e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.66596372192103E-13, + 0.0, + 69.94036000001445, + 4.66596372192103E-13, + -1.0, + 0.0, + 30.97603999996737, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e966680-2223-464c-add7-70fd71e1668e", + "Name": "Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "5bda980a-7ab8-4120-9b53-f0110bc71546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -4.66596372192103E-13, + 0.0, + 67.75310000001446, + 4.66596372192103E-13, + -1.0, + 0.0, + 30.97603999996839, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bda980a-7ab8-4120-9b53-f0110bc71546", + "Name": "Mullion", + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8" + }, + "2a8dcda1-3c09-415c-9d34-2c2b439a62b2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24036000001448, + "Y": 31.026039999966763, + "Z": 0.0 + }, + { + "X": 67.75310000001448, + "Y": 31.02603999996839, + "Z": 0.0 + }, + { + "X": 67.75310000001443, + "Y": 30.92603999996839, + "Z": 0.0 + }, + { + "X": 71.24036000001442, + "Y": 30.92603999996676, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2a8dcda1-3c09-415c-9d34-2c2b439a62b2", + "Name": null + }, + "527b50ba-7092-4751-bed0-0c8f0e3e82fb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24036000001448, + "Y": 31.026039999966763, + "Z": 0.0 + }, + { + "X": 67.75310000001448, + "Y": 31.02603999996839, + "Z": 0.0 + }, + { + "X": 67.75310000001443, + "Y": 30.92603999996839, + "Z": 0.0 + }, + { + "X": 71.24036000001442, + "Y": 30.92603999996676, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "527b50ba-7092-4751-bed0-0c8f0e3e82fb", + "Name": null + }, + "63168e9f-f5db-4185-8a59-4047efd18484": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036000001445, + "Y": 30.976039999966762, + "Z": 0.0 + }, + "End": { + "X": 67.75310000001446, + "Y": 30.97603999996839, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "527b50ba-7092-4751-bed0-0c8f0e3e82fb", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "63168e9f-f5db-4185-8a59-4047efd18484", + "Name": null, + "Wall": "a685c198-48d1-409f-aff2-098bdda65ed8", + "Wall Candidate": "42aeff98-7b58-421b-9456-051ed888ad6d" + }, + "2204997c-587a-4876-99dc-3a54ab1089cd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.71092999999999, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.71092999999999, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.76093, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.76093, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2204997c-587a-4876-99dc-3a54ab1089cd", + "Name": null + }, + "d10967c7-e712-4d13-b8cd-4483bab1c08c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.71092999999999, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.71092999999999, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.76093, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.76093, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d10967c7-e712-4d13-b8cd-4483bab1c08c", + "Name": null + }, + "b2b15628-bd17-4122-a6fc-979915c0c883": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d10967c7-e712-4d13-b8cd-4483bab1c08c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b2b15628-bd17-4122-a6fc-979915c0c883", + "Name": null, + "Wall Candidate": "9d8a3a64-1eff-4ffe-b0ce-229775432170" + }, + "71813120-1bab-4bac-800f-8b7a24460356": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "71813120-1bab-4bac-800f-8b7a24460356", + "Name": null + }, + "f7e48c31-3a5e-44fd-8ac5-a4b14ad1c389": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "71813120-1bab-4bac-800f-8b7a24460356", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "71813120-1bab-4bac-800f-8b7a24460356", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f7e48c31-3a5e-44fd-8ac5-a4b14ad1c389", + "Name": null + }, + "1ca2ee76-eb78-47c4-acbb-167915c34ec6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f7e48c31-3a5e-44fd-8ac5-a4b14ad1c389", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1ca2ee76-eb78-47c4-acbb-167915c34ec6", + "Name": "Base Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "d7a91a10-a427-4087-82db-72386803428b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f7e48c31-3a5e-44fd-8ac5-a4b14ad1c389", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "d7a91a10-a427-4087-82db-72386803428b", + "Name": "Base Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "0740f057-b62a-4eef-8a06-e9f686be3d1a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f7e48c31-3a5e-44fd-8ac5-a4b14ad1c389", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "0740f057-b62a-4eef-8a06-e9f686be3d1a", + "Name": "Base Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "5467efbb-e057-4229-b26e-e2a4c8476046": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 81.73593, + -1.0, + 0.0, + 0.0, + 40.86957014633645, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5467efbb-e057-4229-b26e-e2a4c8476046", + "Name": "Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "fa75c4a0-6467-420f-a613-8fa7d6b4e959": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 81.73593, + -1.0, + 0.0, + 0.0, + 40.46957014633645, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fa75c4a0-6467-420f-a613-8fa7d6b4e959", + "Name": "Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "0571f421-4a27-420f-9c58-933c1d573789": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 81.73593, + -1.0, + 0.0, + 0.0, + 39.56957014633645, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0571f421-4a27-420f-9c58-933c1d573789", + "Name": "Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "ffd92c9e-f8a6-432c-b510-284ee741769d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 81.73593, + -1.0, + 0.0, + 0.0, + 37.24859380829531, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ffd92c9e-f8a6-432c-b510-284ee741769d", + "Name": "Mullion", + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883" + }, + "50b045c6-ab1a-4937-bcf7-17e597870951": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.68593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.68593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.78593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.78593, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "50b045c6-ab1a-4937-bcf7-17e597870951", + "Name": null + }, + "2ef91978-61a9-4443-ab66-ba31aeabdece": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.68593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.68593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.78593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.78593, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2ef91978-61a9-4443-ab66-ba31aeabdece", + "Name": null + }, + "afb9ae8a-5e98-4667-bac7-4c77700153c2": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2ef91978-61a9-4443-ab66-ba31aeabdece", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "afb9ae8a-5e98-4667-bac7-4c77700153c2", + "Name": null, + "Wall": "b2b15628-bd17-4122-a6fc-979915c0c883", + "Wall Candidate": "9d8a3a64-1eff-4ffe-b0ce-229775432170" + }, + "d0fe401b-3ee3-43d5-8440-92e7a45ce852": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.96957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.96957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.76957014633645, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 40.76957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d0fe401b-3ee3-43d5-8440-92e7a45ce852", + "Name": null + }, + "8e9529b3-b579-454a-9c8c-2878dd7e753f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.96957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.96957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.76957014633645, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 40.76957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8e9529b3-b579-454a-9c8c-2878dd7e753f", + "Name": null + }, + "44bd064e-9e38-4ae5-80e6-05737e4e5082": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8e9529b3-b579-454a-9c8c-2878dd7e753f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "44bd064e-9e38-4ae5-80e6-05737e4e5082", + "Name": null, + "Wall Candidate": "e35140f3-b92c-4ebf-9bda-7b16d6c9d802" + }, + "1d12ad46-e385-4666-9ac4-0f5910fb3b7e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.14859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.14859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.34859380829531, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 37.34859380829531, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1d12ad46-e385-4666-9ac4-0f5910fb3b7e", + "Name": null + }, + "f5b39dde-2640-4ee4-a492-cdb180afb455": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.14859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.14859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.34859380829531, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 37.34859380829531, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f5b39dde-2640-4ee4-a492-cdb180afb455", + "Name": null + }, + "02aaf3b3-95d9-4405-93f8-3612093a17ec": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f5b39dde-2640-4ee4-a492-cdb180afb455", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "02aaf3b3-95d9-4405-93f8-3612093a17ec", + "Name": null, + "Wall Candidate": "0a80f791-0cab-449f-bfd4-14f2a3865b93" + }, + "5383a8a5-a73d-4ab8-a14f-43b67eee2a81": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.38042, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.38042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5383a8a5-a73d-4ab8-a14f-43b67eee2a81", + "Name": null + }, + "f285b18a-99ec-47d4-a007-4b9379de80bc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.38042, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.38042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f285b18a-99ec-47d4-a007-4b9379de80bc", + "Name": null + }, + "9d274837-1be2-4da3-9c13-1334aad2fb9f": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f285b18a-99ec-47d4-a007-4b9379de80bc", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9d274837-1be2-4da3-9c13-1334aad2fb9f", + "Name": null, + "Wall Candidate": "aa55dcc6-d4bd-4759-9253-5d6b45c288e9" + }, + "804f8c11-6c3f-4272-b4e5-5ce66ffd97bf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.953837808158454, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 22.953837808158454, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 50.48042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "804f8c11-6c3f-4272-b4e5-5ce66ffd97bf", + "Name": null + }, + "9f904d2d-7b67-42a1-bdc4-bb5f7e9a9a1d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.953837808158454, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 22.953837808158454, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 50.48042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9f904d2d-7b67-42a1-bdc4-bb5f7e9a9a1d", + "Name": null + }, + "09b79790-37cf-4b40-b003-df54dff54b4e": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9f904d2d-7b67-42a1-bdc4-bb5f7e9a9a1d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "09b79790-37cf-4b40-b003-df54dff54b4e", + "Name": null, + "Wall Candidate": "4e43fa83-5ffb-49b8-8a2f-e9083eff3fdb" + }, + "fc65fc3a-8ff9-43cb-a0ae-15f194451cc7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.953837808158454, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 22.953837808158454, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc65fc3a-8ff9-43cb-a0ae-15f194451cc7", + "Name": null + }, + "d27b916f-9838-4f0a-a50d-8d94416de2bb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.953837808158454, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 22.953837808158454, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.153837808158457, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d27b916f-9838-4f0a-a50d-8d94416de2bb", + "Name": null + }, + "c31691aa-18ac-4013-91d1-77b38474e2ef": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d27b916f-9838-4f0a-a50d-8d94416de2bb", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c31691aa-18ac-4013-91d1-77b38474e2ef", + "Name": null, + "Wall Candidate": "81a1a349-86fc-4155-8939-4fc4445e1423" + }, + "500b214b-53dd-41b7-81d6-84260af1a19b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158445, + "Y": 43.64845000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231587, + "Y": 43.64844999999841, + "Z": 0.0 + }, + { + "X": 26.955298089231608, + "Y": 43.69844999999841, + "Z": 0.0 + }, + { + "X": 23.053837808158466, + "Y": 43.69845000000023, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "500b214b-53dd-41b7-81d6-84260af1a19b", + "Name": null + }, + "df7b6682-c236-4048-ac02-e3e2619096a1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158445, + "Y": 43.64845000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231587, + "Y": 43.64844999999841, + "Z": 0.0 + }, + { + "X": 26.955298089231608, + "Y": 43.69844999999841, + "Z": 0.0 + }, + { + "X": 23.053837808158466, + "Y": 43.69845000000023, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "df7b6682-c236-4048-ac02-e3e2619096a1", + "Name": null + }, + "b8993bce-19dc-4b16-84fe-eecd4091442a": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "df7b6682-c236-4048-ac02-e3e2619096a1", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b8993bce-19dc-4b16-84fe-eecd4091442a", + "Name": null, + "Wall Candidate": "4f41130c-91e0-4c37-a6fd-50375d6625a7" + }, + "b47fffe5-92b6-45a7-9007-9524a3231a9f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b47fffe5-92b6-45a7-9007-9524a3231a9f", + "Name": null + }, + "d5748369-b21b-41d1-a5ae-3c56862fbcd1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b47fffe5-92b6-45a7-9007-9524a3231a9f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b47fffe5-92b6-45a7-9007-9524a3231a9f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d5748369-b21b-41d1-a5ae-3c56862fbcd1", + "Name": null + }, + "9ffff3db-9246-4f75-8616-a9ad18ad1492": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d5748369-b21b-41d1-a5ae-3c56862fbcd1", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9ffff3db-9246-4f75-8616-a9ad18ad1492", + "Name": "Base Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "85beb705-47d7-4c78-90c9-5208b5fe9ac5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d5748369-b21b-41d1-a5ae-3c56862fbcd1", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "85beb705-47d7-4c78-90c9-5208b5fe9ac5", + "Name": "Base Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "ddc23086-5281-4466-a44d-663253ad5bdb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d5748369-b21b-41d1-a5ae-3c56862fbcd1", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "ddc23086-5281-4466-a44d-663253ad5bdb", + "Name": "Base Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "710a2d51-9371-4146-89c1-903b98d68e85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.662329672738645E-13, + 0.0, + 23.053837808158455, + -4.662329672738645E-13, + 1.0, + 0.0, + 43.67345000000023, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "710a2d51-9371-4146-89c1-903b98d68e85", + "Name": "Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "9acd6c5c-dc9e-4af2-945f-c929bcd8226a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.662329672738645E-13, + 0.0, + 23.453837808158454, + -4.662329672738645E-13, + 1.0, + 0.0, + 43.673450000000045, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9acd6c5c-dc9e-4af2-945f-c929bcd8226a", + "Name": "Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "38a70b8b-0a7e-409c-9866-880ed15e4f9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.662329672738645E-13, + 0.0, + 24.353837808158456, + -4.662329672738645E-13, + 1.0, + 0.0, + 43.673449999999626, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "38a70b8b-0a7e-409c-9866-880ed15e4f9f", + "Name": "Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "9c2f68e2-8300-4520-acc7-389632a99959": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.662329672738645E-13, + 0.0, + 26.955298089231597, + -4.662329672738645E-13, + 1.0, + 0.0, + 43.67344999999841, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9c2f68e2-8300-4520-acc7-389632a99959", + "Name": "Mullion", + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a" + }, + "a50f8c1a-94b8-4197-a14e-0b23d48d714f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.05383780815843, + "Y": 43.62345000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231572, + "Y": 43.623449999998414, + "Z": 0.0 + }, + { + "X": 26.955298089231622, + "Y": 43.72344999999841, + "Z": 0.0 + }, + { + "X": 23.05383780815848, + "Y": 43.72345000000023, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a50f8c1a-94b8-4197-a14e-0b23d48d714f", + "Name": null + }, + "cec39e38-8553-45fe-87b2-79a743204d05": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.05383780815843, + "Y": 43.62345000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231572, + "Y": 43.623449999998414, + "Z": 0.0 + }, + { + "X": 26.955298089231622, + "Y": 43.72344999999841, + "Z": 0.0 + }, + { + "X": 23.05383780815848, + "Y": 43.72345000000023, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cec39e38-8553-45fe-87b2-79a743204d05", + "Name": null + }, + "21e4ae09-2dc9-4715-9889-2b858a440d99": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cec39e38-8553-45fe-87b2-79a743204d05", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "21e4ae09-2dc9-4715-9889-2b858a440d99", + "Name": null, + "Wall": "b8993bce-19dc-4b16-84fe-eecd4091442a", + "Wall Candidate": "4f41130c-91e0-4c37-a6fd-50375d6625a7" + }, + "b9dc8592-c15f-4b24-aa25-d78bcd5cd063": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.0552980892316, + "Y": 43.67344999999842, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.07693499999922, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 43.673449999998404, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b9dc8592-c15f-4b24-aa25-d78bcd5cd063", + "Name": null + }, + "953e6aa1-5d1f-42a0-9d58-d9f05be79a7a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.0552980892316, + "Y": 43.67344999999842, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.07693499999922, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 43.673449999998404, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "953e6aa1-5d1f-42a0-9d58-d9f05be79a7a", + "Name": null + }, + "aed2079b-a6ab-4976-9d72-25b0b4f93726": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "953e6aa1-5d1f-42a0-9d58-d9f05be79a7a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aed2079b-a6ab-4976-9d72-25b0b4f93726", + "Name": null, + "Wall Candidate": "60dc56a9-412b-4edc-a5e8-916ff1ac6cda" + }, + "79934085-f44e-4ffd-9079-3596526b4267": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.055298089231293, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 50.480419999999995, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 50.48042000000001, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.07693499999922, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "79934085-f44e-4ffd-9079-3596526b4267", + "Name": null + }, + "92cf2dc6-a940-4b1a-84c6-c22dbf864d41": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 27.055298089231293, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 50.480419999999995, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 50.48042000000001, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.07693499999922, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "92cf2dc6-a940-4b1a-84c6-c22dbf864d41", + "Name": null + }, + "e86a8239-7241-4548-94ab-4069eb7e3a03": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "92cf2dc6-a940-4b1a-84c6-c22dbf864d41", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e86a8239-7241-4548-94ab-4069eb7e3a03", + "Name": null, + "Wall Candidate": "9bcc673d-2ed5-46e7-8230-92ed9617db09" + }, + "bd14588f-c12e-4e4b-8b65-e86953a3ca78": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923164, + "Y": 43.57344999999841, + "Z": 0.0 + }, + { + "X": 30.62673000000004, + "Y": 43.57345, + "Z": 0.0 + }, + { + "X": 30.626729999999956, + "Y": 43.773450000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231555, + "Y": 43.77344999999841, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bd14588f-c12e-4e4b-8b65-e86953a3ca78", + "Name": null + }, + "36e309d6-21ca-4ee6-817e-471891c90b19": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923164, + "Y": 43.57344999999841, + "Z": 0.0 + }, + { + "X": 30.62673000000004, + "Y": 43.57345, + "Z": 0.0 + }, + { + "X": 30.626729999999956, + "Y": 43.773450000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231555, + "Y": 43.77344999999841, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "36e309d6-21ca-4ee6-817e-471891c90b19", + "Name": null + }, + "c5cbd8d2-dfae-41cc-b505-bac384546b0f": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "36e309d6-21ca-4ee6-817e-471891c90b19", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c5cbd8d2-dfae-41cc-b505-bac384546b0f", + "Name": null, + "Wall Candidate": "62297d3e-8314-4c2a-865f-c89dc62c90d7" + }, + "7eb3fd6d-27ac-44c6-8a66-ed191bb0499c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.85529808923129, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 43.673449999998404, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 43.67344999999842, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.07693499999922, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7eb3fd6d-27ac-44c6-8a66-ed191bb0499c", + "Name": null + }, + "2529badd-0123-4dc4-84f8-c32a7a854486": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.85529808923129, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 26.855298089231596, + "Y": 43.673449999998404, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 43.67344999999842, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.07693499999922, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2529badd-0123-4dc4-84f8-c32a7a854486", + "Name": null + }, + "cb11a34f-cce0-41dd-8cde-5b53077019f7": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2529badd-0123-4dc4-84f8-c32a7a854486", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cb11a34f-cce0-41dd-8cde-5b53077019f7", + "Name": null, + "Wall Candidate": "04fccea5-80d9-4cce-9d70-9e398595fe15" + }, + "2da77f93-3e6a-47ee-85b9-48b5d486dca3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.651729999999997, + "Y": 43.67344999999999, + "Z": 0.0 + }, + { + "X": 30.65173000000177, + "Y": 47.076934999999196, + "Z": 0.0 + }, + { + "X": 30.601730000001773, + "Y": 47.076934999999224, + "Z": 0.0 + }, + { + "X": 30.60173, + "Y": 43.67345000000002, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2da77f93-3e6a-47ee-85b9-48b5d486dca3", + "Name": null + }, + "d6b25215-cd81-4c03-a57f-3e223fa26e8f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.651729999999997, + "Y": 43.67344999999999, + "Z": 0.0 + }, + { + "X": 30.65173000000177, + "Y": 47.076934999999196, + "Z": 0.0 + }, + { + "X": 30.601730000001773, + "Y": 47.076934999999224, + "Z": 0.0 + }, + { + "X": 30.60173, + "Y": 43.67345000000002, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d6b25215-cd81-4c03-a57f-3e223fa26e8f", + "Name": null + }, + "e1d1f1e7-499f-491a-b441-6bd2661f9816": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d6b25215-cd81-4c03-a57f-3e223fa26e8f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e1d1f1e7-499f-491a-b441-6bd2661f9816", + "Name": null, + "Wall Candidate": "e721daa3-9bdb-4247-bb59-543a3b63fe6b" + }, + "b95a57aa-231a-4a30-b7e0-50e2642bfa65": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b95a57aa-231a-4a30-b7e0-50e2642bfa65", + "Name": null + }, + "05be5810-0bcc-415d-9a20-587b5db111d8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b95a57aa-231a-4a30-b7e0-50e2642bfa65", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b95a57aa-231a-4a30-b7e0-50e2642bfa65", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "05be5810-0bcc-415d-9a20-587b5db111d8", + "Name": null + }, + "5414f901-9b3d-4528-9661-079e0de245e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "05be5810-0bcc-415d-9a20-587b5db111d8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5414f901-9b3d-4528-9661-079e0de245e4", + "Name": "Base Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "a0498270-bc12-4f08-ade5-4bc99493c5c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "05be5810-0bcc-415d-9a20-587b5db111d8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "a0498270-bc12-4f08-ade5-4bc99493c5c8", + "Name": "Base Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "86822e76-dfdd-4b57-8698-383482791374": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "05be5810-0bcc-415d-9a20-587b5db111d8", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "86822e76-dfdd-4b57-8698-383482791374", + "Name": "Base Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "f2b87588-313a-464b-ad30-a665907739eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 5.208790770994621E-13, + -1.0, + 0.0, + 30.62673, + 1.0, + 5.208790770994621E-13, + 0.0, + 43.67345, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f2b87588-313a-464b-ad30-a665907739eb", + "Name": "Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "078790a4-f42e-4276-b71e-e0c02cdac4ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 5.208790770994621E-13, + -1.0, + 0.0, + 30.626730000000208, + 1.0, + 5.208790770994621E-13, + 0.0, + 44.07345, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "078790a4-f42e-4276-b71e-e0c02cdac4ba", + "Name": "Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "942e507e-4555-403f-b9b3-5da66e0ed4a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 5.208790770994621E-13, + -1.0, + 0.0, + 30.626730000000677, + 1.0, + 5.208790770994621E-13, + 0.0, + 44.97345, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "942e507e-4555-403f-b9b3-5da66e0ed4a8", + "Name": "Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "13493400-5d49-4ad2-9787-c58ff754092d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 5.208790770994621E-13, + -1.0, + 0.0, + 30.62673000000177, + 1.0, + 5.208790770994621E-13, + 0.0, + 47.07693499999921, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "13493400-5d49-4ad2-9787-c58ff754092d", + "Name": "Mullion", + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816" + }, + "d5fbe2f3-b99b-4de0-addb-5f49bad436c1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.67673, + "Y": 43.673449999999974, + "Z": 0.0 + }, + { + "X": 30.676730000001772, + "Y": 47.07693499999918, + "Z": 0.0 + }, + { + "X": 30.57673000000177, + "Y": 47.07693499999924, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 43.67345000000003, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d5fbe2f3-b99b-4de0-addb-5f49bad436c1", + "Name": null + }, + "0e93b8b2-cba1-4c55-be64-ae3b0e56a3a7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.67673, + "Y": 43.673449999999974, + "Z": 0.0 + }, + { + "X": 30.676730000001772, + "Y": 47.07693499999918, + "Z": 0.0 + }, + { + "X": 30.57673000000177, + "Y": 47.07693499999924, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 43.67345000000003, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0e93b8b2-cba1-4c55-be64-ae3b0e56a3a7", + "Name": null + }, + "bf55668e-6305-45b6-9141-198a43f2977d": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0e93b8b2-cba1-4c55-be64-ae3b0e56a3a7", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bf55668e-6305-45b6-9141-198a43f2977d", + "Name": null, + "Wall": "e1d1f1e7-499f-491a-b441-6bd2661f9816", + "Wall Candidate": "e721daa3-9bdb-4247-bb59-543a3b63fe6b" + }, + "1fc5c748-ee7f-4c74-b66e-399b624130df": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 46.97693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1fc5c748-ee7f-4c74-b66e-399b624130df", + "Name": null + }, + "7191ecf6-a9b5-4fc3-9010-792f7b95cc0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 46.97693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7191ecf6-a9b5-4fc3-9010-792f7b95cc0b", + "Name": null + }, + "381bc51a-2c75-4565-8f5a-5158435a8014": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7191ecf6-a9b5-4fc3-9010-792f7b95cc0b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "381bc51a-2c75-4565-8f5a-5158435a8014", + "Name": null, + "Wall Candidate": "cce35324-609f-4f07-a06b-1ae4553cbb4f" + }, + "248cc312-1088-4d61-b0fd-062f9c7d7837": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.38042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 50.38042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "248cc312-1088-4d61-b0fd-062f9c7d7837", + "Name": null + }, + "9f17b455-b40e-429b-b924-6b4e0d68d914": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.580420000000004, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.38042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 50.38042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9f17b455-b40e-429b-b924-6b4e0d68d914", + "Name": null + }, + "3d627b8b-f707-4582-95f5-12e37b22c0ec": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9f17b455-b40e-429b-b924-6b4e0d68d914", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d627b8b-f707-4582-95f5-12e37b22c0ec", + "Name": null, + "Wall Candidate": "6f20fed9-21a4-4eb4-89d0-259f2674a238" + }, + "db904130-29e4-4a39-ba76-c9426f3f3574": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.65173000000177, + "Y": 47.076934999999224, + "Z": 0.0 + }, + { + "X": 30.651729999999997, + "Y": 50.48042000000002, + "Z": 0.0 + }, + { + "X": 30.60173, + "Y": 50.48041999999999, + "Z": 0.0 + }, + { + "X": 30.601730000001773, + "Y": 47.076934999999196, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "db904130-29e4-4a39-ba76-c9426f3f3574", + "Name": null + }, + "7c21e3b1-3a56-46e4-ade4-3e024639e489": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.65173000000177, + "Y": 47.076934999999224, + "Z": 0.0 + }, + { + "X": 30.651729999999997, + "Y": 50.48042000000002, + "Z": 0.0 + }, + { + "X": 30.60173, + "Y": 50.48041999999999, + "Z": 0.0 + }, + { + "X": 30.601730000001773, + "Y": 47.076934999999196, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7c21e3b1-3a56-46e4-ade4-3e024639e489", + "Name": null + }, + "be77ae8f-31dd-4ef1-9593-930f4676647f": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7c21e3b1-3a56-46e4-ade4-3e024639e489", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "be77ae8f-31dd-4ef1-9593-930f4676647f", + "Name": null, + "Wall Candidate": "92c90428-0b7c-4253-99f6-38e9a967dea9" + }, + "04e8ef9c-f1d7-4eca-993d-f59bd6570f49": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "04e8ef9c-f1d7-4eca-993d-f59bd6570f49", + "Name": null + }, + "45e395b1-d137-4335-a8f3-8af8619da7cd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "04e8ef9c-f1d7-4eca-993d-f59bd6570f49", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "04e8ef9c-f1d7-4eca-993d-f59bd6570f49", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "45e395b1-d137-4335-a8f3-8af8619da7cd", + "Name": null + }, + "a6ecb9da-8a02-4bda-b966-eb73048134bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "45e395b1-d137-4335-a8f3-8af8619da7cd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6ecb9da-8a02-4bda-b966-eb73048134bd", + "Name": "Base Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "7f044bc8-5b3b-41ec-9b98-5252d0bd823a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "45e395b1-d137-4335-a8f3-8af8619da7cd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "7f044bc8-5b3b-41ec-9b98-5252d0bd823a", + "Name": "Base Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "1911a82b-4e9d-4a3c-a7d0-96f159b9fda7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "45e395b1-d137-4335-a8f3-8af8619da7cd", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "1911a82b-4e9d-4a3c-a7d0-96f159b9fda7", + "Name": "Base Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "0aa78f16-d111-46ca-b312-1bcec8823ef1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -5.208790770992196E-13, + -1.0, + 0.0, + 30.62673000000177, + 1.0, + -5.208790770992196E-13, + 0.0, + 47.07693499999921, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0aa78f16-d111-46ca-b312-1bcec8823ef1", + "Name": "Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "2055135b-404c-425b-b80d-ad8fb31cd130": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -5.208790770992196E-13, + -1.0, + 0.0, + 30.62673000000156, + 1.0, + -5.208790770992196E-13, + 0.0, + 47.47693499999921, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2055135b-404c-425b-b80d-ad8fb31cd130", + "Name": "Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "226e9346-0d24-4886-adbc-5554ac34ba44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -5.208790770992196E-13, + -1.0, + 0.0, + 30.626730000001093, + 1.0, + -5.208790770992196E-13, + 0.0, + 48.37693499999921, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "226e9346-0d24-4886-adbc-5554ac34ba44", + "Name": "Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "1bf6365e-7d13-47ce-896b-44569c24047e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -5.208790770992196E-13, + -1.0, + 0.0, + 30.62673, + 1.0, + -5.208790770992196E-13, + 0.0, + 50.48042, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1bf6365e-7d13-47ce-896b-44569c24047e", + "Name": "Mullion", + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f" + }, + "41a08947-35c8-465e-bd28-7c774c105d91": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.676730000001772, + "Y": 47.07693499999924, + "Z": 0.0 + }, + { + "X": 30.67673, + "Y": 50.48042000000003, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 50.480419999999974, + "Z": 0.0 + }, + { + "X": 30.57673000000177, + "Y": 47.07693499999918, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "41a08947-35c8-465e-bd28-7c774c105d91", + "Name": null + }, + "ec5d9e62-5169-4909-b927-9da769b39337": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.676730000001772, + "Y": 47.07693499999924, + "Z": 0.0 + }, + { + "X": 30.67673, + "Y": 50.48042000000003, + "Z": 0.0 + }, + { + "X": 30.576729999999998, + "Y": 50.480419999999974, + "Z": 0.0 + }, + { + "X": 30.57673000000177, + "Y": 47.07693499999918, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ec5d9e62-5169-4909-b927-9da769b39337", + "Name": null + }, + "1d2580d5-5e2d-4b51-be68-cd98e50355ac": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ec5d9e62-5169-4909-b927-9da769b39337", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1d2580d5-5e2d-4b51-be68-cd98e50355ac", + "Name": null, + "Wall": "be77ae8f-31dd-4ef1-9593-930f4676647f", + "Wall Candidate": "92c90428-0b7c-4253-99f6-38e9a967dea9" + }, + "6b16de0b-a4ae-4d19-9d48-972c284c6b6c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.855298089231596, + "Y": 50.48042000000001, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.07693499999922, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 50.480419999999995, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b16de0b-a4ae-4d19-9d48-972c284c6b6c", + "Name": null + }, + "15dbb228-327a-4f9d-a700-70d0c0623cd7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.855298089231596, + "Y": 50.48042000000001, + "Z": 0.0 + }, + { + "X": 26.85529808923129, + "Y": 47.07693499999922, + "Z": 0.0 + }, + { + "X": 27.055298089231293, + "Y": 47.0769349999992, + "Z": 0.0 + }, + { + "X": 27.0552980892316, + "Y": 50.480419999999995, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "15dbb228-327a-4f9d-a700-70d0c0623cd7", + "Name": null + }, + "5fb5d264-7b65-4607-a638-bb7afddf1652": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "15dbb228-327a-4f9d-a700-70d0c0623cd7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5fb5d264-7b65-4607-a638-bb7afddf1652", + "Name": null, + "Wall Candidate": "04613bd8-4652-4159-b36f-8f3ae20c4c44" + }, + "73e37eab-a662-4141-9edc-e819d85c515b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.17693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "73e37eab-a662-4141-9edc-e819d85c515b", + "Name": null + }, + "0b5800a8-3faa-4b60-95f6-73c99be26369": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 46.97693499999921, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 47.17693499999921, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.17693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0b5800a8-3faa-4b60-95f6-73c99be26369", + "Name": null + }, + "38cb2757-2910-465a-9cf5-8872b50b244a": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0b5800a8-3faa-4b60-95f6-73c99be26369", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38cb2757-2910-465a-9cf5-8872b50b244a", + "Name": null, + "Wall Candidate": "f12c628c-ab46-41bd-9956-8abb80a80b61" + }, + "0a77d517-2ff6-47fa-a898-02bc6bc3a8f7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.0441718531564, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 23.068514844132842, + "Y": 31.07602999999981, + "Z": 0.0 + }, + { + "X": 23.0685148441328, + "Y": 30.87602999999981, + "Z": 0.0 + }, + { + "X": 31.044171853156357, + "Y": 30.87602999999799, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0a77d517-2ff6-47fa-a898-02bc6bc3a8f7", + "Name": null + }, + "bd41cdab-89f1-48c0-8ebd-f6ff354d4446": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.0441718531564, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 23.068514844132842, + "Y": 31.07602999999981, + "Z": 0.0 + }, + { + "X": 23.0685148441328, + "Y": 30.87602999999981, + "Z": 0.0 + }, + { + "X": 31.044171853156357, + "Y": 30.87602999999799, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bd41cdab-89f1-48c0-8ebd-f6ff354d4446", + "Name": null + }, + "1f817fd0-391d-4866-b993-fc8ac0f08add": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "bd41cdab-89f1-48c0-8ebd-f6ff354d4446", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1f817fd0-391d-4866-b993-fc8ac0f08add", + "Name": null, + "Wall Candidate": "34b5ea84-d704-4169-8e58-23b2f3356e9a" + }, + "554d0898-6001-4c4d-9d3a-1ce9c8a5f7ad": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.96851484413282, + "Y": 30.976029999999778, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.886827376872823, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.886827376872887, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 30.97602999999984, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "554d0898-6001-4c4d-9d3a-1ce9c8a5f7ad", + "Name": null + }, + "fbd23df2-e102-4861-8b60-f1a2441d3e82": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.96851484413282, + "Y": 30.976029999999778, + "Z": 0.0 + }, + { + "X": 22.96851484413346, + "Y": 28.886827376872823, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.886827376872887, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 30.97602999999984, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fbd23df2-e102-4861-8b60-f1a2441d3e82", + "Name": null + }, + "b829a363-b086-466b-86a8-fd7f9de937aa": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fbd23df2-e102-4861-8b60-f1a2441d3e82", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b829a363-b086-466b-86a8-fd7f9de937aa", + "Name": null, + "Wall Candidate": "c5373a79-aa97-4096-9a0e-d85f091b4132" + }, + "a006e8f5-cea7-4fbe-8d3b-d2a1f27e1220": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.96851484413346, + "Y": 28.88682737687287, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 24.296540000000014, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 24.296539999999986, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.88682737687284, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a006e8f5-cea7-4fbe-8d3b-d2a1f27e1220", + "Name": null + }, + "36786796-dc7c-444a-9f86-e9ddc0e76cb5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 22.96851484413346, + "Y": 28.88682737687287, + "Z": 0.0 + }, + { + "X": 22.96851484413282, + "Y": 24.296540000000014, + "Z": 0.0 + }, + { + "X": 23.168514844132822, + "Y": 24.296539999999986, + "Z": 0.0 + }, + { + "X": 23.168514844133462, + "Y": 28.88682737687284, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "36786796-dc7c-444a-9f86-e9ddc0e76cb5", + "Name": null + }, + "3ed93c16-c480-4c8e-9480-fff3e5faea37": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "36786796-dc7c-444a-9f86-e9ddc0e76cb5", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3ed93c16-c480-4c8e-9480-fff3e5faea37", + "Name": null, + "Wall Candidate": "a8616e15-2398-468d-82d2-c521b17272b4" + }, + "026db0ee-22b6-4e4f-a6d6-025f23495eab": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413282, + "Y": 24.27154, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.27154, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.32154, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.32154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "026db0ee-22b6-4e4f-a6d6-025f23495eab", + "Name": null + }, + "cb16e035-8679-483a-8679-d718fd47208b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413282, + "Y": 24.27154, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.27154, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.32154, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.32154, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cb16e035-8679-483a-8679-d718fd47208b", + "Name": null + }, + "ad0603ea-7983-4e03-8085-2fa286bdd80e": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cb16e035-8679-483a-8679-d718fd47208b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ad0603ea-7983-4e03-8085-2fa286bdd80e", + "Name": null, + "Wall Candidate": "54833998-1d9e-4470-a234-e0637495a2c5" + }, + "750948f7-9e73-4ba5-8187-60a073ad42af": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "750948f7-9e73-4ba5-8187-60a073ad42af", + "Name": null + }, + "ec37bc4e-8886-4782-a2a5-4c12ad329e82": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "750948f7-9e73-4ba5-8187-60a073ad42af", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "750948f7-9e73-4ba5-8187-60a073ad42af", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ec37bc4e-8886-4782-a2a5-4c12ad329e82", + "Name": null + }, + "dffef8c4-eb0d-4cb2-b9d9-8c9a99afb728": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec37bc4e-8886-4782-a2a5-4c12ad329e82", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dffef8c4-eb0d-4cb2-b9d9-8c9a99afb728", + "Name": "Base Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "b189b49d-d525-4759-97cc-70d197f6a535": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec37bc4e-8886-4782-a2a5-4c12ad329e82", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "b189b49d-d525-4759-97cc-70d197f6a535", + "Name": "Base Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "6f77a360-c883-4ed1-b4e2-6ae5323ea6b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ec37bc4e-8886-4782-a2a5-4c12ad329e82", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "6f77a360-c883-4ed1-b4e2-6ae5323ea6b8", + "Name": "Base Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "c817dbba-d6df-4926-b2f4-737fa3bf0019": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.06851484413282, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c817dbba-d6df-4926-b2f4-737fa3bf0019", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "7ac17f51-460f-4362-95e8-28a2a493ee39": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.46851484413282, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7ac17f51-460f-4362-95e8-28a2a493ee39", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "18d064aa-ee7c-4214-9a41-2aec7ce00ff7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.36851484413282, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "18d064aa-ee7c-4214-9a41-2aec7ce00ff7", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "6a377d98-8bd2-45b0-88ba-6cbed1fef724": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.593733847140673, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6a377d98-8bd2-45b0-88ba-6cbed1fef724", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "1436a3fb-0a1f-4b1e-b928-75e7f3dccfc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 28.818952850148527, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1436a3fb-0a1f-4b1e-b928-75e7f3dccfc5", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "8c3acfcf-e776-442c-a835-66512ac619c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 31.044171853156378, + 0.0, + 1.0, + 0.0, + 24.29654, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8c3acfcf-e776-442c-a835-66512ac619c4", + "Name": "Mullion", + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e" + }, + "ebefb632-b908-4880-a737-821bd4a0a00a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413282, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.34654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.34654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ebefb632-b908-4880-a737-821bd4a0a00a", + "Name": null + }, + "573bb844-e2bc-4720-bf13-32772510c187": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413282, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.24654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.34654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.34654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "573bb844-e2bc-4720-bf13-32772510c187", + "Name": null + }, + "583049bc-88bd-46b7-b81c-9210c1d9ca7a": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "573bb844-e2bc-4720-bf13-32772510c187", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "583049bc-88bd-46b7-b81c-9210c1d9ca7a", + "Name": null, + "Wall": "ad0603ea-7983-4e03-8085-2fa286bdd80e", + "Wall Candidate": "54833998-1d9e-4470-a234-e0637495a2c5" + }, + "a04809d8-f45d-48d0-aed5-3ae9f39efc7b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.14417185315638, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 31.14417185315638, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 30.944171853156377, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 30.944171853156377, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a04809d8-f45d-48d0-aed5-3ae9f39efc7b", + "Name": null + }, + "d325a5bc-89fb-4458-bd75-085979f3d126": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.14417185315638, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 31.14417185315638, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 30.944171853156377, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 30.944171853156377, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d325a5bc-89fb-4458-bd75-085979f3d126", + "Name": null + }, + "d92ffac5-1165-46fe-bd54-6ec81feb73ad": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d325a5bc-89fb-4458-bd75-085979f3d126", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d92ffac5-1165-46fe-bd54-6ec81feb73ad", + "Name": null, + "Wall Candidate": "f5cc7956-7112-40a4-99aa-df5ada2392c8" + }, + "65583935-b268-4e7f-ac5b-02946e086941": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721121, + "Y": 31.07602999999857, + "Z": 0.0 + }, + { + "X": 38.13396358686637, + "Y": 31.076029999998347, + "Z": 0.0 + }, + { + "X": 38.133963586866386, + "Y": 30.876029999998345, + "Z": 0.0 + }, + { + "X": 42.625517797211224, + "Y": 30.87602999999857, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "65583935-b268-4e7f-ac5b-02946e086941", + "Name": null + }, + "044b957a-17dc-4921-b48b-9929ea8893ce": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721121, + "Y": 31.07602999999857, + "Z": 0.0 + }, + { + "X": 38.13396358686637, + "Y": 31.076029999998347, + "Z": 0.0 + }, + { + "X": 38.133963586866386, + "Y": 30.876029999998345, + "Z": 0.0 + }, + { + "X": 42.625517797211224, + "Y": 30.87602999999857, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "044b957a-17dc-4921-b48b-9929ea8893ce", + "Name": null + }, + "18d1e170-3d3f-45c3-9dca-ace9559bad30": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "044b957a-17dc-4921-b48b-9929ea8893ce", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "18d1e170-3d3f-45c3-9dca-ace9559bad30", + "Name": null, + "Wall Candidate": "757830d8-3c72-4938-be08-9b4c1984ff8f" + }, + "452e7c0e-c37e-4976-a115-9bfb9d0a738d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.03396358686638, + "Y": 30.976029999998342, + "Z": 0.0 + }, + { + "X": 38.033963586866726, + "Y": 24.296539999999364, + "Z": 0.0 + }, + { + "X": 38.23396358686673, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 38.23396358686638, + "Y": 30.97602999999835, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "452e7c0e-c37e-4976-a115-9bfb9d0a738d", + "Name": null + }, + "ae2a9a47-93e9-421b-be36-9a0f1f66de3b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.03396358686638, + "Y": 30.976029999998342, + "Z": 0.0 + }, + { + "X": 38.033963586866726, + "Y": 24.296539999999364, + "Z": 0.0 + }, + { + "X": 38.23396358686673, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 38.23396358686638, + "Y": 30.97602999999835, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ae2a9a47-93e9-421b-be36-9a0f1f66de3b", + "Name": null + }, + "51f26d22-1b5b-4728-8495-211b43082b67": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ae2a9a47-93e9-421b-be36-9a0f1f66de3b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "51f26d22-1b5b-4728-8495-211b43082b67", + "Name": null, + "Wall Candidate": "1fc5959b-65fe-474f-b4e1-f6280e6a8e69" + }, + "668455ed-e794-4cc0-83cc-72eed9c73c31": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686673, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.321539999999366, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "668455ed-e794-4cc0-83cc-72eed9c73c31", + "Name": null + }, + "357b2722-3a73-4dcd-ba1f-48c475836aef": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686673, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.321539999999366, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "357b2722-3a73-4dcd-ba1f-48c475836aef", + "Name": null + }, + "b5a71e0b-d146-4932-82cf-3e247940f904": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "357b2722-3a73-4dcd-ba1f-48c475836aef", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b5a71e0b-d146-4932-82cf-3e247940f904", + "Name": null, + "Wall Candidate": "2540c78d-33c7-460c-8826-e414325aa6f3" + }, + "d49a8f69-83a0-4490-b809-1d698df2e1ba": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d49a8f69-83a0-4490-b809-1d698df2e1ba", + "Name": null + }, + "43d5d995-288e-4539-b715-e579d3ad309d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d49a8f69-83a0-4490-b809-1d698df2e1ba", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d49a8f69-83a0-4490-b809-1d698df2e1ba", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "43d5d995-288e-4539-b715-e579d3ad309d", + "Name": null + }, + "0f64cd5d-cb61-4cc7-a55f-0b02bf987798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43d5d995-288e-4539-b715-e579d3ad309d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0f64cd5d-cb61-4cc7-a55f-0b02bf987798", + "Name": "Base Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "a58ab961-14a5-4af5-aa70-b45038d034f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43d5d995-288e-4539-b715-e579d3ad309d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "a58ab961-14a5-4af5-aa70-b45038d034f5", + "Name": "Base Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "055796b5-a062-4674-a611-db2bdb1c7570": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "43d5d995-288e-4539-b715-e579d3ad309d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "055796b5-a062-4674-a611-db2bdb1c7570", + "Name": "Base Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "897a8fcd-8a3b-4d64-bda8-0adc35449347": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 38.13396358686673, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "897a8fcd-8a3b-4d64-bda8-0adc35449347", + "Name": "Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "c0825070-4e62-40ca-88bf-9f351bceb15e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 38.533963586866726, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c0825070-4e62-40ca-88bf-9f351bceb15e", + "Name": "Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "b666d648-7e20-4353-b298-300f5d01d654": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 39.433963586866724, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b666d648-7e20-4353-b298-300f5d01d654", + "Name": "Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "0696a0dd-288e-4bab-902f-d8e2ca8d43b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 41.02974069203915, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0696a0dd-288e-4bab-902f-d8e2ca8d43b2", + "Name": "Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "9223e750-9f8b-4fbb-85b8-27b8ffc7055d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 42.625517797211565, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9223e750-9f8b-4fbb-85b8-27b8ffc7055d", + "Name": "Mullion", + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904" + }, + "fcab7b15-5143-40ee-b040-8e6ac8c2275b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686673, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.34653999999937, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fcab7b15-5143-40ee-b040-8e6ac8c2275b", + "Name": null + }, + "5392a38f-1da4-47ba-a801-2d4a8c88282d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686673, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.34653999999937, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5392a38f-1da4-47ba-a801-2d4a8c88282d", + "Name": null + }, + "17cf5dbc-5fe0-400d-84e7-b2de9da78393": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5392a38f-1da4-47ba-a801-2d4a8c88282d", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "17cf5dbc-5fe0-400d-84e7-b2de9da78393", + "Name": null, + "Wall": "b5a71e0b-d146-4932-82cf-3e247940f904", + "Wall Candidate": "2540c78d-33c7-460c-8826-e414325aa6f3" + }, + "e0cfd982-e8b5-4fc2-94d8-8b56d64a053c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.725517797211566, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 42.72551779721122, + "Y": 30.976029999998573, + "Z": 0.0 + }, + { + "X": 42.525517797211215, + "Y": 30.976029999998566, + "Z": 0.0 + }, + { + "X": 42.52551779721156, + "Y": 24.296539999999364, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e0cfd982-e8b5-4fc2-94d8-8b56d64a053c", + "Name": null + }, + "2c6da2dd-6f8a-4298-945e-73ce76abb68e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.725517797211566, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 42.72551779721122, + "Y": 30.976029999998573, + "Z": 0.0 + }, + { + "X": 42.525517797211215, + "Y": 30.976029999998566, + "Z": 0.0 + }, + { + "X": 42.52551779721156, + "Y": 24.296539999999364, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2c6da2dd-6f8a-4298-945e-73ce76abb68e", + "Name": null + }, + "ab1f8c62-0523-49bd-bcaf-4fdea04ab5bd": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2c6da2dd-6f8a-4298-945e-73ce76abb68e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ab1f8c62-0523-49bd-bcaf-4fdea04ab5bd", + "Name": null, + "Wall Candidate": "fe1b9eef-0faf-4cf4-a629-9252c7fe512e" + }, + "d21c399e-5ac5-4f91-9924-1636aa2215e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.120869161274946, + "Y": 31.076029999999097, + "Z": 0.0 + }, + { + "X": 48.944143517075766, + "Y": 31.076029999998887, + "Z": 0.0 + }, + { + "X": 48.94414351707578, + "Y": 30.876029999998885, + "Z": 0.0 + }, + { + "X": 53.12086916127496, + "Y": 30.876029999999094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d21c399e-5ac5-4f91-9924-1636aa2215e7", + "Name": null + }, + "bc9b6727-0ddb-4969-85b0-d1cb8d44ab9e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.120869161274946, + "Y": 31.076029999999097, + "Z": 0.0 + }, + { + "X": 48.944143517075766, + "Y": 31.076029999998887, + "Z": 0.0 + }, + { + "X": 48.94414351707578, + "Y": 30.876029999998885, + "Z": 0.0 + }, + { + "X": 53.12086916127496, + "Y": 30.876029999999094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bc9b6727-0ddb-4969-85b0-d1cb8d44ab9e", + "Name": null + }, + "3e260b80-0e62-4a1b-b604-ec05ed0648f8": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "bc9b6727-0ddb-4969-85b0-d1cb8d44ab9e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3e260b80-0e62-4a1b-b604-ec05ed0648f8", + "Name": null, + "Wall Candidate": "8c7902c6-73df-47ab-bd57-22474c2714b3" + }, + "dd570395-2935-4b3f-80a5-003e9e4f504a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.84414351707577, + "Y": 30.976029999998882, + "Z": 0.0 + }, + { + "X": 48.84414351707612, + "Y": 24.296539999999364, + "Z": 0.0 + }, + { + "X": 49.04414351707612, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 49.044143517075774, + "Y": 30.97602999999889, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dd570395-2935-4b3f-80a5-003e9e4f504a", + "Name": null + }, + "eb034680-27b2-40fa-b4d0-c9a50c8d7045": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.84414351707577, + "Y": 30.976029999998882, + "Z": 0.0 + }, + { + "X": 48.84414351707612, + "Y": 24.296539999999364, + "Z": 0.0 + }, + { + "X": 49.04414351707612, + "Y": 24.29653999999937, + "Z": 0.0 + }, + { + "X": 49.044143517075774, + "Y": 30.97602999999889, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "eb034680-27b2-40fa-b4d0-c9a50c8d7045", + "Name": null + }, + "9d0049cb-7cb3-456c-8679-47e219d4392e": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "eb034680-27b2-40fa-b4d0-c9a50c8d7045", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9d0049cb-7cb3-456c-8679-47e219d4392e", + "Name": null, + "Wall Candidate": "286a9c8c-d7f4-444c-91d8-e8cc1ba1368d" + }, + "27cba0f8-5810-4807-b4be-a65511e9a637": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707612, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.321539999999366, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "27cba0f8-5810-4807-b4be-a65511e9a637", + "Name": null + }, + "cb238619-9afe-490b-9bde-ec419da6acbf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707612, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.321539999999366, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cb238619-9afe-490b-9bde-ec419da6acbf", + "Name": null + }, + "1dd6ed6b-2892-472d-8333-81280dbdb5f3": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cb238619-9afe-490b-9bde-ec419da6acbf", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1dd6ed6b-2892-472d-8333-81280dbdb5f3", + "Name": null, + "Wall Candidate": "11f63c5e-b5d8-4320-bf28-81cf1c12c026" + }, + "cbea7cee-b858-4a55-be1a-043ba052ae2f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cbea7cee-b858-4a55-be1a-043ba052ae2f", + "Name": null + }, + "23804711-fa74-4eac-86ad-8753f31fb726": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "cbea7cee-b858-4a55-be1a-043ba052ae2f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "cbea7cee-b858-4a55-be1a-043ba052ae2f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "23804711-fa74-4eac-86ad-8753f31fb726", + "Name": null + }, + "86c5b0de-fc2b-401f-8f14-db8c7da6cf4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23804711-fa74-4eac-86ad-8753f31fb726", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "86c5b0de-fc2b-401f-8f14-db8c7da6cf4f", + "Name": "Base Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "6e723939-e4fe-4020-b23f-3ff28bc0f531": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23804711-fa74-4eac-86ad-8753f31fb726", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "6e723939-e4fe-4020-b23f-3ff28bc0f531", + "Name": "Base Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "b53f0036-825f-473d-b1c9-9e8921dd1847": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "23804711-fa74-4eac-86ad-8753f31fb726", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "b53f0036-825f-473d-b1c9-9e8921dd1847", + "Name": "Base Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "09c9e79f-0f60-4eea-98db-43df656f3536": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 48.94414351707612, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "09c9e79f-0f60-4eea-98db-43df656f3536", + "Name": "Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "355db676-409f-43a9-80c8-cc39cdd40d5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 49.34414351707612, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "355db676-409f-43a9-80c8-cc39cdd40d5c", + "Name": "Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "a1f15c76-c543-42f8-9809-1fec9ae30d36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 50.24414351707612, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a1f15c76-c543-42f8-9809-1fec9ae30d36", + "Name": "Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "510b16ec-7d01-46ae-ad80-344bbce1833f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 53.12086916127529, + 0.0, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "510b16ec-7d01-46ae-ad80-344bbce1833f", + "Name": "Mullion", + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3" + }, + "326560a8-2c20-442f-8d07-faecca722860": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707612, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.34653999999937, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "326560a8-2c20-442f-8d07-faecca722860", + "Name": null + }, + "e09e4ebd-499d-4e4f-ba15-0d07a13c7427": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707612, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.34653999999937, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e09e4ebd-499d-4e4f-ba15-0d07a13c7427", + "Name": null + }, + "6193ac68-e487-4846-8039-1b01ee475674": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e09e4ebd-499d-4e4f-ba15-0d07a13c7427", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6193ac68-e487-4846-8039-1b01ee475674", + "Name": null, + "Wall": "1dd6ed6b-2892-472d-8333-81280dbdb5f3", + "Wall Candidate": "11f63c5e-b5d8-4320-bf28-81cf1c12c026" + }, + "19dcdce0-bd61-4b74-b4ec-61624c3f0462": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.22086916127529, + "Y": 24.29653999999936, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000033, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000047, + "Z": 0.0 + }, + { + "X": 53.020869161275286, + "Y": 24.296539999999375, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "19dcdce0-bd61-4b74-b4ec-61624c3f0462", + "Name": null + }, + "f42e0de0-514b-471e-bdcd-dad6ca115999": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.22086916127529, + "Y": 24.29653999999936, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000033, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000047, + "Z": 0.0 + }, + { + "X": 53.020869161275286, + "Y": 24.296539999999375, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f42e0de0-514b-471e-bdcd-dad6ca115999", + "Name": null + }, + "ff6c9f3b-0c55-4186-83b9-ac160740bc26": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f42e0de0-514b-471e-bdcd-dad6ca115999", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ff6c9f3b-0c55-4186-83b9-ac160740bc26", + "Name": null, + "Wall Candidate": "07ecb4f3-b641-423c-a7f6-c0c2bcedd248" + }, + "9c2283d9-482a-45d6-81ac-87b955c9728c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.22086916127555, + "Y": 27.636285000000058, + "Z": 0.0 + }, + { + "X": 53.220869161274955, + "Y": 30.976029999999113, + "Z": 0.0 + }, + { + "X": 53.02086916127495, + "Y": 30.976029999999078, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000022, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9c2283d9-482a-45d6-81ac-87b955c9728c", + "Name": null + }, + "c74ea681-ce81-49be-b29c-47a853ce2677": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.22086916127555, + "Y": 27.636285000000058, + "Z": 0.0 + }, + { + "X": 53.220869161274955, + "Y": 30.976029999999113, + "Z": 0.0 + }, + { + "X": 53.02086916127495, + "Y": 30.976029999999078, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000022, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c74ea681-ce81-49be-b29c-47a853ce2677", + "Name": null + }, + "a0308482-bf3f-4460-8ff6-cd53015ed379": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c74ea681-ce81-49be-b29c-47a853ce2677", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a0308482-bf3f-4460-8ff6-cd53015ed379", + "Name": null, + "Wall Candidate": "18e83530-1d8d-4ac7-a0a2-925f764aa418" + }, + "baa48c6d-3d08-4a08-a989-2db39661d2fa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609934, + "Y": 31.001029999999282, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 31.001029999999094, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.951029999999097, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.951029999999285, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "baa48c6d-3d08-4a08-a989-2db39661d2fa", + "Name": null + }, + "3035404f-a970-422e-b1fc-2fe9e14ff059": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609934, + "Y": 31.001029999999282, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 31.001029999999094, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.951029999999097, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.951029999999285, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3035404f-a970-422e-b1fc-2fe9e14ff059", + "Name": null + }, + "a38fd02d-2cc1-4f45-9370-82716d21e17e": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3035404f-a970-422e-b1fc-2fe9e14ff059", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a38fd02d-2cc1-4f45-9370-82716d21e17e", + "Name": null, + "Wall Candidate": "9062d3f8-71c7-4a41-b525-c94ca57e7501" + }, + "2a3c3362-a816-4cf7-a2fe-a6b614815dd4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2a3c3362-a816-4cf7-a2fe-a6b614815dd4", + "Name": null + }, + "b020dd43-b063-46fb-aa2c-54abc67b0dd6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2a3c3362-a816-4cf7-a2fe-a6b614815dd4", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2a3c3362-a816-4cf7-a2fe-a6b614815dd4", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b020dd43-b063-46fb-aa2c-54abc67b0dd6", + "Name": null + }, + "ef548e02-241a-4fed-b2d8-a9d871335f30": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b020dd43-b063-46fb-aa2c-54abc67b0dd6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef548e02-241a-4fed-b2d8-a9d871335f30", + "Name": "Base Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "5764a3c7-7440-4d7d-b52a-9a8706b681cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b020dd43-b063-46fb-aa2c-54abc67b0dd6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "5764a3c7-7440-4d7d-b52a-9a8706b681cc", + "Name": "Base Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "3596e323-8bbf-426c-9101-ce792bf39505": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b020dd43-b063-46fb-aa2c-54abc67b0dd6", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "3596e323-8bbf-426c-9101-ce792bf39505", + "Name": "Base Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "0b5fadd9-2cb6-4981-b005-3572219faa27": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.9564945215884666E-14, + 0.0, + 56.91980052609934, + -4.9564945215884666E-14, + -1.0, + 0.0, + 30.976029999999284, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0b5fadd9-2cb6-4981-b005-3572219faa27", + "Name": "Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "7c0caf90-7505-426a-ab69-b4060af02e59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.9564945215884666E-14, + 0.0, + 56.51980052609934, + -4.9564945215884666E-14, + -1.0, + 0.0, + 30.976029999999263, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7c0caf90-7505-426a-ab69-b4060af02e59", + "Name": "Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "ce8a2a20-a4e5-4484-b0f1-e28a51e9d7fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.9564945215884666E-14, + 0.0, + 55.61980052609934, + -4.9564945215884666E-14, + -1.0, + 0.0, + 30.97602999999922, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ce8a2a20-a4e5-4484-b0f1-e28a51e9d7fd", + "Name": "Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "bec37ec3-a177-4a0a-8c1e-b2597e5d0665": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 4.9564945215884666E-14, + 0.0, + 53.12086916127495, + -4.9564945215884666E-14, + -1.0, + 0.0, + 30.976029999999096, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bec37ec3-a177-4a0a-8c1e-b2597e5d0665", + "Name": "Mullion", + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e" + }, + "2fa25867-3155-4824-8259-3be9b7a4c40d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609934, + "Y": 31.026029999999285, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 31.026029999999096, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.926029999999095, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.926029999999283, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2fa25867-3155-4824-8259-3be9b7a4c40d", + "Name": null + }, + "a17ba569-79b8-4155-bcc9-3bec72e71344": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609934, + "Y": 31.026029999999285, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 31.026029999999096, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.926029999999095, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.926029999999283, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a17ba569-79b8-4155-bcc9-3bec72e71344", + "Name": null + }, + "a3f09e17-df0a-4e1f-a0ba-4d8df7e89073": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a17ba569-79b8-4155-bcc9-3bec72e71344", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a3f09e17-df0a-4e1f-a0ba-4d8df7e89073", + "Name": null, + "Wall": "a38fd02d-2cc1-4f45-9370-82716d21e17e", + "Wall Candidate": "9062d3f8-71c7-4a41-b525-c94ca57e7501" + }, + "550ef20f-8ef7-4a02-b0a1-ebaf3070548b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 57.0198005260987, + "Y": 27.636285000000218, + "Z": 0.0 + }, + { + "X": 57.01980052609934, + "Y": 30.976029999999266, + "Z": 0.0 + }, + { + "X": 56.819800526099336, + "Y": 30.9760299999993, + "Z": 0.0 + }, + { + "X": 56.819800526098696, + "Y": 27.636285000000253, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "550ef20f-8ef7-4a02-b0a1-ebaf3070548b", + "Name": null + }, + "ceca625e-6fa6-4e9d-87eb-8a4184d8ff63": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 57.0198005260987, + "Y": 27.636285000000218, + "Z": 0.0 + }, + { + "X": 57.01980052609934, + "Y": 30.976029999999266, + "Z": 0.0 + }, + { + "X": 56.819800526099336, + "Y": 30.9760299999993, + "Z": 0.0 + }, + { + "X": 56.819800526098696, + "Y": 27.636285000000253, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ceca625e-6fa6-4e9d-87eb-8a4184d8ff63", + "Name": null + }, + "2987af59-f5cc-4c2d-98be-60959610cf50": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ceca625e-6fa6-4e9d-87eb-8a4184d8ff63", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2987af59-f5cc-4c2d-98be-60959610cf50", + "Name": null, + "Wall Candidate": "ba0eecce-cfd6-434a-8ddd-7e796bad4c7d" + }, + "ac2f9604-c411-4c97-933a-0ca518d338a6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.02086916127495, + "Y": 30.976029999999078, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000022, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000058, + "Z": 0.0 + }, + { + "X": 53.220869161274955, + "Y": 30.976029999999113, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ac2f9604-c411-4c97-933a-0ca518d338a6", + "Name": null + }, + "6f7905a8-b725-4d30-b66b-c6c373d9a3d3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.02086916127495, + "Y": 30.976029999999078, + "Z": 0.0 + }, + { + "X": 53.02086916127555, + "Y": 27.636285000000022, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000058, + "Z": 0.0 + }, + { + "X": 53.220869161274955, + "Y": 30.976029999999113, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6f7905a8-b725-4d30-b66b-c6c373d9a3d3", + "Name": null + }, + "23ed7cf0-a76c-46d5-a77c-9f933f6cd96b": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6f7905a8-b725-4d30-b66b-c6c373d9a3d3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "23ed7cf0-a76c-46d5-a77c-9f933f6cd96b", + "Name": null, + "Wall Candidate": "9416b308-d4e4-4c90-92ff-6b45dcb2101c" + }, + "3bdccf79-095b-4c30-a857-f111dbaff22a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127556, + "Y": 27.53628500000004, + "Z": 0.0 + }, + { + "X": 56.919800526098705, + "Y": 27.536285000000234, + "Z": 0.0 + }, + { + "X": 56.91980052609869, + "Y": 27.736285000000237, + "Z": 0.0 + }, + { + "X": 53.12086916127554, + "Y": 27.73628500000004, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3bdccf79-095b-4c30-a857-f111dbaff22a", + "Name": null + }, + "26035647-d159-4aec-96a3-b01f25863c52": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127556, + "Y": 27.53628500000004, + "Z": 0.0 + }, + { + "X": 56.919800526098705, + "Y": 27.536285000000234, + "Z": 0.0 + }, + { + "X": 56.91980052609869, + "Y": 27.736285000000237, + "Z": 0.0 + }, + { + "X": 53.12086916127554, + "Y": 27.73628500000004, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "26035647-d159-4aec-96a3-b01f25863c52", + "Name": null + }, + "66a5f99f-da9b-4e2a-848a-381b86e5cc8a": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "26035647-d159-4aec-96a3-b01f25863c52", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "66a5f99f-da9b-4e2a-848a-381b86e5cc8a", + "Name": null, + "Wall Candidate": "8d56f455-f37b-442e-8721-3dcbc5fa00f0" + }, + "e15bef0a-676b-4611-9f47-f8b627c9aa79": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.1208691612753, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 56.91980052609969, + "Y": 24.27154000000119, + "Z": 0.0 + }, + { + "X": 56.919800526099664, + "Y": 24.321540000001185, + "Z": 0.0 + }, + { + "X": 53.12086916127527, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e15bef0a-676b-4611-9f47-f8b627c9aa79", + "Name": null + }, + "8993afe1-dea8-4892-b88e-a9135f95c813": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.1208691612753, + "Y": 24.27153999999937, + "Z": 0.0 + }, + { + "X": 56.91980052609969, + "Y": 24.27154000000119, + "Z": 0.0 + }, + { + "X": 56.919800526099664, + "Y": 24.321540000001185, + "Z": 0.0 + }, + { + "X": 53.12086916127527, + "Y": 24.321539999999366, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8993afe1-dea8-4892-b88e-a9135f95c813", + "Name": null + }, + "5293ce3f-cd50-49e7-97aa-9351c8c58b27": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8993afe1-dea8-4892-b88e-a9135f95c813", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5293ce3f-cd50-49e7-97aa-9351c8c58b27", + "Name": null, + "Wall Candidate": "eeff110b-d8df-468b-99af-136fe8e51bc2" + }, + "a3be336e-7194-4691-ac2a-422ef63307d5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a3be336e-7194-4691-ac2a-422ef63307d5", + "Name": null + }, + "9b4f216b-11c3-4e76-8580-7e814431335d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a3be336e-7194-4691-ac2a-422ef63307d5", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a3be336e-7194-4691-ac2a-422ef63307d5", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9b4f216b-11c3-4e76-8580-7e814431335d", + "Name": null + }, + "2592cabe-1981-41f2-8135-a06b96646f72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b4f216b-11c3-4e76-8580-7e814431335d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2592cabe-1981-41f2-8135-a06b96646f72", + "Name": "Base Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "bb622418-960d-4432-9132-28d8cccafb87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b4f216b-11c3-4e76-8580-7e814431335d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "bb622418-960d-4432-9132-28d8cccafb87", + "Name": "Base Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "518583ab-135f-4c1f-854b-d3e81ed8ac64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b4f216b-11c3-4e76-8580-7e814431335d", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "518583ab-135f-4c1f-854b-d3e81ed8ac64", + "Name": "Base Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "093e709f-354b-4928-a352-8de5bd27c318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.788160745383566E-13, + 0.0, + 53.12086916127529, + 4.788160745383566E-13, + 1.0, + 0.0, + 24.296539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "093e709f-354b-4928-a352-8de5bd27c318", + "Name": "Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "891886b6-29ef-4a40-ad6d-816e91d1322d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.788160745383566E-13, + 0.0, + 53.520869161275286, + 4.788160745383566E-13, + 1.0, + 0.0, + 24.29653999999956, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "891886b6-29ef-4a40-ad6d-816e91d1322d", + "Name": "Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "7d17c32f-c3ae-4f0b-bb25-3655a414a225": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.788160745383566E-13, + 0.0, + 54.420869161275284, + 4.788160745383566E-13, + 1.0, + 0.0, + 24.29653999999999, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7d17c32f-c3ae-4f0b-bb25-3655a414a225", + "Name": "Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "9228665f-3091-48b7-8e9e-b5de5931f581": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.788160745383566E-13, + 0.0, + 56.91980052609968, + 4.788160745383566E-13, + 1.0, + 0.0, + 24.296540000001187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9228665f-3091-48b7-8e9e-b5de5931f581", + "Name": "Mullion", + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27" + }, + "ace98551-ea65-4f6c-a971-dc22549da556": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127531, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 56.9198005260997, + "Y": 24.246540000001186, + "Z": 0.0 + }, + { + "X": 56.91980052609966, + "Y": 24.346540000001188, + "Z": 0.0 + }, + { + "X": 53.120869161275266, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ace98551-ea65-4f6c-a971-dc22549da556", + "Name": null + }, + "365ef27b-dfa5-4987-bc05-f2ce3bfb1c92": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127531, + "Y": 24.246539999999367, + "Z": 0.0 + }, + { + "X": 56.9198005260997, + "Y": 24.246540000001186, + "Z": 0.0 + }, + { + "X": 56.91980052609966, + "Y": 24.346540000001188, + "Z": 0.0 + }, + { + "X": 53.120869161275266, + "Y": 24.34653999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "365ef27b-dfa5-4987-bc05-f2ce3bfb1c92", + "Name": null + }, + "ac5aa069-a79e-4f1d-b08f-d2d7d4450115": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "365ef27b-dfa5-4987-bc05-f2ce3bfb1c92", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ac5aa069-a79e-4f1d-b08f-d2d7d4450115", + "Name": null, + "Wall": "5293ce3f-cd50-49e7-97aa-9351c8c58b27", + "Wall Candidate": "eeff110b-d8df-468b-99af-136fe8e51bc2" + }, + "5a672751-673d-4f5b-ab13-0af05edad596": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.02086916127555, + "Y": 27.636285000000047, + "Z": 0.0 + }, + { + "X": 53.020869161275286, + "Y": 24.296539999999375, + "Z": 0.0 + }, + { + "X": 53.22086916127529, + "Y": 24.29653999999936, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000033, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5a672751-673d-4f5b-ab13-0af05edad596", + "Name": null + }, + "e9553c80-735c-42b8-b2d3-6a48b3e513b3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.02086916127555, + "Y": 27.636285000000047, + "Z": 0.0 + }, + { + "X": 53.020869161275286, + "Y": 24.296539999999375, + "Z": 0.0 + }, + { + "X": 53.22086916127529, + "Y": 24.29653999999936, + "Z": 0.0 + }, + { + "X": 53.22086916127555, + "Y": 27.636285000000033, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e9553c80-735c-42b8-b2d3-6a48b3e513b3", + "Name": null + }, + "7372b93d-a526-47a8-8f6f-21098e662af0": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e9553c80-735c-42b8-b2d3-6a48b3e513b3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7372b93d-a526-47a8-8f6f-21098e662af0", + "Name": null, + "Wall Candidate": "d2940c97-e0df-4b7c-8256-04c9879738de" + }, + "f3e51e1b-80c9-4ebd-8bb0-18d73736c9bd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 57.01980052609968, + "Y": 24.296540000001215, + "Z": 0.0 + }, + { + "X": 57.0198005260987, + "Y": 27.636285000000264, + "Z": 0.0 + }, + { + "X": 56.819800526098696, + "Y": 27.636285000000207, + "Z": 0.0 + }, + { + "X": 56.81980052609968, + "Y": 24.29654000000116, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f3e51e1b-80c9-4ebd-8bb0-18d73736c9bd", + "Name": null + }, + "5252d6d8-2de0-4932-80e2-3ddbb9e08582": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 57.01980052609968, + "Y": 24.296540000001215, + "Z": 0.0 + }, + { + "X": 57.0198005260987, + "Y": 27.636285000000264, + "Z": 0.0 + }, + { + "X": 56.819800526098696, + "Y": 27.636285000000207, + "Z": 0.0 + }, + { + "X": 56.81980052609968, + "Y": 24.29654000000116, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5252d6d8-2de0-4932-80e2-3ddbb9e08582", + "Name": null + }, + "e9bb7823-f4dd-4a9a-881a-cb59b6a4082f": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5252d6d8-2de0-4932-80e2-3ddbb9e08582", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e9bb7823-f4dd-4a9a-881a-cb59b6a4082f", + "Name": null, + "Wall Candidate": "1915b548-62b1-4fc7-92a9-88140de12d9f" + }, + "1397a6b8-692f-4b90-be32-a4c789e72513": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609869, + "Y": 27.736285000000237, + "Z": 0.0 + }, + { + "X": 53.12086916127554, + "Y": 27.73628500000004, + "Z": 0.0 + }, + { + "X": 53.12086916127556, + "Y": 27.53628500000004, + "Z": 0.0 + }, + { + "X": 56.919800526098705, + "Y": 27.536285000000234, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1397a6b8-692f-4b90-be32-a4c789e72513", + "Name": null + }, + "6fb90ef6-cba4-4da9-9fe0-a59280280f6e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.91980052609869, + "Y": 27.736285000000237, + "Z": 0.0 + }, + { + "X": 53.12086916127554, + "Y": 27.73628500000004, + "Z": 0.0 + }, + { + "X": 53.12086916127556, + "Y": 27.53628500000004, + "Z": 0.0 + }, + { + "X": 56.919800526098705, + "Y": 27.536285000000234, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6fb90ef6-cba4-4da9-9fe0-a59280280f6e", + "Name": null + }, + "a15bc767-19fe-4a1e-a807-05c532350630": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6fb90ef6-cba4-4da9-9fe0-a59280280f6e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a15bc767-19fe-4a1e-a807-05c532350630", + "Name": null, + "Wall Candidate": "ae6b309c-bf48-49a1-9cad-ed147b61df53" + }, + "677a3411-3306-48b9-a09e-c4cbcdc87edc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.72329503247123, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 59.693489385806764, + "Y": 31.07602999999981, + "Z": 0.0 + }, + { + "X": 59.69348938580668, + "Y": 30.87602999999981, + "Z": 0.0 + }, + { + "X": 63.72329503247114, + "Y": 30.87602999999799, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "677a3411-3306-48b9-a09e-c4cbcdc87edc", + "Name": null + }, + "0f9e2611-44db-4e2a-ac42-1713d2d86afc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.72329503247123, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 59.693489385806764, + "Y": 31.07602999999981, + "Z": 0.0 + }, + { + "X": 59.69348938580668, + "Y": 30.87602999999981, + "Z": 0.0 + }, + { + "X": 63.72329503247114, + "Y": 30.87602999999799, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0f9e2611-44db-4e2a-ac42-1713d2d86afc", + "Name": null + }, + "c0a47354-8386-44cf-a1db-6edb0b905f85": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0f9e2611-44db-4e2a-ac42-1713d2d86afc", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c0a47354-8386-44cf-a1db-6edb0b905f85", + "Name": null, + "Wall Candidate": "4f8d307c-62fc-4e84-9da8-bb9670fd4b8c" + }, + "3288e1f7-17df-448e-8340-803d0c2cf9f7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.59348938580672, + "Y": 30.976029999999817, + "Z": 0.0 + }, + { + "X": 59.59348938580619, + "Y": 24.296540000000963, + "Z": 0.0 + }, + { + "X": 59.79348938580619, + "Y": 24.29654000000095, + "Z": 0.0 + }, + { + "X": 59.79348938580672, + "Y": 30.976029999999803, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3288e1f7-17df-448e-8340-803d0c2cf9f7", + "Name": null + }, + "41ccfbb6-2fea-4ab5-9052-c9040bb41799": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.59348938580672, + "Y": 30.976029999999817, + "Z": 0.0 + }, + { + "X": 59.59348938580619, + "Y": 24.296540000000963, + "Z": 0.0 + }, + { + "X": 59.79348938580619, + "Y": 24.29654000000095, + "Z": 0.0 + }, + { + "X": 59.79348938580672, + "Y": 30.976029999999803, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "41ccfbb6-2fea-4ab5-9052-c9040bb41799", + "Name": null + }, + "b561d094-51eb-408b-92cc-2576bd167974": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "41ccfbb6-2fea-4ab5-9052-c9040bb41799", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b561d094-51eb-408b-92cc-2576bd167974", + "Name": null, + "Wall Candidate": "5e648b99-298d-4c7d-9cda-ebd9a7ab5f4a" + }, + "6ea2bfc3-a359-44d2-b0db-e1c988c258c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580619, + "Y": 24.271540000000957, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.271540000000623, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.32154000000062, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.321540000000955, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6ea2bfc3-a359-44d2-b0db-e1c988c258c5", + "Name": null + }, + "2f63eedd-ee18-4632-8da9-eb1c24a51bc0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580619, + "Y": 24.271540000000957, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.271540000000623, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.32154000000062, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.321540000000955, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2f63eedd-ee18-4632-8da9-eb1c24a51bc0", + "Name": null + }, + "dadb3e78-0e1b-4225-bf22-4e0271b709ec": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2f63eedd-ee18-4632-8da9-eb1c24a51bc0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dadb3e78-0e1b-4225-bf22-4e0271b709ec", + "Name": null, + "Wall Candidate": "804fd8a9-6ba8-428c-8b17-8f8ceced4e2c" + }, + "c7bb495a-0bcc-4d8a-aa44-0294267e748a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c7bb495a-0bcc-4d8a-aa44-0294267e748a", + "Name": null + }, + "485902e6-6b1f-4ad6-82f9-8883bc464a0b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c7bb495a-0bcc-4d8a-aa44-0294267e748a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c7bb495a-0bcc-4d8a-aa44-0294267e748a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "485902e6-6b1f-4ad6-82f9-8883bc464a0b", + "Name": null + }, + "da9d9131-c5a5-4cc8-91d0-2626de0de7c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "485902e6-6b1f-4ad6-82f9-8883bc464a0b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "da9d9131-c5a5-4cc8-91d0-2626de0de7c3", + "Name": "Base Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "139768c0-a6a6-4e75-a1cb-dea96f56cd52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "485902e6-6b1f-4ad6-82f9-8883bc464a0b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "139768c0-a6a6-4e75-a1cb-dea96f56cd52", + "Name": "Base Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "41bcaa40-196c-49be-8bb6-4f20ad8b42bf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "485902e6-6b1f-4ad6-82f9-8883bc464a0b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "41bcaa40-196c-49be-8bb6-4f20ad8b42bf", + "Name": "Base Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "2b8063b7-9861-43e7-8424-96a4370fdd6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179659E-14, + 0.0, + 59.69348938580619, + -8.287126355179659E-14, + 1.0, + 0.0, + 24.296540000000956, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2b8063b7-9861-43e7-8424-96a4370fdd6e", + "Name": "Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "3b2ab129-e604-470d-b891-97fcf620350b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179659E-14, + 0.0, + 60.09348938580619, + -8.287126355179659E-14, + 1.0, + 0.0, + 24.296540000000924, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b2ab129-e604-470d-b891-97fcf620350b", + "Name": "Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "3e53120b-ee19-4603-bce3-8e2abb2adba9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179659E-14, + 0.0, + 60.993489385806186, + -8.287126355179659E-14, + 1.0, + 0.0, + 24.29654000000085, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3e53120b-ee19-4603-bce3-8e2abb2adba9", + "Name": "Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "23a45376-ba60-47ee-8670-c422edcf5681": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179659E-14, + 0.0, + 63.72329503247063, + -8.287126355179659E-14, + 1.0, + 0.0, + 24.296540000000622, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "23a45376-ba60-47ee-8670-c422edcf5681", + "Name": "Mullion", + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec" + }, + "a1e3e217-9ef9-4274-80dd-3954502c5279": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580618, + "Y": 24.246540000000955, + "Z": 0.0 + }, + { + "X": 63.723295032470624, + "Y": 24.24654000000062, + "Z": 0.0 + }, + { + "X": 63.72329503247064, + "Y": 24.346540000000623, + "Z": 0.0 + }, + { + "X": 59.693489385806195, + "Y": 24.346540000000957, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a1e3e217-9ef9-4274-80dd-3954502c5279", + "Name": null + }, + "88527ef1-d57d-451c-b3b8-4db030c79ab0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580618, + "Y": 24.246540000000955, + "Z": 0.0 + }, + { + "X": 63.723295032470624, + "Y": 24.24654000000062, + "Z": 0.0 + }, + { + "X": 63.72329503247064, + "Y": 24.346540000000623, + "Z": 0.0 + }, + { + "X": 59.693489385806195, + "Y": 24.346540000000957, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "88527ef1-d57d-451c-b3b8-4db030c79ab0", + "Name": null + }, + "902344b2-0c22-4f64-a470-bf285760d76a": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "88527ef1-d57d-451c-b3b8-4db030c79ab0", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "902344b2-0c22-4f64-a470-bf285760d76a", + "Name": null, + "Wall": "dadb3e78-0e1b-4225-bf22-4e0271b709ec", + "Wall Candidate": "804fd8a9-6ba8-428c-8b17-8f8ceced4e2c" + }, + "7c383a59-420b-4adc-beec-956677b33aa5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.82329503247063, + "Y": 24.296540000000615, + "Z": 0.0 + }, + { + "X": 63.82329503247119, + "Y": 30.976029999997984, + "Z": 0.0 + }, + { + "X": 63.623295032471184, + "Y": 30.976029999997998, + "Z": 0.0 + }, + { + "X": 63.62329503247063, + "Y": 24.29654000000063, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7c383a59-420b-4adc-beec-956677b33aa5", + "Name": null + }, + "a4c5377c-13a4-407c-95eb-53297b0e25e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.82329503247063, + "Y": 24.296540000000615, + "Z": 0.0 + }, + { + "X": 63.82329503247119, + "Y": 30.976029999997984, + "Z": 0.0 + }, + { + "X": 63.623295032471184, + "Y": 30.976029999997998, + "Z": 0.0 + }, + { + "X": 63.62329503247063, + "Y": 24.29654000000063, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a4c5377c-13a4-407c-95eb-53297b0e25e7", + "Name": null + }, + "61ed4231-69ec-417c-ac80-78776cc2ea91": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a4c5377c-13a4-407c-95eb-53297b0e25e7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "61ed4231-69ec-417c-ac80-78776cc2ea91", + "Name": null, + "Wall Candidate": "2e0c89b5-ad0a-4449-90a9-61a40e01aa7e" + }, + "b4e39b82-8794-46c5-a2ad-71e898b84fa5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913563, + "Y": 31.07603000000163, + "Z": 0.0 + }, + { + "X": 63.72329503247109, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 63.72329503247128, + "Y": 30.87602999999799, + "Z": 0.0 + }, + { + "X": 67.7531006791358, + "Y": 30.876030000001627, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b4e39b82-8794-46c5-a2ad-71e898b84fa5", + "Name": null + }, + "00ffe094-33c0-46d7-a2e8-aa98a3fda7ac": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913563, + "Y": 31.07603000000163, + "Z": 0.0 + }, + { + "X": 63.72329503247109, + "Y": 31.076029999997992, + "Z": 0.0 + }, + { + "X": 63.72329503247128, + "Y": 30.87602999999799, + "Z": 0.0 + }, + { + "X": 67.7531006791358, + "Y": 30.876030000001627, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "00ffe094-33c0-46d7-a2e8-aa98a3fda7ac", + "Name": null + }, + "56ba23a1-1edb-4816-a6fc-b82e6f896c3c": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "00ffe094-33c0-46d7-a2e8-aa98a3fda7ac", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "56ba23a1-1edb-4816-a6fc-b82e6f896c3c", + "Name": null, + "Wall Candidate": "6bb0071a-315f-4357-8a1a-11a309f12417" + }, + "38a425e7-3a09-4582-8bca-19d16abcad64": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.623295032471184, + "Y": 30.976029999997998, + "Z": 0.0 + }, + { + "X": 63.62329503247063, + "Y": 24.29654000000063, + "Z": 0.0 + }, + { + "X": 63.82329503247063, + "Y": 24.296540000000615, + "Z": 0.0 + }, + { + "X": 63.82329503247119, + "Y": 30.976029999997984, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "38a425e7-3a09-4582-8bca-19d16abcad64", + "Name": null + }, + "87fbd038-ca97-4418-917d-2fd09ef12cc0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.623295032471184, + "Y": 30.976029999997998, + "Z": 0.0 + }, + { + "X": 63.62329503247063, + "Y": 24.29654000000063, + "Z": 0.0 + }, + { + "X": 63.82329503247063, + "Y": 24.296540000000615, + "Z": 0.0 + }, + { + "X": 63.82329503247119, + "Y": 30.976029999997984, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "87fbd038-ca97-4418-917d-2fd09ef12cc0", + "Name": null + }, + "e87ffa17-254e-4203-9879-d32a70d70d11": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "87fbd038-ca97-4418-917d-2fd09ef12cc0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e87ffa17-254e-4203-9879-d32a70d70d11", + "Name": null, + "Wall Candidate": "f32bcde4-4b5d-4e5c-83d5-374742e5d438" + }, + "b56e2958-5aaf-4c84-a5c3-96218bc5b4a3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.72329503247063, + "Y": 24.271540000000623, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.27154000000029, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.321540000000287, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.32154000000062, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b56e2958-5aaf-4c84-a5c3-96218bc5b4a3", + "Name": null + }, + "9ccd633e-b5d9-4998-b3c4-494e84fdd824": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.72329503247063, + "Y": 24.271540000000623, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.27154000000029, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.321540000000287, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.32154000000062, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9ccd633e-b5d9-4998-b3c4-494e84fdd824", + "Name": null + }, + "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9ccd633e-b5d9-4998-b3c4-494e84fdd824", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5", + "Name": null, + "Wall Candidate": "9a9e88ef-b5e0-4da6-8122-fdd2c729b929" + }, + "f02b96c5-b3b6-4cd0-ba93-651aac55ac28": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f02b96c5-b3b6-4cd0-ba93-651aac55ac28", + "Name": null + }, + "238ccf18-9f8f-4f92-bc5c-86eb93a95f7f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f02b96c5-b3b6-4cd0-ba93-651aac55ac28", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f02b96c5-b3b6-4cd0-ba93-651aac55ac28", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "238ccf18-9f8f-4f92-bc5c-86eb93a95f7f", + "Name": null + }, + "574c9278-68cb-41cc-9763-26f081f185ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "238ccf18-9f8f-4f92-bc5c-86eb93a95f7f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "574c9278-68cb-41cc-9763-26f081f185ed", + "Name": "Base Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "66a46dab-6dae-4e21-91a4-b0a635d56657": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "238ccf18-9f8f-4f92-bc5c-86eb93a95f7f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "66a46dab-6dae-4e21-91a4-b0a635d56657", + "Name": "Base Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "69dd920d-09c9-473f-94d2-377c3b805081": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "238ccf18-9f8f-4f92-bc5c-86eb93a95f7f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "69dd920d-09c9-473f-94d2-377c3b805081", + "Name": "Base Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "f367a415-1708-42a3-a850-28fdfadb5ea6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179512E-14, + 0.0, + 63.72329503247063, + -8.287126355179512E-14, + 1.0, + 0.0, + 24.296540000000622, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f367a415-1708-42a3-a850-28fdfadb5ea6", + "Name": "Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "7884a018-178b-4b06-bdc0-29c15e279e90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179512E-14, + 0.0, + 64.12329503247064, + -8.287126355179512E-14, + 1.0, + 0.0, + 24.29654000000059, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7884a018-178b-4b06-bdc0-29c15e279e90", + "Name": "Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "8458cdea-94ed-4422-b96e-7c5d6f01f8b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179512E-14, + 0.0, + 65.02329503247063, + -8.287126355179512E-14, + 1.0, + 0.0, + 24.296540000000515, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8458cdea-94ed-4422-b96e-7c5d6f01f8b7", + "Name": "Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "f6e73c67-5cc1-4d67-a621-525f555ab5ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.287126355179512E-14, + 0.0, + 67.75310067913514, + -8.287126355179512E-14, + 1.0, + 0.0, + 24.296540000000288, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f6e73c67-5cc1-4d67-a621-525f555ab5ab", + "Name": "Mullion", + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5" + }, + "f41ff3b4-985c-4e1c-a5ac-4c4b4df154a9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032470624, + "Y": 24.24654000000062, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.246540000000287, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.34654000000029, + "Z": 0.0 + }, + { + "X": 63.72329503247064, + "Y": 24.346540000000623, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f41ff3b4-985c-4e1c-a5ac-4c4b4df154a9", + "Name": null + }, + "94faa89f-00fd-46ab-84bd-f948e56dc59b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032470624, + "Y": 24.24654000000062, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.246540000000287, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.34654000000029, + "Z": 0.0 + }, + { + "X": 63.72329503247064, + "Y": 24.346540000000623, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "94faa89f-00fd-46ab-84bd-f948e56dc59b", + "Name": null + }, + "030723f1-f3a2-4189-a22c-5c07379e2887": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "94faa89f-00fd-46ab-84bd-f948e56dc59b", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "030723f1-f3a2-4189-a22c-5c07379e2887", + "Name": null, + "Wall": "199e10e7-efb5-47eb-b2a0-86ac2cfcd9c5", + "Wall Candidate": "9a9e88ef-b5e0-4da6-8122-fdd2c729b929" + }, + "8a4f508a-a402-46bf-848a-19d25877c08f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.85310067913514, + "Y": 24.29654000000031, + "Z": 0.0 + }, + { + "X": 67.85310067913414, + "Y": 28.826239275210963, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.82623927521092, + "Z": 0.0 + }, + { + "X": 67.65310067913515, + "Y": 24.296540000000267, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8a4f508a-a402-46bf-848a-19d25877c08f", + "Name": null + }, + "8579361c-754d-46ab-8aa1-ce1f0368b5b6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.85310067913514, + "Y": 24.29654000000031, + "Z": 0.0 + }, + { + "X": 67.85310067913414, + "Y": 28.826239275210963, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.82623927521092, + "Z": 0.0 + }, + { + "X": 67.65310067913515, + "Y": 24.296540000000267, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8579361c-754d-46ab-8aa1-ce1f0368b5b6", + "Name": null + }, + "a819a463-b35d-499b-a842-0963b6e52c10": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8579361c-754d-46ab-8aa1-ce1f0368b5b6", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a819a463-b35d-499b-a842-0963b6e52c10", + "Name": null, + "Wall Candidate": "cc369722-8510-4675-82f6-a8b68021afbc" + }, + "06e1d3bd-962f-4d3a-bcbf-9b05aab86031": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.85310067913414, + "Y": 28.82623927521087, + "Z": 0.0 + }, + { + "X": 67.85310067913571, + "Y": 30.976030000001558, + "Z": 0.0 + }, + { + "X": 67.65310067913572, + "Y": 30.9760300000017, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.826239275211012, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "06e1d3bd-962f-4d3a-bcbf-9b05aab86031", + "Name": null + }, + "5f1dd74b-3c13-4a87-9fd9-0dee2670d7cf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.85310067913414, + "Y": 28.82623927521087, + "Z": 0.0 + }, + { + "X": 67.85310067913571, + "Y": 30.976030000001558, + "Z": 0.0 + }, + { + "X": 67.65310067913572, + "Y": 30.9760300000017, + "Z": 0.0 + }, + { + "X": 67.65310067913416, + "Y": 28.826239275211012, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5f1dd74b-3c13-4a87-9fd9-0dee2670d7cf", + "Name": null + }, + "a615083d-d249-4ece-8fc7-6d31b887cbcc": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5f1dd74b-3c13-4a87-9fd9-0dee2670d7cf", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a615083d-d249-4ece-8fc7-6d31b887cbcc", + "Name": null, + "Wall Candidate": "acaf6343-f6ad-44dc-a221-c9ed45133d35" + }, + "e940bb67-51f6-4eae-8b02-23a1382c8723": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.821539999999366, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.821539999999366, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.77153999999937, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.77153999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e940bb67-51f6-4eae-8b02-23a1382c8723", + "Name": null + }, + "45c84926-e890-4606-a7b3-b7690d5ce185": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.821539999999366, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.821539999999366, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.77153999999937, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.77153999999937, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "45c84926-e890-4606-a7b3-b7690d5ce185", + "Name": null + }, + "347f9dd6-0364-4ab3-b747-6a6d68e160ce": { + "discriminator": "Elements.StorefrontWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.05, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "367dc463-7bf1-40a6-ab7a-87e90bf2b3cc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "45c84926-e890-4606-a7b3-b7690d5ce185", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "347f9dd6-0364-4ab3-b747-6a6d68e160ce", + "Name": null, + "Wall Candidate": "8fa37c6a-3d55-4a83-86d7-c1f7cc0e0ca6" + }, + "a97ac7b9-04c5-45bf-b4a4-1aca2ced6124": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": -0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": -0.035, + "Z": 0.0 + }, + { + "X": 0.035, + "Y": 0.035, + "Z": 0.0 + }, + { + "X": -0.035, + "Y": 0.035, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a97ac7b9-04c5-45bf-b4a4-1aca2ced6124", + "Name": null + }, + "c98906c1-24c8-4d53-a2b6-c84a1ab21df0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a97ac7b9-04c5-45bf-b4a4-1aca2ced6124", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "602f4492-d5fc-477b-a08e-025d9c0e442c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a97ac7b9-04c5-45bf-b4a4-1aca2ced6124", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c98906c1-24c8-4d53-a2b6-c84a1ab21df0", + "Name": null + }, + "10c2c359-d083-4a13-8f24-c520bf3d23ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c98906c1-24c8-4d53-a2b6-c84a1ab21df0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "10c2c359-d083-4a13-8f24-c520bf3d23ff", + "Name": "Base Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "f3a007e5-2ebc-46ff-8a4b-46a210f79dad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c98906c1-24c8-4d53-a2b6-c84a1ab21df0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.1 + ] + } + }, + "Id": "f3a007e5-2ebc-46ff-8a4b-46a210f79dad", + "Name": "Base Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "6983cb97-5b3c-4db8-929b-2737b6833efc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c98906c1-24c8-4d53-a2b6-c84a1ab21df0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Id": "6983cb97-5b3c-4db8-929b-2737b6833efc", + "Name": "Base Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "ad94e7f3-2073-4070-b796-03864cae9f88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 59.43041262525221, + 0.0, + -1.0, + 0.0, + 22.796539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ad94e7f3-2073-4070-b796-03864cae9f88", + "Name": "Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "fa2fbab0-0f9d-4113-9f94-140163929a4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 59.03041262525221, + 0.0, + -1.0, + 0.0, + 22.796539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fa2fbab0-0f9d-4113-9f94-140163929a4a", + "Name": "Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "33e39e8c-1867-46a6-848b-5a0bd0cad056": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 58.13041262525221, + 0.0, + -1.0, + 0.0, + 22.796539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "33e39e8c-1867-46a6-848b-5a0bd0cad056", + "Name": "Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "4a8fff80-da70-4513-ab19-439529ff3b67": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1d77cd0a-d8d2-4ac4-822b-c250883637cf", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 56.42615000351825, + 0.0, + -1.0, + 0.0, + 22.796539999999368, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4a8fff80-da70-4513-ab19-439529ff3b67", + "Name": "Mullion", + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce" + }, + "c0a636db-dd10-46cc-a7cb-a430d14b8fce": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.84653999999937, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.84653999999937, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.746539999999367, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.746539999999367, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c0a636db-dd10-46cc-a7cb-a430d14b8fce", + "Name": null + }, + "ae881b78-2bb4-4cf9-ad77-bc8719766dc7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.84653999999937, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.84653999999937, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.746539999999367, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.746539999999367, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ae881b78-2bb4-4cf9-ad77-bc8719766dc7", + "Name": null + }, + "ab6cd8e5-8772-4ed5-ad4a-c02232cb48ab": { + "discriminator": "Elements.Header", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.1, + "Height": 1.2999999999999998, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 2.7 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ae881b78-2bb4-4cf9-ad77-bc8719766dc7", + "Height": 1.2999999999999998, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ab6cd8e5-8772-4ed5-ad4a-c02232cb48ab", + "Name": null, + "Wall": "347f9dd6-0364-4ab3-b747-6a6d68e160ce", + "Wall Candidate": "8fa37c6a-3d55-4a83-86d7-c1f7cc0e0ca6" + }, + "beed7f94-b56c-4d23-8e51-4932d9779eba": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.32615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.32615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.526150003518254, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.526150003518254, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "beed7f94-b56c-4d23-8e51-4932d9779eba", + "Name": null + }, + "c787244a-2593-4fb0-ad6a-f70cc0a1df62": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.32615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.32615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.526150003518254, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.526150003518254, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c787244a-2593-4fb0-ad6a-f70cc0a1df62", + "Name": null + }, + "c7f57cfe-abb2-4c6d-8835-31dabb93947e": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c787244a-2593-4fb0-ad6a-f70cc0a1df62", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c7f57cfe-abb2-4c6d-8835-31dabb93947e", + "Name": null, + "Wall Candidate": "9f0d8726-dab6-4d29-8927-4a9d859450e5" + }, + "3447520e-b21d-498a-8e18-09ee388301eb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.53040999999998, + "Y": 18.69908993592961, + "Z": 0.0 + }, + { + "X": 59.53041262525219, + "Y": 22.796539935928976, + "Z": 0.0 + }, + { + "X": 59.33041262525223, + "Y": 22.79654006406976, + "Z": 0.0 + }, + { + "X": 59.33041000000002, + "Y": 18.699090064070393, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3447520e-b21d-498a-8e18-09ee388301eb", + "Name": null + }, + "2522323b-952e-44ee-bde5-9db38b2ee54c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.53040999999998, + "Y": 18.69908993592961, + "Z": 0.0 + }, + { + "X": 59.53041262525219, + "Y": 22.796539935928976, + "Z": 0.0 + }, + { + "X": 59.33041262525223, + "Y": 22.79654006406976, + "Z": 0.0 + }, + { + "X": 59.33041000000002, + "Y": 18.699090064070393, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2522323b-952e-44ee-bde5-9db38b2ee54c", + "Name": null + }, + "f763ab30-9a9d-41a5-bd1c-14aa8e9bbec3": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + "Thickness": 0.2, + "Height": 4.0, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d08ffb2c-4b58-4020-994e-922c175525c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2522323b-952e-44ee-bde5-9db38b2ee54c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f763ab30-9a9d-41a5-bd1c-14aa8e9bbec3", + "Name": null, + "Wall Candidate": "61c6e881-16ae-477a-b9f0-6669142fe5b4" + }, + "a8f5c08a-8591-4f1d-850e-a1735ff40375": { + "discriminator": "Elements.ElementProxy", + "elementId": "6c24232f-2b93-4dc5-a752-94c365fce027", + "dependency": "Unit Layout", + "Id": "a8f5c08a-8591-4f1d-850e-a1735ff40375", + "Name": null, + "Unit Layout": "33dd865f-c3f9-4122-ba31-71465791944f" + }, + "92993110-2378-4db6-a437-470e9525ffac": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + }, + "Max": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "92993110-2378-4db6-a437-470e9525ffac", + "Name": null + }, + "8625b40b-90ec-49c6-996a-1cfc4c9eb81c": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8625b40b-90ec-49c6-996a-1cfc4c9eb81c", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "0c1e3c8e-17ad-4fd3-ba69-c8609cc5a13e", + "discriminator": "Elements.Geometry.Profile" + }, + "0b896e4e-7e89-478e-9913-fdf46335e300": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Name": "Meeting Room" + }, + "88258986-3dd1-42b6-adb1-56c3533b0b4e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.01 + }, + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "88258986-3dd1-42b6-adb1-56c3533b0b4e", + "Name": "Meeting Room" + }, + "06195d50-858d-4158-9577-e27620b4a0c9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + }, + "Max": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "06195d50-858d-4158-9577-e27620b4a0c9", + "Name": null + }, + "e0c46344-48a4-42c3-9f4a-fc43a21e3d14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.01 + }, + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e0c46344-48a4-42c3-9f4a-fc43a21e3d14", + "Name": "Meeting Room" + }, + "0c1e3c8e-17ad-4fd3-ba69-c8609cc5a13e": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 84.20607499999936, + "Y": 39.05908197731572, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 84.20607499999936, + "Y": 39.05908197731572, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.20607499999936, + "Y": 39.05908197731572, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "06195d50-858d-4158-9577-e27620b4a0c9", + "Boundary": "8625b40b-90ec-49c6-996a-1cfc4c9eb81c", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + } + ], + "Area": 17.888673193059276, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e0c46344-48a4-42c3-9f4a-fc43a21e3d14", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0c1e3c8e-17ad-4fd3-ba69-c8609cc5a13e", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "95607026-7cab-4cd4-838a-6304cd0f7437", + "identity": null + } + ] + } + }, + "d68d23e6-a290-463e-a45d-d0aa27baf0cc": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 63.07743950107085, + "Y": 18.699080972124317, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 22.79654, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "d68d23e6-a290-463e-a45d-d0aa27baf0cc", + "Name": null + }, + "b5e48c4b-9b81-451a-bcd8-64a5db1439c0": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b5e48c4b-9b81-451a-bcd8-64a5db1439c0", + "Name": "Open Collaboration", + "Color": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 0.5 + }, + "SpaceBoundary": "70654dc9-eef1-446e-a79c-0c4d50b298ee", + "discriminator": "Elements.Geometry.Profile" + }, + "22768f57-a2ce-417f-96b9-be7c8d624a0d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "22768f57-a2ce-417f-96b9-be7c8d624a0d", + "Name": "Open Collaboration" + }, + "969ef1f0-89ae-4a25-8718-04177f907f3c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.01 + }, + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "969ef1f0-89ae-4a25-8718-04177f907f3c", + "Name": "Open Collaboration" + }, + "17d5b104-2d51-4a38-a716-77893d88d002": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 63.07743950107085, + "Y": 18.699080972124317, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 22.79654, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "17d5b104-2d51-4a38-a716-77893d88d002", + "Name": null + }, + "030dbf48-eaaf-4876-8343-24f8ce9b231d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.01 + }, + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "030dbf48-eaaf-4876-8343-24f8ce9b231d", + "Name": "Open Collaboration" + }, + "70654dc9-eef1-446e-a79c-0c4d50b298ee": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 67.15890656952605, + "Y": 20.747811915036554, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 67.15890656952605, + "Y": 20.747811915036554, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.15890656952605, + "Y": 20.747811915036554, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Collaboration", + "Room View": "17d5b104-2d51-4a38-a716-77893d88d002", + "Boundary": "b5e48c4b-9b81-451a-bcd8-64a5db1439c0", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 33.447241381446474, + "Height": 4.0, + "Program Type": "Open Collaboration", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "22768f57-a2ce-417f-96b9-be7c8d624a0d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "030dbf48-eaaf-4876-8343-24f8ce9b231d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "70654dc9-eef1-446e-a79c-0c4d50b298ee", + "Name": "Open Collaboration", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "7c0d781a-b9ec-42e7-94af-c373e050eab4", + "identity": null + } + ], + "Spaces": [ + { + "id": "771817c8-5c08-4f50-a709-c81408794d15", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.15890553358821, + "Y": 20.747812046057163, + "Z": 0.0 + } + } + } + ] + } + }, + "43ae0944-d0e7-4254-9c49-84a8c3acbf51": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "43ae0944-d0e7-4254-9c49-84a8c3acbf51", + "Name": null + }, + "ed9e345d-a8a9-4cff-9cba-025dd3246e39": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ed9e345d-a8a9-4cff-9cba-025dd3246e39", + "Name": "Open Collaboration", + "Color": { + "Red": 0.8196078431372549, + "Green": 0.8784313725490196, + "Blue": 0.6980392156862745, + "Alpha": 0.5 + }, + "SpaceBoundary": "5a127ddf-8a9e-4691-9546-59964fdf9afd", + "discriminator": "Elements.Geometry.Profile" + }, + "9a598edb-0e6f-4e1a-8f73-0b1effdb368d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9a598edb-0e6f-4e1a-8f73-0b1effdb368d", + "Name": "Open Collaboration" + }, + "b15d2d1c-0510-46c0-b3bd-e73a9de48c49": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b15d2d1c-0510-46c0-b3bd-e73a9de48c49", + "Name": null + }, + "8b5aaf50-2ef7-458c-ac69-a92e35fe848a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8b5aaf50-2ef7-458c-ac69-a92e35fe848a", + "Name": "Open Collaboration" + }, + "5a127ddf-8a9e-4691-9546-59964fdf9afd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 84.20607500000092, + "Y": 41.52151007316877, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 84.20607500000092, + "Y": 41.52151007316877, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.20607500000092, + "Y": 41.52151007316877, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Collaboration", + "Room View": "b15d2d1c-0510-46c0-b3bd-e73a9de48c49", + "Boundary": "ed9e345d-a8a9-4cff-9cba-025dd3246e39", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + ] + } + ], + "Area": 6.441544602254908, + "Height": 4.0, + "Program Type": "Open Collaboration", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Collaboration", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "22768f57-a2ce-417f-96b9-be7c8d624a0d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8b5aaf50-2ef7-458c-ac69-a92e35fe848a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a127ddf-8a9e-4691-9546-59964fdf9afd", + "Name": "Open Collaboration", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a520662f-5aaa-49ff-ad13-4697757309ab", + "identity": null + } + ], + "Spaces": [ + { + "id": "d8a10549-3d7f-4636-ae27-a0c11072fdfc", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.20607499999984, + "Y": 41.52151007316823, + "Z": 0.0 + } + } + } + ] + } + }, + "755456a9-30c7-4a05-b4a5-b84c9c0f6dd4": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 37.24859380829531, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "755456a9-30c7-4a05-b4a5-b84c9c0f6dd4", + "Name": null + }, + "31c6ca80-8177-430d-8448-cbce734b561a": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "31c6ca80-8177-430d-8448-cbce734b561a", + "Name": "Resource / Copy", + "Color": { + "Red": 0.4729217260484219, + "Green": 0.044930153081626706, + "Blue": 0.4568905846480702, + "Alpha": 0.5 + }, + "SpaceBoundary": "96d57b83-656f-4daf-bb91-bb9a39098aa7", + "discriminator": "Elements.Geometry.Profile" + }, + "b653fc82-f4e9-4e96-8379-14a1507846ce": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4729217260484219, + "Green": 0.044930153081626706, + "Blue": 0.4568905846480702, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "b653fc82-f4e9-4e96-8379-14a1507846ce", + "Name": "Resource / Copy" + }, + "978b0444-8d6d-49d7-af05-73985067e667": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 82.50044, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 82.50044, + "Y": 32.50104, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 32.50104, + "Z": 0.01 + }, + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "978b0444-8d6d-49d7-af05-73985067e667", + "Name": "Resource / Copy" + }, + "ad9d6637-477b-4277-bb30-2e6a2aeea810": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 37.24859380829531, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "ad9d6637-477b-4277-bb30-2e6a2aeea810", + "Name": null + }, + "baf1f467-b539-463a-812d-2db12d9e2a6c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 82.50044, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 82.50044, + "Y": 32.50104, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 32.50104, + "Z": 0.01 + }, + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "baf1f467-b539-463a-812d-2db12d9e2a6c", + "Name": "Resource / Copy" + }, + "96d57b83-656f-4daf-bb91-bb9a39098aa7": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 84.20437429794525, + "Y": 34.87287314535864, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 84.20437429794525, + "Y": 34.87287314535864, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.20437429794525, + "Y": 34.87287314535864, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Resource / Copy", + "Room View": "ad9d6637-477b-4277-bb30-2e6a2aeea810", + "Boundary": "31c6ca80-8177-430d-8448-cbce734b561a", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 82.50044, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 32.50104, + "Z": 0.0 + }, + { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + ] + } + ], + "Area": 23.473412998681397, + "Height": 4.0, + "Program Type": "Resource / Copy", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Resource / Copy", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b653fc82-f4e9-4e96-8379-14a1507846ce", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "baf1f467-b539-463a-812d-2db12d9e2a6c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "96d57b83-656f-4daf-bb91-bb9a39098aa7", + "Name": "Resource / Copy", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "e65889b4-66d4-4e26-bc17-3269bce9d569", + "identity": null + } + ], + "Spaces": [ + { + "id": "0a6319bf-8da3-4c2f-b607-213848e5cb10", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 83.6375299999999, + "Y": 34.07522126943177, + "Z": 0.0 + } + } + } + ] + } + }, + "84a00867-6b02-404f-b6ba-2e578505d32f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.053837808158455, + "Y": 43.67344999999841, + "Z": 0.01 + }, + "Max": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "84a00867-6b02-404f-b6ba-2e578505d32f", + "Name": null + }, + "77fcec3e-a473-442c-899d-fdcf2b6d667d": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "77fcec3e-a473-442c-899d-fdcf2b6d667d", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "f91ef1e3-22d1-434b-b933-95fe79b9a849", + "discriminator": "Elements.Geometry.Profile" + }, + "548caefa-a3ae-4d6d-bd34-b635284ac879": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.01 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "548caefa-a3ae-4d6d-bd34-b635284ac879", + "Name": "Meeting Room" + }, + "26f5dc3c-f3f3-49f6-b52a-b635e5648391": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.053837808158455, + "Y": 43.67344999999841, + "Z": 0.01 + }, + "Max": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "26f5dc3c-f3f3-49f6-b52a-b635e5648391", + "Name": null + }, + "1eb06c30-431f-4e5b-bd8d-4f96c2cbb28c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.01 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1eb06c30-431f-4e5b-bd8d-4f96c2cbb28c", + "Name": "Meeting Room" + }, + "f91ef1e3-22d1-434b-b933-95fe79b9a849": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 25.004567948695062, + "Y": 47.07693499999968, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 25.004567948695062, + "Y": 47.07693499999968, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 25.004567948695062, + "Y": 47.07693499999968, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "26f5dc3c-f3f3-49f6-b52a-b635e5648391", + "Boundary": "77fcec3e-a473-442c-899d-fdcf2b6d667d", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + } + ], + "Area": 26.55712308945806, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1eb06c30-431f-4e5b-bd8d-4f96c2cbb28c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f91ef1e3-22d1-434b-b933-95fe79b9a849", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "8d0a754f-b235-4592-b0b0-e9e02c248d1c", + "identity": null + } + ], + "Spaces": [ + { + "id": "29b3a3ce-1828-45b7-af5f-1d6a2951c68a", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 25.004567948694973, + "Y": 46.826905595699, + "Z": 0.0 + } + } + } + ] + } + }, + "a6a2b600-9dae-436b-bac7-e1f45b50f3ca": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.95529808923129, + "Y": 43.67344999999841, + "Z": 0.01 + }, + "Max": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a6a2b600-9dae-436b-bac7-e1f45b50f3ca", + "Name": null + }, + "c8fe1e5f-cc7f-4f1a-ad9d-648c587c54f6": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8fe1e5f-cc7f-4f1a-ad9d-648c587c54f6", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "21c5de94-8810-4d07-900d-82f90d830241", + "discriminator": "Elements.Geometry.Profile" + }, + "ffd1c753-2256-47b0-bb40-3fd8bf690729": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ffd1c753-2256-47b0-bb40-3fd8bf690729", + "Name": "Meeting Room" + }, + "6a496e62-a6ee-4a9d-bcc0-6795861eb8d2": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.95529808923129, + "Y": 43.67344999999841, + "Z": 0.01 + }, + "Max": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "6a496e62-a6ee-4a9d-bcc0-6795861eb8d2", + "Name": null + }, + "f1a5c0ba-895a-4311-b64c-cbae62abec1b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f1a5c0ba-895a-4311-b64c-cbae62abec1b", + "Name": "Meeting Room" + }, + "21c5de94-8810-4d07-900d-82f90d830241": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 28.791014044615892, + "Y": 45.3751924999991, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 28.791014044615892, + "Y": 45.3751924999991, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.791014044615892, + "Y": 45.3751924999991, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "6a496e62-a6ee-4a9d-bcc0-6795861eb8d2", + "Boundary": "c8fe1e5f-cc7f-4f1a-ad9d-648c587c54f6", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + } + ], + "Area": 12.495663436825339, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f1a5c0ba-895a-4311-b64c-cbae62abec1b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "21c5de94-8810-4d07-900d-82f90d830241", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "59e6c653-8fc6-4b03-a1b5-e4959ee6a833", + "identity": null + } + ], + "Spaces": [ + { + "id": "126d473c-a911-447d-a05c-b151fc4d1947", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.791014044616166, + "Y": 45.3751924999992, + "Z": 0.0 + } + } + } + ] + } + }, + "a31e749f-2340-493b-b14d-19d2054cc948": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + }, + "Max": { + "X": 30.62673000000177, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a31e749f-2340-493b-b14d-19d2054cc948", + "Name": null + }, + "e557abe5-bd11-483c-b61f-2d5a44ba0e3d": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e557abe5-bd11-483c-b61f-2d5a44ba0e3d", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "d34fb7c6-ff2f-4ff5-a693-b11500aa6abd", + "discriminator": "Elements.Geometry.Profile" + }, + "dcfa1f35-b351-429c-b952-718b745b97aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dcfa1f35-b351-429c-b952-718b745b97aa", + "Name": "Meeting Room" + }, + "760d51a3-dd6c-481f-b69b-80c3c340c852": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + }, + "Max": { + "X": 30.62673000000177, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "760d51a3-dd6c-481f-b69b-80c3c340c852", + "Name": null + }, + "84d97f58-2523-474c-89f1-0da99c276562": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "84d97f58-2523-474c-89f1-0da99c276562", + "Name": "Meeting Room" + }, + "d34fb7c6-ff2f-4ff5-a693-b11500aa6abd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 28.79101404461621, + "Y": 48.77867749999957, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 28.79101404461621, + "Y": 48.77867749999957, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.79101404461621, + "Y": 48.77867749999957, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "760d51a3-dd6c-481f-b69b-80c3c340c852", + "Boundary": "e557abe5-bd11-483c-b61f-2d5a44ba0e3d", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + ] + } + ], + "Area": 12.495663436827954, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "84d97f58-2523-474c-89f1-0da99c276562", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d34fb7c6-ff2f-4ff5-a693-b11500aa6abd", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "e8821eee-8c42-4cfe-8cbe-5132da0bff3f", + "identity": null + } + ], + "Spaces": [ + { + "id": "fee09737-8a79-43a0-937a-8f623c5ae0f4", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.791014044616162, + "Y": 48.7786774999996, + "Z": 0.0 + } + } + } + ] + } + }, + "c4390d86-b654-484c-9933-f0041c928115": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + "Max": { + "X": 30.62673, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c4390d86-b654-484c-9933-f0041c928115", + "Name": null + }, + "4b09ca94-7a46-4362-8f0a-b577ea282ade": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4b09ca94-7a46-4362-8f0a-b577ea282ade", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "579c6410-2916-486d-a8a3-4df1146df0e0", + "discriminator": "Elements.Geometry.Profile" + }, + "c6beb30b-4585-4fbe-879f-ba0b59533300": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Name": "Private Office" + }, + "df1247d3-8d87-4893-a0a6-5a0f5a078749": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "df1247d3-8d87-4893-a0a6-5a0f5a078749", + "Name": "Private Office" + }, + "881438cf-4778-45b4-85e5-fd1cdca3dc2f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + "Max": { + "X": 30.62673, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "881438cf-4778-45b4-85e5-fd1cdca3dc2f", + "Name": null + }, + "f763d18a-8dfc-4fca-9b58-6cb80fc5772d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f763d18a-8dfc-4fca-9b58-6cb80fc5772d", + "Name": "Private Office" + }, + "579c6410-2916-486d-a8a3-4df1146df0e0": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 27.807958068240847, + "Y": 54.116694999999886, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 27.807958068240847, + "Y": 54.116694999999886, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 27.807958068240847, + "Y": 54.116694999999886, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "881438cf-4778-45b4-85e5-fd1cdca3dc2f", + "Boundary": "4b09ca94-7a46-4362-8f0a-b577ea282ade", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + ] + } + ], + "Area": 24.086688034073973, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f763d18a-8dfc-4fca-9b58-6cb80fc5772d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "579c6410-2916-486d-a8a3-4df1146df0e0", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "18263023-a71c-4ff5-9304-3aec5b0f58bb", + "identity": null + } + ], + "Spaces": [ + { + "id": "1b5bbd4f-5c09-4948-a116-65cb3e764916", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 27.807958068240836, + "Y": 54.116694999999886, + "Z": 0.0 + } + } + } + ] + } + }, + "5b897548-b9ca-4dd1-82dd-c0eda389eec3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 24.989186136481678, + "Y": 56.25296999999964, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "5b897548-b9ca-4dd1-82dd-c0eda389eec3", + "Name": null + }, + "cfebed50-41cb-4dc8-9627-6c62838935cd": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cfebed50-41cb-4dc8-9627-6c62838935cd", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "3cb023ef-2fa6-42ca-a6d1-a182735248d0", + "discriminator": "Elements.Geometry.Profile" + }, + "0c37f031-0627-4f35-a9c3-d6b1b9ae7cb5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.01 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0c37f031-0627-4f35-a9c3-d6b1b9ae7cb5", + "Name": "Private Office" + }, + "cdcab726-bc63-4194-9d60-07a7fec20560": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 24.989186136481678, + "Y": 56.25296999999964, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "cdcab726-bc63-4194-9d60-07a7fec20560", + "Name": null + }, + "33349a23-69c5-42aa-b35c-0d94c65acf78": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.01 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "33349a23-69c5-42aa-b35c-0d94c65acf78", + "Name": "Private Office" + }, + "3cb023ef-2fa6-42ca-a6d1-a182735248d0": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 23.190379961783382, + "Y": 54.116694999999936, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 23.190379961783382, + "Y": 54.116694999999936, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.190379961783382, + "Y": 54.116694999999936, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "cdcab726-bc63-4194-9d60-07a7fec20560", + "Boundary": "cfebed50-41cb-4dc8-9627-6c62838935cd", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + ] + } + ], + "Area": 15.370978643413764, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "33349a23-69c5-42aa-b35c-0d94c65acf78", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3cb023ef-2fa6-42ca-a6d1-a182735248d0", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a6c05c85-38fb-4aaa-93b7-afec31182827", + "identity": null + } + ], + "Spaces": [ + { + "id": "a5e8cb4e-6bc9-49b3-8f07-17c1d8d5a4fb", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.190379961783293, + "Y": 54.116694999999766, + "Z": 0.0 + } + } + } + ] + } + }, + "f11601ff-72a6-4022-a796-1ba12f8c1965": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 21.391573787084962, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "f11601ff-72a6-4022-a796-1ba12f8c1965", + "Name": null + }, + "2196ffaa-bd02-47b5-b976-0222bea212be": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2196ffaa-bd02-47b5-b976-0222bea212be", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "6b6f4dfd-8e82-4266-88f3-38549f6db7db", + "discriminator": "Elements.Geometry.Profile" + }, + "95908829-1e3b-4133-8584-28c66995b128": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.01 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "95908829-1e3b-4133-8584-28c66995b128", + "Name": "Private Office" + }, + "7e9c0f88-bc3a-4a71-8899-c9ba69ad5ce0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 21.391573787084962, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "7e9c0f88-bc3a-4a71-8899-c9ba69ad5ce0", + "Name": null + }, + "a0facbf2-d801-48e2-9e25-c2e37f90941d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.01 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a0facbf2-d801-48e2-9e25-c2e37f90941d", + "Name": "Private Office" + }, + "6b6f4dfd-8e82-4266-88f3-38549f6db7db": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 19.619856893542337, + "Y": 54.11669500000005, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 19.619856893542337, + "Y": 54.11669500000005, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 19.619856893542337, + "Y": 54.11669500000005, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "7e9c0f88-bc3a-4a71-8899-c9ba69ad5ce0", + "Boundary": "2196ffaa-bd02-47b5-b976-0222bea212be", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + } + ], + "Area": 15.139498027011768, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a0facbf2-d801-48e2-9e25-c2e37f90941d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b6f4dfd-8e82-4266-88f3-38549f6db7db", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "243736b9-22b8-4a91-b8e3-8d5bf10c66bd", + "identity": null + } + ], + "Spaces": [ + { + "id": "4f1a3474-6982-4816-8477-0667a21181d8", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 19.619856893542483, + "Y": 54.116695000000185, + "Z": 0.0 + } + } + } + ] + } + }, + "c38b071d-7562-40a6-b487-9b8916ed4ee5": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 13.995514757727523, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c38b071d-7562-40a6-b487-9b8916ed4ee5", + "Name": null + }, + "0478235b-668c-4878-be17-6f8d4eb582af": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0478235b-668c-4878-be17-6f8d4eb582af", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "db000d67-8e60-4ae8-aae2-1b4e1deb12d1", + "discriminator": "Elements.Geometry.Profile" + }, + "071dc174-39b0-4bfb-8c03-bca9c0ed6459": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.01 + }, + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "071dc174-39b0-4bfb-8c03-bca9c0ed6459", + "Name": "Private Office" + }, + "5e55ce84-a243-4581-a2de-b5d62d51b585": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 13.995514757727523, + "Y": 51.98041999999987, + "Z": 0.01 + }, + "Max": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "5e55ce84-a243-4581-a2de-b5d62d51b585", + "Name": null + }, + "99ae372d-39fe-469f-b0cc-a0a4ea176683": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.01 + }, + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.01 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "99ae372d-39fe-469f-b0cc-a0a4ea176683", + "Name": "Private Office" + }, + "db000d67-8e60-4ae8-aae2-1b4e1deb12d1": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 15.921827378863792, + "Y": 54.11669500000053, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 15.921827378863792, + "Y": 54.11669500000053, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 15.921827378863792, + "Y": 54.11669500000053, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "5e55ce84-a243-4581-a2de-b5d62d51b585", + "Boundary": "0478235b-668c-4878-be17-6f8d4eb582af", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + } + ], + "Area": 16.46053397887715, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "99ae372d-39fe-469f-b0cc-a0a4ea176683", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "db000d67-8e60-4ae8-aae2-1b4e1deb12d1", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "f45892d0-10e6-4d0c-b114-a7d25ab0f4e0", + "identity": null + } + ], + "Spaces": [ + { + "id": "41970fb1-ce20-41a3-9863-b7658651017f", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 15.921827378863807, + "Y": 54.11669500000063, + "Z": 0.0 + } + } + } + ] + } + }, + "756b6c6c-bb7c-4b1b-bc46-80bfbd274077": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 8.01717, + "Y": 51.98041999999992, + "Z": 0.01 + }, + "Max": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "756b6c6c-bb7c-4b1b-bc46-80bfbd274077", + "Name": null + }, + "db330e81-bfb5-4617-84f6-da772f803d6f": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "db330e81-bfb5-4617-84f6-da772f803d6f", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1", + "discriminator": "Elements.Geometry.Profile" + }, + "2214a79a-5c90-4985-aadb-f59424a5dd32": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2214a79a-5c90-4985-aadb-f59424a5dd32", + "Name": "Private Office" + }, + "ee0f7d81-5f53-4b8d-87b3-5708d30f1870": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 8.01717, + "Y": 51.98041999999992, + "Z": 0.01 + }, + "Max": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "ee0f7d81-5f53-4b8d-87b3-5708d30f1870", + "Name": null + }, + "0f7aeffa-74c7-4478-bf95-6d750a35402b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.01 + }, + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0f7aeffa-74c7-4478-bf95-6d750a35402b", + "Name": "Private Office" + }, + "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 11.00634237886394, + "Y": 54.11669500000035, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 11.00634237886394, + "Y": 54.11669500000035, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 11.00634237886394, + "Y": 54.11669500000035, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "ee0f7d81-5f53-4b8d-87b3-5708d30f1870", + "Boundary": "db330e81-bfb5-4617-84f6-da772f803d6f", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + ] + } + ], + "Area": 25.54277689463322, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0f7aeffa-74c7-4478-bf95-6d750a35402b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "3aa0694c-ee49-4660-a123-fe33c93c4001", + "identity": null + } + ], + "Spaces": [ + { + "id": "1865e8b2-e601-44ca-adaf-cf47885146a8", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 11.006342378863776, + "Y": 54.11669500000033, + "Z": 0.0 + } + } + } + ] + } + }, + "df1e8629-99a5-4bf6-88f2-dabd0edea5ac": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 50.73247316631692, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 54.464324782482265, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "df1e8629-99a5-4bf6-88f2-dabd0edea5ac", + "Name": null + }, + "07176483-02c7-45fd-a74d-551d4111a21d": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "07176483-02c7-45fd-a74d-551d4111a21d", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "0f4222db-b924-45ae-8646-10b838961ccd", + "discriminator": "Elements.Geometry.Profile" + }, + "d59713b4-9f0b-4fcc-89e4-74a0d42f202c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d59713b4-9f0b-4fcc-89e4-74a0d42f202c", + "Name": "Private Office" + }, + "4acb3c88-0534-4f92-b7e9-b77858edeee3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 50.73247316631692, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 54.464324782482265, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "4acb3c88-0534-4f92-b7e9-b77858edeee3", + "Name": null + }, + "a4b074a3-4da6-45cd-a1ed-22c68cf99ab7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a4b074a3-4da6-45cd-a1ed-22c68cf99ab7", + "Name": "Private Office" + }, + "0f4222db-b924-45ae-8646-10b838961ccd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 52.59839897439936, + "Y": 53.96663883534343, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 52.59839897439936, + "Y": 53.96663883534343, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 52.59839897439936, + "Y": 53.96663883534343, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "4acb3c88-0534-4f92-b7e9-b77858edeee3", + "Boundary": "07176483-02c7-45fd-a74d-551d4111a21d", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + ] + } + ], + "Area": 17.06449730382974, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a4b074a3-4da6-45cd-a1ed-22c68cf99ab7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0f4222db-b924-45ae-8646-10b838961ccd", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "7c7713e1-0208-4b3e-9942-455a9fcc1c8c", + "identity": null + } + ], + "Spaces": [ + { + "id": "0749cc09-1b28-4051-b73f-5235544f16c3", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 52.598398974399615, + "Y": 53.96663883534356, + "Z": 0.0 + } + } + } + ] + } + }, + "4e5a704b-754e-474a-8fa0-d3319f41b935": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 47.00698, + "Y": 51.68030767068647, + "Z": 0.01 + }, + "Max": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "4e5a704b-754e-474a-8fa0-d3319f41b935", + "Name": null + }, + "5a6d92fa-9408-472e-8a8c-41389cf793ac": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5a6d92fa-9408-472e-8a8c-41389cf793ac", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d", + "discriminator": "Elements.Geometry.Profile" + }, + "fa57e52a-bb8e-4114-bc2e-d967ee0adcd2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fa57e52a-bb8e-4114-bc2e-d967ee0adcd2", + "Name": "Private Office" + }, + "c4bfd0f6-eabd-48fe-b3ea-c999620ff80c": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 47.00698, + "Y": 51.68030767068647, + "Z": 0.01 + }, + "Max": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c4bfd0f6-eabd-48fe-b3ea-c999620ff80c", + "Name": null + }, + "4823070a-c8f5-4eea-8749-3486976ae041": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4823070a-c8f5-4eea-8749-3486976ae041", + "Name": "Private Office" + }, + "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 48.86972658315857, + "Y": 53.96663883534357, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 48.86972658315857, + "Y": 53.96663883534357, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 48.86972658315857, + "Y": 53.96663883534357, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "c4bfd0f6-eabd-48fe-b3ea-c999620ff80c", + "Boundary": "5a6d92fa-9408-472e-8a8c-41389cf793ac", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + ] + } + ], + "Area": 17.035422259735014, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4823070a-c8f5-4eea-8749-3486976ae041", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "592562e5-703e-4a9e-824e-c426b4fdcb4e", + "identity": null + } + ], + "Spaces": [ + { + "id": "4b8db936-c505-4e54-9bca-80a1c9bcf586", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 48.86972658315848, + "Y": 53.966638835343595, + "Z": 0.0 + } + } + } + ] + } + }, + "7f9959a8-f38c-4ea4-996a-cabef27d292f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "7f9959a8-f38c-4ea4-996a-cabef27d292f", + "Name": null + }, + "77e64360-f0e0-4950-842d-aeb03d85e2d3": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "77e64360-f0e0-4950-842d-aeb03d85e2d3", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "9b95c2ac-4dd8-4d33-85fc-352f4909006a", + "discriminator": "Elements.Geometry.Profile" + }, + "bfc27e9b-6a13-40f7-bd6a-001e8c602752": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bfc27e9b-6a13-40f7-bd6a-001e8c602752", + "Name": "Private Office" + }, + "f7796eb8-29ed-46a6-8ffa-c297781f9d27": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "f7796eb8-29ed-46a6-8ffa-c297781f9d27", + "Name": null + }, + "a9384967-3c9c-4a6b-b1bd-50df22a08d16": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a9384967-3c9c-4a6b-b1bd-50df22a08d16", + "Name": "Private Office" + }, + "9b95c2ac-4dd8-4d33-85fc-352f4909006a": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 57.35046901800593, + "Y": 53.96663883534333, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 57.35046901800593, + "Y": 53.96663883534333, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 57.35046901800593, + "Y": 53.96663883534333, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "f7796eb8-29ed-46a6-8ffa-c297781f9d27", + "Boundary": "77e64360-f0e0-4950-842d-aeb03d85e2d3", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + ] + } + ], + "Area": 26.394726045487914, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a9384967-3c9c-4a6b-b1bd-50df22a08d16", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9b95c2ac-4dd8-4d33-85fc-352f4909006a", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "4d757935-a5ff-4ec4-aa55-57b7cfab3d3f", + "identity": null + } + ], + "Spaces": [ + { + "id": "2b555ca1-f45e-44c3-8685-045eee4a3377", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 57.350469018005796, + "Y": 53.9666388353432, + "Z": 0.0 + } + } + } + ] + } + }, + "2efc5cc7-8e1b-46cf-9079-c908ca933bc0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 71.29167, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "2efc5cc7-8e1b-46cf-9079-c908ca933bc0", + "Name": null + }, + "8c26d49a-2634-4923-8760-2ef34517231d": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8c26d49a-2634-4923-8760-2ef34517231d", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "aee16692-9345-4746-8769-1835826237b0", + "discriminator": "Elements.Geometry.Profile" + }, + "a821bf00-8f68-4e8c-a92d-a843f7286be1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Name": "Open Office" + }, + "fc733573-f097-42cc-9aaa-97ece610d610": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc733573-f097-42cc-9aaa-97ece610d610", + "Name": "Open Office" + }, + "12371b0f-427d-4db2-9c7c-b1cb88786323": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + }, + "Max": { + "X": 71.29167, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "12371b0f-427d-4db2-9c7c-b1cb88786323", + "Name": null + }, + "89b892ed-afa6-4251-8af7-99fa047027d1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "89b892ed-afa6-4251-8af7-99fa047027d1", + "Name": "Open Office" + }, + "aee16692-9345-4746-8769-1835826237b0": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 65.76414162676467, + "Y": 53.96663883534327, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 65.76414162676467, + "Y": 53.96663883534327, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 65.76414162676467, + "Y": 53.96663883534327, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "12371b0f-427d-4db2-9c7c-b1cb88786323", + "Boundary": "8c26d49a-2634-4923-8760-2ef34517231d", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + ] + } + ], + "Area": 50.551041533009766, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "89b892ed-afa6-4251-8af7-99fa047027d1", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aee16692-9345-4746-8769-1835826237b0", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "1b4c9efd-45bd-482c-b240-32723b9c41c2", + "identity": null + } + ], + "Spaces": [ + { + "id": "6d2865b4-b002-4494-84d9-2c727cd2dfa1", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 65.76414162676465, + "Y": 53.96663883534323, + "Z": 0.0 + } + } + } + ] + } + }, + "4ff351e8-6729-43f9-acd1-c96586a73251": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 74.22363, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 80.51673, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "4ff351e8-6729-43f9-acd1-c96586a73251", + "Name": null + }, + "bebd4308-ec19-41e7-8541-7f2672e28b1b": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bebd4308-ec19-41e7-8541-7f2672e28b1b", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4", + "discriminator": "Elements.Geometry.Profile" + }, + "b3cb8850-9613-4379-80e3-2c89d022c969": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b3cb8850-9613-4379-80e3-2c89d022c969", + "Name": "Open Office" + }, + "0a7add44-9fd2-428c-acc8-7c53171277f3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 74.22363, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 80.51673, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0a7add44-9fd2-428c-acc8-7c53171277f3", + "Name": null + }, + "7a53eb37-4323-4348-a026-4129375e49a7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7a53eb37-4323-4348-a026-4129375e49a7", + "Name": "Open Office" + }, + "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 77.37018034944649, + "Y": 37.324739989246936, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 77.37018034944649, + "Y": 37.324739989246936, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 77.37018034944649, + "Y": 37.324739989246936, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "0a7add44-9fd2-428c-acc8-7c53171277f3", + "Boundary": "bebd4308-ec19-41e7-8541-7f2672e28b1b", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + } + ] + } + ], + "Area": 61.0268270245374, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7a53eb37-4323-4348-a026-4129375e49a7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "cee8e959-0cb9-4deb-9152-6d846e72b89b", + "identity": null + } + ], + "Spaces": [ + { + "id": "54f2133d-22c7-4079-a683-117ff14825f2", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 76.32133163841466, + "Y": 37.31341499999971, + "Z": 0.0 + } + } + } + ] + } + }, + "a41e15e3-26fd-4049-b6fa-6a1784372925": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a41e15e3-26fd-4049-b6fa-6a1784372925", + "Name": null + }, + "06f68a4d-5996-4314-b4e6-3a1b75d52fe5": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "06f68a4d-5996-4314-b4e6-3a1b75d52fe5", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "a185270c-97b5-4a6a-85d3-0cfcc59ab567", + "discriminator": "Elements.Geometry.Profile" + }, + "140cc2ce-ebe2-475a-99ea-53c4cbd98e41": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "140cc2ce-ebe2-475a-99ea-53c4cbd98e41", + "Name": "Private Office" + }, + "91d9699f-dde7-4160-847a-37e142631239": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "91d9699f-dde7-4160-847a-37e142631239", + "Name": null + }, + "f024d8a5-ef60-42b4-8d17-95d3ad726fcf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f024d8a5-ef60-42b4-8d17-95d3ad726fcf", + "Name": "Private Office" + }, + "a185270c-97b5-4a6a-85d3-0cfcc59ab567": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 21.220327422066557, + "Y": 26.591683688436483, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 21.220327422066557, + "Y": 26.591683688436483, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.220327422066557, + "Y": 26.591683688436483, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "91d9699f-dde7-4160-847a-37e142631239", + "Boundary": "06f68a4d-5996-4314-b4e6-3a1b75d52fe5", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + } + ], + "Area": 16.96742278721473, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f024d8a5-ef60-42b4-8d17-95d3ad726fcf", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a185270c-97b5-4a6a-85d3-0cfcc59ab567", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "cb7da6df-d472-40b8-bf72-1e7e0c96f992", + "identity": null + } + ], + "Spaces": [ + { + "id": "07efe67c-04a0-40b5-a997-19427643cb8f", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.22032742206657, + "Y": 26.59168368843643, + "Z": 0.0 + } + } + } + ] + } + }, + "a9afb445-e424-43ea-bbdf-c35400288f0b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + }, + "Max": { + "X": 23.06851484413346, + "Y": 30.97603, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a9afb445-e424-43ea-bbdf-c35400288f0b", + "Name": null + }, + "7164ad0e-7e77-47fe-ae09-0d541281ac4c": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7164ad0e-7e77-47fe-ae09-0d541281ac4c", + "Name": "Phone Booth", + "Color": { + "Red": 0.9764705882352941, + "Green": 0.788235294117647, + "Blue": 0.12941176470588237, + "Alpha": 0.5 + }, + "SpaceBoundary": "ce6ced40-1692-45ae-9e44-3d2aa68fb8b2", + "discriminator": "Elements.Geometry.Profile" + }, + "91554200-1035-4153-8dd3-da12f944189b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9764705882352941, + "Green": 0.788235294117647, + "Blue": 0.12941176470588237, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "91554200-1035-4153-8dd3-da12f944189b", + "Name": "Phone Booth" + }, + "7564a0a1-60df-40bb-b23b-8195aa11a795": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7564a0a1-60df-40bb-b23b-8195aa11a795", + "Name": "Phone Booth" + }, + "a1a7b373-9868-432e-b9a5-aaaf8413718c": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + }, + "Max": { + "X": 23.06851484413346, + "Y": 30.97603, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a1a7b373-9868-432e-b9a5-aaaf8413718c", + "Name": null + }, + "0d36c029-c9e9-4988-887c-57a1716dbd1f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0d36c029-c9e9-4988-887c-57a1716dbd1f", + "Name": "Phone Booth" + }, + "ce6ced40-1692-45ae-9e44-3d2aa68fb8b2": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 21.220327422066525, + "Y": 29.93142868843631, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 21.220327422066525, + "Y": 29.93142868843631, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.220327422066525, + "Y": 29.93142868843631, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Phone Booth", + "Room View": "a1a7b373-9868-432e-b9a5-aaaf8413718c", + "Boundary": "7164ad0e-7e77-47fe-ae09-0d541281ac4c", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + ] + } + ], + "Area": 7.722476020423812, + "Height": 4.0, + "Program Type": "Phone Booth", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Phone Booth", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "91554200-1035-4153-8dd3-da12f944189b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0d36c029-c9e9-4988-887c-57a1716dbd1f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ce6ced40-1692-45ae-9e44-3d2aa68fb8b2", + "Name": "Phone Booth", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "c57935eb-4380-4ec8-9a13-07cf20af4378", + "identity": null + } + ], + "Spaces": [ + { + "id": "898d796e-13ad-4a9e-abc1-195ffb9c928d", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.22032742206657, + "Y": 29.93142868843638, + "Z": 0.0 + } + } + } + ] + } + }, + "7bc66dd7-b8f8-42e7-9cad-6b60a69e61ab": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 31.044171853156378, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "7bc66dd7-b8f8-42e7-9cad-6b60a69e61ab", + "Name": null + }, + "b10813d0-067e-49b1-a823-d79469695b12": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b10813d0-067e-49b1-a823-d79469695b12", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "fd9f9f76-67dd-4476-9830-44af139a6ae4", + "discriminator": "Elements.Geometry.Profile" + }, + "bf5edd5d-9cc8-4671-82cd-b64f8b11c00e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "bf5edd5d-9cc8-4671-82cd-b64f8b11c00e", + "Name": "Meeting Room" + }, + "ade02c43-bc73-4cdc-9555-b699fb0bcc15": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 31.044171853156378, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "ade02c43-bc73-4cdc-9555-b699fb0bcc15", + "Name": null + }, + "6c4ef42d-b21f-4519-a99f-fb0bcdf304cb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.01 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6c4ef42d-b21f-4519-a99f-fb0bcdf304cb", + "Name": "Meeting Room" + }, + "fd9f9f76-67dd-4476-9830-44af139a6ae4": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 27.05634334864459, + "Y": 27.636284999999443, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 27.05634334864459, + "Y": 27.636284999999443, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 27.05634334864459, + "Y": 27.636284999999443, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "ade02c43-bc73-4cdc-9555-b699fb0bcc15", + "Boundary": "b10813d0-067e-49b1-a823-d79469695b12", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + ] + } + ], + "Area": 53.27332123519176, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6c4ef42d-b21f-4519-a99f-fb0bcdf304cb", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fd9f9f76-67dd-4476-9830-44af139a6ae4", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a7bf02c3-7356-41a8-aedb-8f8ff4a452d5", + "identity": null + } + ], + "Spaces": [ + { + "id": "9604e18e-3779-49d1-9184-a2428f2d3c80", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 26.258777647742374, + "Y": 27.88639347537413, + "Z": 0.0 + } + } + } + ] + } + }, + "3c4a2594-35e5-4943-a487-a2656926ef2a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.044171853156378, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 32.57199225162664, + "Y": 30.97602999999807, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "3c4a2594-35e5-4943-a487-a2656926ef2a", + "Name": null + }, + "5bb62ace-1ac8-4c0e-af74-724edc316668": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5bb62ace-1ac8-4c0e-af74-724edc316668", + "Name": "Circulation", + "Color": { + "Red": 0.996078431372549, + "Green": 0.9647058823529412, + "Blue": 0.8627450980392157, + "Alpha": 0.5 + }, + "SpaceBoundary": "a7595dd0-363a-467d-a158-636ed870a593", + "discriminator": "Elements.Geometry.Profile" + }, + "d6b7282b-a4f9-4a2f-b4c6-15d28981990c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.996078431372549, + "Green": 0.9647058823529412, + "Blue": 0.8627450980392157, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "d6b7282b-a4f9-4a2f-b4c6-15d28981990c", + "Name": "Circulation" + }, + "e50e2dea-aeb0-4de5-a758-23df6bb007ad": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e50e2dea-aeb0-4de5-a758-23df6bb007ad", + "Name": "Circulation" + }, + "96b3124f-68be-4b2d-ac5a-d2111d0e3429": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.044171853156378, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 32.57199225162664, + "Y": 30.97602999999807, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "96b3124f-68be-4b2d-ac5a-d2111d0e3429", + "Name": null + }, + "1af47f3e-52df-4609-af49-9dd4cd5f1ca8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1af47f3e-52df-4609-af49-9dd4cd5f1ca8", + "Name": "Circulation" + }, + "a7595dd0-363a-467d-a158-636ed870a593": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 31.808082052391413, + "Y": 27.636284999998665, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 31.808082052391413, + "Y": 27.636284999998665, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 31.808082052391413, + "Y": 27.636284999998665, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Circulation", + "Room View": "96b3124f-68be-4b2d-ac5a-d2111d0e3429", + "Boundary": "5bb62ace-1ac8-4c0e-af74-724edc316668", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 10.205061073374395, + "Height": 4.0, + "Program Type": "Circulation", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Circulation", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d6b7282b-a4f9-4a2f-b4c6-15d28981990c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1af47f3e-52df-4609-af49-9dd4cd5f1ca8", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a7595dd0-363a-467d-a158-636ed870a593", + "Name": "Circulation", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "c352ee70-d97c-470b-b6e4-4b20fe2c465d", + "identity": null + } + ], + "Spaces": [ + { + "id": "41be92f4-9558-4ae4-b8d2-2d0c0ba39188", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 31.808082052391416, + "Y": 27.636284999998857, + "Z": 0.0 + } + } + } + ] + } + }, + "ba4056b0-c196-49a1-a9e2-bfe9bb56f19d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 32.57199225162626, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 38.13396358686673, + "Y": 30.976029999998346, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "ba4056b0-c196-49a1-a9e2-bfe9bb56f19d", + "Name": null + }, + "b4d8957f-7777-4431-b354-919d88654873": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b4d8957f-7777-4431-b354-919d88654873", + "Name": "Lounge", + "Color": { + "Red": 1.0, + "Green": 0.5843137254901961, + "Blue": 0.19607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "7e71d06e-b9c6-4bd0-a319-1b1c1bc68105", + "discriminator": "Elements.Geometry.Profile" + }, + "a91f17fa-9e09-4ba1-8b88-66a414e0ba00": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 0.5843137254901961, + "Blue": 0.19607843137254902, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "a91f17fa-9e09-4ba1-8b88-66a414e0ba00", + "Name": "Lounge" + }, + "4b952d2e-ef46-4dc1-a678-4e6c46fe93ce": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.01 + }, + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.01 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4b952d2e-ef46-4dc1-a678-4e6c46fe93ce", + "Name": "Lounge" + }, + "b7df4ed3-6431-4b5d-9a19-565099a18a97": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 32.57199225162626, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 38.13396358686673, + "Y": 30.976029999998346, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b7df4ed3-6431-4b5d-9a19-565099a18a97", + "Name": null + }, + "714f46dd-1ca6-4f5c-a5c1-0f6ffecc68c0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.01 + }, + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.01 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "714f46dd-1ca6-4f5c-a5c1-0f6ffecc68c0", + "Name": "Lounge" + }, + "7e71d06e-b9c6-4bd0-a319-1b1c1bc68105": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 35.352977919246534, + "Y": 27.6362849999988, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 35.352977919246534, + "Y": 27.6362849999988, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 35.352977919246534, + "Y": 27.6362849999988, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Lounge", + "Room View": "b7df4ed3-6431-4b5d-9a19-565099a18a97", + "Boundary": "b4d8957f-7777-4431-b354-919d88654873", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 37.151131914016446, + "Height": 4.0, + "Program Type": "Lounge", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Lounge", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a91f17fa-9e09-4ba1-8b88-66a414e0ba00", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "714f46dd-1ca6-4f5c-a5c1-0f6ffecc68c0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7e71d06e-b9c6-4bd0-a319-1b1c1bc68105", + "Name": "Lounge", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "86533a44-5970-4b3b-a638-c90a2faadeab", + "identity": null + } + ], + "Spaces": [ + { + "id": "477bae0d-e292-469c-8527-178e28b8aa40", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 35.3529779192465, + "Y": 27.636284999998786, + "Z": 0.0 + } + } + } + ] + } + }, + "0ae3a081-d517-4f4e-bac1-88a17e4d7f8a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 38.13396358686638, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 42.625517797211565, + "Y": 30.97602999999857, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0ae3a081-d517-4f4e-bac1-88a17e4d7f8a", + "Name": null + }, + "5e06c241-66fb-4c2d-a39f-9f8db5ee8e73": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5e06c241-66fb-4c2d-a39f-9f8db5ee8e73", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "90be1c10-d286-45b2-88ab-94467bca71a0", + "discriminator": "Elements.Geometry.Profile" + }, + "660594ef-f4c3-4d3f-88c5-d8893ad66157": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.01 + }, + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.01 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "660594ef-f4c3-4d3f-88c5-d8893ad66157", + "Name": "Meeting Room" + }, + "68eee1f9-48aa-423e-bb2d-1ed5dfbe3966": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 38.13396358686638, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 42.625517797211565, + "Y": 30.97602999999857, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "68eee1f9-48aa-423e-bb2d-1ed5dfbe3966", + "Name": null + }, + "d137ad19-7173-4d0d-81b4-f46edd959460": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.01 + }, + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.01 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d137ad19-7173-4d0d-81b4-f46edd959460", + "Name": "Meeting Room" + }, + "90be1c10-d286-45b2-88ab-94467bca71a0": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 40.37974069203903, + "Y": 27.636284999998978, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 40.37974069203903, + "Y": 27.636284999998978, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 40.37974069203903, + "Y": 27.636284999998978, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "68eee1f9-48aa-423e-bb2d-1ed5dfbe3966", + "Boundary": "5e06c241-66fb-4c2d-a39f-9f8db5ee8e73", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 30.00129143245192, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d137ad19-7173-4d0d-81b4-f46edd959460", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "90be1c10-d286-45b2-88ab-94467bca71a0", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "d08a51f9-6153-49f1-8275-1162aeaa2f17", + "identity": null + } + ], + "Spaces": [ + { + "id": "404736d0-3b35-4679-b330-f2f52833fb53", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 40.37974069203897, + "Y": 27.636284999998914, + "Z": 0.0 + } + } + } + ] + } + }, + "a150c77f-19ff-40ba-be49-c173a2735dd9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 42.62551779721122, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 48.94414351707612, + "Y": 30.976029999998886, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a150c77f-19ff-40ba-be49-c173a2735dd9", + "Name": null + }, + "4115f965-1f6f-4028-b3a0-055fa7e57727": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4115f965-1f6f-4028-b3a0-055fa7e57727", + "Name": "Reception", + "Color": { + "Red": 0.5764705882352941, + "Green": 0.4627450980392157, + "Blue": 0.7529411764705882, + "Alpha": 0.5 + }, + "SpaceBoundary": "6347c94b-2b3d-4b3a-9536-7112796b24d7", + "discriminator": "Elements.Geometry.Profile" + }, + "378a7bdd-f32e-49da-bf5e-fcfb97be38bb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5764705882352941, + "Green": 0.4627450980392157, + "Blue": 0.7529411764705882, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "378a7bdd-f32e-49da-bf5e-fcfb97be38bb", + "Name": "Reception" + }, + "9e531340-a7e9-4e21-bc3e-3e8ee2e5cf03": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.01 + }, + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.01 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9e531340-a7e9-4e21-bc3e-3e8ee2e5cf03", + "Name": "Reception" + }, + "157390fc-a6db-4138-b4f6-e4eb693b2de3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 42.62551779721122, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 48.94414351707612, + "Y": 30.976029999998886, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "157390fc-a6db-4138-b4f6-e4eb693b2de3", + "Name": null + }, + "ef251f68-e0ee-4e08-9c31-77f7d15542e3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.01 + }, + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.01 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ef251f68-e0ee-4e08-9c31-77f7d15542e3", + "Name": "Reception" + }, + "6347c94b-2b3d-4b3a-9536-7112796b24d7": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 45.7848306571436, + "Y": 27.63628499999901, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 45.7848306571436, + "Y": 27.63628499999901, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 45.7848306571436, + "Y": 27.63628499999901, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Reception", + "Room View": "157390fc-a6db-4138-b4f6-e4eb693b2de3", + "Boundary": "4115f965-1f6f-4028-b3a0-055fa7e57727", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 42.20519730957426, + "Height": 4.0, + "Program Type": "Reception", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Reception", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "378a7bdd-f32e-49da-bf5e-fcfb97be38bb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ef251f68-e0ee-4e08-9c31-77f7d15542e3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6347c94b-2b3d-4b3a-9536-7112796b24d7", + "Name": "Reception", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "464c8cdf-9cb1-4180-9e26-90ca8e3207b0", + "identity": null + } + ], + "Spaces": [ + { + "id": "d14053b8-6a3a-4e19-850c-e017d4904e32", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 45.78483065714367, + "Y": 27.63628499999905, + "Z": 0.0 + } + } + } + ] + } + }, + "64531def-4abe-4930-a85e-18d13f432f5a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 48.94414351707577, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 53.12086916127555, + "Y": 30.976029999999096, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "64531def-4abe-4930-a85e-18d13f432f5a", + "Name": null + }, + "1d549b50-86e5-44c2-95e5-a955a1592814": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1d549b50-86e5-44c2-95e5-a955a1592814", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "85b6e9da-7c2c-4fa7-bac8-2dac8ecbab35", + "discriminator": "Elements.Geometry.Profile" + }, + "2fddd5db-9f56-40f0-a30e-f25536707a2f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.01 + }, + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.01 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2fddd5db-9f56-40f0-a30e-f25536707a2f", + "Name": "Meeting Room" + }, + "8c1c8203-32d9-45ef-9914-0d7b97a22f7b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 48.94414351707577, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 53.12086916127555, + "Y": 30.976029999999096, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "8c1c8203-32d9-45ef-9914-0d7b97a22f7b", + "Name": null + }, + "eb91f62f-6220-4980-9406-cbf295e7a6e5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.01 + }, + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.01 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "eb91f62f-6220-4980-9406-cbf295e7a6e5", + "Name": "Meeting Room" + }, + "85b6e9da-7c2c-4fa7-bac8-2dac8ecbab35": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 51.03250633917567, + "Y": 27.636284999999162, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 51.03250633917567, + "Y": 27.636284999999162, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 51.03250633917567, + "Y": 27.636284999999162, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "8c1c8203-32d9-45ef-9914-0d7b97a22f7b", + "Boundary": "1d549b50-86e5-44c2-95e5-a955a1592814", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + } + ], + "Area": 27.898397173171816, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "eb91f62f-6220-4980-9406-cbf295e7a6e5", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "85b6e9da-7c2c-4fa7-bac8-2dac8ecbab35", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "3cc04d67-d300-4e5b-9770-5b43a868f5b1", + "identity": null + } + ], + "Spaces": [ + { + "id": "fe00ffa1-13a9-4efb-b230-5b83fb2a577b", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 51.45017890359554, + "Y": 27.63628499999935, + "Z": 0.0 + } + } + } + ] + } + }, + "0e9b35ed-57ca-44d3-96dd-829a9937abb0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 53.12086916127495, + "Y": 27.63628500000004, + "Z": 0.01 + }, + "Max": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0e9b35ed-57ca-44d3-96dd-829a9937abb0", + "Name": null + }, + "8456d72f-06c5-4998-ae66-1c43c2cd18a9": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8456d72f-06c5-4998-ae66-1c43c2cd18a9", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "f3b9d53a-cf2a-4cc6-8a26-afc8868d8e23", + "discriminator": "Elements.Geometry.Profile" + }, + "8d6e7283-282a-4713-95e5-dca933c18912": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.01 + }, + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.01 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8d6e7283-282a-4713-95e5-dca933c18912", + "Name": "Meeting Room" + }, + "1e27a715-e479-4c90-b3d7-4ee7e3fd81e3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 53.12086916127495, + "Y": 27.63628500000004, + "Z": 0.01 + }, + "Max": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1e27a715-e479-4c90-b3d7-4ee7e3fd81e3", + "Name": null + }, + "531ed2e6-8fd8-452b-b577-2495aafd6427": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.01 + }, + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.01 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "531ed2e6-8fd8-452b-b577-2495aafd6427", + "Name": "Meeting Room" + }, + "f3b9d53a-cf2a-4cc6-8a26-afc8868d8e23": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 55.0203348436873, + "Y": 29.30615749999983, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 55.0203348436873, + "Y": 29.30615749999983, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 55.0203348436873, + "Y": 29.30615749999983, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "1e27a715-e479-4c90-b3d7-4ee7e3fd81e3", + "Boundary": "8456d72f-06c5-4998-ae66-1c43c2cd18a9", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + ] + } + ], + "Area": 12.687462031009659, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "531ed2e6-8fd8-452b-b577-2495aafd6427", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f3b9d53a-cf2a-4cc6-8a26-afc8868d8e23", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "7e2e3da1-395b-4c8a-92f7-8f47e78c9a98", + "identity": null + } + ], + "Spaces": [ + { + "id": "6a24f9b7-ba3b-478d-af54-0c6c033f8cfd", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 55.02033484368714, + "Y": 29.306157499999664, + "Z": 0.0 + } + } + } + ] + } + }, + "0c6ce6a8-6dc9-495b-a892-1473923b1dc5": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 56.91980052609968, + "Y": 27.636285000000235, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0c6ce6a8-6dc9-495b-a892-1473923b1dc5", + "Name": null + }, + "e2accf5e-cb3f-4183-981a-a28ea6935da9": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e2accf5e-cb3f-4183-981a-a28ea6935da9", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "01f19bed-07d8-4a94-86e0-e6c69b535f69", + "discriminator": "Elements.Geometry.Profile" + }, + "26555c03-f647-4eb2-b670-86a994492326": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.01 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "26555c03-f647-4eb2-b670-86a994492326", + "Name": "Meeting Room" + }, + "2075f01a-a947-4615-b98a-3dd177656d95": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + "Max": { + "X": 56.91980052609968, + "Y": 27.636285000000235, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "2075f01a-a947-4615-b98a-3dd177656d95", + "Name": null + }, + "3fde78a0-2ece-405c-9f2b-ebf04488280d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.01 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.01 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.01 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3fde78a0-2ece-405c-9f2b-ebf04488280d", + "Name": "Meeting Room" + }, + "01f19bed-07d8-4a94-86e0-e6c69b535f69": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 55.02033484368712, + "Y": 25.96641250000009, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 55.02033484368712, + "Y": 25.96641250000009, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 55.02033484368712, + "Y": 25.96641250000009, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "2075f01a-a947-4615-b98a-3dd177656d95", + "Boundary": "e2accf5e-cb3f-4183-981a-a28ea6935da9", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + ] + } + ], + "Area": 12.687462031012842, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3fde78a0-2ece-405c-9f2b-ebf04488280d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "01f19bed-07d8-4a94-86e0-e6c69b535f69", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "614ead4c-cd21-46a4-abcc-c8a04af8c2e7", + "identity": null + } + ], + "Spaces": [ + { + "id": "671a0aef-15a9-4282-89cb-76d490bb309e", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 55.02033484368731, + "Y": 25.96641250000021, + "Z": 0.0 + } + } + } + ] + } + }, + "9d484b6f-150a-4401-a571-03646a329c1c": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.69348938580619, + "Y": 24.296540000000622, + "Z": 0.01 + }, + "Max": { + "X": 63.723295032471185, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "9d484b6f-150a-4401-a571-03646a329c1c", + "Name": null + }, + "7071b8e5-1f9f-4663-9b30-43510f0c28c0": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7071b8e5-1f9f-4663-9b30-43510f0c28c0", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "7fd3572d-149d-40aa-ab64-0c07b7d9c8d9", + "discriminator": "Elements.Geometry.Profile" + }, + "c8754035-769f-403b-9ae8-b76c1cdbe54c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.01 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8754035-769f-403b-9ae8-b76c1cdbe54c", + "Name": "Meeting Room" + }, + "2bff1c5e-d387-408c-b31b-f133cbe2995d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.69348938580619, + "Y": 24.296540000000622, + "Z": 0.01 + }, + "Max": { + "X": 63.723295032471185, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "2bff1c5e-d387-408c-b31b-f133cbe2995d", + "Name": null + }, + "17d06083-096a-4b2f-9293-e0264bf97465": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.01 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "17d06083-096a-4b2f-9293-e0264bf97465", + "Name": "Meeting Room" + }, + "7fd3572d-149d-40aa-ab64-0c07b7d9c8d9": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 61.70839220913865, + "Y": 27.636284999999873, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 61.70839220913865, + "Y": 27.636284999999873, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.70839220913865, + "Y": 27.636284999999873, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "2bff1c5e-d387-408c-b31b-f133cbe2995d", + "Boundary": "7071b8e5-1f9f-4663-9b30-43510f0c28c0", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + ] + } + ], + "Area": 26.917046518831057, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "17d06083-096a-4b2f-9293-e0264bf97465", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7fd3572d-149d-40aa-ab64-0c07b7d9c8d9", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "433a18eb-f317-4ed0-b415-51fa42546cc3", + "identity": null + } + ], + "Spaces": [ + { + "id": "35779220-4b43-4f04-8db4-bdadc4ba871d", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.70839220913868, + "Y": 27.636284999999845, + "Z": 0.0 + } + } + } + ] + } + }, + "33e42b23-9f3a-41dc-aa2a-53e034c707ff": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 63.72329503247063, + "Y": 24.296540000000288, + "Z": 0.01 + }, + "Max": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "33e42b23-9f3a-41dc-aa2a-53e034c707ff", + "Name": null + }, + "f973776a-1c7d-4d08-bf38-58a7dcd64039": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f973776a-1c7d-4d08-bf38-58a7dcd64039", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "6d1d66d3-8ac5-4158-8bc1-13a451879fce", + "discriminator": "Elements.Geometry.Profile" + }, + "f224f672-331e-4744-bec4-b9d7eed23dbb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.01 + }, + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.01 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.01 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f224f672-331e-4744-bec4-b9d7eed23dbb", + "Name": "Meeting Room" + }, + "463fccdd-fa3e-44fc-a970-4d1a1ef42ecd": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 63.72329503247063, + "Y": 24.296540000000288, + "Z": 0.01 + }, + "Max": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "463fccdd-fa3e-44fc-a970-4d1a1ef42ecd", + "Name": null + }, + "c6ca0606-3f25-436c-80b1-96f5d758cd0f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.01 + }, + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.01 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.01 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.01 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c6ca0606-3f25-436c-80b1-96f5d758cd0f", + "Name": "Meeting Room" + }, + "6d1d66d3-8ac5-4158-8bc1-13a451879fce": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 65.73819785580305, + "Y": 27.636285000000065, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 65.73819785580305, + "Y": 27.636285000000065, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 65.73819785580305, + "Y": 27.636285000000065, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "463fccdd-fa3e-44fc-a970-4d1a1ef42ecd", + "Boundary": "f973776a-1c7d-4d08-bf38-58a7dcd64039", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + } + ], + "Area": 26.917046518831967, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c6ca0606-3f25-436c-80b1-96f5d758cd0f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6d1d66d3-8ac5-4158-8bc1-13a451879fce", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "5a09147c-3fc5-4cd0-8644-f26626ca38b9", + "identity": null + } + ], + "Spaces": [ + { + "id": "21a8b284-7db2-4a8a-882f-86ca474cac59", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 66.14117842046937, + "Y": 27.874275855042292, + "Z": 0.0 + } + } + } + ] + } + }, + "22ac38ba-c471-498c-83ef-2b85b89d92f3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 30.97603000000163, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "22ac38ba-c471-498c-83ef-2b85b89d92f3", + "Name": null + }, + "6d47c60b-d653-4695-8cf5-319f5f3f8fa9": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6d47c60b-d653-4695-8cf5-319f5f3f8fa9", + "Name": "Phone Booth", + "Color": { + "Red": 0.9764705882352941, + "Green": 0.788235294117647, + "Blue": 0.12941176470588237, + "Alpha": 0.5 + }, + "SpaceBoundary": "02fc148c-6590-4570-a236-a258f348d23d", + "discriminator": "Elements.Geometry.Profile" + }, + "fc4ca837-e844-40fb-ae08-644276f8b513": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.01 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc4ca837-e844-40fb-ae08-644276f8b513", + "Name": "Phone Booth" + }, + "83fa1ed2-1a8d-4f89-bf8a-93d891268e2f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 30.97603000000163, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "83fa1ed2-1a8d-4f89-bf8a-93d891268e2f", + "Name": null + }, + "dc42c83d-f4c7-42a2-9a13-a0a111c505f7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.01 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dc42c83d-f4c7-42a2-9a13-a0a111c505f7", + "Name": "Phone Booth" + }, + "02fc148c-6590-4570-a236-a258f348d23d": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 69.49673533956702, + "Y": 29.901134637605708, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 69.49673533956702, + "Y": 29.901134637605708, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 69.49673533956702, + "Y": 29.901134637605708, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Phone Booth", + "Room View": "83fa1ed2-1a8d-4f89-bf8a-93d891268e2f", + "Boundary": "6d47c60b-d653-4695-8cf5-319f5f3f8fa9", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + } + ], + "Area": 7.496899240840094, + "Height": 4.0, + "Program Type": "Phone Booth", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Phone Booth", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "91554200-1035-4153-8dd3-da12f944189b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dc42c83d-f4c7-42a2-9a13-a0a111c505f7", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "02fc148c-6590-4570-a236-a258f348d23d", + "Name": "Phone Booth", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "e3d7a655-bd9f-48fd-99e0-ed6087ed6543", + "identity": null + } + ], + "Spaces": [ + { + "id": "1ef383b6-4dfa-41f4-bb3c-c9204b459459", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 69.49673533956746, + "Y": 29.901134637605878, + "Z": 0.0 + } + } + } + ] + } + }, + "238a6a4e-3240-4339-b77f-687b4743335f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "238a6a4e-3240-4339-b77f-687b4743335f", + "Name": null + }, + "f594f653-55a6-4be9-9f62-07c05e576462": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f594f653-55a6-4be9-9f62-07c05e576462", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "2cff036f-46a8-4d52-af21-abf5b37e827d", + "discriminator": "Elements.Geometry.Profile" + }, + "84002baf-99ca-454a-b708-c419b8bc8b2f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "84002baf-99ca-454a-b708-c419b8bc8b2f", + "Name": "Private Office" + }, + "c717e78b-8a23-4e86-82b4-8f515e5e2af6": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 23.151158175888526, + "Y": 22.79654, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c717e78b-8a23-4e86-82b4-8f515e5e2af6", + "Name": null + }, + "712bf3cc-29d0-4430-abc7-2d6da4996273": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "712bf3cc-29d0-4430-abc7-2d6da4996273", + "Name": "Private Office" + }, + "2cff036f-46a8-4d52-af21-abf5b37e827d": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 21.26164908794424, + "Y": 20.747814999999864, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 21.26164908794424, + "Y": 20.747814999999864, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.26164908794424, + "Y": 20.747814999999864, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "c717e78b-8a23-4e86-82b4-8f515e5e2af6", + "Boundary": "f594f653-55a6-4be9-9f62-07c05e576462", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 15.484338024793175, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "712bf3cc-29d0-4430-abc7-2d6da4996273", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2cff036f-46a8-4d52-af21-abf5b37e827d", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "5ed3efa1-9802-49e1-9e0f-143e491eacd0", + "identity": null + } + ], + "Spaces": [ + { + "id": "a61b4bfd-afe0-49d6-804b-3465ebf3b284", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.261649087944264, + "Y": 20.747814999999843, + "Z": 0.0 + } + } + } + ] + } + }, + "706e9a1c-33e1-4be0-82d6-d4f2a07058c9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "706e9a1c-33e1-4be0-82d6-d4f2a07058c9", + "Name": null + }, + "b8755484-743c-4c18-9c29-1792e8cf595f": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b8755484-743c-4c18-9c29-1792e8cf595f", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "bd5077f0-0a0a-44fe-a3f9-c74aea352d62", + "discriminator": "Elements.Geometry.Profile" + }, + "1343e27d-c374-48a1-a06d-83f92d4cba24": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1343e27d-c374-48a1-a06d-83f92d4cba24", + "Name": "Private Office" + }, + "3a6486c2-3f36-4c5b-948d-239baadb8731": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "3a6486c2-3f36-4c5b-948d-239baadb8731", + "Name": null + }, + "3101e8be-7a1c-4cb6-9ec7-57ecae563041": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3101e8be-7a1c-4cb6-9ec7-57ecae563041", + "Name": "Private Office" + }, + "bd5077f0-0a0a-44fe-a3f9-c74aea352d62": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 28.99641568027639, + "Y": 20.747814999999708, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 28.99641568027639, + "Y": 20.747814999999708, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.99641568027639, + "Y": 20.747814999999708, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "3a6486c2-3f36-4c5b-948d-239baadb8731", + "Boundary": "b8755484-743c-4c18-9c29-1792e8cf595f", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + ] + } + ], + "Area": 16.54772206784196, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3101e8be-7a1c-4cb6-9ec7-57ecae563041", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bd5077f0-0a0a-44fe-a3f9-c74aea352d62", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "81c1bb15-9f71-469e-acc0-b043526a6ac7", + "identity": null + } + ], + "Spaces": [ + { + "id": "6c89f2fb-3ad7-4151-93b8-4cc03c0bc07b", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 28.99641568027635, + "Y": 20.747814999999683, + "Z": 0.0 + } + } + } + ] + } + }, + "6b8dbf60-d6f7-4020-9d96-93730d162d64": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "6b8dbf60-d6f7-4020-9d96-93730d162d64", + "Name": null + }, + "2dcd4ba4-8bdc-4eed-a733-47bd65b51901": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2dcd4ba4-8bdc-4eed-a733-47bd65b51901", + "Name": "Private Office", + "Color": { + "Red": 0.12156862745098039, + "Green": 0.27058823529411763, + "Blue": 0.3607843137254902, + "Alpha": 0.5 + }, + "SpaceBoundary": "9450080a-57df-4339-9b4f-8b43f3b107a9", + "discriminator": "Elements.Geometry.Profile" + }, + "dd74a51f-0c90-4527-8ab3-7e341bf389a1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dd74a51f-0c90-4527-8ab3-7e341bf389a1", + "Name": "Private Office" + }, + "1d3d9651-33fa-4b50-8e04-a4bc5334f7ed": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1d3d9651-33fa-4b50-8e04-a4bc5334f7ed", + "Name": null + }, + "ed987ea8-f778-4ed3-a89e-c22d242f4c4d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ed987ea8-f778-4ed3-a89e-c22d242f4c4d", + "Name": "Private Office" + }, + "9450080a-57df-4339-9b4f-8b43f3b107a9": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 25.06415154096089, + "Y": 20.74781499999968, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 25.06415154096089, + "Y": 20.74781499999968, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 25.06415154096089, + "Y": 20.74781499999968, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Private Office", + "Room View": "1d3d9651-33fa-4b50-8e04-a4bc5334f7ed", + "Boundary": "2dcd4ba4-8bdc-4eed-a733-47bd65b51901", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 15.676789327429248, + "Height": 4.0, + "Program Type": "Private Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Private Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c6beb30b-4585-4fbe-879f-ba0b59533300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ed987ea8-f778-4ed3-a89e-c22d242f4c4d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9450080a-57df-4339-9b4f-8b43f3b107a9", + "Name": "Private Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "f68068fa-ae54-48ef-8ad5-20e1bc920a9c", + "identity": null + } + ], + "Spaces": [ + { + "id": "80a10a0b-46b7-4386-89de-7900f3e1a885", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 25.064151540960907, + "Y": 20.747814999999683, + "Z": 0.0 + } + } + } + ] + } + }, + "a7405fad-46e4-49e6-b33f-fb8e13efdc48": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a7405fad-46e4-49e6-b33f-fb8e13efdc48", + "Name": null + }, + "87542ada-2c7c-4739-bc40-88b4f9f6622b": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "87542ada-2c7c-4739-bc40-88b4f9f6622b", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "e548bf7c-f184-4ed2-a4e6-ca2441e37591", + "discriminator": "Elements.Geometry.Profile" + }, + "5708ff2d-fdb4-459c-9e7c-291b52c51698": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5708ff2d-fdb4-459c-9e7c-291b52c51698", + "Name": "Open Office" + }, + "c85faf6f-2729-4991-8d5d-8111ad1f35dc": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c85faf6f-2729-4991-8d5d-8111ad1f35dc", + "Name": null + }, + "49732294-faa3-4fb3-9988-501a74234d69": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "49732294-faa3-4fb3-9988-501a74234d69", + "Name": "Open Office" + }, + "e548bf7c-f184-4ed2-a4e6-ca2441e37591": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 41.8802333544179, + "Y": 20.747815000000124, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 41.8802333544179, + "Y": 20.747815000000124, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 41.8802333544179, + "Y": 20.747815000000124, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "c85faf6f-2729-4991-8d5d-8111ad1f35dc", + "Boundary": "87542ada-2c7c-4739-bc40-88b4f9f6622b", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 89.03387538997788, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "49732294-faa3-4fb3-9988-501a74234d69", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e548bf7c-f184-4ed2-a4e6-ca2441e37591", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "8b0066de-950d-46da-b8a0-ff7e572253cd", + "identity": null + } + ], + "Spaces": [ + { + "id": "f096667f-8420-432e-8cb6-83a9f5a269be", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 41.880233354417115, + "Y": 20.747815000000138, + "Z": 0.0 + } + } + } + ] + } + }, + "9834c004-9539-4285-9280-f315bf155945": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "9834c004-9539-4285-9280-f315bf155945", + "Name": null + }, + "4904f4b0-48ca-47c7-97c7-99051e431f91": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4904f4b0-48ca-47c7-97c7-99051e431f91", + "Name": "Meeting Room", + "Color": { + "Red": 0.3803921568627451, + "Green": 0.8156862745098039, + "Blue": 0.6078431372549019, + "Alpha": 0.5 + }, + "SpaceBoundary": "fc647b72-a8fc-435f-8e71-041d36b603a1", + "discriminator": "Elements.Geometry.Profile" + }, + "9d9359ad-49c1-45da-b7e8-27f5271d91d4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9d9359ad-49c1-45da-b7e8-27f5271d91d4", + "Name": "Meeting Room" + }, + "2e6343fa-08b2-4678-ac43-7c927192a0d8": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "2e6343fa-08b2-4678-ac43-7c927192a0d8", + "Name": null + }, + "48dbb77b-44d6-4c89-b78f-8031e3761127": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "48dbb77b-44d6-4c89-b78f-8031e3761127", + "Name": "Meeting Room" + }, + "fc647b72-a8fc-435f-8e71-041d36b603a1": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 57.92828065807248, + "Y": 20.747815298377052, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 57.92828065807248, + "Y": 20.747815298377052, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 57.92828065807248, + "Y": 20.747815298377052, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Meeting Room", + "Room View": "2e6343fa-08b2-4678-ac43-7c927192a0d8", + "Boundary": "4904f4b0-48ca-47c7-97c7-99051e431f91", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 12.309810501001948, + "Height": 4.0, + "Program Type": "Meeting Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Meeting Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b896e4e-7e89-478e-9913-fdf46335e300", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "48dbb77b-44d6-4c89-b78f-8031e3761127", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc647b72-a8fc-435f-8e71-041d36b603a1", + "Name": "Meeting Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "6c7d8813-2a4d-4de7-a486-72151c98133a", + "identity": null + } + ], + "Spaces": [ + { + "id": "d4187419-a14a-4dbf-a8bb-292e8464fe33", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 57.928280658072175, + "Y": 20.747814999999683, + "Z": 0.0 + } + } + } + ] + } + }, + "f25095a2-b278-4ace-9ed0-dfdb1720f9b5": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 18.69909, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "f25095a2-b278-4ace-9ed0-dfdb1720f9b5", + "Name": null + }, + "53cfc1d4-15a9-4499-a6b2-ef0715c2ab3f": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "53cfc1d4-15a9-4499-a6b2-ef0715c2ab3f", + "Name": "Pantry", + "Color": { + "Red": 0.5019607843137255, + "Green": 0.7137254901960784, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "a9553044-54e7-45e7-b6c6-da68c9e34c92", + "discriminator": "Elements.Geometry.Profile" + }, + "811badf4-2d7b-4134-8101-477c206894ab": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5019607843137255, + "Green": 0.7137254901960784, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "811badf4-2d7b-4134-8101-477c206894ab", + "Name": "Pantry" + }, + "480c1edd-9b6b-4dcc-b7f2-6e59c1d7df3e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.01 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "480c1edd-9b6b-4dcc-b7f2-6e59c1d7df3e", + "Name": "Pantry" + }, + "52d4914c-d221-464e-aa05-303f02071296": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 18.69909, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "52d4914c-d221-464e-aa05-303f02071296", + "Name": null + }, + "709b86b8-ec25-4214-82b3-7c35649b9ea0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.01 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "709b86b8-ec25-4214-82b3-7c35649b9ea0", + "Name": "Pantry" + }, + "a9553044-54e7-45e7-b6c6-da68c9e34c92": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 65.33538882488405, + "Y": 14.9186477430315, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 65.33538882488405, + "Y": 14.9186477430315, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 65.33538882488405, + "Y": 14.9186477430315, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Pantry", + "Room View": "52d4914c-d221-464e-aa05-303f02071296", + "Boundary": "53cfc1d4-15a9-4499-a6b2-ef0715c2ab3f", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + } + ], + "Area": 89.29363705537298, + "Height": 4.0, + "Program Type": "Pantry", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Pantry", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "811badf4-2d7b-4134-8101-477c206894ab", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "709b86b8-ec25-4214-82b3-7c35649b9ea0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a9553044-54e7-45e7-b6c6-da68c9e34c92", + "Name": "Pantry", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "0e0fe819-edff-478a-bbef-e6f756624290", + "identity": null + } + ], + "Spaces": [ + { + "id": "18e1e249-21ae-4ad9-9b43-cb1fcba0a622", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 64.88379990021407, + "Y": 15.674735636845856, + "Z": 0.0 + } + } + } + ] + } + }, + "46747903-c69a-4b44-b42c-259ca79618bf": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + }, + "Max": { + "X": 20.75866, + "Y": 40.79689028987393, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "46747903-c69a-4b44-b42c-259ca79618bf", + "Name": null + }, + "f43c9b54-3248-4651-b38d-6f0d100a5cee": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f43c9b54-3248-4651-b38d-6f0d100a5cee", + "Name": "Display Board", + "Color": { + "Red": 0.9060334278764359, + "Green": 0.17237629144097505, + "Blue": 0.17176066812675478, + "Alpha": 0.5 + }, + "SpaceBoundary": "ea0e4492-b9fb-4b68-b5f2-f586b94c30a9", + "discriminator": "Elements.Geometry.Profile" + }, + "9b9ad947-504b-4698-904c-84111a7c7b2c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9060334278764359, + "Green": 0.17237629144097505, + "Blue": 0.17176066812675478, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "9b9ad947-504b-4698-904c-84111a7c7b2c", + "Name": "Display Board" + }, + "76c42921-8be5-4d1e-98fc-e21935194ea1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "76c42921-8be5-4d1e-98fc-e21935194ea1", + "Name": "Display Board" + }, + "4b780381-a46a-48e4-be06-96b1aa7f40d3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + }, + "Max": { + "X": 20.75866, + "Y": 40.79689028987393, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "4b780381-a46a-48e4-be06-96b1aa7f40d3", + "Name": null + }, + "c0645e40-7411-4fda-bb13-7abee9463981": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c0645e40-7411-4fda-bb13-7abee9463981", + "Name": "Display Board" + }, + "ea0e4492-b9fb-4b68-b5f2-f586b94c30a9": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 20.06539995484652, + "Y": 37.29179946005848, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 20.06539995484652, + "Y": 37.29179946005848, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.06539995484652, + "Y": 37.29179946005848, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Display Board", + "Room View": "4b780381-a46a-48e4-be06-96b1aa7f40d3", + "Boundary": "f43c9b54-3248-4651-b38d-6f0d100a5cee", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + } + ] + } + ], + "Area": 9.719756672799122, + "Height": 4.0, + "Program Type": "Display Board", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Display Board", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9b9ad947-504b-4698-904c-84111a7c7b2c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c0645e40-7411-4fda-bb13-7abee9463981", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ea0e4492-b9fb-4b68-b5f2-f586b94c30a9", + "Name": "Display Board", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "d3749490-fd37-46d2-be18-826bb88f0e01", + "identity": null + } + ], + "Spaces": [ + { + "id": "71427a55-df68-48b6-abb5-19e4fcdc7590", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.065399999999745, + "Y": 37.29179946005841, + "Z": 0.0 + } + } + } + ] + } + }, + "1efd11a8-451a-4665-b390-9ff50444f27d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 27.99919, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1efd11a8-451a-4665-b390-9ff50444f27d", + "Name": null + }, + "e2910ada-bb2d-4407-89b5-05420dbe9d62": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e2910ada-bb2d-4407-89b5-05420dbe9d62", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "4c92cdf8-cc71-456b-8a2d-680171640c15", + "discriminator": "Elements.Geometry.Profile" + }, + "95e0373b-a05e-405b-ba3f-22f577ad6bd5": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Name": "Storage" + }, + "4aeca3f7-50cc-437b-ab95-1161af6ef663": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4aeca3f7-50cc-437b-ab95-1161af6ef663", + "Name": "Storage" + }, + "83bb4c2a-4183-43bd-bad4-cd6847aa0087": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 27.99919, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "83bb4c2a-4183-43bd-bad4-cd6847aa0087", + "Name": null + }, + "6271bcf6-1d69-4093-ab15-f196c8219627": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6271bcf6-1d69-4093-ab15-f196c8219627", + "Name": "Storage" + }, + "4c92cdf8-cc71-456b-8a2d-680171640c15": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 26.52059590597957, + "Y": 33.1313699999999, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 26.52059590597957, + "Y": 33.1313699999999, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 26.52059590597957, + "Y": 33.1313699999999, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "83bb4c2a-4183-43bd-bad4-cd6847aa0087", + "Boundary": "e2910ada-bb2d-4407-89b5-05420dbe9d62", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + } + ] + } + ], + "Area": 3.8759274143014864, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6271bcf6-1d69-4093-ab15-f196c8219627", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4c92cdf8-cc71-456b-8a2d-680171640c15", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "7fcea028-780c-4c76-ae6d-3c4a088eebab", + "identity": null + } + ], + "Spaces": [ + { + "id": "14f64e51-14f5-497a-8684-4768cea1faa6", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 26.52059590597964, + "Y": 33.131369999999954, + "Z": 0.0 + } + } + } + ] + } + }, + "02e90b42-4725-41e1-98d3-5c8901ff3ff1": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.66426710492474, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "02e90b42-4725-41e1-98d3-5c8901ff3ff1", + "Name": null + }, + "0acd0805-60f7-4c9b-bced-200ed28c8181": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0acd0805-60f7-4c9b-bced-200ed28c8181", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "3b38eb6a-c903-4248-9d91-145643c328c8", + "discriminator": "Elements.Geometry.Profile" + }, + "9d5d6a8f-0527-4029-8616-7f6b1ac40937": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9d5d6a8f-0527-4029-8616-7f6b1ac40937", + "Name": "Storage" + }, + "5133c191-f2ee-4d26-b1f4-d5858bed1cc0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.66426710492474, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "5133c191-f2ee-4d26-b1f4-d5858bed1cc0", + "Name": null + }, + "3bae24c1-fc17-4339-b397-58ddf524ec2e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3bae24c1-fc17-4339-b397-58ddf524ec2e", + "Name": "Storage" + }, + "3b38eb6a-c903-4248-9d91-145643c328c8": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 61.15373074170459, + "Y": 33.14847500000021, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 61.15373074170459, + "Y": 33.14847500000021, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.15373074170459, + "Y": 33.14847500000021, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "5133c191-f2ee-4d26-b1f4-d5858bed1cc0", + "Boundary": "0acd0805-60f7-4c9b-bced-200ed28c8181", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + } + ], + "Area": 4.006329500935863, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3bae24c1-fc17-4339-b397-58ddf524ec2e", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3b38eb6a-c903-4248-9d91-145643c328c8", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "e1b31e4f-1746-483c-a0c9-044cb82e76ac", + "identity": null + } + ], + "Spaces": [ + { + "id": "1338bd30-0d60-473a-b559-80a40901ab74", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 60.97530859336307, + "Y": 33.282963999999964, + "Z": 0.0 + } + } + } + ] + } + }, + "6f8d5098-d6a9-47f0-af0e-8de8b6254ea3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 65.62212165204113, + "Y": 32.4760299999999, + "Z": 0.01 + }, + "Max": { + "X": 68.65353, + "Y": 33.820920000000115, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "6f8d5098-d6a9-47f0-af0e-8de8b6254ea3", + "Name": null + }, + "ec65f06d-658e-4a48-b41f-91e1fc2e1b77": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ec65f06d-658e-4a48-b41f-91e1fc2e1b77", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "e4dd8b23-8cd2-4775-90df-52f0cad05be0", + "discriminator": "Elements.Geometry.Profile" + }, + "c1f63920-dacd-46fa-8e65-9b01e7982ee3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c1f63920-dacd-46fa-8e65-9b01e7982ee3", + "Name": "Storage" + }, + "4863514b-3abe-4755-b5aa-ee38f1208a25": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 65.62212165204113, + "Y": 32.4760299999999, + "Z": 0.01 + }, + "Max": { + "X": 68.65353, + "Y": 33.820920000000115, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "4863514b-3abe-4755-b5aa-ee38f1208a25", + "Name": null + }, + "243a56bf-db89-4116-be01-2dc213814d8d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "243a56bf-db89-4116-be01-2dc213814d8d", + "Name": "Storage" + }, + "e4dd8b23-8cd2-4775-90df-52f0cad05be0": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 67.13782582601955, + "Y": 33.14847499999964, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 67.13782582601955, + "Y": 33.14847499999964, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.13782582601955, + "Y": 33.14847499999964, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "4863514b-3abe-4755-b5aa-ee38f1208a25", + "Boundary": "ec65f06d-658e-4a48-b41f-91e1fc2e1b77", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + } + ] + } + ], + "Area": 4.0769107730868654, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "243a56bf-db89-4116-be01-2dc213814d8d", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e4dd8b23-8cd2-4775-90df-52f0cad05be0", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "ea840137-4556-407b-b4f4-b7cb12ceb7c1", + "identity": null + } + ], + "Spaces": [ + { + "id": "28c205a5-5e68-4abd-b2dc-41d179f6df9f", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.13782582602057, + "Y": 33.148475000000005, + "Z": 0.0 + } + } + } + ] + } + }, + "0f2ecf7e-cd12-48a1-a897-7c6d7027f52c": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 65.62212165204116, + "Y": 33.820920000000115, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0f2ecf7e-cd12-48a1-a897-7c6d7027f52c", + "Name": null + }, + "f15ce7c4-92f8-4fd5-bb8d-ea697974c2f7": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f15ce7c4-92f8-4fd5-bb8d-ea697974c2f7", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "1bfa6a34-c631-41fc-b8e8-b2daee0ef048", + "discriminator": "Elements.Geometry.Profile" + }, + "047a0406-2d5c-499a-afed-1eb126756522": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "047a0406-2d5c-499a-afed-1eb126756522", + "Name": "Storage" + }, + "c63ce851-c04b-407f-a369-da086a6f3695": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 65.62212165204116, + "Y": 33.820920000000115, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c63ce851-c04b-407f-a369-da086a6f3695", + "Name": null + }, + "818de094-df81-4a71-9515-730e6d41974c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "818de094-df81-4a71-9515-730e6d41974c", + "Name": "Storage" + }, + "1bfa6a34-c631-41fc-b8e8-b2daee0ef048": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 64.13265801526249, + "Y": 33.14847500000019, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 64.13265801526249, + "Y": 33.14847500000019, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 64.13265801526249, + "Y": 33.14847500000019, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "c63ce851-c04b-407f-a369-da086a6f3695", + "Boundary": "f15ce7c4-92f8-4fd5-bb8d-ea697974c2f7", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + } + ] + } + ], + "Area": 4.00632950093609, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "818de094-df81-4a71-9515-730e6d41974c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1bfa6a34-c631-41fc-b8e8-b2daee0ef048", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "d7ab0ada-36c2-410d-a6d7-aa7d446b31a3", + "identity": null + } + ], + "Spaces": [ + { + "id": "98b3c87d-ff42-44bb-a8ae-8c21b31e3f9a", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 64.13265801526205, + "Y": 33.148474999999955, + "Z": 0.0 + } + } + } + ] + } + }, + "2c1d7221-adad-4541-b326-9792e4014a0f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + "Max": { + "X": 68.65353, + "Y": 42.17345000000023, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "2c1d7221-adad-4541-b326-9792e4014a0f", + "Name": null + }, + "f1c993ac-76e8-4b5f-8eb3-6b12dff8d4c4": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f1c993ac-76e8-4b5f-8eb3-6b12dff8d4c4", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "68c6fd9f-3c6d-4f76-8544-337951d44e31", + "discriminator": "Elements.Geometry.Profile" + }, + "fc30342c-7821-49bb-8ad5-6a0c569b94a3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fc30342c-7821-49bb-8ad5-6a0c569b94a3", + "Name": "Storage" + }, + "803c6564-697b-46e1-9f5e-4ebd42c47bcb": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + "Max": { + "X": 68.65353, + "Y": 42.17345000000023, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "803c6564-697b-46e1-9f5e-4ebd42c47bcb", + "Name": null + }, + "8846835e-1c1c-449f-8345-8386a4390851": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8846835e-1c1c-449f-8345-8386a4390851", + "Name": "Storage" + }, + "68c6fd9f-3c6d-4f76-8544-337951d44e31": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 67.13782582601839, + "Y": 41.467029999998644, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 67.13782582601839, + "Y": 41.467029999998644, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.13782582601839, + "Y": 41.467029999998644, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "803c6564-697b-46e1-9f5e-4ebd42c47bcb", + "Boundary": "f1c993ac-76e8-4b5f-8eb3-6b12dff8d4c4", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + } + ] + } + ], + "Area": 4.282894970330972, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8846835e-1c1c-449f-8345-8386a4390851", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "68c6fd9f-3c6d-4f76-8544-337951d44e31", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "648d81b3-fd8d-4a7c-981e-9519f8225aa3", + "identity": null + } + ], + "Spaces": [ + { + "id": "2639e109-3e23-43f0-bf13-23e9be36a9b1", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 67.13782582602057, + "Y": 41.46703000000006, + "Z": 0.0 + } + } + } + ] + } + }, + "3b22a7b1-ec4a-48c2-a304-58b2a4e84dc4": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.61377681215257, + "Y": 40.76060999999936, + "Z": 0.01 + }, + "Max": { + "X": 62.74417496402732, + "Y": 42.17345000000012, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "3b22a7b1-ec4a-48c2-a304-58b2a4e84dc4", + "Name": null + }, + "ab4d7531-bfcd-4274-ba6f-fc63ca2ba9cc": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "ab4d7531-bfcd-4274-ba6f-fc63ca2ba9cc", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "1cdcec17-ea82-4671-86b2-18c6327dea15", + "discriminator": "Elements.Geometry.Profile" + }, + "cee3984e-c08d-4375-9e84-2b14b3be6fc6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cee3984e-c08d-4375-9e84-2b14b3be6fc6", + "Name": "Storage" + }, + "fe1de9f2-8a2a-4d09-97af-4cae8945ddb9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.61377681215257, + "Y": 40.76060999999936, + "Z": 0.01 + }, + "Max": { + "X": 62.74417496402732, + "Y": 42.17345000000012, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "fe1de9f2-8a2a-4d09-97af-4cae8945ddb9", + "Name": null + }, + "07f04b81-eac4-415e-90e8-c14c678623b0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "07f04b81-eac4-415e-90e8-c14c678623b0", + "Name": "Storage" + }, + "1cdcec17-ea82-4671-86b2-18c6327dea15": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 61.178975888089695, + "Y": 41.4670299999996, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 61.178975888089695, + "Y": 41.4670299999996, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.178975888089695, + "Y": 41.4670299999996, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "fe1de9f2-8a2a-4d09-97af-4cae8945ddb9", + "Boundary": "ab4d7531-bfcd-4274-ba6f-fc63ca2ba9cc", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + } + ] + } + ], + "Area": 4.422751724895761, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "07f04b81-eac4-415e-90e8-c14c678623b0", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1cdcec17-ea82-4671-86b2-18c6327dea15", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "91099f42-0f93-4709-88a3-74341dcf8128", + "identity": null + } + ], + "Spaces": [ + { + "id": "b7deff6f-d595-4d9c-bb8d-efcf55371b39", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 60.99550471047195, + "Y": 41.325745999999896, + "Z": 0.0 + } + } + } + ] + } + }, + "c8cf59f0-bfee-443a-a0af-bc61007c2278": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 62.74417496402727, + "Y": 40.76060999999936, + "Z": 0.01 + }, + "Max": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c8cf59f0-bfee-443a-a0af-bc61007c2278", + "Name": null + }, + "6d21519b-6c0e-4f97-85b8-261867ccadb2": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + }, + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6d21519b-6c0e-4f97-85b8-261867ccadb2", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "76853dc1-1664-40d6-beef-33b8f3d583bd", + "discriminator": "Elements.Geometry.Profile" + }, + "d97ef993-7d5f-498d-a29f-4d2999ee42fb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.01 + }, + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d97ef993-7d5f-498d-a29f-4d2999ee42fb", + "Name": "Storage" + }, + "5d776814-518d-4ea0-9853-fe32e08723b6": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 62.74417496402727, + "Y": 40.76060999999936, + "Z": 0.01 + }, + "Max": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "5d776814-518d-4ea0-9853-fe32e08723b6", + "Name": null + }, + "484f517c-d9a6-4798-a18a-133a6427cf12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.01 + }, + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "484f517c-d9a6-4798-a18a-133a6427cf12", + "Name": "Storage" + }, + "76853dc1-1664-40d6-beef-33b8f3d583bd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 64.18314830803314, + "Y": 41.4670299999993, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 64.18314830803314, + "Y": 41.4670299999993, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 64.18314830803314, + "Y": 41.4670299999993, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + }, + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "5d776814-518d-4ea0-9853-fe32e08723b6", + "Boundary": "6d21519b-6c0e-4f97-85b8-261867ccadb2", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + }, + { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + } + ] + } + ], + "Area": 4.066078198695095, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "484f517c-d9a6-4798-a18a-133a6427cf12", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "76853dc1-1664-40d6-beef-33b8f3d583bd", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "22cc967c-4aa4-4005-8c48-7085d6e6933d", + "identity": null + } + ], + "Spaces": [ + { + "id": "7448d141-ac78-4f17-bba7-9724d6834325", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 64.18314830803422, + "Y": 41.46702999999993, + "Z": 0.0 + } + } + } + ] + } + }, + "32251dc6-e22f-4c90-a8fe-e6a294b72e98": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.01 + }, + "Max": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "32251dc6-e22f-4c90-a8fe-e6a294b72e98", + "Name": null + }, + "d1fac585-83fb-4118-bb89-4152d1bd5860": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d1fac585-83fb-4118-bb89-4152d1bd5860", + "Name": "Electrical Room", + "Color": { + "Red": 0.3299665317544558, + "Green": 0.3959420921262084, + "Blue": 0.05517359732425473, + "Alpha": 0.5 + }, + "SpaceBoundary": "c64f79d8-7863-4271-9b9d-1bf9bc0aae49", + "discriminator": "Elements.Geometry.Profile" + }, + "8af4f040-1f44-4b02-a9c9-c8c720719e62": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3299665317544558, + "Green": 0.3959420921262084, + "Blue": 0.05517359732425473, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "8af4f040-1f44-4b02-a9c9-c8c720719e62", + "Name": "Electrical Room" + }, + "efcd1c04-fe8d-4723-b517-c327a89a2ca5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.01 + }, + { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "efcd1c04-fe8d-4723-b517-c327a89a2ca5", + "Name": "Electrical Room" + }, + "a9806779-1a28-43bd-af2a-c5e74edfca64": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.01 + }, + "Max": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a9806779-1a28-43bd-af2a-c5e74edfca64", + "Name": null + }, + "9b549f85-8a49-48f4-b0c0-661383a242e9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.01 + }, + { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9b549f85-8a49-48f4-b0c0-661383a242e9", + "Name": "Electrical Room" + }, + "c64f79d8-7863-4271-9b9d-1bf9bc0aae49": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 58.43103343931156, + "Y": 35.46276324678058, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 58.43103343931156, + "Y": 35.46276324678058, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.43103343931156, + "Y": 35.46276324678058, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Electrical Room", + "Room View": "a9806779-1a28-43bd-af2a-c5e74edfca64", + "Boundary": "d1fac585-83fb-4118-bb89-4152d1bd5860", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + } + ], + "Area": 19.707703470794286, + "Height": 4.0, + "Program Type": "Electrical Room", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Electrical Room", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8af4f040-1f44-4b02-a9c9-c8c720719e62", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "9b549f85-8a49-48f4-b0c0-661383a242e9", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c64f79d8-7863-4271-9b9d-1bf9bc0aae49", + "Name": "Electrical Room", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a46ef8fe-90b5-4abc-a571-8a1a9b990f74", + "identity": null + } + ], + "Spaces": [ + { + "id": "b61efe64-12eb-4167-a836-a157b431600c", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.88211236830867, + "Y": 34.855051766549764, + "Z": 0.0 + } + } + } + ] + } + }, + "859c4bc4-a1e7-4faf-8a41-efb999743e9e": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.72045, + "Y": 38.268205299649296, + "Z": 0.01 + }, + "Max": { + "X": 60.26162, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "859c4bc4-a1e7-4faf-8a41-efb999743e9e", + "Name": null + }, + "a752556c-18be-436d-9a53-53acbc2ff562": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "a752556c-18be-436d-9a53-53acbc2ff562", + "Name": "Servers / IT", + "Color": { + "Red": 0.19462072020146098, + "Green": 0.19231984028235072, + "Blue": 0.6818417760924631, + "Alpha": 0.5 + }, + "SpaceBoundary": "f0e55b2c-74ab-4917-a7d7-65b0df376e6a", + "discriminator": "Elements.Geometry.Profile" + }, + "772f6161-0447-4219-8beb-427e1cc5ba9e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.19462072020146098, + "Green": 0.19231984028235072, + "Blue": 0.6818417760924631, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "772f6161-0447-4219-8beb-427e1cc5ba9e", + "Name": "Servers / IT" + }, + "e07bc6c8-1ff4-44c5-a051-583e63aaa15a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "e07bc6c8-1ff4-44c5-a051-583e63aaa15a", + "Name": "Servers / IT" + }, + "3193909c-1ace-4d25-935d-9c4dcb2184d1": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.72045, + "Y": 38.268205299649296, + "Z": 0.01 + }, + "Max": { + "X": 60.26162, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "3193909c-1ace-4d25-935d-9c4dcb2184d1", + "Name": null + }, + "f9fd520b-6efb-4003-8dd2-0ef52168e2d3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.01 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f9fd520b-6efb-4003-8dd2-0ef52168e2d3", + "Name": "Servers / IT" + }, + "f0e55b2c-74ab-4917-a7d7-65b0df376e6a": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 58.38849930314444, + "Y": 40.13250010530948, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 58.38849930314444, + "Y": 40.13250010530948, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.38849930314444, + "Y": 40.13250010530948, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Servers / IT", + "Room View": "3193909c-1ace-4d25-935d-9c4dcb2184d1", + "Boundary": "a752556c-18be-436d-9a53-53acbc2ff562", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + }, + { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + } + ] + } + ], + "Area": 12.913836606017412, + "Height": 4.0, + "Program Type": "Servers / IT", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Servers / IT", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "772f6161-0447-4219-8beb-427e1cc5ba9e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f9fd520b-6efb-4003-8dd2-0ef52168e2d3", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f0e55b2c-74ab-4917-a7d7-65b0df376e6a", + "Name": "Servers / IT", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "3d10185a-20b1-4549-b2c7-c8eb29356719", + "identity": null + } + ], + "Spaces": [ + { + "id": "31313fe3-e34d-400e-bb21-80c70e5dd26c", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.86528227071795, + "Y": 40.4007550998831, + "Z": 0.0 + } + } + } + ] + } + }, + "78e61b5e-bd2f-4884-8b43-6f4a2023ced3": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + }, + "Max": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "78e61b5e-bd2f-4884-8b43-6f4a2023ced3", + "Name": null + }, + "3b5ac666-e68d-4539-b46e-5902d8913ab5": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "3b5ac666-e68d-4539-b46e-5902d8913ab5", + "Name": "Resource / Copy", + "Color": { + "Red": 0.4729217260484219, + "Green": 0.044930153081626706, + "Blue": 0.4568905846480702, + "Alpha": 0.5 + }, + "SpaceBoundary": "254e3e7c-aead-471d-a651-9fec1ff7bb2d", + "discriminator": "Elements.Geometry.Profile" + }, + "c8ba435e-568a-4c25-8657-e4db34e8434f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c8ba435e-568a-4c25-8657-e4db34e8434f", + "Name": "Resource / Copy" + }, + "9976285c-3cb1-417a-9a86-9d98cc1f063d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + }, + "Max": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "9976285c-3cb1-417a-9a86-9d98cc1f063d", + "Name": null + }, + "eceb541d-1b3a-498b-ba88-aff2ebce6ed8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "eceb541d-1b3a-498b-ba88-aff2ebce6ed8", + "Name": "Resource / Copy" + }, + "254e3e7c-aead-471d-a651-9fec1ff7bb2d": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 21.212988904079097, + "Y": 48.02858928709798, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 21.212988904079097, + "Y": 48.02858928709798, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.212988904079097, + "Y": 48.02858928709798, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Resource / Copy", + "Room View": "9976285c-3cb1-417a-9a86-9d98cc1f063d", + "Boundary": "3b5ac666-e68d-4539-b46e-5902d8913ab5", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + } + ], + "Area": 18.053799523334533, + "Height": 4.0, + "Program Type": "Resource / Copy", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Resource / Copy", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b653fc82-f4e9-4e96-8379-14a1507846ce", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "eceb541d-1b3a-498b-ba88-aff2ebce6ed8", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "254e3e7c-aead-471d-a651-9fec1ff7bb2d", + "Name": "Resource / Copy", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a33b88b2-9fe0-4968-b556-d8f7e933a7da", + "identity": null + } + ], + "Spaces": [ + { + "id": "1d2ff7e9-651b-45d8-bf9a-968bdb385e49", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.2129889040791, + "Y": 48.02858928709807, + "Z": 0.0 + } + } + } + ] + } + }, + "0a9361d3-f651-461e-ac6f-3bf36e799812": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0a9361d3-f651-461e-ac6f-3bf36e799812", + "Name": null + }, + "1a393733-aa01-4e08-9a7a-064830904924": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1a393733-aa01-4e08-9a7a-064830904924", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "e237bb02-29f2-48cc-bc70-20d2bdb8837b", + "discriminator": "Elements.Geometry.Profile" + }, + "08a8fb00-3661-4e78-bd77-01dafb452725": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "08a8fb00-3661-4e78-bd77-01dafb452725", + "Name": "Storage" + }, + "b21c2a4e-e84d-433c-aa2e-85b85dc88103": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b21c2a4e-e84d-433c-aa2e-85b85dc88103", + "Name": null + }, + "f0f872dc-27b3-44ab-80f3-fb6f871c4a8c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.01 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f0f872dc-27b3-44ab-80f3-fb6f871c4a8c", + "Name": "Storage" + }, + "e237bb02-29f2-48cc-bc70-20d2bdb8837b": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 21.21298890407906, + "Y": 44.62510428709823, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 21.21298890407906, + "Y": 44.62510428709823, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.21298890407906, + "Y": 44.62510428709823, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "b21c2a4e-e84d-433c-aa2e-85b85dc88103", + "Boundary": "1a393733-aa01-4e08-9a7a-064830904924", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + ] + } + ], + "Area": 7.007407005867151, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f0f872dc-27b3-44ab-80f3-fb6f871c4a8c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e237bb02-29f2-48cc-bc70-20d2bdb8837b", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "0d423fe0-c46d-4a9c-8ff6-c28fdc957e41", + "identity": null + } + ], + "Spaces": [ + { + "id": "f4c75673-cb63-44f8-844a-5c6b69d768d8", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 21.2129889040791, + "Y": 44.625104287098125, + "Z": 0.0 + } + } + } + ] + } + }, + "a7a997c7-02b8-41f4-b9ea-dc2502cf8930": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.01 + }, + "Max": { + "X": 74.22363491524399, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a7a997c7-02b8-41f4-b9ea-dc2502cf8930", + "Name": null + }, + "c92f2e11-e70a-4c9a-84eb-3fb7f763dcf6": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c92f2e11-e70a-4c9a-84eb-3fb7f763dcf6", + "Name": "Coffee Point", + "Color": { + "Red": 0.9000968499575261, + "Green": 0.48631992539685215, + "Blue": 0.8153396788124645, + "Alpha": 0.5 + }, + "SpaceBoundary": "c9402747-3fa2-4a66-8ea7-a7ee4ed4ad9b", + "discriminator": "Elements.Geometry.Profile" + }, + "57d1d68e-fbb5-42e7-813a-999599427453": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9000968499575261, + "Green": 0.48631992539685215, + "Blue": 0.8153396788124645, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "57d1d68e-fbb5-42e7-813a-999599427453", + "Name": "Coffee Point" + }, + "1625224c-ab0f-437f-891f-9c76d60ac590": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1625224c-ab0f-437f-891f-9c76d60ac590", + "Name": "Coffee Point" + }, + "c57f1aca-0454-4b38-8f71-e04492c3a42e": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.01 + }, + "Max": { + "X": 74.22363491524399, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c57f1aca-0454-4b38-8f71-e04492c3a42e", + "Name": null + }, + "aa4c5bcb-3869-4b76-b39e-d4854eb66351": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.01 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "aa4c5bcb-3869-4b76-b39e-d4854eb66351", + "Name": "Coffee Point" + }, + "c9402747-3fa2-4a66-8ea7-a7ee4ed4ad9b": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 72.35298122881102, + "Y": 41.46703015467955, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 72.35298122881102, + "Y": 41.46703015467955, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 72.35298122881102, + "Y": 41.46703015467955, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coffee Point", + "Room View": "c57f1aca-0454-4b38-8f71-e04492c3a42e", + "Boundary": "c92f2e11-e70a-4c9a-84eb-3fb7f763dcf6", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.0 + }, + { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + } + ] + } + ], + "Area": 5.285861764223682, + "Height": 4.0, + "Program Type": "Coffee Point", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coffee Point", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57d1d68e-fbb5-42e7-813a-999599427453", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "aa4c5bcb-3869-4b76-b39e-d4854eb66351", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c9402747-3fa2-4a66-8ea7-a7ee4ed4ad9b", + "Name": "Coffee Point", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "7346fc98-7749-405e-8b84-9eb161b132d3", + "identity": null + } + ], + "Spaces": [ + { + "id": "fd833c38-f593-4dbb-82fe-25401f6b70bc", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 72.352981228811, + "Y": 41.4670299999996, + "Z": 0.0 + } + } + } + ] + } + }, + "fd230c82-f934-4fe3-a35b-d80a64e56d86": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 70.48233, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 74.22363491524399, + "Y": 33.82092, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "fd230c82-f934-4fe3-a35b-d80a64e56d86", + "Name": null + }, + "918f44de-7caf-469d-af8a-ed6366ed0951": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "918f44de-7caf-469d-af8a-ed6366ed0951", + "Name": "Coffee Point", + "Color": { + "Red": 0.9000968499575261, + "Green": 0.48631992539685215, + "Blue": 0.8153396788124645, + "Alpha": 0.5 + }, + "SpaceBoundary": "47a2872e-8571-43d7-b210-621995eac1a9", + "discriminator": "Elements.Geometry.Profile" + }, + "8608ae9b-9243-4583-b3ea-8a76dccaedcd": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8608ae9b-9243-4583-b3ea-8a76dccaedcd", + "Name": "Coffee Point" + }, + "f8aaabf3-3596-41f1-96a1-e6b16012497b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 70.48233, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 74.22363491524399, + "Y": 33.82092, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "f8aaabf3-3596-41f1-96a1-e6b16012497b", + "Name": null + }, + "8d1a8768-055b-4e6a-bbbb-9fa269b8c478": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.01 + }, + { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8d1a8768-055b-4e6a-bbbb-9fa269b8c478", + "Name": "Coffee Point" + }, + "47a2872e-8571-43d7-b210-621995eac1a9": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 72.35298122881032, + "Y": 33.14847485275881, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 72.35298122881032, + "Y": 33.14847485275881, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 72.35298122881032, + "Y": 33.14847485275881, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coffee Point", + "Room View": "f8aaabf3-3596-41f1-96a1-e6b16012497b", + "Boundary": "918f44de-7caf-469d-af8a-ed6366ed0951", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.0 + }, + { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + } + ], + "Area": 5.031640262231804, + "Height": 4.0, + "Program Type": "Coffee Point", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coffee Point", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57d1d68e-fbb5-42e7-813a-999599427453", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "8d1a8768-055b-4e6a-bbbb-9fa269b8c478", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "47a2872e-8571-43d7-b210-621995eac1a9", + "Name": "Coffee Point", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "34cdb10c-8af2-45e5-be98-ede6c60372f8", + "identity": null + } + ], + "Spaces": [ + { + "id": "cb2fd4ba-9ee4-4d80-8e53-4d77bdabb395", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 72.35298122881099, + "Y": 33.148474999999955, + "Z": 0.0 + } + } + } + ] + } + }, + "7d29e36c-6af7-479c-a90a-a1c3af0024b7": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + "Max": { + "X": 24.97564, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "7d29e36c-6af7-479c-a90a-a1c3af0024b7", + "Name": null + }, + "8cced93f-3331-48a6-97d2-8d9914ee2380": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8cced93f-3331-48a6-97d2-8d9914ee2380", + "Name": "Coat Closet", + "Color": { + "Red": 0.9749553990433716, + "Green": 0.5738454994623761, + "Blue": 0.278483829125056, + "Alpha": 0.5 + }, + "SpaceBoundary": "c3edd6be-9a5a-4c84-8486-fe9002e7efc7", + "discriminator": "Elements.Geometry.Profile" + }, + "3edd9f07-5ed5-43e4-9b3b-b9501a8128a1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9749553990433716, + "Green": 0.5738454994623761, + "Blue": 0.278483829125056, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "3edd9f07-5ed5-43e4-9b3b-b9501a8128a1", + "Name": "Coat Closet" + }, + "7484d17a-f01a-43e6-ac3f-35cf7f584754": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7484d17a-f01a-43e6-ac3f-35cf7f584754", + "Name": "Coat Closet" + }, + "bcd574c6-8b36-44b6-b3f9-214ee858e5a1": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + "Max": { + "X": 24.97564, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "bcd574c6-8b36-44b6-b3f9-214ee858e5a1", + "Name": null + }, + "27ad0a68-7cc8-4f62-a7c6-ca04bb3e0a95": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "27ad0a68-7cc8-4f62-a7c6-ca04bb3e0a95", + "Name": "Coat Closet" + }, + "c3edd6be-9a5a-4c84-8486-fe9002e7efc7": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 23.468548207937346, + "Y": 41.48517000000027, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 23.468548207937346, + "Y": 41.48517000000027, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.468548207937346, + "Y": 41.48517000000027, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coat Closet", + "Room View": "bcd574c6-8b36-44b6-b3f9-214ee858e5a1", + "Boundary": "8cced93f-3331-48a6-97d2-8d9914ee2380", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + } + ] + } + ], + "Area": 4.149204554564335, + "Height": 4.0, + "Program Type": "Coat Closet", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coat Closet", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3edd9f07-5ed5-43e4-9b3b-b9501a8128a1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "27ad0a68-7cc8-4f62-a7c6-ca04bb3e0a95", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c3edd6be-9a5a-4c84-8486-fe9002e7efc7", + "Name": "Coat Closet", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "a4211c08-652e-4f8c-94ce-02f7e4a9f013", + "identity": null + } + ], + "Spaces": [ + { + "id": "6838c2f4-a0c6-42fa-8ded-32b07b8de94b", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.468548207937232, + "Y": 41.485169999999904, + "Z": 0.0 + } + } + } + ] + } + }, + "26b02561-afaa-4c98-8723-7c107422418f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 40.79688999999962, + "Z": 0.01 + }, + "Max": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "26b02561-afaa-4c98-8723-7c107422418f", + "Name": null + }, + "5d0df0ac-3137-4ccf-9434-e534e45298c7": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5d0df0ac-3137-4ccf-9434-e534e45298c7", + "Name": "Coffee Point", + "Color": { + "Red": 0.9000968499575261, + "Green": 0.48631992539685215, + "Blue": 0.8153396788124645, + "Alpha": 0.5 + }, + "SpaceBoundary": "d5ebda2a-b04f-4479-857b-5ecb77a4d071", + "discriminator": "Elements.Geometry.Profile" + }, + "fa9a79c2-044a-4f6b-b8de-1c43f3fb9779": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "fa9a79c2-044a-4f6b-b8de-1c43f3fb9779", + "Name": "Coffee Point" + }, + "45393714-cb40-4bff-896e-fb87b6b749ea": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 40.79688999999962, + "Z": 0.01 + }, + "Max": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "45393714-cb40-4bff-896e-fb87b6b749ea", + "Name": null + }, + "d5cad3a4-a9cf-4dba-b0be-acc77da1707a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.01 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d5cad3a4-a9cf-4dba-b0be-acc77da1707a", + "Name": "Coffee Point" + }, + "d5ebda2a-b04f-4479-857b-5ecb77a4d071": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 20.666798254872525, + "Y": 41.485170038804974, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 20.666798254872525, + "Y": 41.485170038804974, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.666798254872525, + "Y": 41.485170038804974, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coffee Point", + "Room View": "45393714-cb40-4bff-896e-fb87b6b749ea", + "Boundary": "5d0df0ac-3137-4ccf-9434-e534e45298c7", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + } + ] + } + ], + "Area": 3.5643492044787877, + "Height": 4.0, + "Program Type": "Coffee Point", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coffee Point", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57d1d68e-fbb5-42e7-813a-999599427453", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d5cad3a4-a9cf-4dba-b0be-acc77da1707a", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d5ebda2a-b04f-4479-857b-5ecb77a4d071", + "Name": "Coffee Point", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "cbb86591-f553-437e-83aa-b1d0d8451525", + "identity": null + } + ], + "Spaces": [ + { + "id": "05954abd-e017-4f85-a1df-5eb0727263d0", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.685170566349683, + "Y": 41.347514057974706, + "Z": 0.0 + } + } + } + ] + } + }, + "b112dd72-6ae5-4a0e-aa3b-e06e41c09dbd": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b112dd72-6ae5-4a0e-aa3b-e06e41c09dbd", + "Name": null + }, + "27ccaed6-3444-4be2-9413-7984cf39ea51": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "27ccaed6-3444-4be2-9413-7984cf39ea51", + "Name": "Coffee Point", + "Color": { + "Red": 0.9000968499575261, + "Green": 0.48631992539685215, + "Blue": 0.8153396788124645, + "Alpha": 0.5 + }, + "SpaceBoundary": "6fc6341e-05e6-4e5a-b936-a243af297f58", + "discriminator": "Elements.Geometry.Profile" + }, + "15d40945-2d96-4757-a915-c826694ae49e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "15d40945-2d96-4757-a915-c826694ae49e", + "Name": "Coffee Point" + }, + "b1ffa31e-3e8d-4a5a-98bc-f20d46d20dff": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 19.37213999999949, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b1ffa31e-3e8d-4a5a-98bc-f20d46d20dff", + "Name": null + }, + "63b76437-cf4e-49f1-aeb3-49e478c6503f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.01 + }, + { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "63b76437-cf4e-49f1-aeb3-49e478c6503f", + "Name": "Coffee Point" + }, + "6fc6341e-05e6-4e5a-b936-a243af297f58": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 20.638962365851167, + "Y": 33.131369664862596, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 20.638962365851167, + "Y": 33.131369664862596, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.638962365851167, + "Y": 33.131369664862596, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coffee Point", + "Room View": "b1ffa31e-3e8d-4a5a-98bc-f20d46d20dff", + "Boundary": "27ccaed6-3444-4be2-9413-7984cf39ea51", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + }, + { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + } + ], + "Area": 3.3207947000393006, + "Height": 4.0, + "Program Type": "Coffee Point", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coffee Point", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57d1d68e-fbb5-42e7-813a-999599427453", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "63b76437-cf4e-49f1-aeb3-49e478c6503f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6fc6341e-05e6-4e5a-b936-a243af297f58", + "Name": "Coffee Point", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "88257063-32b5-4888-8b26-a33f32963328", + "identity": null + } + ], + "Spaces": [ + { + "id": "eaa7f009-9da2-471c-91d1-9fb4640cdd58", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 20.662901563486418, + "Y": 33.262437510071905, + "Z": 0.0 + } + } + } + ] + } + }, + "26ff8658-a1bf-4097-8d9e-8b682f2e3080": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "26ff8658-a1bf-4097-8d9e-8b682f2e3080", + "Name": null + }, + "22c0e6fa-3f49-42bd-b812-4347b55c40d5": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "22c0e6fa-3f49-42bd-b812-4347b55c40d5", + "Name": "Coat Closet", + "Color": { + "Red": 0.9749553990433716, + "Green": 0.5738454994623761, + "Blue": 0.278483829125056, + "Alpha": 0.5 + }, + "SpaceBoundary": "63d2e2ad-a3f5-40dd-94dc-a802042e25ed", + "discriminator": "Elements.Geometry.Profile" + }, + "1a932e72-8286-4206-b704-b4f77bf6fdd4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1a932e72-8286-4206-b704-b4f77bf6fdd4", + "Name": "Coat Closet" + }, + "b31da7e1-964d-4244-a23c-721ce316b4f8": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + }, + "Max": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "b31da7e1-964d-4244-a23c-721ce316b4f8", + "Name": null + }, + "cd9fdb53-c756-45ba-8f51-0388caa9158f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.01 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.01 + }, + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cd9fdb53-c756-45ba-8f51-0388caa9158f", + "Name": "Coat Closet" + }, + "63d2e2ad-a3f5-40dd-94dc-a802042e25ed": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 23.47389286033802, + "Y": 33.13137000000022, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 23.47389286033802, + "Y": 33.13137000000022, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.47389286033802, + "Y": 33.13137000000022, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coat Closet", + "Room View": "b31da7e1-964d-4244-a23c-721ce316b4f8", + "Boundary": "22c0e6fa-3f49-42bd-b812-4347b55c40d5", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + }, + { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + } + ] + } + ], + "Area": 4.110578081423, + "Height": 4.0, + "Program Type": "Coat Closet", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coat Closet", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3edd9f07-5ed5-43e4-9b3b-b9501a8128a1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cd9fdb53-c756-45ba-8f51-0388caa9158f", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "63d2e2ad-a3f5-40dd-94dc-a802042e25ed", + "Name": "Coat Closet", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "43504077-f384-44a0-b57b-ddfbece0a071", + "identity": null + } + ], + "Spaces": [ + { + "id": "92469bf9-692a-458e-887c-bbd268c929a1", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 23.47389286033779, + "Y": 33.131369999999905, + "Z": 0.0 + } + } + } + ] + } + }, + "3b11668d-5ee0-49a8-8d01-c7dbe73984a5": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.9198005260987, + "Y": 24.296540000000956, + "Z": 0.01 + }, + "Max": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "3b11668d-5ee0-49a8-8d01-c7dbe73984a5", + "Name": null + }, + "f1d10b14-8d34-45d4-95ba-d3e645c17635": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f1d10b14-8d34-45d4-95ba-d3e645c17635", + "Name": "Coffee", + "Color": { + "Red": 0.5467554561545865, + "Green": 0.8509572892687085, + "Blue": 0.8754298709684191, + "Alpha": 0.5 + }, + "SpaceBoundary": "0cec8faa-6d25-4fa6-8b95-4bc525798c5d", + "discriminator": "Elements.Geometry.Profile" + }, + "91a3fd46-8d8f-42e3-8c10-03805ba539bf": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5467554561545865, + "Green": 0.8509572892687085, + "Blue": 0.8754298709684191, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "91a3fd46-8d8f-42e3-8c10-03805ba539bf", + "Name": "Coffee" + }, + "df0f39e9-4542-41a0-9f13-ea407597a336": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.01 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.01 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "df0f39e9-4542-41a0-9f13-ea407597a336", + "Name": "Coffee" + }, + "358c13ee-06e7-4ef8-92fb-df711643cf05": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 56.9198005260987, + "Y": 24.296540000000956, + "Z": 0.01 + }, + "Max": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "358c13ee-06e7-4ef8-92fb-df711643cf05", + "Name": null + }, + "4fc4bb63-b718-4627-8222-67eaadb43964": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.01 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.01 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.01 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.01 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "4fc4bb63-b718-4627-8222-67eaadb43964", + "Name": "Coffee" + }, + "0cec8faa-6d25-4fa6-8b95-4bc525798c5d": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 58.30664495595284, + "Y": 27.636285000000505, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 58.30664495595284, + "Y": 27.636285000000505, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.30664495595284, + "Y": 27.636285000000505, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Coffee", + "Room View": "358c13ee-06e7-4ef8-92fb-df711643cf05", + "Boundary": "f1d10b14-8d34-45d4-95ba-d3e645c17635", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + ] + } + ], + "Area": 18.526827001522406, + "Height": 4.0, + "Program Type": "Coffee", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Coffee", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "91a3fd46-8d8f-42e3-8c10-03805ba539bf", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4fc4bb63-b718-4627-8222-67eaadb43964", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0cec8faa-6d25-4fa6-8b95-4bc525798c5d", + "Name": "Coffee", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "2aaf4b81-79f6-405f-bbd4-82c5b43d1a16", + "identity": null + } + ], + "Spaces": [ + { + "id": "cce5b03a-6895-442a-b9e7-46f37ccdf461", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 58.02927606998212, + "Y": 27.636285000000292, + "Z": 0.0 + } + } + } + ] + } + }, + "0485746d-6fed-4f74-aefb-4cf6b826ef9d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 67.75310067913415, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "0485746d-6fed-4f74-aefb-4cf6b826ef9d", + "Name": null + }, + "9ec21f04-1fe3-436b-9108-00f45cba72ac": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "9ec21f04-1fe3-436b-9108-00f45cba72ac", + "Name": "Resource / Copy", + "Color": { + "Red": 0.4729217260484219, + "Green": 0.044930153081626706, + "Blue": 0.4568905846480702, + "Alpha": 0.5 + }, + "SpaceBoundary": "301efec9-d3a6-4bba-a7e5-bcaa31e32601", + "discriminator": "Elements.Geometry.Profile" + }, + "09af42e2-7bb3-41f9-8206-6f75b28a586d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "09af42e2-7bb3-41f9-8206-6f75b28a586d", + "Name": "Resource / Copy" + }, + "c716c5f0-2de9-4f22-a086-ec641cd7a0cb": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 67.75310067913415, + "Y": 24.29654, + "Z": 0.01 + }, + "Max": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "c716c5f0-2de9-4f22-a086-ec641cd7a0cb", + "Name": null + }, + "c9cd5211-7df8-402a-ab5c-fad1a8db2877": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.01 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.01 + }, + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c9cd5211-7df8-402a-ab5c-fad1a8db2877", + "Name": "Resource / Copy" + }, + "301efec9-d3a6-4bba-a7e5-bcaa31e32601": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 69.496735339567, + "Y": 26.56138963760556, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 69.496735339567, + "Y": 26.56138963760556, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 69.496735339567, + "Y": 26.56138963760556, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Resource / Copy", + "Room View": "c716c5f0-2de9-4f22-a086-ec641cd7a0cb", + "Boundary": "9ec21f04-1fe3-436b-9108-00f45cba72ac", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + ] + } + ], + "Area": 15.796281315188821, + "Height": 4.0, + "Program Type": "Resource / Copy", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Resource / Copy", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b653fc82-f4e9-4e96-8379-14a1507846ce", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c9cd5211-7df8-402a-ab5c-fad1a8db2877", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "301efec9-d3a6-4bba-a7e5-bcaa31e32601", + "Name": "Resource / Copy", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "dbd32c80-cb04-4d36-8fbd-44a41be300bf", + "identity": null + } + ], + "Spaces": [ + { + "id": "50069c13-0c9b-4ae8-aeb8-999ea65ddd04", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 69.49673533956732, + "Y": 26.56138963760554, + "Z": 0.0 + } + } + } + ] + } + }, + "03d60198-93fb-4c34-bd98-4e05c0907f67": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 56.42615000351825, + "Y": 22.796540000001187, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "03d60198-93fb-4c34-bd98-4e05c0907f67", + "Name": null + }, + "58f804fc-86ce-4195-b138-5dd592821ba2": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "58f804fc-86ce-4195-b138-5dd592821ba2", + "Name": "Mother's Lounge", + "Color": { + "Red": 0.7780048319967486, + "Green": 0.6012972577481052, + "Blue": 0.3914332605858488, + "Alpha": 0.5 + }, + "SpaceBoundary": "234b0b7a-3c95-4298-91cd-cb727e28a0dd", + "discriminator": "Elements.Geometry.Profile" + }, + "abc77742-a835-4318-a899-27c348214e12": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7780048319967486, + "Green": 0.6012972577481052, + "Blue": 0.3914332605858488, + "Alpha": 0.5 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "abc77742-a835-4318-a899-27c348214e12", + "Name": "Mother's Lounge" + }, + "cd7e14af-a9a7-48b0-bf10-3683771247e8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cd7e14af-a9a7-48b0-bf10-3683771247e8", + "Name": "Mother's Lounge" + }, + "ef462876-c718-4fea-bd5d-5d6b533f551b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 56.42615000351825, + "Y": 22.796540000001187, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "ef462876-c718-4fea-bd5d-5d6b533f551b", + "Name": null + }, + "2101dfd4-8bd5-4b7a-9a0c-5d36db1ed62b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.01 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2101dfd4-8bd5-4b7a-9a0c-5d36db1ed62b", + "Name": "Mother's Lounge" + }, + "234b0b7a-3c95-4298-91cd-cb727e28a0dd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 54.585465128916546, + "Y": 20.747815000000184, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 54.585465128916546, + "Y": 20.747815000000184, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 54.585465128916546, + "Y": 20.747815000000184, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Mother's Lounge", + "Room View": "ef462876-c718-4fea-bd5d-5d6b533f551b", + "Boundary": "58f804fc-86ce-4195-b138-5dd592821ba2", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 15.08422847887448, + "Height": 4.0, + "Program Type": "Mother's Lounge", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Mother's Lounge", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "abc77742-a835-4318-a899-27c348214e12", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2101dfd4-8bd5-4b7a-9a0c-5d36db1ed62b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "234b0b7a-3c95-4298-91cd-cb727e28a0dd", + "Name": "Mother's Lounge", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "b3768f2c-11a3-4aec-9ad6-af5cd1a40b06", + "identity": null + } + ], + "Spaces": [ + { + "id": "55d5642d-fc64-40db-a895-81dcff29b90e", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 54.58546512891653, + "Y": 20.747815000000138, + "Z": 0.0 + } + } + } + ] + } + }, + "9e27efcb-3cbc-4a8f-b400-8f1deb010e8f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.43041, + "Y": 18.699087212104956, + "Z": 0.01 + }, + "Max": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "9e27efcb-3cbc-4a8f-b400-8f1deb010e8f", + "Name": null + }, + "c039e7f5-fff3-4359-aff8-ca892db18088": { + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c039e7f5-fff3-4359-aff8-ca892db18088", + "Name": "Storage", + "Color": { + "Red": 0.8346507394847696, + "Green": 0.9607063042748283, + "Blue": 0.3384334576960809, + "Alpha": 0.5 + }, + "SpaceBoundary": "78b4cdc6-b723-4e49-8cc4-8386ff815448", + "discriminator": "Elements.Geometry.Profile" + }, + "2cbbe12f-62d0-4c69-b6c5-037ed3a86d47": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "2cbbe12f-62d0-4c69-b6c5-037ed3a86d47", + "Name": "Storage" + }, + "f23f7030-689a-4ae9-a678-36c21904467e": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 59.43041, + "Y": 18.699087212104956, + "Z": 0.01 + }, + "Max": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "f23f7030-689a-4ae9-a678-36c21904467e", + "Name": null + }, + "964ee2a3-9dfc-4988-89c8-392430106c9c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.01 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "964ee2a3-9dfc-4988-89c8-392430106c9c", + "Name": "Storage" + }, + "78b4cdc6-b723-4e49-8cc4-8386ff815448": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 61.25392639668715, + "Y": 20.747814350489893, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 61.25392639668715, + "Y": 20.747814350489893, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.25392639668715, + "Y": 20.747814350489893, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Storage", + "Room View": "f23f7030-689a-4ae9-a678-36c21904467e", + "Boundary": "c039e7f5-fff3-4359-aff8-ca892db18088", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + ] + } + ], + "Area": 14.943527151553099, + "Height": 4.0, + "Program Type": "Storage", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Storage", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "95e0373b-a05e-405b-ba3f-22f577ad6bd5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "964ee2a3-9dfc-4988-89c8-392430106c9c", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "78b4cdc6-b723-4e49-8cc4-8386ff815448", + "Name": "Storage", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces Addition": [ + { + "id": "3bfd85e6-977d-4aa2-8ae6-222b035583f8", + "identity": null + } + ], + "Spaces": [ + { + "id": "7a886e93-386b-427c-b78e-930c360a09c7", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 61.25392618990139, + "Y": 20.747814303025923, + "Z": 0.0 + } + } + } + ] + } + }, + "34a79be7-e9de-4db7-b0be-dbe27fb992ac": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.01 + }, + "Max": { + "X": 45.78778, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "34a79be7-e9de-4db7-b0be-dbe27fb992ac", + "Name": null + }, + "58f0a894-b19c-48a4-b463-30c77b915d39": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.78778, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.0 + }, + { + "X": 45.78778, + "Y": 51.68030767068653, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "58f0a894-b19c-48a4-b463-30c77b915d39", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + } + }, + "595120d8-f25d-455c-96d1-ffec0da78c25": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.78778, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 45.78778, + "Y": 51.68030767068653, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "595120d8-f25d-455c-96d1-ffec0da78c25", + "Name": "Open Office" + }, + "72e739ea-2d99-452f-9d4f-a03a17a519b2": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.01 + }, + "Max": { + "X": 45.78778, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "72e739ea-2d99-452f-9d4f-a03a17a519b2", + "Name": null + }, + "7698ffbd-462a-4bfa-911e-ec1dc868e70b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.78778, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.01 + }, + { + "X": 45.78778, + "Y": 51.68030767068653, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7698ffbd-462a-4bfa-911e-ec1dc868e70b", + "Name": "Open Office" + }, + "4598c6bf-f2eb-4e81-8803-5057a8ec49c3": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 38.67645500000007, + "Y": 54.116695000000135, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 38.67645500000007, + "Y": 54.116695000000135, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 38.67645500000007, + "Y": 54.116695000000135, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "72e739ea-2d99-452f-9d4f-a03a17a519b2", + "Boundary": "58f0a894-b19c-48a4-b463-30c77b915d39", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 51.98042, + "Z": 0.0 + } + ] + } + ], + "Area": 58.36751917749962, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7698ffbd-462a-4bfa-911e-ec1dc868e70b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4598c6bf-f2eb-4e81-8803-5057a8ec49c3", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "730468df-8968-4e25-b866-1c3b635fedd0", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 38.816855, + "Y": 54.116695, + "Z": 0.0 + } + } + } + ] + } + }, + "35b1b6d7-f8b9-45fb-82ae-4c83b3a8e785": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 71.29167, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "35b1b6d7-f8b9-45fb-82ae-4c83b3a8e785", + "Name": null + }, + "772b1e0b-d79b-4843-b764-cefa017ae3c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "772b1e0b-d79b-4843-b764-cefa017ae3c5", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd" + }, + "7e0e6957-c3fe-4bf2-b0aa-954d20ac0dfa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "7e0e6957-c3fe-4bf2-b0aa-954d20ac0dfa", + "Name": "Open Office" + }, + "de77e747-85d4-48d7-af84-fff6570274cd": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 71.29167, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "de77e747-85d4-48d7-af84-fff6570274cd", + "Name": null + }, + "f5494517-26e9-4392-a0f9-941bb479a74b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f5494517-26e9-4392-a0f9-941bb479a74b", + "Name": "Open Office" + }, + "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 59.14932499999994, + "Y": 47.07693499999999, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 59.14932499999994, + "Y": 47.07693499999999, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 59.14932499999994, + "Y": 47.07693499999999, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "de77e747-85d4-48d7-af84-fff6570274cd", + "Boundary": "772b1e0b-d79b-4843-b764-cefa017ae3c5", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + } + ] + } + ], + "Area": 165.30515628930016, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f5494517-26e9-4392-a0f9-941bb479a74b", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "ae2ebd2a-6b54-4481-928a-0f0c36d5a2c7", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 59.149325000000005, + "Y": 47.076935000000006, + "Z": 0.0 + } + } + } + ] + } + }, + "443436a8-916e-4dfc-bf9b-bdb348c1dfa7": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 80.23593, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "443436a8-916e-4dfc-bf9b-bdb348c1dfa7", + "Name": null + }, + "b26b8c75-8ab4-46fd-8cf9-f45a670f8c3b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "b26b8c75-8ab4-46fd-8cf9-f45a670f8c3b", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "45ba4411-a8f4-488f-9abf-229f056faba5" + }, + "1f528ede-f469-4788-83c3-9ca089f5c824": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "1f528ede-f469-4788-83c3-9ca089f5c824", + "Name": "Open Office" + }, + "e89fe99a-9edb-4c57-a3a3-361428fedafb": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 80.23593, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "e89fe99a-9edb-4c57-a3a3-361428fedafb", + "Name": null + }, + "5d80b536-4ed7-40bf-940b-e69daa9fa925": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5d80b536-4ed7-40bf-940b-e69daa9fa925", + "Name": "Open Office" + }, + "45ba4411-a8f4-488f-9abf-229f056faba5": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 76.5138, + "Y": 49.96321000000002, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 76.5138, + "Y": 49.96321000000002, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 76.5138, + "Y": 49.96321000000002, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "e89fe99a-9edb-4c57-a3a3-361428fedafb", + "Boundary": "b26b8c75-8ab4-46fd-8cf9-f45a670f8c3b", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.0 + } + ] + } + ], + "Area": 93.6452175551999, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5d80b536-4ed7-40bf-940b-e69daa9fa925", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "45ba4411-a8f4-488f-9abf-229f056faba5", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "94229b38-53a0-492e-9700-98170d2114d0", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 76.6542, + "Y": 49.963210000000004, + "Z": 0.0 + } + } + } + ] + } + }, + "45f78062-90e5-44dd-8fb1-de6d0b9db7b9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 45.50698, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "45f78062-90e5-44dd-8fb1-de6d0b9db7b9", + "Name": null + }, + "cf9cc152-c404-41da-a6e0-faf1403ad262": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cf9cc152-c404-41da-a6e0-faf1403ad262", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "da93c9d8-1e09-488e-9114-8510055c0214" + }, + "90dbdf58-6481-434f-807b-1ef72932f45a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "90dbdf58-6481-434f-807b-1ef72932f45a", + "Name": "Open Office" + }, + "e84d08ba-e455-455f-8375-c89477fb1dd0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 45.50698, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "e84d08ba-e455-455f-8375-c89477fb1dd0", + "Name": null + }, + "958fa3b3-8e14-4b42-9b5e-13e43da4da47": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "958fa3b3-8e14-4b42-9b5e-13e43da4da47", + "Name": "Open Office" + }, + "da93c9d8-1e09-488e-9114-8510055c0214": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 38.676455000000004, + "Y": 47.076935000000006, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 38.676455000000004, + "Y": 47.076935000000006, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 38.676455000000004, + "Y": 47.076935000000006, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "e84d08ba-e455-455f-8375-c89477fb1dd0", + "Boundary": "cf9cc152-c404-41da-a6e0-faf1403ad262", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.0 + } + ] + } + ], + "Area": 92.99035751849976, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "958fa3b3-8e14-4b42-9b5e-13e43da4da47", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "da93c9d8-1e09-488e-9114-8510055c0214", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "04d5b3e2-4113-466d-b7f1-e27d72783c65", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 38.816855, + "Y": 47.076935000000006, + "Z": 0.0 + } + } + } + ] + } + }, + "65b2db37-f240-417b-9310-5711fb379152": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "65b2db37-f240-417b-9310-5711fb379152", + "Name": null + }, + "8e231bbb-273e-4c4a-adcf-d266fee932e0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "8e231bbb-273e-4c4a-adcf-d266fee932e0", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "faf9ed0e-a0c5-48d4-b076-db826c78909a" + }, + "0870f667-8e89-48ed-a4d3-57c397e4b6d3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0870f667-8e89-48ed-a4d3-57c397e4b6d3", + "Name": "Open Office" + }, + "46e17620-e593-4de2-a165-1e768af7526a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 86.67622, + "Y": 56.25297, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "46e17620-e593-4de2-a165-1e768af7526a", + "Name": null + }, + "75edd855-4565-4c9c-bf6e-0e7c62aca650": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.01 + }, + { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "75edd855-4565-4c9c-bf6e-0e7c62aca650", + "Name": "Open Office" + }, + "faf9ed0e-a0c5-48d4-b076-db826c78909a": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 84.20607500000011, + "Y": 49.96321000000006, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 84.20607500000011, + "Y": 49.96321000000006, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.20607500000011, + "Y": 49.96321000000006, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "46e17620-e593-4de2-a165-1e768af7526a", + "Boundary": "8e231bbb-273e-4c4a-adcf-d266fee932e0", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.0 + } + ] + } + ], + "Area": 62.146476860799794, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "75edd855-4565-4c9c-bf6e-0e7c62aca650", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "faf9ed0e-a0c5-48d4-b076-db826c78909a", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "e01dca1e-fb4e-4818-8bfa-25e13bcaf116", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 84.206075, + "Y": 49.963210000000004, + "Z": 0.0 + } + } + } + ] + } + }, + "9c3206b2-a185-44c8-baef-9bc25a382d7f": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 17.87214, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "9c3206b2-a185-44c8-baef-9bc25a382d7f", + "Name": null + }, + "dc06661f-2443-4af1-8670-8ada2f852857": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "dc06661f-2443-4af1-8670-8ada2f852857", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "77dd2a79-a557-45f9-b79d-e9ac0fc5231b" + }, + "804311e4-d74f-4346-a609-e8b1f9a92fbf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "804311e4-d74f-4346-a609-e8b1f9a92fbf", + "Name": "Open Office" + }, + "cd8dd8d4-14f0-4542-9310-4a36534edca9": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.01 + }, + "Max": { + "X": 17.87214, + "Y": 50.48042, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "cd8dd8d4-14f0-4542-9310-4a36534edca9", + "Name": null + }, + "5275a98d-4391-44ef-8003-aa7aa02ce958": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.01 + }, + { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "5275a98d-4391-44ef-8003-aa7aa02ce958", + "Name": "Open Office" + }, + "77dd2a79-a557-45f9-b79d-e9ac0fc5231b": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 12.944655000000003, + "Y": 47.07693500000002, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 12.944655000000003, + "Y": 47.07693500000002, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 12.944655000000003, + "Y": 47.07693500000002, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "cd8dd8d4-14f0-4542-9310-4a36534edca9", + "Boundary": "dc06661f-2443-4af1-8670-8ada2f852857", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.0 + } + ] + } + ], + "Area": 67.08248514089996, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5275a98d-4391-44ef-8003-aa7aa02ce958", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "77dd2a79-a557-45f9-b79d-e9ac0fc5231b", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "cf28cb39-5d15-4ae8-b1b3-659f7079dfac", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 12.932655, + "Y": 47.076935000000006, + "Z": 0.0 + } + } + } + ] + } + }, + "1c49989a-19d3-4ce5-ad55-2624582fa855": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 17.87214, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1c49989a-19d3-4ce5-ad55-2624582fa855", + "Name": null + }, + "c5dd3148-87e4-407b-95b5-e1b8189c9df1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "c5dd3148-87e4-407b-95b5-e1b8189c9df1", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "95d3743d-9b47-4a6c-bbc0-653da1ae4e49" + }, + "6abcf20c-c276-42f7-9adb-9341a342402f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.01 + }, + { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.01 + }, + { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6abcf20c-c276-42f7-9adb-9341a342402f", + "Name": "Open Office" + }, + "1abbe1e5-37b6-4633-8a2d-82650bf3b9e0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.01 + }, + "Max": { + "X": 17.87214, + "Y": 42.17345, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1abbe1e5-37b6-4633-8a2d-82650bf3b9e0", + "Name": null + }, + "352dc958-098a-40b3-8e74-5c5a98bc4154": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.01 + }, + { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.01 + }, + { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.01 + }, + { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.01 + }, + { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "352dc958-098a-40b3-8e74-5c5a98bc4154", + "Name": "Open Office" + }, + "95d3743d-9b47-4a6c-bbc0-653da1ae4e49": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 12.625439572585464, + "Y": 30.095468411075334, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 12.625439572585464, + "Y": 30.095468411075334, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 12.625439572585464, + "Y": 30.095468411075334, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "1abbe1e5-37b6-4633-8a2d-82650bf3b9e0", + "Boundary": "c5dd3148-87e4-407b-95b5-e1b8189c9df1", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.0 + }, + { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.0 + }, + { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.0 + } + ] + } + ], + "Area": 245.49791909440003, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "352dc958-098a-40b3-8e74-5c5a98bc4154", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "95d3743d-9b47-4a6c-bbc0-653da1ae4e49", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "79ab1271-a464-4ac7-9b84-3cc6f54cda0c", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 10.889256666666666, + "Y": 30.409250000000004, + "Z": 0.0 + } + } + } + ] + } + }, + "a79ac640-84dd-42e3-b497-c6cd521570b1": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.01 + }, + "Max": { + "X": 80.23593, + "Y": 30.97603, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "a79ac640-84dd-42e3-b497-c6cd521570b1", + "Name": null + }, + "d8af86c3-f654-43d1-9f1f-635ff90ae641": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d8af86c3-f654-43d1-9f1f-635ff90ae641", + "Name": "Open Office", + "Color": { + "Red": 0.43529411764705883, + "Green": 0.6274509803921569, + "Blue": 0.7450980392156863, + "Alpha": 0.5 + }, + "SpaceBoundary": "b86ae247-6bf0-4d23-ae9b-cbd4085de406" + }, + "90058d35-e447-4262-b621-40321b76f326": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "90058d35-e447-4262-b621-40321b76f326", + "Name": "Open Office" + }, + "1be0f01a-24e9-4a4d-bad3-710b8be64c4d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.01 + }, + "Max": { + "X": 80.23593, + "Y": 30.97603, + "Z": 3.9099999999999997 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + } + }, + "Clip With Bounding Box": true, + "Id": "1be0f01a-24e9-4a4d-bad3-710b8be64c4d", + "Name": null + }, + "0d0e51d0-5022-45a7-8320-e3bfbadd2849": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.01 + }, + { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.01 + }, + { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.01 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "0d0e51d0-5022-45a7-8320-e3bfbadd2849", + "Name": "Open Office" + }, + "b86ae247-6bf0-4d23-ae9b-cbd4085de406": { + "discriminator": "Elements.SpaceBoundary", + "ToAlignmentEdge": null, + "FromAlignmentEdge": null, + "AdjacentCorridorEdges": null, + "AlignmentEdge": null, + "AvailableLength": 0.0, + "IndividualCentroid": { + "X": 76.48815000000005, + "Y": 21.05712000000002, + "Z": 0.0 + }, + "ParentCentroid": { + "X": 76.48815000000005, + "Y": 21.05712000000002, + "Z": 0.0 + }, + "AutoPlaced": false, + "CountPlaced": 0, + "SpaceCount": 1, + "Level Add Id": "Level 1", + "Relative Position": { + "X": 76.48815000000005, + "Y": 21.05712000000002, + "Z": 0.0 + }, + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.0 + } + ] + }, + "Original Voids": [], + "ProgramName": "Open Office", + "Room View": "1be0f01a-24e9-4a4d-bad3-710b8be64c4d", + "Boundary": "d8af86c3-f654-43d1-9f1f-635ff90ae641", + "Cells": [ + { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.0 + } + ] + } + ], + "Area": 148.69557007919985, + "Height": 4.0, + "Program Type": "Open Office", + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Level Layout": "33dd865f-c3f9-4122-ba31-71465791944f", + "Hypar Space Type": "Open Office", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a821bf00-8f68-4e8c-a92d-a843f7286be1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0d0e51d0-5022-45a7-8320-e3bfbadd2849", + "Height": 4.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": true, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b86ae247-6bf0-4d23-ae9b-cbd4085de406", + "Name": "Open Office", + "Building Name": null, + "Level Name": "Level 1", + "associatedIdentities": { + "Spaces": [ + { + "id": "9f9cbc8c-f50a-4dcc-b296-7b2b7a3d10cd", + "identity": { + "Level Add Id": "Level 1", + "Relative Position": { + "X": 76.62854999999999, + "Y": 21.05712, + "Z": 0.0 + } + } + } + ] + } + }, + "33dd865f-c3f9-4122-ba31-71465791944f": { + "discriminator": "Elements.LevelLayout", + "Profiles": [ + "58f0a894-b19c-48a4-b463-30c77b915d39", + "8e231bbb-273e-4c4a-adcf-d266fee932e0", + "dc06661f-2443-4af1-8670-8ada2f852857", + "cf9cc152-c404-41da-a6e0-faf1403ad262", + "772b1e0b-d79b-4843-b764-cefa017ae3c5", + "b26b8c75-8ab4-46fd-8cf9-f45a670f8c3b", + "c5dd3148-87e4-407b-95b5-e1b8189c9df1", + "d8af86c3-f654-43d1-9f1f-635ff90ae641", + "3b5ac666-e68d-4539-b46e-5902d8913ab5", + "1a393733-aa01-4e08-9a7a-064830904924", + "77fcec3e-a473-442c-899d-fdcf2b6d667d", + "c8fe1e5f-cc7f-4f1a-ad9d-648c587c54f6", + "e557abe5-bd11-483c-b61f-2d5a44ba0e3d", + "4b09ca94-7a46-4362-8f0a-b577ea282ade", + "cfebed50-41cb-4dc8-9627-6c62838935cd", + "2196ffaa-bd02-47b5-b976-0222bea212be", + "0478235b-668c-4878-be17-6f8d4eb582af", + "db330e81-bfb5-4617-84f6-da772f803d6f", + "07176483-02c7-45fd-a74d-551d4111a21d", + "5a6d92fa-9408-472e-8a8c-41389cf793ac", + "77e64360-f0e0-4950-842d-aeb03d85e2d3", + "8c26d49a-2634-4923-8760-2ef34517231d", + "c92f2e11-e70a-4c9a-84eb-3fb7f763dcf6", + "bebd4308-ec19-41e7-8541-7f2672e28b1b", + "918f44de-7caf-469d-af8a-ed6366ed0951", + "0acd0805-60f7-4c9b-bced-200ed28c8181", + "ec65f06d-658e-4a48-b41f-91e1fc2e1b77", + "f15ce7c4-92f8-4fd5-bb8d-ea697974c2f7", + "f1c993ac-76e8-4b5f-8eb3-6b12dff8d4c4", + "ab4d7531-bfcd-4274-ba6f-fc63ca2ba9cc", + "6d21519b-6c0e-4f97-85b8-261867ccadb2", + "a752556c-18be-436d-9a53-53acbc2ff562", + "d1fac585-83fb-4118-bb89-4152d1bd5860", + "8cced93f-3331-48a6-97d2-8d9914ee2380", + "5d0df0ac-3137-4ccf-9434-e534e45298c7", + "f43c9b54-3248-4651-b38d-6f0d100a5cee", + "27ccaed6-3444-4be2-9413-7984cf39ea51", + "22c0e6fa-3f49-42bd-b812-4347b55c40d5", + "e2910ada-bb2d-4407-89b5-05420dbe9d62", + "06f68a4d-5996-4314-b4e6-3a1b75d52fe5", + "7164ad0e-7e77-47fe-ae09-0d541281ac4c", + "b10813d0-067e-49b1-a823-d79469695b12", + "5bb62ace-1ac8-4c0e-af74-724edc316668", + "b4d8957f-7777-4431-b354-919d88654873", + "5e06c241-66fb-4c2d-a39f-9f8db5ee8e73", + "4115f965-1f6f-4028-b3a0-055fa7e57727", + "1d549b50-86e5-44c2-95e5-a955a1592814", + "8456d72f-06c5-4998-ae66-1c43c2cd18a9", + "e2accf5e-cb3f-4183-981a-a28ea6935da9", + "f1d10b14-8d34-45d4-95ba-d3e645c17635", + "7071b8e5-1f9f-4663-9b30-43510f0c28c0", + "f973776a-1c7d-4d08-bf38-58a7dcd64039", + "6d47c60b-d653-4695-8cf5-319f5f3f8fa9", + "9ec21f04-1fe3-436b-9108-00f45cba72ac", + "f594f653-55a6-4be9-9f62-07c05e576462", + "b8755484-743c-4c18-9c29-1792e8cf595f", + "2dcd4ba4-8bdc-4eed-a733-47bd65b51901", + "87542ada-2c7c-4739-bc40-88b4f9f6622b", + "58f804fc-86ce-4195-b138-5dd592821ba2", + "4904f4b0-48ca-47c7-97c7-99051e431f91", + "53cfc1d4-15a9-4499-a6b2-ef0715c2ab3f", + "b5e48c4b-9b81-451a-bcd8-64a5db1439c0", + "c039e7f5-fff3-4359-aff8-ca892db18088", + "ed9e345d-a8a9-4cff-9cba-025dd3246e39", + "8625b40b-90ec-49c6-996a-1cfc4c9eb81c" + ], + "Add Id": "Level 1-layout", + "Levels": [ + "6c24232f-2b93-4dc5-a752-94c365fce027" + ], + "Id": "33dd865f-c3f9-4122-ba31-71465791944f", + "Name": "Level 1 Layout" + }, + "7298d643-9049-4a2b-960d-ae775b50fd80": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Name": "black" + }, + "4abbe5c0-d83d-4a1d-9153-598fffb3366d": { + "discriminator": "Elements.ModelLines", + "Lines": [ + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 45.78778, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.84593, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.84593, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 45.78778, + "Y": 51.68030767068653, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 45.78778, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 45.78778, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67622, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 86.67622, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.87214, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 17.87214, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.84593, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.84593, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 45.50698, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 45.50698, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 71.29167, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 72.79167, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.23593, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 80.23593, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 30.35521, + "Z": 0.0 + }, + "End": { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.80246, + "Y": 30.35521, + "Z": 0.0 + }, + "End": { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.80246, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.87214, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 17.87214, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 72.74037, + "Y": 11.13821, + "Z": 0.0 + }, + "End": { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.23593, + "Y": 11.13821, + "Z": 0.0 + }, + "End": { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 45.57675857419614, + "Z": 0.0 + }, + "End": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.053837808158455, + "Y": 43.67345000000023, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 43.67344999999841, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 43.67345, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.955298089231597, + "Y": 50.48042, + "Z": 0.0 + }, + "End": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.95529808923129, + "Y": 47.07693499999921, + "Z": 0.0 + }, + "End": { + "X": 30.62673000000177, + "Y": 47.07693499999921, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.62673, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.989186136481678, + "Y": 56.25296999999955, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.39157378708485, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.391573787084962, + "Y": 56.25296999999964, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.84814, + "Y": 51.98041999999987, + "Z": 0.0 + }, + "End": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.848140000000118, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.01717, + "Y": 51.98042, + "Z": 0.0 + }, + "End": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.995514757727523, + "Y": 51.98041999999992, + "Z": 0.0 + }, + "End": { + "X": 13.99551475772758, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 47.00698, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 50.73247316631692, + "Y": 51.68030767068647, + "Z": 0.0 + }, + "End": { + "X": 50.732473166317, + "Y": 56.25297000000137, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 54.464324782482265, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + }, + "End": { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.29167, + "Y": 51.68030767068653, + "Z": 0.0 + }, + "End": { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.29167, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.23661325352933, + "Y": 56.25297, + "Z": 0.0 + }, + "End": { + "X": 60.23661325352933, + "Y": 51.680307670686396, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + "End": { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 70.48233, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 70.48233, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.51673, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 80.51673, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 42.17344999999841, + "Z": 0.0 + }, + "End": { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 70.48233, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 70.48233, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 74.22363, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + }, + "End": { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 68.65353, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 68.65353, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + }, + "End": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.643194378482946, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.643194378482946, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204116, + "Y": 32.4760299999999, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204113, + "Y": 33.820920000000115, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 68.65353, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 68.65353, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + }, + "End": { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + }, + "End": { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204114, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 65.62212165204114, + "Y": 42.17345000000023, + "Z": 0.0 + }, + "End": { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 62.74417496402727, + "Y": 42.17345000000012, + "Z": 0.0 + }, + "End": { + "X": 62.74417496402732, + "Y": 40.76060999999936, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.61377681215257, + "Y": 40.76061, + "Z": 0.0 + }, + "End": { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.61377681215257, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + }, + "End": { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.66426710492474, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.66426710492474, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 33.82092, + "Z": 0.0 + }, + "End": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162, + "Y": 38.268205299649296, + "Z": 0.0 + }, + "End": { + "X": 56.72045000000253, + "Y": 38.268205299649296, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + "End": { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.97564, + "Y": 40.79689, + "Z": 0.0 + }, + "End": { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.97564, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + "End": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.96145641587446, + "Y": 40.79688999999962, + "Z": 0.0 + }, + "End": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.96145641587446, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + }, + "End": { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75866, + "Y": 40.79689, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 40.79689028987393, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + }, + "End": { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75866, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37213999999949, + "Y": 33.786707550359715, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.9057839087163, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.9057839087163, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + }, + "End": { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.99919, + "Y": 32.47603, + "Z": 0.0 + }, + "End": { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.99919, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.042001811959285, + "Y": 33.78671, + "Z": 0.0 + }, + "End": { + "X": 25.042001811959285, + "Y": 32.47602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413346, + "Y": 28.886827376872855, + "Z": 0.0 + }, + "End": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.06851484413282, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.044171853156378, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 32.57199225162626, + "Y": 30.97602999999807, + "Z": 0.0 + }, + "End": { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 32.57199225162664, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686638, + "Y": 30.976029999998346, + "Z": 0.0 + }, + "End": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 38.13396358686673, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.62551779721122, + "Y": 30.97602999999857, + "Z": 0.0 + }, + "End": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 42.625517797211565, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707577, + "Y": 30.976029999998886, + "Z": 0.0 + }, + "End": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 48.94414351707612, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127495, + "Y": 30.976029999999096, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 53.12086916127529, + "Y": 24.296539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 53.12086916127555, + "Y": 27.63628500000004, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609934, + "Y": 30.976029999999284, + "Z": 0.0 + }, + "End": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.9198005260987, + "Y": 27.636285000000235, + "Z": 0.0 + }, + "End": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.91980052609968, + "Y": 24.296540000001187, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580672, + "Y": 30.97602999999981, + "Z": 0.0 + }, + "End": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.69348938580619, + "Y": 24.296540000000956, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.723295032471185, + "Y": 30.97602999999799, + "Z": 0.0 + }, + "End": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.72329503247063, + "Y": 24.296540000000622, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913571, + "Y": 30.97603000000163, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 67.75310067913514, + "Y": 24.296540000000288, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 28.82623927521094, + "Z": 0.0 + }, + "End": { + "X": 67.75310067913415, + "Y": 28.82623927521094, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.37214, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.151158175888526, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.97714490603328, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 26.97714490603328, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 31.015686454519418, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 52.74478025431482, + "Y": 22.796540000001187, + "Z": 0.0 + }, + "End": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 52.74478025431482, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.42615000351825, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 11.13821, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 11.13821, + "Z": 0.0 + }, + "End": { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + "End": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + "End": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + "End": { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24036999999953, + "Y": 18.699080972124317, + "Z": 0.0 + }, + "End": { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + }, + "End": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041262525221, + "Y": 22.796539999999368, + "Z": 0.0 + }, + "End": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 59.43041, + "Y": 18.69909, + "Z": 0.0 + }, + "End": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 63.07743950107085, + "Y": 18.699087212104956, + "Z": 0.0 + }, + "End": { + "X": 63.07744263328251, + "Y": 22.796539999999368, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67622, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 42.17345, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 86.67621999999938, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 40.86957014633645, + "Z": 0.0 + }, + "End": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 81.73593, + "Y": 37.24859380829531, + "Z": 0.0 + }, + "End": { + "X": 86.67621999999938, + "Y": 37.24859380829531, + "Z": 0.0 + } + } + ], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": null, + "IsElementDefinition": false, + "Id": "4abbe5c0-d83d-4a1d-9153-598fffb3366d", + "Name": null + }, + "ac4f58ba-2c19-4e8a-9251-66545acf4510": { + "discriminator": "Elements.LevelElements", + "Elements": [ + "0c1e3c8e-17ad-4fd3-ba69-c8609cc5a13e", + "70654dc9-eef1-446e-a79c-0c4d50b298ee", + "5a127ddf-8a9e-4691-9546-59964fdf9afd", + "96d57b83-656f-4daf-bb91-bb9a39098aa7", + "f91ef1e3-22d1-434b-b933-95fe79b9a849", + "21c5de94-8810-4d07-900d-82f90d830241", + "d34fb7c6-ff2f-4ff5-a693-b11500aa6abd", + "579c6410-2916-486d-a8a3-4df1146df0e0", + "3cb023ef-2fa6-42ca-a6d1-a182735248d0", + "6b6f4dfd-8e82-4266-88f3-38549f6db7db", + "db000d67-8e60-4ae8-aae2-1b4e1deb12d1", + "e0aca56b-17bb-40be-8e2b-64f5c4af5ee1", + "0f4222db-b924-45ae-8646-10b838961ccd", + "a3dc9c6c-01c8-4a2a-8ed9-bec02a198b8d", + "9b95c2ac-4dd8-4d33-85fc-352f4909006a", + "aee16692-9345-4746-8769-1835826237b0", + "fe2f6c48-d09a-45cb-aa4f-30d3c38171c4", + "a185270c-97b5-4a6a-85d3-0cfcc59ab567", + "ce6ced40-1692-45ae-9e44-3d2aa68fb8b2", + "fd9f9f76-67dd-4476-9830-44af139a6ae4", + "a7595dd0-363a-467d-a158-636ed870a593", + "7e71d06e-b9c6-4bd0-a319-1b1c1bc68105", + "90be1c10-d286-45b2-88ab-94467bca71a0", + "6347c94b-2b3d-4b3a-9536-7112796b24d7", + "85b6e9da-7c2c-4fa7-bac8-2dac8ecbab35", + "f3b9d53a-cf2a-4cc6-8a26-afc8868d8e23", + "01f19bed-07d8-4a94-86e0-e6c69b535f69", + "7fd3572d-149d-40aa-ab64-0c07b7d9c8d9", + "6d1d66d3-8ac5-4158-8bc1-13a451879fce", + "02fc148c-6590-4570-a236-a258f348d23d", + "2cff036f-46a8-4d52-af21-abf5b37e827d", + "bd5077f0-0a0a-44fe-a3f9-c74aea352d62", + "9450080a-57df-4339-9b4f-8b43f3b107a9", + "e548bf7c-f184-4ed2-a4e6-ca2441e37591", + "fc647b72-a8fc-435f-8e71-041d36b603a1", + "a9553044-54e7-45e7-b6c6-da68c9e34c92", + "ea0e4492-b9fb-4b68-b5f2-f586b94c30a9", + "4c92cdf8-cc71-456b-8a2d-680171640c15", + "3b38eb6a-c903-4248-9d91-145643c328c8", + "e4dd8b23-8cd2-4775-90df-52f0cad05be0", + "1bfa6a34-c631-41fc-b8e8-b2daee0ef048", + "68c6fd9f-3c6d-4f76-8544-337951d44e31", + "1cdcec17-ea82-4671-86b2-18c6327dea15", + "76853dc1-1664-40d6-beef-33b8f3d583bd", + "c64f79d8-7863-4271-9b9d-1bf9bc0aae49", + "f0e55b2c-74ab-4917-a7d7-65b0df376e6a", + "254e3e7c-aead-471d-a651-9fec1ff7bb2d", + "e237bb02-29f2-48cc-bc70-20d2bdb8837b", + "c9402747-3fa2-4a66-8ea7-a7ee4ed4ad9b", + "47a2872e-8571-43d7-b210-621995eac1a9", + "c3edd6be-9a5a-4c84-8486-fe9002e7efc7", + "d5ebda2a-b04f-4479-857b-5ecb77a4d071", + "6fc6341e-05e6-4e5a-b936-a243af297f58", + "63d2e2ad-a3f5-40dd-94dc-a802042e25ed", + "0cec8faa-6d25-4fa6-8b95-4bc525798c5d", + "301efec9-d3a6-4bba-a7e5-bcaa31e32601", + "234b0b7a-3c95-4298-91cd-cb727e28a0dd", + "78b4cdc6-b723-4e49-8cc4-8386ff815448", + "4598c6bf-f2eb-4e81-8803-5057a8ec49c3", + "f10fb6f7-0a53-42ec-b28c-2e0a8c2d4fcd", + "45ba4411-a8f4-488f-9abf-229f056faba5", + "da93c9d8-1e09-488e-9114-8510055c0214", + "faf9ed0e-a0c5-48d4-b076-db826c78909a", + "77dd2a79-a557-45f9-b79d-e9ac0fc5231b", + "95d3743d-9b47-4a6c-bbc0-653da1ae4e49", + "b86ae247-6bf0-4d23-ae9b-cbd4085de406" + ], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Id": "ac4f58ba-2c19-4e8a-9251-66545acf4510", + "Name": "Level 1" + }, + "d159024b-d4c4-4235-b285-325d4d9cdbb6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162369001159, + "Y": 33.82091559508918, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 33.82091559508918, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 40.760613482190415, + "Z": 0.0 + }, + { + "X": 60.26162369001159, + "Y": 40.760613482190415, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "d159024b-d4c4-4235-b285-325d4d9cdbb6", + "Name": null + }, + "e7492160-3d9c-4fde-83a9-618abd381169": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5, + "Green": 0.5, + "Blue": 0.5, + "Alpha": 1.0 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "e7492160-3d9c-4fde-83a9-618abd381169", + "Name": "concrete" + }, + "970cbb9d-b057-4867-881f-aae4e04a90e4": { + "discriminator": "Elements.CoreArea", + "Core": "1daf4f83-ce67-4902-b295-b5ccedd7bcc4", + "Boundary": "d159024b-d4c4-4235-b285-325d4d9cdbb6", + "Area": 96.89213979942906, + "Height": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d159024b-d4c4-4235-b285-325d4d9cdbb6", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "970cbb9d-b057-4867-881f-aae4e04a90e4", + "Name": null, + "Building Name": null, + "Level Name": "Level 1" + }, + "6b50c173-4c4f-4dab-9b95-58f814d7ee92": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": { + "LineWidth": 3.0, + "WidthMode": 0, + "DashMode": 0, + "DashSize": 1.0, + "GapSize": 1.0 + }, + "Id": "6b50c173-4c4f-4dab-9b95-58f814d7ee92", + "Name": "CoreLines" + }, + "f99304ed-2193-459a-932c-40ab156c4bdf": { + "discriminator": "Elements.CoreLines", + "Lines": [ + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162369001159, + "Y": 33.82091559508918, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 33.82091559508918, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 33.82091559508918, + "Z": 0.0 + }, + "End": { + "X": 74.22363491524399, + "Y": 40.760613482190415, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 74.22363491524399, + "Y": 40.760613482190415, + "Z": 0.0 + }, + "End": { + "X": 60.26162369001159, + "Y": 40.760613482190415, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 60.26162369001159, + "Y": 40.760613482190415, + "Z": 0.0 + }, + "End": { + "X": 60.26162369001159, + "Y": 33.82091559508918, + "Z": 0.0 + } + } + ], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.001 + ] + } + }, + "Material": "6b50c173-4c4f-4dab-9b95-58f814d7ee92", + "Representation": null, + "IsElementDefinition": false, + "Id": "f99304ed-2193-459a-932c-40ab156c4bdf", + "Name": null + }, + "764f1a9a-392b-4603-a6ab-79f2a47d7cc3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 27.99799116635657, + "Y": 42.18557941835776, + "Z": 0.0 + }, + { + "X": 24.975636931358167, + "Y": 42.18557941835776, + "Z": 0.0 + }, + { + "X": 24.975636931358167, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 20.75865586372735, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 20.75865586372735, + "Y": 33.78670755036024, + "Z": 0.0 + }, + { + "X": 27.99799116635657, + "Y": 33.78670755036024, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "764f1a9a-392b-4603-a6ab-79f2a47d7cc3", + "Name": null + }, + "b64fc123-254b-4c98-9e27-2af4abc46c65": { + "discriminator": "Elements.CoreArea", + "Core": "1ccfd3a9-9464-43f0-9ac3-aabd9d14087d", + "Boundary": "764f1a9a-392b-4603-a6ab-79f2a47d7cc3", + "Area": 54.94617385261279, + "Height": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "764f1a9a-392b-4603-a6ab-79f2a47d7cc3", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b64fc123-254b-4c98-9e27-2af4abc46c65", + "Name": null, + "Building Name": null, + "Level Name": "Level 1" + }, + "71ca053b-e377-46da-8ea9-f06f8ca069e1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": { + "LineWidth": 3.0, + "WidthMode": 0, + "DashMode": 0, + "DashSize": 1.0, + "GapSize": 1.0 + }, + "Id": "71ca053b-e377-46da-8ea9-f06f8ca069e1", + "Name": "CoreLines" + }, + "f25cf0d6-67f6-4312-9804-581b1a810496": { + "discriminator": "Elements.CoreLines", + "Lines": [ + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.99799116635657, + "Y": 42.18557941835776, + "Z": 0.0 + }, + "End": { + "X": 24.975636931358167, + "Y": 42.18557941835776, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.975636931358167, + "Y": 42.18557941835776, + "Z": 0.0 + }, + "End": { + "X": 24.975636931358167, + "Y": 40.79689028987393, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.975636931358167, + "Y": 40.79689028987393, + "Z": 0.0 + }, + "End": { + "X": 20.75865586372735, + "Y": 40.79689028987393, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75865586372735, + "Y": 40.79689028987393, + "Z": 0.0 + }, + "End": { + "X": 20.75865586372735, + "Y": 33.78670755036024, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.75865586372735, + "Y": 33.78670755036024, + "Z": 0.0 + }, + "End": { + "X": 27.99799116635657, + "Y": 33.78670755036024, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.99799116635657, + "Y": 33.78670755036024, + "Z": 0.0 + }, + "End": { + "X": 27.99799116635657, + "Y": 42.18557941835776, + "Z": 0.0 + } + } + ], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.001 + ] + } + }, + "Material": "71ca053b-e377-46da-8ea9-f06f8ca069e1", + "Representation": null, + "IsElementDefinition": false, + "Id": "f25cf0d6-67f6-4312-9804-581b1a810496", + "Name": null + }, + "cf74c3f7-e09c-4bfb-92d0-1c3b7ed3aa53": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045437662227, + "Y": 42.173454474905725, + "Z": 0.0 + }, + { + "X": 30.324817770339706, + "Y": 42.173454474905725, + "Z": 0.0 + }, + { + "X": 30.324817770339706, + "Y": 32.476029999999994, + "Z": 0.0 + }, + { + "X": 56.72045437662227, + "Y": 32.476029999999994, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "cf74c3f7-e09c-4bfb-92d0-1c3b7ed3aa53", + "Name": null + }, + "265fcdaf-8a1f-4a50-8492-53469350613c": { + "discriminator": "Elements.CoreArea", + "Core": "bdf705e0-1f03-4623-9c9d-317eda6192ca", + "Boundary": "cf74c3f7-e09c-4bfb-92d0-1c3b7ed3aa53", + "Area": 255.96969245648245, + "Height": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cf74c3f7-e09c-4bfb-92d0-1c3b7ed3aa53", + "Height": 1.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "265fcdaf-8a1f-4a50-8492-53469350613c", + "Name": null, + "Building Name": null, + "Level Name": "Level 1" + }, + "a24953e7-8824-409a-8180-140cf5deb2b3": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": { + "LineWidth": 3.0, + "WidthMode": 0, + "DashMode": 0, + "DashSize": 1.0, + "GapSize": 1.0 + }, + "Id": "a24953e7-8824-409a-8180-140cf5deb2b3", + "Name": "CoreLines" + }, + "7ed5d0b3-71a6-4937-be2a-83b78b65105a": { + "discriminator": "Elements.CoreLines", + "Lines": [ + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045437662227, + "Y": 42.173454474905725, + "Z": 0.0 + }, + "End": { + "X": 30.324817770339706, + "Y": 42.173454474905725, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.324817770339706, + "Y": 42.173454474905725, + "Z": 0.0 + }, + "End": { + "X": 30.324817770339706, + "Y": 32.476029999999994, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.324817770339706, + "Y": 32.476029999999994, + "Z": 0.0 + }, + "End": { + "X": 56.72045437662227, + "Y": 32.476029999999994, + "Z": 0.0 + } + }, + { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 56.72045437662227, + "Y": 32.476029999999994, + "Z": 0.0 + }, + "End": { + "X": 56.72045437662227, + "Y": 42.173454474905725, + "Z": 0.0 + } + } + ], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.001 + ] + } + }, + "Material": "a24953e7-8824-409a-8180-140cf5deb2b3", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ed5d0b3-71a6-4937-be2a-83b78b65105a", + "Name": null + }, + "f0ce7818-9da8-4893-93d4-722502c6e5ba": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 60.26162369001159, + "Y": 33.82091559508918, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 33.82091559508918, + "Z": 0.0 + }, + { + "X": 74.22363491524399, + "Y": 40.760613482190415, + "Z": 0.0 + }, + { + "X": 60.26162369001159, + "Y": 40.760613482190415, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "f0ce7818-9da8-4893-93d4-722502c6e5ba", + "Name": null + }, + "1daf4f83-ce67-4902-b295-b5ccedd7bcc4": { + "discriminator": "Elements.ServiceCore", + "BoundaryIsUnedited": true, + "Length": 13.962011225232402, + "Depth": 6.939697887101232, + "Profile": "d159024b-d4c4-4235-b285-325d4d9cdbb6", + "Elevation": 0.0, + "Height": 5.3048, + "Centroid": { + "X": 67.24262930262773, + "Y": 37.290764538639785, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.3048 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f0ce7818-9da8-4893-93d4-722502c6e5ba", + "Height": 5.3048, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1daf4f83-ce67-4902-b295-b5ccedd7bcc4", + "Name": null, + "associatedIdentities": { + "Cores Addition": [ + { + "id": "d8be2116-9a7b-43d4-b4aa-afdb08203f5b", + "identity": null + } + ] + } + }, + "6b923cb8-c164-4889-b01e-eca3d2c8fa2e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 27.99799116635657, + "Y": 42.18557941835776, + "Z": 0.0 + }, + { + "X": 24.975636931358167, + "Y": 42.18557941835776, + "Z": 0.0 + }, + { + "X": 24.975636931358167, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 20.75865586372735, + "Y": 40.79689028987393, + "Z": 0.0 + }, + { + "X": 20.75865586372735, + "Y": 33.78670755036024, + "Z": 0.0 + }, + { + "X": 27.99799116635657, + "Y": 33.78670755036024, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "6b923cb8-c164-4889-b01e-eca3d2c8fa2e", + "Name": null + }, + "1ccfd3a9-9464-43f0-9ac3-aabd9d14087d": { + "discriminator": "Elements.ServiceCore", + "BoundaryIsUnedited": false, + "Length": 0.0, + "Depth": 0.0, + "Profile": "764f1a9a-392b-4603-a6ab-79f2a47d7cc3", + "Elevation": 0.0, + "Height": 5.3048, + "Centroid": { + "X": 24.539382367221425, + "Y": 37.61257642444251, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.3048 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6b923cb8-c164-4889-b01e-eca3d2c8fa2e", + "Height": 5.3048, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1ccfd3a9-9464-43f0-9ac3-aabd9d14087d", + "Name": null, + "associatedIdentities": { + "Cores Addition": [ + { + "id": "6d0d1756-0b44-444a-b08c-9d72d8efaaf4", + "identity": null + } + ] + } + }, + "491bd157-ff82-478b-98fa-fca525f33338": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 56.72045437662227, + "Y": 42.173454474905725, + "Z": 0.0 + }, + { + "X": 30.324817770339706, + "Y": 42.173454474905725, + "Z": 0.0 + }, + { + "X": 30.324817770339706, + "Y": 32.476029999999994, + "Z": 0.0 + }, + { + "X": 56.72045437662227, + "Y": 32.476029999999994, + "Z": 0.0 + } + ] + }, + "Voids": [], + "EdgeThickness": null, + "Id": "491bd157-ff82-478b-98fa-fca525f33338", + "Name": null + }, + "bdf705e0-1f03-4623-9c9d-317eda6192ca": { + "discriminator": "Elements.ServiceCore", + "BoundaryIsUnedited": false, + "Length": 0.0, + "Depth": 0.0, + "Profile": "cf74c3f7-e09c-4bfb-92d0-1c3b7ed3aa53", + "Elevation": 0.0, + "Height": 5.3048, + "Centroid": { + "X": 45.258804999999995, + "Y": 37.476029999999994, + "Z": 0.0 + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.3048 + ] + } + }, + "Material": "e7492160-3d9c-4fde-83a9-618abd381169", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "491bd157-ff82-478b-98fa-fca525f33338", + "Height": 5.3048, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bdf705e0-1f03-4623-9c9d-317eda6192ca", + "Name": null, + "associatedIdentities": { + "Cores": [ + { + "id": "2a9bea5d-d9bd-466d-8a90-c2c496cff9d4", + "identity": { + "Centroid": { + "X": 45.258804999999995, + "Y": 37.476029999999994, + "Z": 0.0 + }, + "Creation Id": "00000000-0000-0000-0000-000000000000" + } + } + ] + } + }, + "39631d18-504c-4bec-93ae-186d638519d2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 18.699088538810113, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 18.699088538810102, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "39631d18-504c-4bec-93ae-186d638519d2", + "Name": null + }, + "127978ef-026f-4d88-84db-e673c55d324b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7, + "Green": 0.7, + "Blue": 0.7, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "127978ef-026f-4d88-84db-e673c55d324b", + "Name": "Concrete" + }, + "706c8a93-2f3f-48f1-8144-459916c916d1": { + "discriminator": "Elements.Floor", + "Thickness": 0.3048, + "Profile": "39631d18-504c-4bec-93ae-186d638519d2", + "Openings": [], + "Level": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -0.3048 + ] + } + }, + "Material": "127978ef-026f-4d88-84db-e673c55d324b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "39631d18-504c-4bec-93ae-186d638519d2", + "Height": 0.3048, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "706c8a93-2f3f-48f1-8144-459916c916d1", + "Name": "Level 1", + "Original Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 18.699088538810113, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 18.699088538810102, + "Z": 0.0 + } + ] + }, + "Boundary": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 59.43041262525221, + "Y": 18.699088538810113, + "Z": 0.0 + }, + { + "X": 59.43041262525221, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 82.50043888516342, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 32.50103676260095, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 30.355205725426973, + "Z": 0.0 + }, + { + "X": 6.802456392462996, + "Y": 18.699088538810102, + "Z": 0.0 + } + ] + }, + "Creation Id": "f8222bc2-23e8-4c94-a860-26c1d19506da", + "associatedIdentities": { + "Floors Addition": [ + { + "id": "f8222bc2-23e8-4c94-a860-26c1d19506da", + "identity": null + } + ] + } + }, + "95053a61-b0f5-4edc-b599-fb9670b161cf": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017173967593592, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 8.017173967593592, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "95053a61-b0f5-4edc-b599-fb9670b161cf", + "Name": null + }, + "41f7fa59-d76e-49d1-83fa-f3c53df370db": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.996, + "Green": 0.965, + "Blue": 0.863, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.1, + "Unlit": false, + "DoubleSided": true, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 0.0, + "Draw In Front": false, + "EdgeDisplaySettings": null, + "Id": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Name": "Circulation" + }, + "46f47184-1e55-45c3-9f1a-40f421afcebf": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "dca5892e-2875-4cc3-b904-39eac02a3316", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 8.017173967593592, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "95053a61-b0f5-4edc-b599-fb9670b161cf", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "95053a61-b0f5-4edc-b599-fb9670b161cf", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "46f47184-1e55-45c3-9f1a-40f421afcebf", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "dca5892e-2875-4cc3-b904-39eac02a3316", + "identity": null + } + ] + } + }, + "1eececa6-6b3f-4c0b-a0f7-5e1b6ca6a603": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 72.79167, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 71.29167, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1eececa6-6b3f-4c0b-a0f7-5e1b6ca6a603", + "Name": null + }, + "4b5dca98-3a3f-4711-bb13-c256445fe18f": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "b4599233-d8ce-44d7-a0b3-e12e66a58ede", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 72.79167, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "1eececa6-6b3f-4c0b-a0f7-5e1b6ca6a603", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1eececa6-6b3f-4c0b-a0f7-5e1b6ca6a603", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4b5dca98-3a3f-4711-bb13-c256445fe18f", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "b4599233-d8ce-44d7-a0b3-e12e66a58ede", + "identity": null + } + ] + } + }, + "24491e46-45d0-4604-883d-fa8622f6569c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 8.017169999999993, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 8.017169999999993, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 27.910420000768003, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "24491e46-45d0-4604-883d-fa8622f6569c", + "Name": null + }, + "ce711be6-8281-4542-b8fe-9e6414f56bd0": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "edeeb2ea-e902-421c-a3c0-5da23bbbd04f", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 8.017169999999993, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "24491e46-45d0-4604-883d-fa8622f6569c", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "24491e46-45d0-4604-883d-fa8622f6569c", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ce711be6-8281-4542-b8fe-9e6414f56bd0", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "edeeb2ea-e902-421c-a3c0-5da23bbbd04f", + "identity": null + } + ] + } + }, + "d408276a-030a-454f-92bd-3638646867f3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d408276a-030a-454f-92bd-3638646867f3", + "Name": null + }, + "84caa2f3-ca81-43aa-be3a-d34db041f872": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "84eb77c0-0cdb-4af5-b21a-3d837f30b1c6", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "d408276a-030a-454f-92bd-3638646867f3", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d408276a-030a-454f-92bd-3638646867f3", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "84caa2f3-ca81-43aa-be3a-d34db041f872", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "84eb77c0-0cdb-4af5-b21a-3d837f30b1c6", + "identity": null + } + ] + } + }, + "11060af4-c12d-427a-82d6-70d2233db072": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "11060af4-c12d-427a-82d6-70d2233db072", + "Name": null + }, + "38c96f67-04c5-4f82-ab85-e70cd1d25cf3": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "5a2f0055-a545-43d6-be49-92a45ff71e79", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 86.67621588276837, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "11060af4-c12d-427a-82d6-70d2233db072", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "11060af4-c12d-427a-82d6-70d2233db072", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38c96f67-04c5-4f82-ab85-e70cd1d25cf3", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "5a2f0055-a545-43d6-be49-92a45ff71e79", + "identity": null + } + ] + } + }, + "7c8982d8-6cb0-4047-8b43-56e16e250982": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 45.50698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 45.50697999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7c8982d8-6cb0-4047-8b43-56e16e250982", + "Name": null + }, + "3e9fab8c-0919-45da-a128-9b6d07c09c7f": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "78785e7a-0233-4727-9f76-31e4a7f2a361", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 47.00698, + "Y": 56.25297, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "7c8982d8-6cb0-4047-8b43-56e16e250982", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7c8982d8-6cb0-4047-8b43-56e16e250982", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3e9fab8c-0919-45da-a128-9b6d07c09c7f", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "78785e7a-0233-4727-9f76-31e4a7f2a361", + "identity": null + } + ] + } + }, + "b185dfd3-d3d5-40a6-a39f-26db522e3e21": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 45.50697999999999, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b185dfd3-d3d5-40a6-a39f-26db522e3e21", + "Name": null + }, + "6e0e195b-8de4-4340-80f7-f4d26cdb02e2": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "05ad8822-2929-42d5-9c09-df31c00288ad", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 47.00697999999999, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "b185dfd3-d3d5-40a6-a39f-26db522e3e21", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b185dfd3-d3d5-40a6-a39f-26db522e3e21", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6e0e195b-8de4-4340-80f7-f4d26cdb02e2", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "05ad8822-2929-42d5-9c09-df31c00288ad", + "identity": null + } + ] + } + }, + "db75f59c-202b-4078-b9c5-db571b5b33c9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 31.845929999999996, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 30.345929999999996, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 30.345929999999996, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "db75f59c-202b-4078-b9c5-db571b5b33c9", + "Name": null + }, + "99da316f-5fed-4500-a325-8a573f57506a": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "ddf5a0a7-00ad-4ac9-9a62-f488fc15d73c", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 31.845929999999996, + "Y": 56.25297019364264, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "db75f59c-202b-4078-b9c5-db571b5b33c9", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "db75f59c-202b-4078-b9c5-db571b5b33c9", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "99da316f-5fed-4500-a325-8a573f57506a", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "ddf5a0a7-00ad-4ac9-9a62-f488fc15d73c", + "identity": null + } + ] + } + }, + "f3efe921-b9e4-470d-ae08-7951d84f4d12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f3efe921-b9e4-470d-ae08-7951d84f4d12", + "Name": null + }, + "1f2531ef-b7a3-49d7-abd6-3443d896ecd5": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "e32064ee-8e44-4c7a-9c94-e40052c8326c", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 72.79167, + "Y": 51.98042, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "f3efe921-b9e4-470d-ae08-7951d84f4d12", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f3efe921-b9e4-470d-ae08-7951d84f4d12", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1f2531ef-b7a3-49d7-abd6-3443d896ecd5", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "e32064ee-8e44-4c7a-9c94-e40052c8326c", + "identity": null + } + ] + } + }, + "f5e42606-c24d-4336-88c1-18c09176cb81": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 50.48042, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 32.47603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f5e42606-c24d-4336-88c1-18c09176cb81", + "Name": null + }, + "1bfb1bf2-44f5-4525-8cab-332505430fa5": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "09161dac-fb59-45e4-aa78-ad3628bfa89f", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 51.98042, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "f5e42606-c24d-4336-88c1-18c09176cb81", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f5e42606-c24d-4336-88c1-18c09176cb81", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1bfb1bf2-44f5-4525-8cab-332505430fa5", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "09161dac-fb59-45e4-aa78-ad3628bfa89f", + "identity": null + } + ] + } + }, + "6866a215-aaae-4dac-a5e2-4ef0a37c27a4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 22.796539999999997, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 18.69908853881011, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 18.69908853881011, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6866a215-aaae-4dac-a5e2-4ef0a37c27a4", + "Name": null + }, + "a04f51fe-d24d-4657-9e11-f62b8b49fec9": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "211b1e22-9c29-4db0-a322-5d58a3de6c77", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 18.69908853881011, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "6866a215-aaae-4dac-a5e2-4ef0a37c27a4", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6866a215-aaae-4dac-a5e2-4ef0a37c27a4", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a04f51fe-d24d-4657-9e11-f62b8b49fec9", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "211b1e22-9c29-4db0-a322-5d58a3de6c77", + "identity": null + } + ] + } + }, + "5995e0ff-23b6-4a9a-a1bf-86c183c42055": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5995e0ff-23b6-4a9a-a1bf-86c183c42055", + "Name": null + }, + "bfdc64d2-4ba9-4fe8-964a-f520d7ae17ce": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "0585acae-b055-497c-afad-c98fd39f2bc9", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 11.13821000066312, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "5995e0ff-23b6-4a9a-a1bf-86c183c42055", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5995e0ff-23b6-4a9a-a1bf-86c183c42055", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bfdc64d2-4ba9-4fe8-964a-f520d7ae17ce", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "0585acae-b055-497c-afad-c98fd39f2bc9", + "identity": null + } + ] + } + }, + "cc8608d2-e3b0-4aad-9edf-15965b8b904b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 17.872139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "cc8608d2-e3b0-4aad-9edf-15965b8b904b", + "Name": null + }, + "76fa8437-77aa-4693-b8a4-cfa512abd91e": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "3611991e-a2ba-4302-9d5f-4fa0657b0fdc", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "cc8608d2-e3b0-4aad-9edf-15965b8b904b", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "cc8608d2-e3b0-4aad-9edf-15965b8b904b", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "76fa8437-77aa-4693-b8a4-cfa512abd91e", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "3611991e-a2ba-4302-9d5f-4fa0657b0fdc", + "identity": null + } + ] + } + }, + "06437d02-2f14-4c55-8653-ff22b5ba4e37": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 70.48232999999999, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "06437d02-2f14-4c55-8653-ff22b5ba4e37", + "Name": null + }, + "5667bf05-8cb1-450a-983a-e2ea58f0f5d6": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "50eecb1a-ef72-4da2-be8d-f29717c7eb89", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "06437d02-2f14-4c55-8653-ff22b5ba4e37", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "06437d02-2f14-4c55-8653-ff22b5ba4e37", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5667bf05-8cb1-450a-983a-e2ea58f0f5d6", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "50eecb1a-ef72-4da2-be8d-f29717c7eb89", + "identity": null + } + ] + } + }, + "50625927-47eb-4d0a-bb1d-3f6741f3291c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 11.138210000663122, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 11.138210000663122, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "50625927-47eb-4d0a-bb1d-3f6741f3291c", + "Name": null + }, + "c9caea94-74b6-4e08-b33a-55426c48f22c": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "c40e76c6-0b53-4b46-92fb-91ca281f035a", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 11.138210000663122, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "50625927-47eb-4d0a-bb1d-3f6741f3291c", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "50625927-47eb-4d0a-bb1d-3f6741f3291c", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c9caea94-74b6-4e08-b33a-55426c48f22c", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "c40e76c6-0b53-4b46-92fb-91ca281f035a", + "identity": null + } + ] + } + }, + "32d8652d-661b-4a74-a637-95d471770e37": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 80.23593, + "Y": 32.47603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "32d8652d-661b-4a74-a637-95d471770e37", + "Name": null + }, + "56fb444f-2d19-4e71-a432-62ceebf9a68c": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "2489d0d2-f6b3-4825-aa8a-028a570a69d0", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 81.73593, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 1.5, + "rightWidth": 0.0 + }, + "Thickness": 0.005, + "Profile": "32d8652d-661b-4a74-a637-95d471770e37", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "32d8652d-661b-4a74-a637-95d471770e37", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "56fb444f-2d19-4e71-a432-62ceebf9a68c", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "2489d0d2-f6b3-4825-aa8a-028a570a69d0", + "identity": null + } + ] + } + }, + "b13768ea-007d-4f3a-8bcf-9feaa91aef79": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b13768ea-007d-4f3a-8bcf-9feaa91aef79", + "Name": null + }, + "126b3937-ed8f-424d-96c0-10978d4ab1dc": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "7b0cda4f-b35a-4430-9c59-1c59e9bf4b24", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "b13768ea-007d-4f3a-8bcf-9feaa91aef79", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b13768ea-007d-4f3a-8bcf-9feaa91aef79", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "126b3937-ed8f-424d-96c0-10978d4ab1dc", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "7b0cda4f-b35a-4430-9c59-1c59e9bf4b24", + "identity": null + } + ] + } + }, + "a29ff646-521e-43b4-9008-166cc82c4e4f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 70.48232999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 70.48232999999999, + "Y": 32.47603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a29ff646-521e-43b4-9008-166cc82c4e4f", + "Name": null + }, + "eaeedd66-6032-455b-a764-174d756654e1": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "a5010832-c5c2-4f6a-978a-0da7175bf3a6", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 68.65352999999999, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 68.65352999999999, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 1.8288000000000002, + "rightWidth": 0.0 + }, + "Thickness": 0.005, + "Profile": "a29ff646-521e-43b4-9008-166cc82c4e4f", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "a29ff646-521e-43b4-9008-166cc82c4e4f", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "eaeedd66-6032-455b-a764-174d756654e1", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "a5010832-c5c2-4f6a-978a-0da7175bf3a6", + "identity": null + } + ] + } + }, + "f259814e-e5cb-46f1-bfce-890025ee761b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 0 + ] + ], + "Vertices": [ + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.324820000000003, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.345929999999996, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f259814e-e5cb-46f1-bfce-890025ee761b", + "Name": null + }, + "e7da0c25-415a-486c-9a72-401516da6a08": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "79170112-e20c-40e8-a89c-eef41d1a7b80", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 31.845929999999996, + "Y": 43.67345, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "f259814e-e5cb-46f1-bfce-890025ee761b", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f259814e-e5cb-46f1-bfce-890025ee761b", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e7da0c25-415a-486c-9a72-401516da6a08", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "79170112-e20c-40e8-a89c-eef41d1a7b80", + "identity": null + } + ] + } + }, + "1c009cd9-2633-457f-bc78-943f94063f08": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 27.910420000767996, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1c009cd9-2633-457f-bc78-943f94063f08", + "Name": null + }, + "ce74cc42-27de-40bd-b04b-26adcddade81": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "932c2c02-141a-4dbc-bf80-bb2557b4135a", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "1c009cd9-2633-457f-bc78-943f94063f08", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "1c009cd9-2633-457f-bc78-943f94063f08", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ce74cc42-27de-40bd-b04b-26adcddade81", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "932c2c02-141a-4dbc-bf80-bb2557b4135a", + "identity": null + } + ] + } + }, + "4c5839b9-918e-465e-afdb-8464dc3e5a54": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 0 + ] + ], + "Vertices": [ + { + "X": 30.324820000000003, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 27.910420000768003, + "Y": 42.17345, + "Z": 0.0 + }, + { + "X": 27.910420000767996, + "Y": 32.47603, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 32.47603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4c5839b9-918e-465e-afdb-8464dc3e5a54", + "Name": null + }, + "23ba5fa2-d093-4472-ac3a-72d0b0d4c57e": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "061e148a-a43d-4cfe-a7c5-42114b1b4a1c", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 30.324820000000003, + "Y": 43.67345, + "Z": 0.0 + }, + { + "X": 30.324819999999995, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 2.414399999232 + }, + "Thickness": 0.005, + "Profile": "4c5839b9-918e-465e-afdb-8464dc3e5a54", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4c5839b9-918e-465e-afdb-8464dc3e5a54", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "23ba5fa2-d093-4472-ac3a-72d0b0d4c57e", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "061e148a-a43d-4cfe-a7c5-42114b1b4a1c", + "identity": null + } + ] + } + }, + "838a69a6-0a04-42b3-b836-b4352c6d8da8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 72.74037, + "Y": 30.97603, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "838a69a6-0a04-42b3-b836-b4352c6d8da8", + "Name": null + }, + "75b8b0ac-5f88-47e2-8b4a-d019df8da369": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "77d1191a-8902-417a-a06b-d83171174250", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 30.97603, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "838a69a6-0a04-42b3-b836-b4352c6d8da8", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "838a69a6-0a04-42b3-b836-b4352c6d8da8", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "75b8b0ac-5f88-47e2-8b4a-d019df8da369", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "77d1191a-8902-417a-a06b-d83171174250", + "identity": null + } + ] + } + }, + "b3855f5e-0b93-4b5c-afdd-262381eaeee3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "CurveIndices": [ + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 0 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 19.372139999999995, + "Y": 22.796539999999997, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 22.79654, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b3855f5e-0b93-4b5c-afdd-262381eaeee3", + "Name": null + }, + "82eb6a6f-99b1-4287-b7ae-c3b629949cef": { + "discriminator": "Elements.CirculationSegment", + "Add Id": "45531c24-ec7a-427b-b9f5-273cf753510f", + "Geometry": { + "polyline": { + "discriminator": "Elements.Geometry.Polyline", + "CurveIndices": [ + [ + 0, + 1 + ] + ], + "Vertices": [ + { + "X": 19.372139999999995, + "Y": 24.296539999999997, + "Z": 0.0 + }, + { + "X": 71.24037, + "Y": 24.29654, + "Z": 0.0 + } + ] + }, + "leftWidth": 0.0, + "rightWidth": 1.5 + }, + "Thickness": 0.005, + "Profile": "b3855f5e-0b93-4b5c-afdd-262381eaeee3", + "Openings": [], + "Level": "6c24232f-2b93-4dc5-a752-94c365fce027", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "41f7fa59-d76e-49d1-83fa-f3c53df370db", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b3855f5e-0b93-4b5c-afdd-262381eaeee3", + "Height": 0.005, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Reverse Winding": false, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "82eb6a6f-99b1-4287-b7ae-c3b629949cef", + "Name": null, + "associatedIdentities": { + "Circulation Addition": [ + { + "id": "45531c24-ec7a-427b-b9f5-273cf753510f", + "identity": null + } + ] + } + } + } +} \ No newline at end of file diff --git a/Elements/src/Door.cs b/Elements/src/Door.cs index 964371101..75309cc67 100644 --- a/Elements/src/Door.cs +++ b/Elements/src/Door.cs @@ -9,8 +9,19 @@ namespace Elements /// Definition of a door public class Door : GeometricElement { + private readonly Material DEFAULT_MATERIAL = new Material("Door material", Colors.White); + + /// + /// Default thickness of a door. + /// public const double DOOR_THICKNESS = 0.125; + /// + /// Default thickness of a door frame. + /// public const double DOOR_FRAME_THICKNESS = 0.15; + /// + /// Default width of a door frame. + /// public const double DOOR_FRAME_WIDTH = 2 * 0.0254; //2 inches /// Door width without a frame @@ -28,6 +39,24 @@ public class Door : GeometricElement /// Opening for a door. public Opening Opening { get; private set; } + /// + /// Create a door that attaches to the closest point on a certain wall. + /// + /// The wall the door is attached to. + /// A center line of a wall that door is attached to. + /// The position where the door was plased originally. + /// The current door's position. + /// The with of a single door. + /// The door's height. + /// The side where the door opens. + /// The way the door opens. + /// The door's material. + /// The door's representation. + /// The door's id. + /// The door's name. + /// The door's opening depth front. + /// The door's opening depth back. + /// Is the door flipped? public Door(Wall wall, Line wallLine, Vector3 originalPosition, @@ -36,6 +65,10 @@ public Door(Wall wall, double height, DoorOpeningSide openingSide, DoorOpeningType openingType, + Material material = null, + Representation representation = null, + Guid id = default, + string name = "Door", double depthFront = 1, double depthBack = 1, bool flip = false) @@ -46,33 +79,72 @@ public Door(Wall wall, OriginalPosition = originalPosition; ClearWidth = WidthWithoutFrame(width, openingSide); ClearHeight = height; - Material = new Material("Door material", Colors.White); + Material = material ?? DEFAULT_MATERIAL; Transform = GetDoorTransform(currentPosition, wallLine, flip); - Representation = new Representation(new List() { }); + Representation = representation ?? new Representation(new List() { }); Opening = new Opening(Polygon.Rectangle(width, height), depthFront, depthBack, GetOpeningTransform()); + Id = id != default ? id : Guid.NewGuid(); + Name = name; } - public Door(Wall wall, - Transform transform, - double width, + /// + /// Create a door that is not attached to a wall. + /// + /// The with of a single door. + /// The door's height. + /// The side where the door opens. + /// The way the door opens. + /// The door's transform. X-direction is aligned with the door, Y-direction is the opening direction. + /// The door's material. + /// The door's representation. + /// The door's id. + /// The door's name. + /// The door's opening depth front. + /// The door's opening depth back. + public Door(double width, double height, DoorOpeningSide openingSide, DoorOpeningType openingType, + Transform transform = null, + Material material = null, + Representation representation = null, + Guid id = default, + string name = "Door", double depthFront = 1, - double depthBack = 1) + double depthBack = 1 + ) { - Wall = wall; + Wall = null; Transform = transform; OpeningSide = openingSide; OpeningType = openingType; ClearHeight = height; ClearWidth = WidthWithoutFrame(width, openingSide); - Material = new Material("Door material", Colors.White); - Representation = new Representation(new List() { }); + Material = material ?? DEFAULT_MATERIAL; + Representation = representation ?? new Representation(new List() { }); Opening = new Opening(Polygon.Rectangle(width, height), depthFront, depthBack, GetOpeningTransform()); OriginalPosition = Transform.Origin; + Id = id != default ? id : Guid.NewGuid(); + Name = name; } + /// + /// Create a door at the certain point of a wall. + /// + /// The wall the door is attached to. + /// A center line of a wall that door is attached to. + /// Relative position on the wall where door is placed. Should be in [0; 1]. + /// The with of a single door. + /// The door's height. + /// The side where the door opens. + /// The way the door opens. + /// The door's material. + /// The door's representation. + /// The door's id. + /// The door's name. + /// The door's opening depth front. + /// The door's opening depth back. + /// Is the door flipped? public Door(Wall wall, Line wallLine, double tPos, @@ -80,6 +152,10 @@ public Door(Wall wall, double height, DoorOpeningSide openingSide, DoorOpeningType openingType, + Material material = null, + Representation representation = null, + Guid id = default, + string name = "Door", double depthFront = 1, double depthBack = 1, bool flip = false) @@ -91,6 +167,10 @@ public Door(Wall wall, height, openingSide, openingType, + material, + representation, + id, + name, depthFront, depthBack, flip) @@ -104,19 +184,29 @@ private Transform GetOpeningTransform() return openingTransform; } - private Transform GetDoorTransform(Vector3 currentPosition, Line centerLine, bool flip) + private Transform GetDoorTransform(Vector3 currentPosition, Line wallLine, bool flip) { - var adjustedPosition = GetClosestValidDoorPos(centerLine, currentPosition); - var xDoorAxis = flip ? centerLine.Direction().Negate() : centerLine.Direction(); + var adjustedPosition = GetClosestValidDoorPos(wallLine, currentPosition); + var xDoorAxis = flip ? wallLine.Direction().Negate() : wallLine.Direction(); return new Transform(adjustedPosition, xDoorAxis, Vector3.ZAxis); } + /// + /// Checks if the door can fit into the wall with the center line @. + /// public static bool CanFit(Line wallLine, DoorOpeningSide openingSide, double width) { var doorWidth = WidthWithoutFrame(width, openingSide) + DOOR_FRAME_WIDTH * 2; return wallLine.Length() - doorWidth > DOOR_FRAME_WIDTH * 2; } + /// + /// Get graphics buffers and other metadata required to modify a GLB. + /// + /// + /// True if there is graphicsbuffers data applicable to add, false otherwise. + /// Out variables should be ignored if the return value is false. + /// public override bool TryToGraphicsBuffers(out List graphicsBuffers, out string id, out glTFLoader.Schema.MeshPrimitive.ModeEnum? mode) { var points = CollectPointsForSchematicVisualization(); @@ -128,7 +218,7 @@ public override bool TryToGraphicsBuffers(out List graphicsBuff buffer.AddIndex((ushort)i); } - id = $"{this.Id}_door"; + id = $"{Id}_door"; // Only one type is allowed, since line are not linked into one loop, LINES is used. // This mean that each line segment need both endpoints stored, often duplicated. mode = glTFLoader.Schema.MeshPrimitive.ModeEnum.LINES; @@ -245,6 +335,9 @@ private List CollectSchematicVisualizationLines(bool leftSide, bool ins return points; } + /// + /// Update the representations. + /// public override void UpdateRepresentations() { Vector3 left = Vector3.XAxis * ClearWidth / 2; @@ -289,6 +382,7 @@ public override void UpdateRepresentations() right + Vector3.ZAxis * ClearHeight - frameOffset }); var doorFrameExtrude = new Extrude(new Profile(doorFramePolygon), DOOR_FRAME_THICKNESS * 2, Vector3.YAxis); + Representation.SolidOperations.Clear(); Representation.SolidOperations.Add(doorFrameExtrude); foreach (var extrusion in doorExtrusions) { diff --git a/Elements/src/Floor.cs b/Elements/src/Floor.cs index f0d1ca1d7..140ca71f6 100644 --- a/Elements/src/Floor.cs +++ b/Elements/src/Floor.cs @@ -19,7 +19,7 @@ public class Floor : GeometricElement, IHasOpenings /// The elevation from which the floor is extruded. /// [JsonIgnore] - public double Elevation => this.Transform.Origin.Z; + public double Elevation => Transform.Origin.Z; /// /// The thickness of the floor. @@ -69,7 +69,7 @@ public Floor(Profile profile, id != default ? id : Guid.NewGuid(), name) { - this.Level = level; + Level = level; SetProperties(profile, thickness); } @@ -117,8 +117,8 @@ private void SetProperties(Profile profile, double thickness) throw new ArgumentOutOfRangeException($"The floor could not be created. The provided thickness ({thickness}) was less than or equal to zero."); } - this.Profile = profile; - this.Thickness = thickness; + Profile = profile; + Thickness = thickness; } /// @@ -126,7 +126,7 @@ private void SetProperties(Profile profile, double thickness) /// public Profile ProfileTransformed() { - return this.Transform != null ? this.Transform.OfProfile(this.Profile) : this.Profile; + return Transform != null ? Transform.OfProfile(Profile) : Profile; } /// @@ -135,7 +135,7 @@ public Profile ProfileTransformed() /// The area of the floor, not including the area of openings. public double Area() { - return this.Profile.Area(); + return Profile.Area(); } /// @@ -144,7 +144,7 @@ public double Area() /// The area of the floor, not including the area of openings. public double Volume() { - return this.Profile.Area() * this.Thickness; + return Profile.Area() * Thickness; } /// @@ -152,8 +152,8 @@ public double Volume() /// public override void UpdateRepresentations() { - this.Representation.SolidOperations.Clear(); - this.Representation.SolidOperations.Add(new Extrude(this.Profile, this.Thickness, Vector3.ZAxis, false)); + Representation.SolidOperations.Clear(); + Representation.SolidOperations.Add(new Extrude(Profile, Thickness, Vector3.ZAxis, false)); } /// @@ -167,8 +167,8 @@ public override void UpdateRepresentations() /// The depth of the opening along the opening's -Z axis. public Opening AddOpening(double width, double height, double x, double y, double depthFront = 1, double depthBack = 1) { - var o = new Opening(Polygon.Rectangle(width, height), depthFront, depthBack, new Transform(x, y, 0)); - this.Openings.Add(o); + var o = new Opening(Polygon.Rectangle(width, height), Vector3.ZAxis, depthFront, depthBack, new Transform(x, y, 0)); + Openings.Add(o); return o; } @@ -182,8 +182,8 @@ public Opening AddOpening(double width, double height, double x, double y, doubl /// The depth of the opening along the opening's -Z axis. public Opening AddOpening(Polygon perimeter, double x, double y, double depthFront = 1, double depthBack = 1) { - var o = new Opening(perimeter, depthFront, depthBack, new Transform(x, y, 0)); - this.Openings.Add(o); + var o = new Opening(perimeter, Vector3.ZAxis, depthFront, depthBack, new Transform(x, y, 0)); + Openings.Add(o); return o; } } diff --git a/Elements/src/Geometry/Tessellation/SolidFaceTessAdapter.cs b/Elements/src/Geometry/Tessellation/SolidFaceTessAdapter.cs index 1f39cc2bb..9500c49c2 100644 --- a/Elements/src/Geometry/Tessellation/SolidFaceTessAdapter.cs +++ b/Elements/src/Geometry/Tessellation/SolidFaceTessAdapter.cs @@ -32,7 +32,6 @@ public Tess GetTess() { var tess = new Tess { - UsePooling = true, NoEmptyPolygons = true }; diff --git a/Elements/src/Opening.cs b/Elements/src/Opening.cs index cee67e5fd..a14069e16 100644 --- a/Elements/src/Opening.cs +++ b/Elements/src/Opening.cs @@ -90,10 +90,7 @@ public override void UpdateRepresentations() { this.Representation.SolidOperations.Clear(); var depth = this.DepthFront + this.DepthBack; - var op = new Extrude(this.Perimeter, depth, Normal, true) - { - LocalTransform = new Transform(new Vector3(0, 0, -this.DepthBack)) - }; + var op = new Extrude(this.Perimeter, depth, Normal, true); this.Representation.SolidOperations.Add(op); } } diff --git a/Elements/src/StandardWall.cs b/Elements/src/StandardWall.cs index d043daa95..40b75851d 100644 --- a/Elements/src/StandardWall.cs +++ b/Elements/src/StandardWall.cs @@ -92,7 +92,7 @@ public StandardWall(Line centerLine, public Opening AddOpening(double width, double height, double x, double y, double depthFront = 1.0, double depthBack = 1.0) { var openingTransform = GetOpeningTransform(x, y); - var o = new Opening(Polygon.Rectangle(width, height), depthFront, depthBack, openingTransform); + var o = new Opening(Polygon.Rectangle(width, height), Vector3.ZAxis, depthFront, depthBack, openingTransform); this.Openings.Add(o); return o; } @@ -109,7 +109,7 @@ public Opening AddOpening(double width, double height, double x, double y, doubl public Opening AddOpening(Polygon perimeter, double x, double y, double depthFront = 1.0, double depthBack = 1.0) { var openingTransform = GetOpeningTransform(x, y); - var o = new Opening(perimeter, depthFront, depthBack, openingTransform); + var o = new Opening(perimeter, Vector3.ZAxis, depthFront, depthBack, openingTransform); this.Openings.Add(o); return o; } diff --git a/Elements/src/Utilities/SolidOperationUtils.cs b/Elements/src/Utilities/SolidOperationUtils.cs index 29d8a319b..fc9c5369e 100644 --- a/Elements/src/Utilities/SolidOperationUtils.cs +++ b/Elements/src/Utilities/SolidOperationUtils.cs @@ -95,8 +95,8 @@ public static Csg.Solid GetFinalCsgFromSolids(IList solidOperati var solidItems = solids.ToArray(); var voidItems = voids.ToArray(); - - // Don't try CSG booleans if we only have one one solid. + + // Don't try CSG booleans if we only have one solid. if (solids.Count() == 1) { csg = solids.First(); @@ -106,7 +106,6 @@ public static Csg.Solid GetFinalCsgFromSolids(IList solidOperati csg = csg.Union(solidItems); } - if (voids.Count() > 0) { csg = csg.Subtract(voidItems); diff --git a/Elements/src/Wall.cs b/Elements/src/Wall.cs index 23c43b163..a09a8cf8f 100644 --- a/Elements/src/Wall.cs +++ b/Elements/src/Wall.cs @@ -47,12 +47,12 @@ public Wall(Profile profile, Transform transform = null, Representation representation = null, bool isElementDefinition = false, - Guid id = default(Guid), + Guid id = default, string name = null) : base(transform != null ? transform : new Transform(), material != null ? material : BuiltInMaterials.Concrete, representation != null ? representation : new Representation(new List()), isElementDefinition, - id != default(Guid) ? id : Guid.NewGuid(), + id != default ? id : Guid.NewGuid(), name) { if (height <= 0.0) @@ -60,8 +60,8 @@ public Wall(Profile profile, throw new ArgumentOutOfRangeException("The wall could not be created. The height of the wall must be greater than 0.0."); } #pragma warning disable 612, 618 - this.Profile = profile; - this.Height = height; + Profile = profile; + Height = height; #pragma warning restore 612, 618 } @@ -70,9 +70,9 @@ public Wall(Profile profile, /// public override void UpdateRepresentations() { - this.Representation.SolidOperations.Clear(); + Representation.SolidOperations.Clear(); #pragma warning disable 612, 618 - this.Representation.SolidOperations.Add(new Extrude(this.Profile, this.Height, Vector3.ZAxis, false)); + Representation.SolidOperations.Add(new Extrude(Profile, Height, Vector3.ZAxis, false)); #pragma warning restore 612, 618 } @@ -89,12 +89,12 @@ protected Wall(Transform transform, Material material, Representation representation, bool isElementDefinition = false, - Guid id = default(Guid), + Guid id = default, string name = null) : base(transform, material, representation, isElementDefinition, - id == default(Guid) ? Guid.NewGuid() : id, + id == default ? Guid.NewGuid() : id, name) { } @@ -120,9 +120,9 @@ internal Wall(Solid geometry, if (transform != null) { - this.Transform = transform; + Transform = transform; } - this.Representation.SolidOperations.Add(new ConstructedSolid(geometry)); + Representation.SolidOperations.Add(new ConstructedSolid(geometry)); } } } \ No newline at end of file