PNNL Example Building 2 Model 1¶
Exammple Building 2 is based on the Department of Energy Prototype Medium Office Builiding. The baseline Medium Office Building is approximately 50,000 square feet in size, contains 3 identical floors, and 5 HVAC zones per floor (1 core, 4 perimeter). The baseline model was extended by a) creating unique detailed building architecture for each of the 3 building floors, making use of 12 space types to define 107 rooms, and b) designing a lighting system that complies with the ASHRAE 90.1-2019 energy code, and is comprised of 863 luminaires and 205 lighting zones.
Example Building 2 Model 1 is provided by Pacific Northwest National Laboratory.
Contents¶
This model contains a complete representation of the building architecture and the electrical/lighting system, and a partial representation of the lighting control system.
In addition to the s223 ontology, the model uses the Real Estate Core ontology to describe space types. The Real Estate Core ontology is extended by defining 2 subclasses for rec:Office.
recx:OpenOffice rdfs:subClassOf rec:Office;
rdfs:label "Open Office".
recx:PrivateOffice rdfs:subClassOf rec:Office;
rdfs:label "Private Office".Source¶
The model was created from souce data consisting of a Revit building information model (BIM) exported via a Speckle interface.
Speckle view of rooms and lighting fixtures¶

Model instance data have a prefix that is resolvable to a Speckle URL.
@prefix bdg2: <http://speckle.xyz/streams/1fed8e620e/objects/>For example, the following luminaire resolves to http://
bdg2:b504da73194fd2dafccc5e91651e2066 a s223:LuminaireDownloads¶
What are these files?
Turtle file (original): This is the original source Turtle file that was provided to
models.open223.info, usually as the output of some model creation tool.Turtle file (compiled): This is the original Turtle file with all inferred relationships and values added through SHACL inference against the 223P ontology and other dependencies. You should use this file for any further processing. It does not contain any of the ontologies.
Turtle file (with all imports): This is the compiled Turtle file with all imports included in the file (223P ontology, QUDT ontology, and others). This is helpful when you do not want to deal with downloading and managing ontology dependencies. It is also much larger than the compiled file.
JSON-LD file (original): This is the original Turtle file converted to the JSON-LD format.
Turtle is a syntax for RDF (Resource Description Framework) that is easy to read and write. It is a popular format for representing linked data. Parsers and serializers are available in many programming languages. JSON-LD is a JSON-based format for linked data that is easy to use with JavaScript and other web technologies.
Queries¶
| Description | Query URL |
|---|---|
| Select all triples from model. | Query Link |
Model Components¶
| Parent Class | Class | Instances |
|---|---|---|
| Equipment | Luminaire | 853 |
| Equipment | OccupantMotionSensor | 204 |
| Equipment | ElectricBreaker | 3 |
| Connection | ElectricWire | 856 |
| ConnectionPoint | OutletConnectionPoint | 1709 |
| ConnectionPoint | InletConnectionPoint | 1709 |
| DomainSpace | Direct instances | 311 |
| Zone | Direct instances | 219 |
| Property | QuantifiableProperty | 396 |
| Property | EnumeratedObservableProperty | 204 |
Load and Validate Model¶
This code uses the BuildingMOTIF library to load the 223P ontology and the model file into a temporary in-memory instance. It then validates the model against the ontology. If the model is invalid, it will print the validation report.
BuildingMOTIF resolves the ontology’s dependencies with OntoEnv and validates with shifty, both of which are self-contained Rust extensions, so there is nothing else to install and no Java is required.
BuildingMOTIF installation
To install the buildingmotif library, you can use the following command:
pip install 'buildingmotif @ git+https://github.com/NREL/buildingmotif.git@gtf-buildingmotif'from buildingmotif import BuildingMOTIF
from buildingmotif.dataclasses import Library, Model
from datetime import datetime, timezone
import logging
# Create a BuildingMOTIF object. This validates with the "pyshifty" SHACL
# engine by default, so there is nothing else to install and no Java required.
bm = BuildingMOTIF('sqlite://', log_level=logging.ERROR)
# load 223P library. We will load a recent copy from the models.open223.info
# git repository; later, we will load this from the location of the actual standard.
# BuildingMOTIF uses OntoEnv to fetch the ontologies 223P depends on (QUDT, SHACL, ...).
s223 = Library.from_ontology("https://open223.info/223p.ttl", infer_templates=False, run_shacl_inference=False)
# load the model into the BuildingMOTIF instance. This page pins the exact copy
# it was built and validated against, so it stays reproducible as the site moves
# on. To run this against the current published model, use the permanent URL:
#
# model = Model.from_file("https://models.open223.info/pnnl-bdg2-1.ttl")
#
model = Model.from_file("https://raw.githubusercontent.com/open223/models.open223.info/1da4cd1739c0e45f9cd8c06a5c25635654355337/models/pnnl-bdg2-1.ttl")
# a model's manifest lists the libraries it should conform to
model.manifest.add(s223)
# validate the model against its manifest
ctx = model.validate()
# print when validation completed
print(f"Validation run at: {datetime.now(timezone.utc).isoformat(timespec='seconds')}")
# print the validation result
print(f"Model is valid: {ctx.valid}")
# if the model is invalid, print the validation report
if not ctx.valid:
print(ctx.report_string[:1000]) # first 1000 characters of the report
# BuildingMOTIF can also interpret the report to provide recommendations on fixes
for focus_node, diffs in ctx.get_reasons_with_severity("Violation").items():
if len(diffs) == 0:
continue
print(focus_node)
for diff in diffs:
print(" - " + diff.reason())Validation run at: 2026-09-05T14:53:07+00:00
Model is valid: False
Validation Report
Conforms: False
Violation result in http://data.ashrae.org/standard223#Equipment (<http://speckle.xyz/streams/1fed8e620e/objects/00573595b5d2a83b921e73b2c991ede2>):
Path: <http://data.ashrae.org/standard223#hasPhysicalLocation>
Severity: Violation
Value: <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b>
Message: must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
Violation result in http://data.ashrae.org/standard223#Equipment (<http://speckle.xyz/streams/1fed8e620e/objects/006499b5ef59e0371782905e0b6989d8>):
Path: <http://data.ashrae.org/standard223#hasPhysicalLocation>
Severity: Violation
Value: <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac>
Message: must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
Violation result in http://data.ashrae.org/standard223#Equipment (<http://speckle.xyz/streams/1fed8e620e/objects/00c5e74e34b26a8c6d132db16570
http://speckle.xyz/streams/1fed8e620e/objects/00573595b5d2a83b921e73b2c991ede2
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/006499b5ef59e0371782905e0b6989d8
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/00c5e74e34b26a8c6d132db16570c6c4
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/00dba4343adea3e166a8ddbc679ded64
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/00e03ffbe8ec737b27db73836d241cca
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/00e300455d6ce6a2958a323e1c7e757c
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/00f130225020b5f142c89a969c83f509
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0158437ef1d93649942f7a785329bbf8
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/018fcd8cde9e03f93133217dcc69eef3
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0195c0084ff6849d4d084ad2d18bbd71
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/01a9552abab64b91ea6fd6c2ba7d5fa4
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/01ccc9e75413de39dba4d284db916890
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/01ccdc6b99ce5eed44cbf6d5f9abaad6
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/01d2988a1d356b06074e11b489f70c1f
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/022210a6143f902dc600af6917990dad
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0238356e454992b0e51e1bcb44da6185
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/024a774cb25c88fe03d7ca78eb21c00a
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/025566d17a8006d53e00bbe4d66bba62
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/026fe3cbe49ddd4465605f39a55369c6
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/02af7f9d41ca94f1aad6f2181212b6a2
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0318ccec8737b808340aaddc6600ac7e
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0346cf3a3163fed80e3f5b917e45a0f3
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/034b0331a4eafa6dd401131b42832c4a
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/036e043bc765c38f53450952baab64e1
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/03c27ad75e523fea66e7e5b06a7cc1cf
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0405dabcb6b1499ad600f1f83618107f
- <http://speckle.xyz/streams/1fed8e620e/objects/3c418468e71ff5a537b5e56455bc2356> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0424d5549fc8f78607b9fa63e1afb9c0
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0426ebe9337b17dba6a5352f1fbb6283
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/04b5ba2bf922a994a81ad7b31cbd50d6
- <http://speckle.xyz/streams/1fed8e620e/objects/9c2f06431727c23a2a0ddcd711357701> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/04c88f5802fc07c20c0b14a4b389d952
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0545e480d921d5abca2486da0ce7f6ea
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/058c162084e6b1c8d5ed519b02df19ad
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/059bdacaa81f5479953b27b7ab3e7924
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/05d9369d894536a0ce3f92e4868e34a3
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/063422181e6f559a4c7f3ef195e51410
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/067a6a2d8fe2ac020b1f24b460be035e
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/068023dc77d7660883b959b3ce01f02a
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/06c36725d2779b21fdc0f93726c9027c
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/06e39c5d97f981dd2f87013f7dbe4c96
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/07737f112b939e30dbf69c686577944a
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/07bf2596e5f394273f40581301a42880
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/07ec416264896dc50fe6585b61e84db4
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0866330e2871aa673a9b81baa109c7f2
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/08a284cf5e7974b52edb603e47c09de9
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/08e79419e5f53cc837ecf44b06e5f58d
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/08e9d44b9594d9c933ec2ec6873b4797
- <http://speckle.xyz/streams/1fed8e620e/objects/48c611cb65ae5a589c1a0562e534c481> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0913eaf771d728abf99289f9ffd4d0d8
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/09cddc1e027bd469d95dd71b8ed7f141
- <http://speckle.xyz/streams/1fed8e620e/objects/062fc31dd278f190b5c9d237489e7d9a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0a04e32bca912f6eb436e52f67818cc9
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0ab1a02ca3f50b3712903ff7475838c9
- <http://speckle.xyz/streams/1fed8e620e/objects/a72dfd88fca24054017657dce93b610d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0af2f543f689316089ce6d4bd48dabb0
- <http://speckle.xyz/streams/1fed8e620e/objects/412f57f150946610368eac6d0d1c0ed6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0b123dbadc3639f50a13a6ccf1ccbe32
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0b38623697da344a75244a5d27ab1a22
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0b673ad22e602f219e998044b2819c0f
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0b884cec48e73fe156374bc31019ff5b
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0bb2237ff253d15de8617fc599d283d9
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0c039eab4a59aa4f1bfd5aa37c5ad48c
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0c1b49875d43a4b6f4a8eea6369b823e
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0c320808c7f7ca74a5295bce9d1898c6
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0cce78cc1a4d823ae591b40fd5e0e06d
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0cdc21114479765d1125f9a66022cbca
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0ce37ce6a1d8f660a742fac3a1dfea5f
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d0e77dcd96e04ad56d3b08001e431fa
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d2f0cacb677237d94a72db77a6c80bd
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d417d04e2fcd621d4cc9a02179af138
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d59b26d1ec60028bb12a80923eab02d
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d744be407cc12acf1ebd356879ae43c
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0d885ba98c1ade535b92c46aa16c07aa
- <http://speckle.xyz/streams/1fed8e620e/objects/0dd0051c198ab1ee8d08193a8246c47b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0dac2ff21dbc6d816c532cbb335a822a
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0dbf77dce5538fe75675be2c7cb4d83b
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0e497810aa8bb1b7dcf2fa39abbc95e6
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0f2c94242fce0e5659bd69f23193a2e8
- <http://speckle.xyz/streams/1fed8e620e/objects/3c418468e71ff5a537b5e56455bc2356> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0f3dea48cbd462c5dc1bc33457d427dd
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/0f402bf26460ca3799cd3b451c46e942
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1052ec69e3cbebb25660c75b8d0d2214
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1092c695c94e122fb9ccccbd95fa3209
- <http://speckle.xyz/streams/1fed8e620e/objects/d31ff0f87848224671aa8850de49a184> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/10c765181553dab52c5098d07d0852d3
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1137dba3706a955f5144bf0f2310c1e5
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/118b56749460d532658e16b898a7f5d3
- <http://speckle.xyz/streams/1fed8e620e/objects/b9ce728344626f07f463ae51b7a71f77> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/11a3535dc06fe68aed9813bc03b5cfad
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/122b6e552a3dcc2fc134fb4abd879144
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/123bff019cd1369777cffd7d325176c2
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1249bf0488029be5c5b40e007c1cfbf4
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1272854755173a2b228f7cb7bdfdc736
- <http://speckle.xyz/streams/1fed8e620e/objects/bbd9f5722f6b25afed73226882977463> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1295f7b7f5b448fe76d6b5a304dde1fd
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/129cc6710e107326f1425b74bc16922c
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1304b59de3f0747f6131beb6ab896888
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/14069c13d38a51586804b7b562a30fc6
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1459d960806ccb5ceda7b7eb7202b785
- <http://speckle.xyz/streams/1fed8e620e/objects/c54820ea8abc202499b3ddafc4261f28> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/14c6ddd85e3388500c7b013da197d002
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/152bfeaea113bc095cab9466ca08b9af
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/158b322ff361fbd96566ea5adab2f645
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/15bf79010e6165f9b5645f609983ef49
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/15ee80a605bb1ca173ac5b9a137a1660
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/161153d2957158345f267eabb7f57865
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1679ec9635edce9a824ebbb078958fb9
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/16c049fdff26d2a8ccfad04d34ee0f90
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/16f17bd20526c4bf92564f5e9dd45359
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/17277ad700cdac0b5bee87332178f317
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/17602f4a1b3085b60c3c7b3dbe4b17c3
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1760631120dd27f6234c367e38067e35
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/17bc812e4bca0ddde86207e9b13c4424
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/17d06dd878d7457adf42e7f35c31b164
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/180870eb5ec8a71073cfa2d99080c708
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/18305658e4c24be52afb68d38bab94ac
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/187de52cdb45f7d05accda66e41eb292
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/19295be2e4ecded52e7b52fdafcdf6b4
- <http://speckle.xyz/streams/1fed8e620e/objects/a72dfd88fca24054017657dce93b610d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/196f65166b07b36423c7067190bcb0c9
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/19ba455b05ea42ade0974e114c8abc9b
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/19db7530ac8e76c66a587919a61df789
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1a57203dd760ba3a91e38eba7a7e53b5
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1a609a106038d628b30060011f62756d
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1aa6ff4a4129c0d155f5ea86d2ad6203
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1ac060a6d36519824a504d9465bfcd79
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1af3a4a0a9391870ded8f816a6fcc495
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1af7fb06ff0fa47c73a49bfc2005a11c
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1b58a371fbbdae20edd383dacc093d2c
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1bdda69ce420903471068ceee5f0d990
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c04dc009dcf16eaf8208ac3d9f93e27
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c1c7f4a8921ec8ecf56697236f53322
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c2ae12330098372530d16e824a354d3
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c449e4a85ba88f882d03b8d1ee0b468
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c61e36488f0c973e362b9d843122975
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1c81e28bcef70a390e51294bc7d41d88
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1ca417ae9f7e18e0ebaa85f11c36e8b6
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1ce91f43c437cdf2ebba9bb3c55180a4
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1cf399bb709936956f340c2e5abfe510
- <http://speckle.xyz/streams/1fed8e620e/objects/1cf399bb709936956f340c2e5abfe510> at least 1 value(s) required along <http://data.ashrae.org/standard223#isConnectionPointOf>, found 0
http://speckle.xyz/streams/1fed8e620e/objects/1d474e4012330da7cca2dfc57a7f85a6
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1d7273a89a0d0c784c7aecf84bd8cbc4
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1db4883b9b588ab3c6dc1e8715829d02
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1dbf10799796b64676e05a4417de1090
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1dc950b179dd1798b2fa036d62b4af37
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1e1cd77290afe774338485e381d7ff03
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1e6363cb07c79c4c7a60c670d761c0b8
- <http://speckle.xyz/streams/1fed8e620e/objects/24d57624d00115493cc15d32a918c9ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/1f27a3bbbdb58326b9949f062cc5fb2e
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/203f609f7b1bc1706a3224e7098b3985
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/20d653bfd18a39118a39f85aee302d36
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/20d7ab3c7ba7a412b1edbb4ede48c229
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/21118af5860d4d0d9a8c5c70b552db6c
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/217fef9b45de4b32ab486143ec8da2ef
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/21d4440d2d6a5b84e8b654a316eb3aab
- <http://speckle.xyz/streams/1fed8e620e/objects/325665573393ea598bc03681fccc91aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/21d455b7f1b5d39c27a6b8e82729c290
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/225c92a6b4eaaa7449890995a52224ba
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/228585c820fbfa08afe4ec52e667eb5d
- <http://speckle.xyz/streams/1fed8e620e/objects/c54820ea8abc202499b3ddafc4261f28> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/22b06b57f833aecfc9b895ee0558c4dc
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/230ded2c21bed3d1eb604f1fc4ab1212
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/232be9f851cfe5a2a9f023fe91203e31
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/238d1490387dc407c4552f304943b76b
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/23a9a8242610fecd9ec5a780df648418
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/23b4a0e85fbc07641babbd1052d49231
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/23cbbded20ccacda96264f23c1c14113
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2451f3ab6a8aed631b2f06510857fd51
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/24530ae9e29bc14f3d0bcbfed0e69087
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2454274e5fde4360a3ab0145053a4950
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/24bb7d972a0b6e425948e8a77e892ed1
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/24d39749d791d11066131b562ac38ca2
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/255739b2bbc4670f3e2065d3f28473f1
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/25844ea067aa159b49181ae2618a9f02
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/25a66e57b0600f059f4b9e37756ddd56
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/25cc8545f4ede96486fe69bf0c0c06e6
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/25fdf5ae592c0905bf4c18a86b0c9aa9
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2630d07c897572b2f881b70436712255
- <http://speckle.xyz/streams/1fed8e620e/objects/a72dfd88fca24054017657dce93b610d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2651cd88c8097edc6b53bbf8bd390307
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/268550222e6e0db6a82b82c1297b8478
- <http://speckle.xyz/streams/1fed8e620e/objects/8621e343f01dcdfe5d7f7470d2bacd6c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/26c85cd38b4c713f4bb835d1f1cdfb70
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/26dca51ed682e9230db9a9454f3c25da
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2734d003df70e193496b074ca512d8f5
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2777a10ffe04b463626beca49c30b592
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/27949731dcc268d081c66164ef63892e
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/27c7ed9107382f92e1b3075014028d37
- <http://speckle.xyz/streams/1fed8e620e/objects/8621e343f01dcdfe5d7f7470d2bacd6c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/27d4f3971c12e1569126d50ebf2db04b
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/27eceb9cb29ed8f4d1b460c214721d69
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/280063c8347ed63720a4d7f645bae272
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2848b9b1172a9c45fde0f9dcaad38404
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/28ad04c87e87adadfc32a4ac4a3dce9c
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/28c5ab0cecb7611cd927de79b29f3636
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/28d9e71364481440d29ece77e32225ab
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/290f19a611375dfaf0e1fcc14c67bc73
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/291d7ddaef702591b0b56d15da79201b
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2945d585791d100e417aecc16c52fec2
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/297b72ef2bc918362481334aedb76765
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/297f7c542876ff823d6fbdd17d13a466
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/29c1ca7b5565dd6d64b797cfc222c9f8
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/29e681d564a4ba5e383932d202f863d2
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2ab2a96e3a87503382bb8a44871e29c4
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2b63094c14c72e2acc3b304dce51fe2d
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2b749e4f5fd3d8861804fa41ce27be36
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2bfc9c71e2f11b4f4b538858a06ac0a6
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2ca167c76506cba40ffe14792a7aff57
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2d2eda1f654ee0a9a35a7143ec2b8481
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2d2faa7e3609df9715cdd5880626cb47
- <http://speckle.xyz/streams/1fed8e620e/objects/3d3213544bcefb2baaefbd96716f1bc8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2d3ba8e03329753e34fe09cf265e9fa4
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2d46833d4b07ba6c2f4999fb41c19564
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2db317c5e3fc56740cf114f7b07a8692
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2dfbd70a496012dd694034f62d0df505
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e17d9304400ec6ccedf1a6ef068b2c8
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e378d4eb474953ef23043911e7d79a3
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e5b674f98aceb9402707ec8c4b5a039
- <http://speckle.xyz/streams/1fed8e620e/objects/412f57f150946610368eac6d0d1c0ed6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e5e15abdf473acea82d1b0029593163
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e6646f859d13e0d7877cd4089e0bd28
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e7abbb6e225de230086064b8226eb56
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2e9c79d9ad86463c898c4f8f471f906c
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2eb65b605f705231776c7992eae376af
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2ec08b24f8312f4aaf852cfc74e0db49
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2ec7d8bb5cfa76f350a55bd94cda13f5
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2ee4a7ed695606c27f83c9011add0fd2
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2efe86184ceee15ae8cda84b167c62fb
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2f3ecd2bc0ee3bbf4ac4df3099b90d34
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2f5d67e45561ec3c96fc59ee89a3ae86
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2fc23add31fcd3d4f0d27e5db59c826f
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/2fd12e955fd7d5d31cc228f8804a26fd
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/30a1c3957b9de647f377c0cfdbc248d4
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/30dc047f931033828bf194965191cea1
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/30edaf4a8c7851ecafde8fe41a0403f4
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/30f7db6cdcd5762a3c728a9d847b21a1
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3108120eb2001b39a571528901c0ca8d
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/310f706a7480c027d740c638f008d653
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/311349e74f7e8c7c00d871794b4535cc
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3149ea7ddecdc8110786a13e1c5a92b2
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3181185201957062b8100805683127bf
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/31a830c86a1556f26e06eed90023b00f
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/31bdb7b432e73154850885f154ed095e
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/32c880597097ec640aa64227a45779a9
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/33998c8eb459951ceb8f72e3cafb6110
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/33cfc7591a4d0809a45db93c17815c8b
- <http://speckle.xyz/streams/1fed8e620e/objects/4946be64dd7b16a912a4810f751536d2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3566e51368405dc078fe12aa22981a61
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/35a170454b689d338a3cd62dc2aecaf7
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/35cc3170069672f4b599c47adc6cf1c7
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3609a1b7822b8247491369202fc7eb25
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3644ebdc8e743cb304dfbb8433301d94
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/366b600e232ecb027f22e1b7f96f71e4
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/366df0e79f8c2be4d4f8fc8fa9fe3121
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/368d0ad357948ff5455a237fe1dd936a
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/36bd96e11901422d02c4ec60911727bc
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/36dde395b35e52fa3086fc9c25b07adb
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/372e25b9daa074a439e40cae3fd66661
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/373f3ab41b9f05c31f1e2d4a42fcef38
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/37866c64ed0320cfcc843e7a71c39aec
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/37d71afb37061c57f50e84c1fab57999
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/385152b296a6bd4102143cc727173fa2
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3858aeb081c37a52b196b9f1ce61ed49
- <http://speckle.xyz/streams/1fed8e620e/objects/231db849bf26a52aa25f97e5db97245a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3878ef79d070f01cb1e5975899310b02
- <http://speckle.xyz/streams/1fed8e620e/objects/325665573393ea598bc03681fccc91aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/38a8b1b25ce861fbe5c69ec60a935f68
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/38a9ee99e3a4db9a229f7764c974e033
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/396a8556235a1e4de6076d1beff9b4e0
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/399b789b13cbe49f961b6374a1f28cf3
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/39d40a893cafce92f8fac6d5ec894ee2
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/39ece65331c03459f9f7beb21af1fc5c
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/39fb8bb8e1f14dab196f50d904916dc4
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3af97e8e78770bf4d1e052a07ac5b4f0
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3b17a4e5c77fee5259c869f463a8c3e1
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3b288a9dcfe3616e751c1c27831d6961
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3b493fe5ca7a119822c1bde65a9c0a96
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3bb0c0afe456d89f241ba7ce63980735
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3bb760df553cba655895c7cb1d45d04c
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3c3659ec80442d64467152b1f637ec6a
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3c61c42259c8ae9b46737be6e290dc3d
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3c65ef73046757fe65dc269fd49993b1
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3cb8850714738b12b18f832570464918
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3ccb2e8dee9f3d46e86a3317c7f470d6
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3d06d82c148e4df02913379abc0860ce
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3d1881b68e3d27a43233c044f845cef2
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3d2f623861b3d32abb020efae402f89b
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3dc410aed822ee72e67e9ba08ea6786e
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3ddadff6e036ff02cffd32ee383ddd02
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3e2140c98a15c676ef6dfe6da2dcf852
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3e346392093e3d0cc9704ae05d47a9ed
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3ed92f33e0eec0e3ea1b65fee420c32a
- <http://speckle.xyz/streams/1fed8e620e/objects/3ed92f33e0eec0e3ea1b65fee420c32a> at least 1 value(s) required along <http://data.ashrae.org/standard223#isConnectionPointOf>, found 0
http://speckle.xyz/streams/1fed8e620e/objects/3f0b200699f30b9ccac55751a9ec9aaa
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3f33194097a04ba4d7c13e48a1b1d776
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3f75751d879b1ce87f35b53b4d36b05f
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3fd461c4d4d94f0e0d97168e53c9ad7d
- <http://speckle.xyz/streams/1fed8e620e/objects/4946be64dd7b16a912a4810f751536d2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/3fd7fd7cff849f854d436d6647ffed54
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4021088fa71d1a12b81c25ece4e8bbc3
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4080a20a825fdff3385cc48720a7438b
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4090f2b20dfeb21dbe91101b2a06e621
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/40a1c6c8953670e4c17f32fe558ab715
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/410362ed9e98c6d79116428d9457d274
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/41ec8ac3c26b93e1d02df08aa5005b44
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/42605a832d8d7b45a468f6d2ba17f31a
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/42ae29a55a058a5d56c0e5083ccfa31c
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/42be588536d84bc08a5c3a8c99a80384
- <http://speckle.xyz/streams/1fed8e620e/objects/80ce095522d440beebb43d2a7e53ee82> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/42fea32daac428bd31f4ea67d2c620bf
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/439174dd5c8d7c736e7f17e7403a2836
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/43b06fa832e68a1df2a4880f42dce166
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/44202aad631e4610183a6eb536aa4c96
- <http://speckle.xyz/streams/1fed8e620e/objects/c54820ea8abc202499b3ddafc4261f28> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/447d261fef3d83aa2455ef97206a4540
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/44852f400f2222f8301ecb6380c373c4
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/44f9ea7389a20e74dfc22827959bd889
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4576baa97f69546844a437cecac4bd11
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/458c1ad1b7f6a4b9440e66c0f1e5bdda
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/45a84d6607eab58741d9c3eee6cd89c2
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/45b5c59d2d8f54f0062732fae3d73899
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/45bc4bc3a70203db3feaa6e55eb402d3
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/45c218dcdf3bcebf019b8d48873101f5
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/45c4392ca75cb3472701b73a831562aa
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4615f45b4e5c954b342b4eb6283d3d72
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/465aff84193f9d170f44d81d84ccd889
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/467c3a02d94f73b6a7b0e3d09bf8e8a9
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/46b35d0fa8277670f24e5e170f15ef25
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/46bb6b339f43255f96b513a8c00b2573
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/46f225e8d6d8edb851eb8d5db73b6a95
- <http://speckle.xyz/streams/1fed8e620e/objects/9b72691da50bd6fcfdd1c2df9db4b977> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/47236e93d96e08d1905b0f297c2b5ac4
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/47d550637d95d2e5012741359f72f722
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/47d8e646af4dfaa6b48571f05b2d20a9
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/47de0069e3d710f71ba60c47fad6bdc4
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/496c70fcb34c3febf61d9583bdcaaafe
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/498630c965e6778379d53904dc9bf25b
- <http://speckle.xyz/streams/1fed8e620e/objects/192c90b00a08a0d3db019dd3c660933d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4993af2602bbcc9c6e7ef30722e06fe3
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/49ad324e3acb5a932ee1a80b2a688a8f
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/49d3bd465f2d961a3f8161cf00059c64
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/49d74e0bdbde51f183f4ed2a200ab31d
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4aad3a6041950099e5bae02c80814320
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4aba852c176d7bf93957162831995f16
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4ba815adb999a81c06f247d4e11de16f
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4bd284fedf0cd693635961d74cc2e0b4
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4bfb3b1e0b9b77685a322dce5855a539
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c0fbfeb6959b6d1862d2cfe8ea23c5c
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c1de06187ca8f211a6e323db5037a1a
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c4a43d9fac6d8ce0a29a45f54404dd0
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c521eb2e6833b98be4d2dd4c8e28faa
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c5ef2efa4332b77d70c38e687116a2d
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c6a3fa6734ac45374961392b7106672
- <http://speckle.xyz/streams/1fed8e620e/objects/f9b70d88daae0789557d8e20bc615cd7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c7a6043680cba0c42f2d9e7b76e0aa9
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4c8bc91ef26e626636ebdd4573da8bbc
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4cd83391c18c24aca31eadc4b40bf0ef
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4cf5a806164a25213e22da14690d6c8c
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4d0f60539b5d88d9bf74e5afc354793a
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4d6f6928018e8d27a58d652a55906501
- <http://speckle.xyz/streams/1fed8e620e/objects/231db849bf26a52aa25f97e5db97245a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4dad8d3f6f94181bf9120f1a6e88f10e
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4dcb1d02e01f87ef0f87254b3f26c882
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4e050cf254f221d02173c3af519da746
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4e36497fbb928c4a18a304a66e5becd9
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4e5e3d7013240a43f6a6c10643311a2b
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4ed0319cbf9d9e350ae31c89676a4f5b
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4eff4bacf0c6f182ec43281c58454d7f
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4f18903754caef6bf2b5622913cced54
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4f401f483610e39d7d589323b96518f9
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4f666bb26b8747ad9250221cb88e1dbb
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4f96a67f6f6094deae3f72ded05e40f2
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4fb7388ce873277b3a8b2f3e01f9ea32
- <http://speckle.xyz/streams/1fed8e620e/objects/86f2e8b2c65a19c84c9150a3db53d385> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/4fd8f11b4ff08afdc7226eecb0837687
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/51470c80a07c29d8ed80318d0588f753
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/51653db8a93456ce05c067819e75b281
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/516d6e77b38881c0f873a0d39d909064
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/51b1d9f50937cb88cddb3504ac681493
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/51df90ec188745a6de571c41d1b7bf37
- <http://speckle.xyz/streams/1fed8e620e/objects/d391175047a25b0307bd11e583fc2c11> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5220e68e66d85c9f7d8eadc0186ce81b
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5280c43a702a0f5ca3554e7e1f72e7b1
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/529971ed5edb185be1b0874321592e5c
- <http://speckle.xyz/streams/1fed8e620e/objects/3d3213544bcefb2baaefbd96716f1bc8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/52a8f1eaadf42e8eec8a80b1c2efeaf9
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/52e28d3542ede247784c1cd74eef4193
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/53108316a802d9149bbbdd7329a7e734
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/531aa9dc562d7f2d7be16288e51c9edc
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5358b1b4878dd8c859f425df7f306da0
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5364f933602e08685bcf1ade9a0394b0
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/538b4d55a4d23fb8c9558674d30ca77e
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/53a56df6e6f5de8be2dd6f9487ad42e3
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/53ee7c0535a8148d320d8892e3dd6fda
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/54239b931338f8b0f0ea4022118c37dd
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/544d72a8a4e48a58d771e2169cc8ab6c
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/548e150c735e23f920cc4568a636cea9
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/55f0e3878b6ebbd1deec578eedca33fc
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5647b9d6fc9b3d7d44aee7c2f498fe1b
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/567481e6fbaa08dbc9f94a7b4d71492d
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/569aeb79d4075f92e5a6edbea86afd04
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/56b3c56a3e9b6e8118c445ce7b3627d6
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/56fe7d9f32f233e4d426c4af6f0ab2a3
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/571df1de6afc4145afdfd11b000dc37a
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/57313b716b0dc13555488211da799631
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/575dc6f1a4ebdbb1e5da814e6c6d8ea1
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5766167b0eedc2bfda9a9a6a11d383d5
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/579f67fa0910c6f47cca307fb76b2e98
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/57c83613bc6bbc5d2b720b7ed47d27cc
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/57ce7fedc95a8d9b463c6acf151d305f
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/585bc900fcc21cd008d82a3d815ce530
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/586659d15aff166059f139078f66dca3
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58685e612218a2b6c3223aa16af21c17
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58788b107b0809433581213112cf7008
- <http://speckle.xyz/streams/1fed8e620e/objects/24d57624d00115493cc15d32a918c9ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58a359f0b5fe47cb33f49190074e3aca
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58d84faf00627c66d7e20dc9b019930a
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58efc5e4dcc8e3ab8e56a971fe444c1a
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/58ff6cc25cf5d30b1820c6f53ce545c0
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5916aac6d47602fc1685759eb0755026
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/595b392eebe249cddfe68ef58f7fda31
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/596d9edc0ab3569ae21431afca6a5425
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5a1bbdfe8643ac3eea2db2a70040d5bc
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5ac65ab9ffe71672660184f50bb458fd
- <http://speckle.xyz/streams/1fed8e620e/objects/0dd0051c198ab1ee8d08193a8246c47b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5b12589665435aa5e1844a7cc9000e8a
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5b347bf90962bdf8e98899578d3d047f
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5bc10fc3b4f6f7106ad2c6b3e55acbcb
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5bc150431549fdc7ea573875143981b9
- <http://speckle.xyz/streams/1fed8e620e/objects/f9b70d88daae0789557d8e20bc615cd7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5c3d8a7555af589723370056283305ef
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5c4244e79ad09fabd6c8f9d648cfe632
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5ceb47d1e6967b60dee13c8f23ea3886
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5d21c2d3a7ed794d282a9900a802533b
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5d23ac6aa03e7719ed5a288a9a0c4ed5
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5d4b95fd5169e6433bb9f7157c2b05a4
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5e0769d82e45033d9fc325ae12bfe02d
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5e1f231de4a9a81a1ed236eac3b4e7d4
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5ea28ef2735bd54afcad142796c0091c
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5ebbe56532e65461e8146c032ac40224
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5ee3bb0f7b83670d4b5af3e1bd425f1d
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5eff062b37a3677181b68e98a4e15a05
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5f3808e2ff8c14991975a5d5f2eb9392
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5f77f838b83496e805c30bced307ac99
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5fa6cd6736b4d45d11a0e33f2841172b
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5faa553f09790e239adcbffa76af84fb
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5fb2c5795b382d33585405aeebed9d59
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/5fddeb6430cd1a6673d3438bfc809121
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/602cc8e0f307b44bf72a635ad9b3fa7c
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/610d8df2ebede36c718c2edce89b9b12
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6117f8aeb9bfe4fd07f5e7ff837ec34c
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/613c9e31344c52729aef4acbfa99a46d
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6171f8dac6c38f1bd22ff0b5190806d7
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6180e3159b54e22b54c8ec3092804afb
- <http://speckle.xyz/streams/1fed8e620e/objects/80ce095522d440beebb43d2a7e53ee82> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/fced0fecb1a33a651e352824b40f4756> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/325665573393ea598bc03681fccc91aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/4946be64dd7b16a912a4810f751536d2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/062fc31dd278f190b5c9d237489e7d9a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/412f57f150946610368eac6d0d1c0ed6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b1cb648c451461fac7b72213fe26eafa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/c54820ea8abc202499b3ddafc4261f28> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/7ba35b19cb4c3c79e5bdbd2a1073370e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/192c90b00a08a0d3db019dd3c660933d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/bbd9f5722f6b25afed73226882977463> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/9b72691da50bd6fcfdd1c2df9db4b977> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/48c611cb65ae5a589c1a0562e534c481> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d2adf181e2c1931b46fa7ed04d061da1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/61df261aaf8f61dd5707f656710e40f0
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/61ee82f2dc7637a2f4b3018225cff2e9
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6223139d6fa7cf600f90ec5f16322536
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/62244521e62aa9cfd1f13b3a452349ab
- <http://speckle.xyz/streams/1fed8e620e/objects/80ce095522d440beebb43d2a7e53ee82> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/622bc68b69d912957f8764722b39a94c
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6279488d88e0e6b7c321e33b488b1809
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/628bec03a3c0f9a1445b4670087f67bf
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/630528e262ceed834b6b83282fc8e2a1
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/632923341a1b0a57cdb48649d8883a8f
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/63a46dc1e98f94e9f255a3004969f650
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/63ed093da58b94bc025639dd785298d8
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/63f6b1a4a2ff495ceb4461dad963afc8
- <http://speckle.xyz/streams/1fed8e620e/objects/86f2e8b2c65a19c84c9150a3db53d385> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6414f476066c5cb9fccc6b416615a2cb
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6455f96571381e77895a721817c96980
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/649e875503ac303240bf5a4cbb7181b8
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/64bc39fedce5fc625e73827e14fb8237
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/64f2441479a1d67963f3ba6d075b3eb4
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/650162ad31cb5353cb3db4c95800da6b
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/65b7660308375f7338fe0df49c969ef3
- <http://speckle.xyz/streams/1fed8e620e/objects/b1cb648c451461fac7b72213fe26eafa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/65dc31c8b2d676e61aff3e1b445af4cc
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/65fcb48168a926364328b92925955768
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/662d051dbcac5ec5e5899cdc800425e8
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/664a8836f1246930897db841f4da840c
- <http://speckle.xyz/streams/1fed8e620e/objects/d391175047a25b0307bd11e583fc2c11> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6665841effd6a9b134e823a821fb9fde
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6692bfa4307dac37a02e7e555760eebf
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/66a70c25d4edc8c7e6c82705608c178f
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/66d99a2748ba946e9d9aca5ae4ebb9ea
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/672d2e9f4d723af5e038338813a56e52
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/673d45315f2da8f05ff1e4a75f167322
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6768397647a408f1e5112e1702f22d51
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/67cb289e9084f0631423cb4986804411
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/67df5724d9b2e24f81d08e94e0068df0
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/67eb7e6bff7196752b0c75b54c4d703d
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6832779715c4c76a3cf09975d517f41e
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6877995ea956fe4df283de3a3a88f202
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/68beffcc80301546ac6a7d758021bd6d
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/68ef09c6514335dc7ecfe13f64f3f5cf
- <http://speckle.xyz/streams/1fed8e620e/objects/9b72691da50bd6fcfdd1c2df9db4b977> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/68fb1493112daf91cdc1e328b88f90fa
- <http://speckle.xyz/streams/1fed8e620e/objects/412f57f150946610368eac6d0d1c0ed6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/690b187171a626f7cd0334d402bd384d
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/691ae97935a27869dea9940e87c0841c
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/698e7f1255fba8244c05fe032ccfec39
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/69dc592cb3db86a8fffcd1ef18081bce
- <http://speckle.xyz/streams/1fed8e620e/objects/325665573393ea598bc03681fccc91aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6a2ca71317c81b728655b800051418fc
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6a3fe6520c038905b2b082b9f7c74408
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6aa7cc8562514dcf0b168b9665cb9fe2
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6adf1eac0c9fe3b32b3a7c948e60f5ec
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6ae51eb7b7aa82bc1fac6674e8bf904b
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6b12bcfd56bb1bdd5c53135ea0cf49e3
- <http://speckle.xyz/streams/1fed8e620e/objects/d391175047a25b0307bd11e583fc2c11> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6b22779f5d354ec61ac6b1302c7f88a4
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6b28a3099818784847695393dac899d9
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6b5ce0f7ae6d319f7dea73759dd5eaca
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6bb62d464f3afc1b25f8e412e4899d35
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6bbaa7f76c7c62f867b2fb212eed4626
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6bbf1334d983e7379ff1fe1858bc38f1
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6bc9b7bedcc5a95ed02b51829551aa80
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6c7a9471cf1f33ba983fc01293f9c5ac
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6cd4ca52c93e976705694b03ab2ced2c
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6d71fa7782f8472be047c24b012d3f16
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6d829c0a3c488ee256169dff43f70d26
- <http://speckle.xyz/streams/1fed8e620e/objects/a72dfd88fca24054017657dce93b610d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6da0d8feff4d3bf3619aca8e46fa81f1
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6e48e3916d8deb1671cd459b15148641
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6e7c3bcdc263482d37ba7f4eb1562e60
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6e7cf033b0d264203dd7836c75fed080
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6ea8fce3d3fd52d0299304fe315ce864
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6ec2156d81507d0bb24a3011a2d2cc06
- <http://speckle.xyz/streams/1fed8e620e/objects/b1cb648c451461fac7b72213fe26eafa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6ed5f90cea5b1b666c822acc1eeb61d3
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6ef67b2f033aaa9bc66245cd3d2bb822
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6f483be6ac6db16f290deaf71508dc4c
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6f816567cc3431321f890130d5895c70
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6faca369b6a31f979e1d6152742fd6c7
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6fb26404df2328f259beb6fd1ccf9ed4
- <http://speckle.xyz/streams/1fed8e620e/objects/f9b70d88daae0789557d8e20bc615cd7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/6fffdce63254a1e6a7a7df12c3033f83
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/705dcf37fcea7cff14cbc102e4366f2b
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/70dc0b982f72a104c4fb6c7e5e9268c7
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/70fb85d4f8cd976ed0ea9b0b475f572b
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7101cf2a40efe6d960120551fb9d5ce1
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7168d38a16d61ce5b3c3daf09202a874
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/716a974e83e9f32f25d63dadeb188cd5
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/71e7ac7303199576ec192d4868e00907
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/72b2d95a7de965337847b2955c1be884
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/72c1959723ac69c1f06a202797ce2f9c
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/72edaed59bc34fd1c47308319a167aaa
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/72fe044a304ebd97ce9125f50b1efd18
- <http://speckle.xyz/streams/1fed8e620e/objects/d31ff0f87848224671aa8850de49a184> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/730cf403d0977d00d1d03c694a26be99
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/73245be1dda5b2aa12da19e2cb44e698
- <http://speckle.xyz/streams/1fed8e620e/objects/ed01ab8cc0505a6764f1c10a53360b5c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/733017103499976ce7b159f928039ec4
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/734e8bffad0e25094e5f23a02d00662d
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/735d1d7ce352de6194aa6da5eb77d163
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/73e4f37b5d6fdf5cd911e427b58a509c
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7431fa4defb127054ab275455bde2f25
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/74526c739a0e01bb835dc8fe1ef18304
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/74b185b8b6efc8e7fab376b324f9c9d1
- <http://speckle.xyz/streams/1fed8e620e/objects/231db849bf26a52aa25f97e5db97245a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/753f023f5c0eb34d4bd0af60c3bfe9fb
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/75e2723bf21af3b8e67ad9a7fecc96b1
- <http://speckle.xyz/streams/1fed8e620e/objects/75e2723bf21af3b8e67ad9a7fecc96b1> at least 1 value(s) required along <http://data.ashrae.org/standard223#isConnectionPointOf>, found 0
http://speckle.xyz/streams/1fed8e620e/objects/75f0aa3b626e037efd1e17fb47c0395a
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/75fc96d515f793dffb44209413761b82
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/76175a5193bba439ff544b18521edb7e
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/761c079640d02739185a66223ac8367e
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7626f9e99930b5f91fcead630e9aed01
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7650f0a600a7594e514be0699c464604
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/76773e428635d934318a0ca796bc55da
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/76cd5bb732b115f36efb4e8c230d0458
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7765a4ab6009dc71d9c4a62995be545f
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/77686f6b2f0343e86df5d46bb8002cc2
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/77f710815d6c0804ac2c17e8650c43b1
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/782146cfdbfe78d4f83ff4f4cb5a7c61
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/784033e5b5eec78c557d07fb94fdb647
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/78812b17d3dbf360c46da9a22d80bd5e
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/790826a409df89b4f0babdd10ac55a5c
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7930d97f327c287e9cebc00048e4cb01
- <http://speckle.xyz/streams/1fed8e620e/objects/d2adf181e2c1931b46fa7ed04d061da1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/794ae91d36e736e64b2aab7d1db50e53
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/796116104b417a74854b04fb4ed36626
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/79722fb7653d486e4d9dd6fd90703dd7
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/79c4a8391897123e8751691f6e2374bd
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7a5529629be7deaabd58264bc20c1c1b
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ab38c5d20e8646c9391759a2a5c75e9
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7aca419d400ab8498232104f3a2be1f2
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ad8b1b17b9bda3ddebbd5cc4b067550
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ae1046e14a5b8f1aebdc789df100f14
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7b0e71fbf4b055ee0e5f574ff909dca7
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7b31e6e345e5c816d06baa54790e2638
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7baaa926e2d571d536103d7f072e9a75
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7be7206e040b13a86ff45c263a89f97d
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7be84ff6b1c8f8fea790c8cee2703de9
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7bef90b58234a675c52198770aa9f906
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7bfd8509611b2ddae7045ac1fe65bcc9
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7c24fef8b41d6489074fa1ba88763256
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7c6cfdcc897c3277efc04af0c75bc94a
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7cf32c629b99ccfa8425484557356425
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7d6fac281b7a6086316be60b177984dc
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7d841c8847eeadfd336560a670986147
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7d89b83656c3dae96c73ed0e9c5f5247
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7dae0efd02add925d02941cbae0912a2
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7de0bff55ccff427815c80e616a60379
- <http://speckle.xyz/streams/1fed8e620e/objects/86f2e8b2c65a19c84c9150a3db53d385> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7deac59f2c3b088e3f24bad9e7def298
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7e1deabc65f89c855bfd1274c715bc2f
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ea91a8267840a255fa1414995661281
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ef23f7de643a4e061ace9d73b54481d
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ef39d0c6563b607eb4967e7baafd9d5
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7f1abd257f67bf974c0426042e80e5a5
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7f993912d0458d5f1f269a5ba597713c
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7fcac2ddae29988d7e2f8e3abb61623d
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7fcee666ee106d9640c1839490956012
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/7ff316d4b13e46d3a1a285550444e1f2
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/803b31c8cd03bb052b18f34cf6536019
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/80b1e601649184340ca10174e0c18e4c
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/80d29e62b33a82b842c6f05a4f50aad4
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/80f3439dc39a84428ac05b21c9f67991
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/813cb076f4aee197f1d8ba48c3521a9d
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/814abf0e27a99a2617881ab5477ae588
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8152179c6501290556d7495dabf268ad
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8154b1e70ededbd2696a1f7f9a0c9892
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8184d1202bc2dde8ced0f66f0a2beff5
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/81851c06be803d6697ed4720f20fdbac
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/81d8284a8c70d46c21ba2ff588ff975b
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/81f954922d910aab1e6b897ed0f620fb
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/82bd7a65f6a945f75a6dc69f6888a5f5
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8363a0e20d067665951ecec42c1ec0ec
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/83799a8102075547e20420c9cca7ab85
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8381e16a7784f5b64d333ce0fbb00465
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/83c905faf0d8bfdaa4d8cecd02c11b16
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/83dcfdd66295a7d07dc103fcf2fa823f
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/83ef15012784d5dd7f97149cb1eb217f
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8411a2f4f3814da2eea28799aa46d536
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8426bc42a414712ba31726ea0343ac36
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/843d3ab47d666573bf8f39340df35952
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8441a661a50e922ef00aab31a345da8a
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8487d1747c56f09e78e5804da9717497
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/84ea4bd398d581fb79b4be2f1c62a0d7
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8509faf793fdbb8bf4f086cc1cb7f13d
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/856881abbb41d6b801e509f3dd15b19b
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/85d4064e147e8da535ff98c5cae31c29
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/860a11d88b5a691fbe183581ef2dd941
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8649cb20da3527904ee5c48a7870539a
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/865d0290e4f7f1bff11eabac272602a4
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/87649ea1aa2c56c36d8061a497798ce2
- <http://speckle.xyz/streams/1fed8e620e/objects/3c418468e71ff5a537b5e56455bc2356> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/876f547a6d7bb93c88a6849818e61af4
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/879f25abfd4a1418fae90e18de10bd04
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/880fe9dd7a8940164cfcab554f55bd22
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8821345b750e662e0f7abb394bf98bfc
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8834e5093eee2f9f4238848201ed82cc
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/885ce5034bb609df5e84883a15a3faf2
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8873c2eb7c1d6e8ef20b809decd88c95
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/88901e466268ca62d091a336a2aac5e1
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8982751b5384e2f310b57cb2a78dda1b
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8990b86d86f29fe85bafb35a4db7ab12
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/89d9a63cd0042f7bcb2c329bf26327f0
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8a3bb49a3a5b7aee5aa62075b33f147a
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8b4a324ae73bec85f9b8f6f3e93d127f
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8b84cc2604ee2eeb1ada72b3eb6be5e2
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8c74114a2389408179516afd3e619e99
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8c85c3d8251dcbd30d6c28c47a22511a
- <http://speckle.xyz/streams/1fed8e620e/objects/b1cb648c451461fac7b72213fe26eafa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8caa5c478ffcabf7638415e0808ef664
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8cc6e9f3ae306e9e392375b3ec837e00
- <http://speckle.xyz/streams/1fed8e620e/objects/3d3213544bcefb2baaefbd96716f1bc8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8cf177deaaf7867190f4778639f61c57
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8d39f7618ec44f1d31f7043a4d766833
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8d4872f454de4cd508275d59cfa94aeb
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8d8868de7fb597f89c17750a2c9ef0b7
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8d93da3feca76cf45e0fb337d379ed97
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8d9741ff8b646c0340fdb85ee88d6248
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8dacbe323775b34a26b993bad598bae8
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8dbb30e816ce1d15b3289fd82d4ab0d6
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8de47efa7a2e42bcb8b6c681bd54ed20
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8e315279dc2f660b70b9f9d2f8a65256
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8e54c04414c3a398a96d3793e281be32
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8e741286b0f9834b7ae58353dc531050
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8e77bf70cef7f8e41ba588acf4e1c9ec
- <http://speckle.xyz/streams/1fed8e620e/objects/9b72691da50bd6fcfdd1c2df9db4b977> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8e995f90f411cfeb1777d6dadc30ecbb
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8eff06eaf38eb743e7839f3474d9c9cd
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8f0fc179934871b5e1e42a7f100279d6
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8f1462d9ee6f0b1d9718accae8a63ac1
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8f2d8b393bf794f4e2024247178ba827
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8f7ec00731d1ea7953fc3f2a35480753
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8fa7223654cc01ab45daf513fe965c35
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/8ff9ab8a5ad27a96fa6e814d29129b9d
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9019f2c693ba57301770014821ef4ee4
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9054a4e683ee5f1130deae4e2336f4da
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/905d1b1e645cc3b6dee8e5faea8756cf
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90708691efec0f0d6c915b5f2d7dee44
- <http://speckle.xyz/streams/1fed8e620e/objects/24d57624d00115493cc15d32a918c9ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9076df77f31aabb83edf2faf8f89e7ed
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90af124c54f733c07917d9a79b11b901
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90b5247131d7ae732128848e3cac65dc
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90bd7b37c4fd237c9d58bbc5b7050bc5
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90effa649edfde157885b9cb62f77136
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/90f9b3cd27b2af8e515e4bafde85aca2
- <http://speckle.xyz/streams/1fed8e620e/objects/7ba35b19cb4c3c79e5bdbd2a1073370e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/911501a9327911bbcfa82f7fea5acf3a
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91236a3a0aeab8ca0f482725856d33ef
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/913ef0ac6a1ba7f609fb617b2a8968b9
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91a33449cf0bcfa802bf1948e3170a3e
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91c69f5b7f18a749c389eb58cd372b83
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91d99da7d9c13461b86007faa44ad08c
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91d9d99537560abea6ab2cc9b1c1d97c
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/91f8c9bd4723b7c77620457a2d558413
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/923d883630a59cef695d42f53447308e
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/924724ebefc6bf9f7e7318209cc8c0ec
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/92b591bc4d4276b0c5ac397b36c440f7
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/92c0fd6ac475ac7e666db1d48d828305
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/92d9edd2ceeaf6ce44f6c9a4eedaad57
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/937dba27edcb23ae88da6530c3951838
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/93a7c8554368a2b8bdd06010c7070902
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/93dc49c359d09f9cc43dc55d035d4675
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/93fb7fcdfb836c81083b9a1283913259
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/945a155a4f6be95891ac36139b9c99c6
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/946f11341932a655422e36ea0024dcb6
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/94a1d832ff85c422dda18b19b2224721
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/94a34be4ff416b74b99a0db5e70101db
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/952e916cae2ca3e514212bc040399c5d
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/959809644e1f72a30f3af346cc409e00
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/95ebdc74f263d71fa8b61d755d25f904
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/96652f49f36228a9d9ef5c07e5ba3dc8
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/96c1a9528149e0a2d35b3b779acc20cd
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/96c575820805a80236b752200712096e
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/96d5125319d5d6213926b61263ac7bbc
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/978f4d34dae753d3af4e2ece8f771506
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/97d2ff2ba9c66c49b23674a1c64a9a81
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/981ed7aa69a2c81ff1861b32d9255f1e
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/98bf51d873d6cce614f0ba88c2ab8862
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/98d1bfc72bc867a1b4ab80248c122879
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9904daf1c14e31ad4b30bd6fd686bb6e
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/997e13a42ca1ebd6c44f2a0eae31532b
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9996d294603423b9f22cd99c88ccb41a
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9a0f8b322778c7984faa0c0419c25e40
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9a15f0dd9771868f2eb52131469fd776
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9a30ac30d3a7875f841673d740ef95dc
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9a7c24f74ccd5213695fb263465ce3d5
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9a9ae787ae9743b8ca2a547898fb6410
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9ae2025705b84e8c689ad1afbcd26ad4
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9b2778c7209cd3d97891dcbf7a868186
- <http://speckle.xyz/streams/1fed8e620e/objects/d2adf181e2c1931b46fa7ed04d061da1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9b74d0b0d57d1908c6de11ff1b08343b
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9cce917111dbbe664e9b1464dc4ec8ff
- <http://speckle.xyz/streams/1fed8e620e/objects/48c611cb65ae5a589c1a0562e534c481> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9cf2e1df784e6fa90bf623bea29fbbb5
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9d09563512ccfbb4dd170132b8593531
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9e6fc1d312a3b5e9e9925fb5f85c5a0e
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9eaed6701da86cd8dba11e6997bf6c83
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9ebd28a8c7cbf3247421ad6ec40f579e
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9eebacc4d946e05f8a39d0ec363b8636
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/9f43e4139eb025b30d9abc41080cc155
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a05f82979ea9a73036d2852265481aaf
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a0960358a3b65f4f32cb541ce0155233
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a0b1c54e5e4f2c7175fc396ecd9e9317
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a12562cf4de6ffc7124a47537276711d
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a1a73c2c32c99e3f3420f12abfa78674
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a1cbe48bfbcacabdd13ef2f6fd36bfc7
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a21f635a1678411d5622c32a9b359f5c
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a226f71f487dcfb147440c027a189a31
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a2b305f332edc61d95dd21392a727092
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a39e7dab36c97bb4dba71e1d32f56415
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a3a8705bf70cab70c5855d056348801f
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a3dc3ffa8767125b7bb2eb66281b744a
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a3e1527234be2032fe723d08e415340f
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a430f423f10c21909f7f58c8506cc1dc
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a4690bf903d9d8af4e6d8918384a57c7
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a4b4caa4396dd56b61b5955a2e96f323
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a4c444eeef20a0e490c0fce81eb47701
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a503d0e02657cf3fb177df39d4534948
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a57e916ba5a50da9b21c36cf640b29a7
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a57eab7f784e60c34067d6bf0687a9b0
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a5a200d3e89647cc84ccfd1426582e9c
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a5c0c64a84bd9c224470eb8a9bc1bee6
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a5f92f57df7e33ed326d5cb981881994
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a6e286544c83becf5407e29b1e57a36e
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a70fa8d267125079c686e7eaa3914121
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7455d356c67005740ee523d403a83b2
- <http://speckle.xyz/streams/1fed8e620e/objects/3d3213544bcefb2baaefbd96716f1bc8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8621e343f01dcdfe5d7f7470d2bacd6c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/0dd0051c198ab1ee8d08193a8246c47b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/24d57624d00115493cc15d32a918c9ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d391175047a25b0307bd11e583fc2c11> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d45421ae76a65fdfcfcccfbc06cf176e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/3c418468e71ff5a537b5e56455bc2356> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/9c2f06431727c23a2a0ddcd711357701> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/231db849bf26a52aa25f97e5db97245a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8719cbd6ca9a51132612726849bb787a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a759d41d633b3951fc06d0bd8ad1b4a5
- <http://speckle.xyz/streams/1fed8e620e/objects/8719cbd6ca9a51132612726849bb787a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7764d723d6b27667afb628cab517cbe
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7a3a4bacae18377b98d7fd7e6f6cbb5
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7a453f8a937087911962cc76f575684
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7b98e1a0c7dc1c347bdf666debe5c53
- <http://speckle.xyz/streams/1fed8e620e/objects/fced0fecb1a33a651e352824b40f4756> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a7eaac8d098f4a30405cfdc482260c93
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a83eb7976c494a441ce11020687196b0
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a891c7f9e91aaa62c4dc5ec2f447b004
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a8aa0263d90e6ba81090bfad7f839d90
- <http://speckle.xyz/streams/1fed8e620e/objects/fced0fecb1a33a651e352824b40f4756> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a8ca2fd25dd47a1b349509f7c1a736ac
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/a989834e3025ec31df4d41953d899670
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/aa357d00c1e7174f42d0d82f09311e90
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/aa88ebdfcca1d4019da228d4e7b84b94
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/aa9ee29c234c0ca3997213e90c925a59
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/aab7791b8dee040c482d175a0c47be46
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ab14995722241014299d47de4f47ceaf
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/abbed8ff485c6fb66ceb3aa4992fcafd
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/abc73f12168852c1c4411e0ecad5bc2a
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/abe1113dc58e806667191ab3068966d6
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/acc43507ae2b5fde6e874f6671d58fc8
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/acd81fb06433b67aa77e99d4ecd97c0b
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/acdbbf415318b7f1aafca945071d4be2
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ad2cab68be12a0062678e60ee5990c97
- <http://speckle.xyz/streams/1fed8e620e/objects/062fc31dd278f190b5c9d237489e7d9a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ad5ef385c7a058b31dca041ece2060f0
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ad8e5e45390c3050659f501caa711d88
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/adb7ba70a3fcfe414983777f3ec51a70
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/add29b9224323d94ff1da9a25c06c459
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/adff17d3cf32c3a0504f0fa1bc7bdaea
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ae6e4494d45844bc1e7d2483364f6bb5
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ae75c4597ea11db1f3088beb9f7f9305
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ae7a0d25e306bb7f4f1b139f8e4db706
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af056b7d82ed894538092e2db4f03e1f
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af23a13ea6ee22d6278d8803f3e62713
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af2fe5cb7bb5e42a31d731f869c7ce62
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af5673e40e1d68736a494decb08102fc
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af629f3c96ad4af1744f73500e79c951
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/af8730c8812e372750f3a06db97a9150
- <http://speckle.xyz/streams/1fed8e620e/objects/062fc31dd278f190b5c9d237489e7d9a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/afaad6724e43b42df761cd69f46432d7
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/affe5af5b6b899896f53696e296186be
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b050a05b684a7f2a42fdaaa0785d10ef
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b0791e5714025bbf5154057d8c425f9f
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b0cc05c44056b68bb68f8c15b5e09cb8
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b173d03b7d4084483e4ea6d0ca481113
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b1954ce12e067188bbb8987a2a5d9b44
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b9ce728344626f07f463ae51b7a71f77> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d31ff0f87848224671aa8850de49a184> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b8fc269801c0d56f5f912b5c64c0092b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/a72dfd88fca24054017657dce93b610d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/f9b70d88daae0789557d8e20bc615cd7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/77a75c7084d8667b276c75f0b7b7ebb8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/93dcf5f949eeaea55d1d15d08452d748> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/ee4c51d58747bcb434fa602d43b15686> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/12d883d48dde122b0c60e05b3afaf116> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/5045ae960486d79e48a8811fe000bc67> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
- <http://speckle.xyz/streams/1fed8e620e/objects/86f2e8b2c65a19c84c9150a3db53d385> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b1a714ce34eb3012ba67eddccd02affb
- <http://speckle.xyz/streams/1fed8e620e/objects/97932d4a07f7b2e8b62b018c2c23f02c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b2b6c70c8595cf995917e7344f8b9ac7
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b3d384714ad172d4560d9ece10694c3f
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b43b4a4efe5aa3fb658289b81e54afa6
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b504da73194fd2dafccc5e91651e2066
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b535e795b6b2e5e1c390f034c17b0b37
- <http://speckle.xyz/streams/1fed8e620e/objects/a0cd4c2a8830737d3913b12b424d20b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b55fe20a085431e727d8678926b75dcd
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b667ca45eeda74883367f6299e7d1342
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b68fb246874e3a3448bf88c625210a95
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b69af16d399c6c424de55d3c0c7c54d9
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b6a001cb60261bdd75fa9ea0bd506cc1
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b6c24dded156478b79c31f0636ec12dd
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b6ce0027702a822cd0bff96376660f23
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b6d8a9931b7372a2f217fff8f52c8f69
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b71242812c8b42626d344717aafa395c
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b71f6b4c87c0485fda3ab1a00aba7aea
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b744729c667a79d8baecf511840c0b16
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b7707fd40b572adf33a8d426a2aa619b
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b78f2ca1ccfde4425e35421b116659e0
- <http://speckle.xyz/streams/1fed8e620e/objects/8e57f294a5d5c6d014a45a2ddb125eb3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b7911ef1544eb20fbd3b31860bf0dcfd
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b796153b758167f7a90506fde983f715
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b7cd5ac74dd8ea5b2383cc24fabf0d74
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b89cc3ddca3fa3f0e08c3aa87bcbad06
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b8ddb63e05d3408bf439149c5c23d937
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b9a1603092570b659ef3a0321bd2f883
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/b9aca6c2eb2013ff1f56e5db5c797cf1
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ba1448dbd4be2d5192aff6c5136c1fd9
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ba8d42bc67bd546817b902e7bd971ec9
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bb0cd9cc41f052a867e4a413650cd2a7
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bb58edd7c9fe4c94b002d12ae1262470
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bb7a60c63d0d9521e2c7bd29a218edc2
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bbbd79577f164d5a346f575b759f4316
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bbe3838f755a4d88013f2531723e88cd
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bc5704791bf30da8dec7997686a623a8
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bc6b5e45adbe8905c6a09f504dae55fb
- <http://speckle.xyz/streams/1fed8e620e/objects/9b72691da50bd6fcfdd1c2df9db4b977> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bd0d0023d78228ea9017522f30abe2f8
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bde822d00b906c530f25b9af73e76513
- <http://speckle.xyz/streams/1fed8e620e/objects/9c3e2c73afb76cd5c75b65a4f596cd71> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/be07ea39bd1b2baf1645dc0e9a12d423
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/be0dab6d335fdb9727272bfd1a99b94d
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/be0f2c8e6b526bbb80c908775e608dc9
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/be12556d3642885ebbebe8bff32ffeca
- <http://speckle.xyz/streams/1fed8e620e/objects/bbb44e7dc0f1451746a0315ee671e63f> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/be47f05635d2b4099d8e7ee9658e798b
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bf38263e9f9fb832ad121249811f4d1b
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bf446193b7be3f21cb301c3f6cefe305
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bf8e5f7f09cae8c0916c6713169cf28d
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bf9f9e1451dab17cc9bb0b4df0f285c4
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/bfdc19cf037919a6250bd8d29b1c938e
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c010e5397bcaa1375d182e08fd450797
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c01362b7f5dafe4aa3a7a0999f8c85c4
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c0350e1ff7618b71a2e2e606f3a9f2b2
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c052f3e864d9bcbe4f6afe91724b1bda
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c0adde27526506302f39bcf1df17d3e1
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c0be6fa9622175a994cc33a8d51fe2aa
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c102f0960e9835fd17235f8264f62c6f
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c10a11722c049d4250323a1183014504
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c124bd53136ca2174586dfd9d580536f
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c14997bb42c5fbd89eb66e4e1279b9f0
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c14a0053f1b59b7e5b3883f32fe06657
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c1e38f4358d9d3b3b6d1693577f65ccf
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c244f1fde1ab7b15bbfa4da6580f22db
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c25ff2611771d4edcb1c69cd5f983386
- <http://speckle.xyz/streams/1fed8e620e/objects/b203b8a770b64f602a7550c8db9064b6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c2b25a278e97f972820f5a2a1a8f572c
- <http://speckle.xyz/streams/1fed8e620e/objects/48b9c1ca3768ef321f1d683b5b1120d4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c2caec43593e8d0eb41e5c57f5bad1c1
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c2cf173c7a5b1d53e44747303a6b57bf
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c3138b2fe319e16dc28fe2417e517467
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c3aa02249f46870a479330ddc65dc9c6
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c403602630b8601b578168167e848a08
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c4438ffacac2001aae471e941c466892
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c4517372b8b9ed32c001a72e62b77481
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c4c3809771d74c81fc079611ba7d78c3
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c514a0e4f1fcc5a91a6bdc926bcfe6f1
- <http://speckle.xyz/streams/1fed8e620e/objects/086e724bd8f69f95a9315e375d8bc698> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c5178b4667fce60caf5eb9135bbc7973
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c522b76bab8ee156e07b72d682711262
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c56073f4ef05ea9bcc5ae2278d07ca0e
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c5b85aebfed3933502ff4af47b5d8d16
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c5c256042c5355d567b1f29a09ca6174
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c5dcc2b04cd025819a99534ffbd0f5d4
- <http://speckle.xyz/streams/1fed8e620e/objects/86f2e8b2c65a19c84c9150a3db53d385> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c6b2712d2a99580b20d7da6ae4065f9d
- <http://speckle.xyz/streams/1fed8e620e/objects/d92fabd4965ebb3198e92723cae9f3af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c6c7828cc86ed0fe1034d8cc0f8d800a
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c6cf6ab31c8e2c3b5e903ed855ade2d6
- <http://speckle.xyz/streams/1fed8e620e/objects/d45421ae76a65fdfcfcccfbc06cf176e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c70481a8430c19d62fc9f6520cb11797
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c7a1e10ea8815d77c3039b7f28e68780
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c7d75844c3bea6b4c36a1765f1b489c2
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c7ea73a6dd64860be1bb18dd7b2f4352
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c7ec59d823b7fd6438ca532e122c7ff8
- <http://speckle.xyz/streams/1fed8e620e/objects/3c418468e71ff5a537b5e56455bc2356> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c926b00b3ebe7f60cfcd43cadb5936fc
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/c9dda981ccba022d91de39faeee4e5e7
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ca0bd7b5f64759611e8e4c5891b0798e
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ca47f84cb68878171c0d3fad2ccee607
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/caebbe20bc8f781550f47fae4c7ae8c7
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cb06a772c07d8b9bcc5ef300411f6c66
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cb3550e159e26bef2a486fef40c88b91
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cb5fa738402baa969fdfe8f8dc82ee65
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cb8d1851b4c0c354c933be97a1d42103
- <http://speckle.xyz/streams/1fed8e620e/objects/2e5e339d5a699a097fe96dd67a1bc05a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cbddf7285774c332dfde4e340b4d55fd
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cc26ef2398f83017ac920b6a45f94d9b
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cdfab4a66f4c27d47c5726273d4dcb8d
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ce07724aac51a53bb93828f611460215
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cea4adfe797f8a491f22eccb935e1603
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ced3c9064574afec5aae760e04f2998b
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cf04a66939470c8aa17288896eaa5d66
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/cf1f5072f47952a936849f835bd1a438
- <http://speckle.xyz/streams/1fed8e620e/objects/8621e343f01dcdfe5d7f7470d2bacd6c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d0236d2632550ef9783900f756af9db4
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d0b3fcbda41e0954e9b96b1b476f6bbd
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d0c8def3be761b6694d12f45a9cb65cd
- <http://speckle.xyz/streams/1fed8e620e/objects/0debbf9011d2edef136a993751616c4a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d14a9cc04e5b438334e949a27b55507f
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d18f67a33ec5ccfcea49e6867e6c00ad
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d1fe8664a248b9a48834a1e18e7b7f2a
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d21aef94a3870bf1155d94376be0348a
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d23e69bfc6c4792a781d04e0ba3c2cd9
- <http://speckle.xyz/streams/1fed8e620e/objects/bd4ec146e173e46b89794398e674347d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d27a109b9ae781b96db038c117254289
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d28d925081759f775d9299dd9af94eaf
- <http://speckle.xyz/streams/1fed8e620e/objects/fced0fecb1a33a651e352824b40f4756> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d2f0579c00cffcab2b10606e92ceaa30
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d308d6dbde360500349a315aa26300a0
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d310d94c73baa9b198aa7cad7a0a669f
- <http://speckle.xyz/streams/1fed8e620e/objects/62c4969bbb79c7117ffcfbb4fdc016ff> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d39d09c58b2ee989d71444f7683c7d37
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d3dd4c783ce11e9ea0b5662051dab0c6
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d3f59be21dd6a9c41173af7dad346c1d
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d479bec22bbe3b0e0499b553e1106c31
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d4b0060f79269176d4c12ded1db9a922
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d4c498880c3c5cca806f71df6632c21b
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d4d9295f0d5d0127f0ccd7a30e9075d8
- <http://speckle.xyz/streams/1fed8e620e/objects/8719cbd6ca9a51132612726849bb787a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d52c705575bcd6a29e070eda6010c8b8
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d5789a9fde0e2a06f335ffd735f5b6a6
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d5bf25c3ee7c7fbb10238e642df98c6e
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d5bf9a5ccc2e1d212a2abe40f65afbf8
- <http://speckle.xyz/streams/1fed8e620e/objects/625e8534f50808827485538aba3e82f2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d5c20d7a5446d5e4f3d9fe761b2d7f8e
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d5cf6d2d9a3f22477852e859feec324a
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d615c47836696e4c730db85eab732203
- <http://speckle.xyz/streams/1fed8e620e/objects/e377d065a0f6a939f62f5bbca10a37de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d62372de631edc63371aa3f2e397713b
- <http://speckle.xyz/streams/1fed8e620e/objects/bbd9f5722f6b25afed73226882977463> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d6dea993cd126327873d2e3f97062796
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d6e085696008c3cbb729bc965c8b1b50
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d79216c3383d0c8281602b47c7b12dc1
- <http://speckle.xyz/streams/1fed8e620e/objects/8f1a4131eb57444963bdca307115daf4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d7b7ba0ce2cf2d8a23d9474284a39724
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d7f504a1565f76c671981cdddfcaaf5a
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d8413c4180b2c28fb1694e7618704192
- <http://speckle.xyz/streams/1fed8e620e/objects/d511b27c5fbcef519a2df2a66a210133> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d8506178d264c405d90ac036840419ed
- <http://speckle.xyz/streams/1fed8e620e/objects/d8bda39e449004fb33ba1d9f5c31cf3c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d85581302c8e600035a9a78d52147ee5
- <http://speckle.xyz/streams/1fed8e620e/objects/0dd0051c198ab1ee8d08193a8246c47b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d8d9d12698edd985e972eec8a462e910
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d8da86e88f63017c02cd15d2327861f5
- <http://speckle.xyz/streams/1fed8e620e/objects/ad8ad1cc943b6509395bf042a9b219aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d8e8f06a47b938159c222613a9f7c020
- <http://speckle.xyz/streams/1fed8e620e/objects/301ed4fa33b0450daf40600559815b06> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d93eecbddb0068f1f186534f623f5d56
- <http://speckle.xyz/streams/1fed8e620e/objects/2028067ee6a70894768c93a38725d5fb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/d955f1b2c0995606f5cb5a7975ec7f8a
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/da761a0896923f52ec2b4563625f683d
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/da83cbb5ab69166c50433e1b81eac069
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dac0ed71e34bebe7ff6e7ef2be4203d5
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dad8297e11f690270043d9ede5fdb312
- <http://speckle.xyz/streams/1fed8e620e/objects/1534461d315bdad4e877aae18713cb14> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dae1ea714d54c572586dc41751dabce3
- <http://speckle.xyz/streams/1fed8e620e/objects/77a75c7084d8667b276c75f0b7b7ebb8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/db40bc4ae239a17f7d5f7a70028094fd
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dbc2d749b15829106f082e27ca4b2a11
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dc29e36838686e6c335311815b4534dd
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dc54082728b0257e2cb05db29358ee52
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dc6e483b160c05873e70aa01b0b9682d
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dc7fb3c99b7e88a47375da493af9d300
- <http://speckle.xyz/streams/1fed8e620e/objects/77fc2134d48f52b6763ab1eb2d17177b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd116890f2c2a67c6a90c8d54e5a66e2
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd175f69686a58e2c89495a9b51f5e1c
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd2943b8e2dde5cdba95844d26dac21a
- <http://speckle.xyz/streams/1fed8e620e/objects/f9b70d88daae0789557d8e20bc615cd7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd35eb8a9bf0b52250e793b169a2fd4d
- <http://speckle.xyz/streams/1fed8e620e/objects/79ad17cfd80ebe57024e425fc88b58be> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd60e9012e4496f6226df90968448f43
- <http://speckle.xyz/streams/1fed8e620e/objects/ebdf3f7fa32924a573d2bbac1bf6cdb1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd6990c1f64ae4a2a63f499e8cca7a43
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd82b8783d4dcfb0275357a360dc4c88
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dd90279924fa58dd8ef70ca823f7302b
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dde63b5d60845c52b15c7f9c7c385d6a
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ddff441c9350b27993c8290e8482730a
- <http://speckle.xyz/streams/1fed8e620e/objects/0e81326510b84d23451d78c7f8081083> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de10a64aac03440c300638b1319dc2f8
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de29db95acd6631b5b971327f6f95a7e
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de3845a10a3d0a74b7049f7868b287d6
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de6adf2d2f8e40180c85eaed2f851fe5
- <http://speckle.xyz/streams/1fed8e620e/objects/d45421ae76a65fdfcfcccfbc06cf176e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de985614a9bbbf633f60821cfb7edc17
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/de9cda8ff0046633532400d6e3333b78
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/df19dc693b905bd71fe64883cf9fa11e
- <http://speckle.xyz/streams/1fed8e620e/objects/9c2f06431727c23a2a0ddcd711357701> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/df313de8e3e6868b9ad3c740f51a42fd
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/df48417a84c942d4bb01bd7a24e64d95
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/df68a3d0e6044fcf9bd0810477810e79
- <http://speckle.xyz/streams/1fed8e620e/objects/231db849bf26a52aa25f97e5db97245a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dfb5083e0f97aba4c0d3e7e179aeab0d
- <http://speckle.xyz/streams/1fed8e620e/objects/911d6cf640da1f0566e01608e4803a01> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dfd5ed3182cbd28d3fa22fbb095e746b
- <http://speckle.xyz/streams/1fed8e620e/objects/82a945cfb33b8c2b440ba014a2cfbce1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/dff2b67d6cc457ae81900a55d5f31882
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e011675056d9b4047c803b0e019050cc
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e0788181f69690f9cf0f04a4a62c2f07
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e08e9f7881154fbe5f17b1ffac33d782
- <http://speckle.xyz/streams/1fed8e620e/objects/bbd9f5722f6b25afed73226882977463> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e09037f831b5209763bbf360a78fc14d
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e0ab80e40ec610ea6ef6771c8f67da02
- <http://speckle.xyz/streams/1fed8e620e/objects/29a8bb43641e7e41aea3357500139b94> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e0aeb0e40bcc32d4b46a8bd1896a0e09
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e0b51eeb608a1f06b9db1f0699123720
- <http://speckle.xyz/streams/1fed8e620e/objects/80ce095522d440beebb43d2a7e53ee82> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e130170ce7633558e5f8fd26150e8195
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e141c6de6c824e886a1ae0a3d1722ee6
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e16567f9ff09f4b68a39b5f630e628ef
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e276547e7ab6ce41ce9e218a3a1abab7
- <http://speckle.xyz/streams/1fed8e620e/objects/63d053c27bb1883823301e924e5f9f59> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e280461fef0079c2792f726ad153036c
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e2b2a8a62281eeaf7929d3e80e722dc7
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e31815756748b4fe44081616d5d16503
- <http://speckle.xyz/streams/1fed8e620e/objects/230198f93f088bfe5c46484865a3a338> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e3421dc6d17d7f224051125d76505069
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e37469135857ff709e9fc00236766faf
- <http://speckle.xyz/streams/1fed8e620e/objects/b71d5d4d948e6e08a7b81745742d92db> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e407e9fe9005e45e3c560bdc6f84ef9f
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e5646fbab5df89a6c8b4852847fc4b80
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e57b58ce9569dd9da36a06d74b9397cf
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e58f6cf8baf262337db4603db5fbeae7
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e6f6eb97cbb170d177fea936fb42857a
- <http://speckle.xyz/streams/1fed8e620e/objects/72bc1af527c9db1099b409ca6d88053e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e743e83df7ab6161dc309102c36cd6d2
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e75d048af734e84a0ed0bbe0da8097bf
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e7907de3f259ce913af64d5ddfa5bc68
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e7da8ac6ef0c790a29ac445b680d5b9d
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e7db374fc1633723cf0db962b82da022
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e7fe90881708a38ec0fc7572366297c3
- <http://speckle.xyz/streams/1fed8e620e/objects/d45421ae76a65fdfcfcccfbc06cf176e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e83d0fea693b3fa563f2abe14a59dcea
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e862e31a26df364437a395fb4b5b8187
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e86c1d7725fdff4fe08db561f7b56ca0
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e8860e9bac3df0f4169c09e4ed659eda
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e8d068189a7d35686944f51a88c75067
- <http://speckle.xyz/streams/1fed8e620e/objects/57ebaa104c01a6dc3079763f94a0c1eb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e8e6c755fbdd2d5ad413a7dcfb31091e
- <http://speckle.xyz/streams/1fed8e620e/objects/9c2f06431727c23a2a0ddcd711357701> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9224ef47b94b088a44439c67c6b5b42
- <http://speckle.xyz/streams/1fed8e620e/objects/f6bcb4875383b5d90621de70ddb070e0> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e93393cfadd90ef29d6e16f4edbdce75
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9428ebd6344431bdc09e5aa5eed38af
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e996760ca08fc50b63d7b956fa84e229
- <http://speckle.xyz/streams/1fed8e620e/objects/8b15be9fe257c6229d9c79a244e36cd4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9c0acc3044bd87813aa364ef559b52d
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9df236c14c9bacdfdf2f683fc79d0c1
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9ed2af894b97b82468ef338166187f5
- <http://speckle.xyz/streams/1fed8e620e/objects/8791d74923028f71b7165ad424cdb2f4> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9f4e53df96fb7bafaedd4b1463063fb
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/e9fffc5d86d65bfcebe67f63a70dfc9b
- <http://speckle.xyz/streams/1fed8e620e/objects/8719cbd6ca9a51132612726849bb787a> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ea0867287d6bc8927734f58b829656f5
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ea824224cd43d28451e6bd5d17ca22db
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/eb3725a9f0279322e308508fc2e292f4
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ebab3d70c9ddb9b9f018e2171678a528
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ebbbfa350d68a5e273e9793e571358d1
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ebdc89aa14adebb7ce70bf095a8153a5
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ec3a22433827e8ba0eb2be4e3b9ec7af
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ec5e23c21d16271fbff99d8caf65eed8
- <http://speckle.xyz/streams/1fed8e620e/objects/4ef2d7de355bceeed2fd74fa1ddb0dda> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ec70706ec9119d348638c138fb2a940c
- <http://speckle.xyz/streams/1fed8e620e/objects/84b8056724516b4169fa051ca02ac1dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ec71731acb7931b30209a0ff34b2e5b8
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ed6ccf53de5aa3d48212bb74ae32e91f
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ed6cdc82243cce221e36914eeae6970f
- <http://speckle.xyz/streams/1fed8e620e/objects/7ba35b19cb4c3c79e5bdbd2a1073370e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ed76f992dc40d09b4c54d85f7bf388a0
- <http://speckle.xyz/streams/1fed8e620e/objects/11e6eb0dbf8cd69987ad3744811107e9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ed7cb433edb9fc58c4546b2dc722d7b0
- <http://speckle.xyz/streams/1fed8e620e/objects/bc63f6702fca047eafc794fc63272ec1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/edaa48110222bdafb3c72005c3efd76f
- <http://speckle.xyz/streams/1fed8e620e/objects/53e936501f0044729f372614198f9df2> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/edd1039a0f2c6e6118bfd060b00bfc1e
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/edd991e395a659277f08111ac29d530c
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ee065a0250e15f346505dffad4baa29a
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ee3963a2a38bfaf1e3d1f2e19bd09b6c
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ee3ad3a4fc98ec8cf1c09885f5d41b69
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ef673335c186f790a122d7d6f6c776a2
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/efaad074c99494b95898bdb68744dbe2
- <http://speckle.xyz/streams/1fed8e620e/objects/909cd2b5619a9b30cc4b79a5ba4e39bb> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/efd0df76937c5c46925b8ccb02d25e4d
- <http://speckle.xyz/streams/1fed8e620e/objects/192c90b00a08a0d3db019dd3c660933d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/eff7bcc3cb77f87b15fdb14171a71980
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f059fd14c9364a0a4c36b39fa5b80024
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f06705623a9d2c72a3a2adfdfe26c734
- <http://speckle.xyz/streams/1fed8e620e/objects/d31ff0f87848224671aa8850de49a184> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f0a990c20aad270ff7abf234c5b7dc10
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f0e12df8f1193e0272387aefaaa13e85
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f11395f574ee6ca14416d0aff8760401
- <http://speckle.xyz/streams/1fed8e620e/objects/b9ce728344626f07f463ae51b7a71f77> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f15b771ada2f4f23c358f43b891ddfa8
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f16bdc6854cbfa588ac9486518c36144
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f19bc5e43aca4db2a41c435df96a3569
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f22dfc79ef5446ac4dc7defd95ae677b
- <http://speckle.xyz/streams/1fed8e620e/objects/9fc840976a4fbe61395c749248ec380d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f248b3658de19662aefa6b949ff8541d
- <http://speckle.xyz/streams/1fed8e620e/objects/14d0c76c81ae24a4a5c62aa4fb56e7de> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f2660f84d06d33fafa4d92ac67d64403
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f2c6c13ef340e56b653f1309677d43ac
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f2ddc0a9ff88c38d9a915678f059761b
- <http://speckle.xyz/streams/1fed8e620e/objects/844a41f9c84fdba563707386892c2979> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f2e5b8d6044624a9236ba309bffcb1bc
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f4da2ae13aef62016231031214049bec
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f5a13057123cb48b7fdc9b610fc5e0e8
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f5d124983846822edb67eed9aa46d28a
- <http://speckle.xyz/streams/1fed8e620e/objects/7f4b3ae1601ce2902c202821b4e1e405> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f5db264dd3cefb79d913c50fa87500c0
- <http://speckle.xyz/streams/1fed8e620e/objects/325665573393ea598bc03681fccc91aa> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f616c6665da1bba3b5e0d1217bcda0a6
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f6216b4d3075bc3c874c507d10638bbe
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f653781548d6ce57f057484e8d4775f6
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f6938ac07ebd6c249a60458ce8fd0e3b
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f6c8da96e0432c7d89586eb386636f4d
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f6d086d0f930041134ba7ad23d089f0d
- <http://speckle.xyz/streams/1fed8e620e/objects/b2026060fa2c3465a8f250023952c4dd> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f6d7a1330d1262f86b6e120b2907226b
- <http://speckle.xyz/streams/1fed8e620e/objects/bcaea36774c75ae6a3412ed145c239b7> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f724b6b8dbe0b1f17a8cfa9c3ce73853
- <http://speckle.xyz/streams/1fed8e620e/objects/d391175047a25b0307bd11e583fc2c11> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f733a8b07f181adedc35f95602d8eb6a
- <http://speckle.xyz/streams/1fed8e620e/objects/d2adf181e2c1931b46fa7ed04d061da1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f78a736ddb8761cbde7721f58c8424ad
- <http://speckle.xyz/streams/1fed8e620e/objects/ed292ef68fe5e88c427938777bc513f1> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f7c911e91da42470951aa956cf311f97
- <http://speckle.xyz/streams/1fed8e620e/objects/51badc1b88929e17ab623dfc459cf9f3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f84b83b05556bfe02f1b11536276be5d
- <http://speckle.xyz/streams/1fed8e620e/objects/21c50a50a935d24d436c4d2bf27b0be6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f85d3b013f850ce12849bef54b79c56d
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f86d99512e816cd781333e54f321966c
- <http://speckle.xyz/streams/1fed8e620e/objects/7ba35b19cb4c3c79e5bdbd2a1073370e> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f889f02735bb4bf12d5c74c394843bc9
- <http://speckle.xyz/streams/1fed8e620e/objects/b3460e94669b0a51e5ca3fa8e6bd1fd9> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f8a3cdde0974f40dc700d352097f2919
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f8af48d9d1b91990ff56da561d390ce6
- <http://speckle.xyz/streams/1fed8e620e/objects/c828df287f4dae82c833c02a189c54af> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f8b547e623d9f24d9af6198880ffbac7
- <http://speckle.xyz/streams/1fed8e620e/objects/04405074e8760773635367aab59bb782> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f8d5de44675f418269a94662f7c17ff3
- <http://speckle.xyz/streams/1fed8e620e/objects/fde62759481e6105c4e797a8c3916820> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f8e8e6f1b5b70177cbc1c26e3f903ab0
- <http://speckle.xyz/streams/1fed8e620e/objects/617ceb9bd4697e20016b4a9767da98ac> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f902981e2b8c73dc97198904bc412af0
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f9755a3b4da2d42402f6727c3a8b777c
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f9b55b1c7045711c06bc1c9b63e2142e
- <http://speckle.xyz/streams/1fed8e620e/objects/5d5d97f8f742c3e465bbef7a01787eab> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f9c31b65fb85e963dcf2bc49a6356ada
- <http://speckle.xyz/streams/1fed8e620e/objects/baf4569696d2e67ac50fed74d90079b3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/f9e5df8aac286a43c31aee60f34764c4
- <http://speckle.xyz/streams/1fed8e620e/objects/bbd9f5722f6b25afed73226882977463> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fa33b4de5f6add0a668d2e2d356f3534
- <http://speckle.xyz/streams/1fed8e620e/objects/942e8885d49df649c7b47e759d53f318> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fb3fdf27893128a08fc68128ce6501b8
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fb7e701093138aa79ab9c04fff0c4576
- <http://speckle.xyz/streams/1fed8e620e/objects/06c48e0294e055494226ad4666c7b25d> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fbf4c718af558bce8a790b7fdff4363e
- <http://speckle.xyz/streams/1fed8e620e/objects/57b6e93a0245c0d9bdf835bb462c5171> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fc3c56044eec131e0e6519fe12de328c
- <http://speckle.xyz/streams/1fed8e620e/objects/63653f22d68914834414186f9c10764c> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fcbae528c55a9ff1b7d2b9b3050ffc27
- <http://speckle.xyz/streams/1fed8e620e/objects/ae44fe7f191e0f68429cb65274a17f2b> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fcd799c318240a07e9fa8677e7862937
- <http://speckle.xyz/streams/1fed8e620e/objects/a1e1f1c53c17af3a81cd6e1444314864> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fd1911fefc5c76b999f7759411411a1a
- <http://speckle.xyz/streams/1fed8e620e/objects/cc188237d9c7e1f09d9820ff7da8bedc> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fd206582fcbfa105d31ef1d3b3bbc0dd
- <http://speckle.xyz/streams/1fed8e620e/objects/b834c590edece96e20e74809d7e243d6> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fd5d8e27d579bd29cf442bd4e8ad639d
- <http://speckle.xyz/streams/1fed8e620e/objects/77a75c7084d8667b276c75f0b7b7ebb8> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fdf526ca54b21b9974647e51f41e3621
- <http://speckle.xyz/streams/1fed8e620e/objects/247bf91dc81ff0b3b14fdd5279523462> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/fe0dd3d97b8c26648153ef7e07dc7d34
- <http://speckle.xyz/streams/1fed8e620e/objects/3779b592b4e7bed407f61c169ff59221> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ff0b11659935591d81157b5caecd6615
- <http://speckle.xyz/streams/1fed8e620e/objects/ddd7862aea356734dcdaa217787b3bf3> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>
http://speckle.xyz/streams/1fed8e620e/objects/ff89d1c7f31a34370fb858a6dc466d3d
- <http://speckle.xyz/streams/1fed8e620e/objects/3ab9a9929bf8b6cab213f97c82e269ed> must be an instance of <http://data.ashrae.org/standard223#PhysicalSpace>